content
stringlengths
7
1.05M
fixed_cases
stringlengths
1
1.28M
bandera = ["N","B","B","N","A","B","B","N","B","N","N","A","N","N","B","A","A"] print(bandera) negro = [] blanco = [] azul = [] def ordenada(bandera): if len(bandera) > 0: color = bandera.pop(0) if color =="N": negro.append(color) ordenada(bandera) elif color == "B": blanco.append(color) ordenada(bandera) elif color == "A": azul.append(color) ordenada(bandera) else: ordenada = negro + blanco + azul print(ordenada) else: ordenada = negro + blanco + azul print(ordenada) ordenada(bandera)
bandera = ['N', 'B', 'B', 'N', 'A', 'B', 'B', 'N', 'B', 'N', 'N', 'A', 'N', 'N', 'B', 'A', 'A'] print(bandera) negro = [] blanco = [] azul = [] def ordenada(bandera): if len(bandera) > 0: color = bandera.pop(0) if color == 'N': negro.append(color) ordenada(bandera) elif color == 'B': blanco.append(color) ordenada(bandera) elif color == 'A': azul.append(color) ordenada(bandera) else: ordenada = negro + blanco + azul print(ordenada) else: ordenada = negro + blanco + azul print(ordenada) ordenada(bandera)
class Solution: def missingNumber(self, nums: List[int]) -> int: result = len(nums) for i in range(len(nums)): result ^= i ^ nums[i] return result
class Solution: def missing_number(self, nums: List[int]) -> int: result = len(nums) for i in range(len(nums)): result ^= i ^ nums[i] return result
""" Default termsets for various languages """ LANGUAGES = dict() # Dutch termset dictionary nl = dict() nl_clinical = dict() nl_pseudo = [ "probleemloos", "zonder probleem", "zonder moeilijkheid", "geen verandering", "geen duidelijke verandering", "geen evidente verandering", "geen significante verandering", "geen significante stijging", "geen stijging", "niet alleen", "niet noodzakelijk", "niet zeker of", "niet zeker dat", "niet uitsluiten" ] nl_pseudo_clinical = nl_pseudo + [ "geen verbetering", "geen verhoging", "geen afwijking", "geen afwijkingen", "geen oorzaak", "geen evidente oorzaak", "niet verdween" ] nl_preceding = [ "afwezigheid van", "uitgesloten van", "vrij van", "geen", "geen teken van", "geen bewijs van", "geen verder bewijs", "geen enkel bewijs", "geen aanwijzing van", "geen aanwijzing voor", "zonder", "zonder bewijs", "niet", "niets", "noch", "nooit", "negatief" , "ontkent" ] nl_preceding_clinical = nl_preceding + [ "geen beeld van", "negatief voor", "atypische symptomen" ] nl_following = [ "afwezig", "geweigerd", "niet aanwezig", "niet aanweisbaar", "niet vastgesteld", "niet van toepassing", "niet het geval", "niet bekend", "geldt niet", "worden uitgesloten", "zijn uitgesloten", "is uitgesloten", "werd uitgesloten", "onwaarschijnlijk", "twijfelachtig" ] nl_following_clinical = nl_following + [ "is negatief", "vrij", # Needs decompounding, e.g. tumorvrij "vrije" ] nl_termination = [ "hoewel", "losstaand van", "onafhankelijk van", "met uitzondering van", "behalve", "maar", "echter", "niettemin", "desalniettemin" "ondanks", "nog wel" ] nl_termination_clinical = nl_termination + [ "als oorzaak van", "als de oorzaak van", "als reden voor", "als redenen voor", "als de reden van", "als een reden voor", "als bijwerking van", "als trigger voor", "als gevolg van", "omwille van", "als secundaire oorzaak van", "als tweede oorzaak van", "als tweede reden van", "als bron voor", "als een bron van", "als ziekteoorzaak", "als etiologie van", "als oorsprong voor" ] nl["pseudo_negations"] = nl_pseudo nl_clinical["pseudo_negations"] = nl_pseudo_clinical nl["preceding_negations"] = nl_preceding nl_clinical["preceding_negations"] = nl_preceding_clinical nl["following_negations"] = nl_following nl_clinical["following_negations"] = nl_following_clinical nl["termination"] = nl_termination nl_clinical["termination"] = nl_termination_clinical LANGUAGES["nl"] = nl LANGUAGES["nl_clinical"] = nl_clinical # english termset dictionary en = dict() pseudo = [ "no further", "not able to be", "not certain if", "not certain whether", "not necessarily", "without any further", "without difficulty", "without further", "might not", "not only", "no increase", "no significant change", "no change", "no definite change", "not extend", "not cause", "not certain if", "not certain whether", ] en["pseudo_negations"] = pseudo preceding = [ "absence of", "declined", "denied", "denies", "denying", "no sign of", "no signs of", "not", "not demonstrate", "symptoms atypical", "doubt", "negative for", "no", "versus", "without", "doesn't", "doesnt", "don't", "dont", "didn't", "didnt", "wasn't", "wasnt", "weren't", "werent", "isn't", "isnt", "aren't", "arent", "cannot", "can't", "cant", "couldn't", "couldnt", "never", ] en["preceding_negations"] = preceding following = [ "declined", "unlikely", "was not", "were not", "wasn't", "wasnt", "weren't", "werent", ] en["following_negations"] = following termination = [ "although", "apart from", "as there are", "aside from", "but", "except", "however", "involving", "nevertheless", "still", "though", "which", "yet", "still", ] en["termination"] = termination LANGUAGES["en"] = en # en_clinical builds upon en en_clinical = dict() pseudo_clinical = pseudo + [ "gram negative", "not rule out", "not ruled out", "not been ruled out", "not drain", "no suspicious change", "no interval change", "no significant interval change", ] en_clinical["pseudo_negations"] = pseudo_clinical preceding_clinical = preceding + [ "patient was not", "without indication of", "without sign of", "without signs of", "without any reactions or signs of", "no complaints of", "no evidence of", "no cause of", "evaluate for", "fails to reveal", "free of", "never developed", "never had", "did not exhibit", "rules out", "rule out", "rule him out", "rule her out", "rule patient out", "rule the patient out", "ruled out", "ruled him out" "ruled her out", "ruled patient out", "ruled the patient out", "r/o", "ro", ] en_clinical["preceding_negations"] = preceding_clinical following_clinical = following + ["was ruled out", "were ruled out", "free"] en_clinical["following_negations"] = following_clinical termination_clinical = termination + [ "cause for", "cause of", "causes for", "causes of", "etiology for", "etiology of", "origin for", "origin of", "origins for", "origins of", "other possibilities of", "reason for", "reason of", "reasons for", "reasons of", "secondary to", "source for", "source of", "sources for", "sources of", "trigger event for", ] en_clinical["termination"] = termination_clinical LANGUAGES["en_clinical"] = en_clinical en_clinical_sensitive = dict() preceding_clinical_sensitive = preceding_clinical + [ "concern for", "supposed", "which causes", "leads to", "h/o", "history of", "instead of", "if you experience", "if you get", "teaching the patient", "taught the patient", "teach the patient", "educated the patient", "educate the patient", "educating the patient", "monitored for", "monitor for", "test for", "tested for", ] en_clinical_sensitive["pseudo_negations"] = pseudo_clinical en_clinical_sensitive["preceding_negations"] = preceding_clinical_sensitive en_clinical_sensitive["following_negations"] = following_clinical en_clinical_sensitive["termination"] = termination_clinical LANGUAGES["en_clinical_sensitive"] = en_clinical_sensitive
""" Default termsets for various languages """ languages = dict() nl = dict() nl_clinical = dict() nl_pseudo = ['probleemloos', 'zonder probleem', 'zonder moeilijkheid', 'geen verandering', 'geen duidelijke verandering', 'geen evidente verandering', 'geen significante verandering', 'geen significante stijging', 'geen stijging', 'niet alleen', 'niet noodzakelijk', 'niet zeker of', 'niet zeker dat', 'niet uitsluiten'] nl_pseudo_clinical = nl_pseudo + ['geen verbetering', 'geen verhoging', 'geen afwijking', 'geen afwijkingen', 'geen oorzaak', 'geen evidente oorzaak', 'niet verdween'] nl_preceding = ['afwezigheid van', 'uitgesloten van', 'vrij van', 'geen', 'geen teken van', 'geen bewijs van', 'geen verder bewijs', 'geen enkel bewijs', 'geen aanwijzing van', 'geen aanwijzing voor', 'zonder', 'zonder bewijs', 'niet', 'niets', 'noch', 'nooit', 'negatief', 'ontkent'] nl_preceding_clinical = nl_preceding + ['geen beeld van', 'negatief voor', 'atypische symptomen'] nl_following = ['afwezig', 'geweigerd', 'niet aanwezig', 'niet aanweisbaar', 'niet vastgesteld', 'niet van toepassing', 'niet het geval', 'niet bekend', 'geldt niet', 'worden uitgesloten', 'zijn uitgesloten', 'is uitgesloten', 'werd uitgesloten', 'onwaarschijnlijk', 'twijfelachtig'] nl_following_clinical = nl_following + ['is negatief', 'vrij', 'vrije'] nl_termination = ['hoewel', 'losstaand van', 'onafhankelijk van', 'met uitzondering van', 'behalve', 'maar', 'echter', 'niettemin', 'desalnietteminondanks', 'nog wel'] nl_termination_clinical = nl_termination + ['als oorzaak van', 'als de oorzaak van', 'als reden voor', 'als redenen voor', 'als de reden van', 'als een reden voor', 'als bijwerking van', 'als trigger voor', 'als gevolg van', 'omwille van', 'als secundaire oorzaak van', 'als tweede oorzaak van', 'als tweede reden van', 'als bron voor', 'als een bron van', 'als ziekteoorzaak', 'als etiologie van', 'als oorsprong voor'] nl['pseudo_negations'] = nl_pseudo nl_clinical['pseudo_negations'] = nl_pseudo_clinical nl['preceding_negations'] = nl_preceding nl_clinical['preceding_negations'] = nl_preceding_clinical nl['following_negations'] = nl_following nl_clinical['following_negations'] = nl_following_clinical nl['termination'] = nl_termination nl_clinical['termination'] = nl_termination_clinical LANGUAGES['nl'] = nl LANGUAGES['nl_clinical'] = nl_clinical en = dict() pseudo = ['no further', 'not able to be', 'not certain if', 'not certain whether', 'not necessarily', 'without any further', 'without difficulty', 'without further', 'might not', 'not only', 'no increase', 'no significant change', 'no change', 'no definite change', 'not extend', 'not cause', 'not certain if', 'not certain whether'] en['pseudo_negations'] = pseudo preceding = ['absence of', 'declined', 'denied', 'denies', 'denying', 'no sign of', 'no signs of', 'not', 'not demonstrate', 'symptoms atypical', 'doubt', 'negative for', 'no', 'versus', 'without', "doesn't", 'doesnt', "don't", 'dont', "didn't", 'didnt', "wasn't", 'wasnt', "weren't", 'werent', "isn't", 'isnt', "aren't", 'arent', 'cannot', "can't", 'cant', "couldn't", 'couldnt', 'never'] en['preceding_negations'] = preceding following = ['declined', 'unlikely', 'was not', 'were not', "wasn't", 'wasnt', "weren't", 'werent'] en['following_negations'] = following termination = ['although', 'apart from', 'as there are', 'aside from', 'but', 'except', 'however', 'involving', 'nevertheless', 'still', 'though', 'which', 'yet', 'still'] en['termination'] = termination LANGUAGES['en'] = en en_clinical = dict() pseudo_clinical = pseudo + ['gram negative', 'not rule out', 'not ruled out', 'not been ruled out', 'not drain', 'no suspicious change', 'no interval change', 'no significant interval change'] en_clinical['pseudo_negations'] = pseudo_clinical preceding_clinical = preceding + ['patient was not', 'without indication of', 'without sign of', 'without signs of', 'without any reactions or signs of', 'no complaints of', 'no evidence of', 'no cause of', 'evaluate for', 'fails to reveal', 'free of', 'never developed', 'never had', 'did not exhibit', 'rules out', 'rule out', 'rule him out', 'rule her out', 'rule patient out', 'rule the patient out', 'ruled out', 'ruled him outruled her out', 'ruled patient out', 'ruled the patient out', 'r/o', 'ro'] en_clinical['preceding_negations'] = preceding_clinical following_clinical = following + ['was ruled out', 'were ruled out', 'free'] en_clinical['following_negations'] = following_clinical termination_clinical = termination + ['cause for', 'cause of', 'causes for', 'causes of', 'etiology for', 'etiology of', 'origin for', 'origin of', 'origins for', 'origins of', 'other possibilities of', 'reason for', 'reason of', 'reasons for', 'reasons of', 'secondary to', 'source for', 'source of', 'sources for', 'sources of', 'trigger event for'] en_clinical['termination'] = termination_clinical LANGUAGES['en_clinical'] = en_clinical en_clinical_sensitive = dict() preceding_clinical_sensitive = preceding_clinical + ['concern for', 'supposed', 'which causes', 'leads to', 'h/o', 'history of', 'instead of', 'if you experience', 'if you get', 'teaching the patient', 'taught the patient', 'teach the patient', 'educated the patient', 'educate the patient', 'educating the patient', 'monitored for', 'monitor for', 'test for', 'tested for'] en_clinical_sensitive['pseudo_negations'] = pseudo_clinical en_clinical_sensitive['preceding_negations'] = preceding_clinical_sensitive en_clinical_sensitive['following_negations'] = following_clinical en_clinical_sensitive['termination'] = termination_clinical LANGUAGES['en_clinical_sensitive'] = en_clinical_sensitive
class Solution: def __init__(self): self.inorder_p = {} self.postorder_idx = None def buildTree(self, inorder: List[int], postorder: List[int]) -> TreeNode: self.postorder_idx = len(postorder) - 1 for i, v in enumerate(inorder): self.inorder_p[v] = i return self._build(inorder, postorder, 0, len(inorder)) def _build(self, inorder, postorder, start, end): if start == end: return None idx = self.inorder_p[postorder[self.postorder_idx]] root = TreeNode(postorder[self.postorder_idx]) self.postorder_idx -= 1 root.right = self._build(inorder, postorder, idx+1, end) root.left = self._build(inorder, postorder, start, idx) return root
class Solution: def __init__(self): self.inorder_p = {} self.postorder_idx = None def build_tree(self, inorder: List[int], postorder: List[int]) -> TreeNode: self.postorder_idx = len(postorder) - 1 for (i, v) in enumerate(inorder): self.inorder_p[v] = i return self._build(inorder, postorder, 0, len(inorder)) def _build(self, inorder, postorder, start, end): if start == end: return None idx = self.inorder_p[postorder[self.postorder_idx]] root = tree_node(postorder[self.postorder_idx]) self.postorder_idx -= 1 root.right = self._build(inorder, postorder, idx + 1, end) root.left = self._build(inorder, postorder, start, idx) return root
class StopType: """ Message type that will cause an actor to exit when sent an instance of this class, even with a non-empty inbox. """ __INSTANCE = None def __new__(cls): if StopType.__INSTANCE is None: StopType.__INSTANCE = super().__new__(cls) return StopType.__INSTANCE def __repr__(self) -> str: return 'Stop' Stop = StopType() Stop.__doc__ = "Message type that will cause and actor to exit, even with a non-empty inbox."
class Stoptype: """ Message type that will cause an actor to exit when sent an instance of this class, even with a non-empty inbox. """ __instance = None def __new__(cls): if StopType.__INSTANCE is None: StopType.__INSTANCE = super().__new__(cls) return StopType.__INSTANCE def __repr__(self) -> str: return 'Stop' stop = stop_type() Stop.__doc__ = 'Message type that will cause and actor to exit, even with a non-empty inbox.'
def intAdd(x): return lambda y: x + y def intMul(x): return lambda y: x * y def numAdd(x): return lambda y: x + y def numMul(x): return lambda y: x * y
def int_add(x): return lambda y: x + y def int_mul(x): return lambda y: x * y def num_add(x): return lambda y: x + y def num_mul(x): return lambda y: x * y
"""Deprecated suppression style.""" __revision__ = None a = 1 # pylint: disable=invalid-name b = 1 # pylint: disable-msg=invalid-name # pylint: disable=invalid-name c = 1 # pylint: enable=invalid-name # pylint: disable-msg=invalid-name d = 1 # pylint: enable-msg=invalid-name # pylint: disable-msg=C0103 e = 1 # pylint: enable-msg=C0103 # pylint: disable=C0103 f = 1 # pylint: enable=C0103
"""Deprecated suppression style.""" __revision__ = None a = 1 b = 1 c = 1 d = 1 e = 1 f = 1
class Node: def __init__(self, data) -> None: self.data = data self.left = None self.right = None def levelOrderTraversal(root): if root is None: return queue = [] queue.append(root) while len(queue) > 0: print(queue[0].data) node = queue.pop(0) if node.left is not None: queue.append(node.left) if node.right is not None: queue.append(node.right) if __name__ == "__main__": root = Node(10) root.left = Node(8) root.right = Node(9) root.left.left = Node(7) root.left.right = Node(6) root.right.left = Node(5) root.right.right = Node(4) print("LevelOrder Traversal") levelOrderTraversal(root )
class Node: def __init__(self, data) -> None: self.data = data self.left = None self.right = None def level_order_traversal(root): if root is None: return queue = [] queue.append(root) while len(queue) > 0: print(queue[0].data) node = queue.pop(0) if node.left is not None: queue.append(node.left) if node.right is not None: queue.append(node.right) if __name__ == '__main__': root = node(10) root.left = node(8) root.right = node(9) root.left.left = node(7) root.left.right = node(6) root.right.left = node(5) root.right.right = node(4) print('LevelOrder Traversal') level_order_traversal(root)
def toTwoComp(n): s = bin(n & int("1"*16, 2))[2:] return ("{0:0>%s}" % (16)).format(s) def fromTwoComp(n): temp = n[:1] num = "" if int(temp): for x in n[1:]: if x == "1": num = num + "0" else: num = num + "1" return (-int(num,2))-1 else: return int(n,2) def rotl(num): bit = num & (1 << (16-1)) num <<= 1 if(bit): num |= 1 num &= (2**16-1) return num def rotr(num): num &= (2**16-1) bit = num & 1 num >>= 1 if(bit): num |= (1 << (16-1)) return num
def to_two_comp(n): s = bin(n & int('1' * 16, 2))[2:] return ('{0:0>%s}' % 16).format(s) def from_two_comp(n): temp = n[:1] num = '' if int(temp): for x in n[1:]: if x == '1': num = num + '0' else: num = num + '1' return -int(num, 2) - 1 else: return int(n, 2) def rotl(num): bit = num & 1 << 16 - 1 num <<= 1 if bit: num |= 1 num &= 2 ** 16 - 1 return num def rotr(num): num &= 2 ** 16 - 1 bit = num & 1 num >>= 1 if bit: num |= 1 << 16 - 1 return num
_.subdomain_matching _.static_folder Meta csrf csrf_class csrf_secret csrf_time_limit confirm get_user _.user catch_all bad_gateway page_not_found
_.subdomain_matching _.static_folder Meta csrf csrf_class csrf_secret csrf_time_limit confirm get_user _.user catch_all bad_gateway page_not_found
l1 = ["Bhindi","Aloo","Chopsticks","Chowmein"] i = 1 # for item in l1: # if i%2 != 0: # print(f"Please buy {item}") # i+=1 for index,item in enumerate(l1): if index%2==0: # even 0 se start print(f"Please buy {item}")
l1 = ['Bhindi', 'Aloo', 'Chopsticks', 'Chowmein'] i = 1 for (index, item) in enumerate(l1): if index % 2 == 0: print(f'Please buy {item}')
{ "targets": [ { "target_name": "trusted", "dependencies": [ "deps/wrapper/wrapper.gyp:wrapper", ], "sources": [ "src/node/main.cpp", "src/node/helper.cpp", "src/node/stdafx.cpp", "src/node/common/wopenssl.cpp", "src/node/utils/wlog.cpp", "src/node/utils/wrap.cpp", "src/node/utils/wjwt.cpp", "src/node/utils/wcsp.cpp", "src/node/pki/wcrl.cpp", "src/node/pki/wcrls.cpp", "src/node/pki/wrevoked.cpp", "src/node/pki/wrevokeds.cpp", "src/node/pki/wcert.cpp", "src/node/pki/wcerts.cpp", "src/node/pki/wattr.cpp", "src/node/pki/wattr_vals.cpp", "src/node/pki/wext.cpp", "src/node/pki/wexts.cpp", "src/node/pki/wkey.cpp", "src/node/pki/woid.cpp", "src/node/pki/walg.cpp", "src/node/pki/wcert_request_info.cpp", "src/node/pki/wcert_request.cpp", "src/node/pki/wcipher.cpp", "src/node/pki/wchain.cpp", "src/node/pki/wrevocation.cpp", "src/node/pki/wpkcs12.cpp", "src/node/store/wcashjson.cpp", "src/node/store/wpkistore.cpp", "src/node/store/wsystem.cpp", "src/node/cms/wsigned_data.cpp", "src/node/cms/wsigner.cpp", "src/node/cms/wsigner_id.cpp", "src/node/cms/wsigners.cpp", "src/node/cms/wsigner_attrs.cpp", "src/node/cms/wcmsRecipientInfo.cpp", "src/node/cms/wcmsRecipientInfos.cpp" ], "xcode_settings": { "OTHER_CPLUSPLUSFLAGS": [ "-std=c++11", "-stdlib=libc++" ], "OTHER_LDFLAGS": [], "GCC_ENABLE_CPP_EXCEPTIONS": "YES", "GCC_ENABLE_CPP_RTTI": "YES", "MACOSX_DEPLOYMENT_TARGET": "10.7" }, "conditions": [ [ "OS=='win'", { "sources": [ "src/node/store/wmicrosoft.cpp" ], "conditions": [ [ "target_arch=='x64'", { "variables": { "openssl_root%": "C:/openssl" } }, { "variables": { "openssl_root%": "C:/openssl" } } ] ], "libraries": [ "-l<(module_root_dir)/build/Release/wrapper.lib", "-l<(openssl_root)/lib/libeay32.lib", "-lcrypt32.lib" ], "include_dirs": [ "<(openssl_root)/include", "deps/wrapper/include", "deps/wrapper/jsoncpp" ], "defines": ["CTWRAPPER_STATIC", "OPENSSL_NO_CTGOSTCP", "JWT_NO_LICENSE"], "msbuild_settings": { "Link": { "ImageHasSafeExceptionHandlers": "false" } } }, { "conditions": [ ['OS=="linux"', { "libraries": [ "-lcrypto" ] }]], "libraries": [ "-L<(module_root_dir)/build/Release/wrapper.a" ], "include_dirs": [ "deps/wrapper/include", "deps/wrapper/jsoncpp" ], "defines": ["UNIX", "OPENSSL_NO_CTGOSTCP", "JWT_NO_LICENSE"], "cflags_cc+": ["-std=c++11"] } ] ], "include_dirs": [ "<!(node -e \"require('nan')\")" ], "cflags": [ ], "cflags_cc!": [ "-fno-rtti", "-fno-exceptions" ] } ] }
{'targets': [{'target_name': 'trusted', 'dependencies': ['deps/wrapper/wrapper.gyp:wrapper'], 'sources': ['src/node/main.cpp', 'src/node/helper.cpp', 'src/node/stdafx.cpp', 'src/node/common/wopenssl.cpp', 'src/node/utils/wlog.cpp', 'src/node/utils/wrap.cpp', 'src/node/utils/wjwt.cpp', 'src/node/utils/wcsp.cpp', 'src/node/pki/wcrl.cpp', 'src/node/pki/wcrls.cpp', 'src/node/pki/wrevoked.cpp', 'src/node/pki/wrevokeds.cpp', 'src/node/pki/wcert.cpp', 'src/node/pki/wcerts.cpp', 'src/node/pki/wattr.cpp', 'src/node/pki/wattr_vals.cpp', 'src/node/pki/wext.cpp', 'src/node/pki/wexts.cpp', 'src/node/pki/wkey.cpp', 'src/node/pki/woid.cpp', 'src/node/pki/walg.cpp', 'src/node/pki/wcert_request_info.cpp', 'src/node/pki/wcert_request.cpp', 'src/node/pki/wcipher.cpp', 'src/node/pki/wchain.cpp', 'src/node/pki/wrevocation.cpp', 'src/node/pki/wpkcs12.cpp', 'src/node/store/wcashjson.cpp', 'src/node/store/wpkistore.cpp', 'src/node/store/wsystem.cpp', 'src/node/cms/wsigned_data.cpp', 'src/node/cms/wsigner.cpp', 'src/node/cms/wsigner_id.cpp', 'src/node/cms/wsigners.cpp', 'src/node/cms/wsigner_attrs.cpp', 'src/node/cms/wcmsRecipientInfo.cpp', 'src/node/cms/wcmsRecipientInfos.cpp'], 'xcode_settings': {'OTHER_CPLUSPLUSFLAGS': ['-std=c++11', '-stdlib=libc++'], 'OTHER_LDFLAGS': [], 'GCC_ENABLE_CPP_EXCEPTIONS': 'YES', 'GCC_ENABLE_CPP_RTTI': 'YES', 'MACOSX_DEPLOYMENT_TARGET': '10.7'}, 'conditions': [["OS=='win'", {'sources': ['src/node/store/wmicrosoft.cpp'], 'conditions': [["target_arch=='x64'", {'variables': {'openssl_root%': 'C:/openssl'}}, {'variables': {'openssl_root%': 'C:/openssl'}}]], 'libraries': ['-l<(module_root_dir)/build/Release/wrapper.lib', '-l<(openssl_root)/lib/libeay32.lib', '-lcrypt32.lib'], 'include_dirs': ['<(openssl_root)/include', 'deps/wrapper/include', 'deps/wrapper/jsoncpp'], 'defines': ['CTWRAPPER_STATIC', 'OPENSSL_NO_CTGOSTCP', 'JWT_NO_LICENSE'], 'msbuild_settings': {'Link': {'ImageHasSafeExceptionHandlers': 'false'}}}, {'conditions': [['OS=="linux"', {'libraries': ['-lcrypto']}]], 'libraries': ['-L<(module_root_dir)/build/Release/wrapper.a'], 'include_dirs': ['deps/wrapper/include', 'deps/wrapper/jsoncpp'], 'defines': ['UNIX', 'OPENSSL_NO_CTGOSTCP', 'JWT_NO_LICENSE'], 'cflags_cc+': ['-std=c++11']}]], 'include_dirs': ['<!(node -e "require(\'nan\')")'], 'cflags': [], 'cflags_cc!': ['-fno-rtti', '-fno-exceptions']}]}
""" Common constants for Pipeline. """ AD_FIELD_NAME = 'asof_date' ANNOUNCEMENT_FIELD_NAME = 'announcement_date' CASH_FIELD_NAME = 'cash' BUYBACK_ANNOUNCEMENT_FIELD_NAME = 'buyback_date' DAYS_SINCE_PREV = 'days_since_prev' DAYS_TO_NEXT = 'days_to_next' NEXT_ANNOUNCEMENT = 'next_announcement' PREVIOUS_ANNOUNCEMENT = 'previous_announcement' PREVIOUS_BUYBACK_ANNOUNCEMENT = 'previous_buyback_announcement' PREVIOUS_BUYBACK_CASH = 'previous_buyback_cash' PREVIOUS_BUYBACK_SHARE_COUNT = 'previous_buyback_share_count' SHARE_COUNT_FIELD_NAME = 'share_count' SID_FIELD_NAME = 'sid' TS_FIELD_NAME = 'timestamp'
""" Common constants for Pipeline. """ ad_field_name = 'asof_date' announcement_field_name = 'announcement_date' cash_field_name = 'cash' buyback_announcement_field_name = 'buyback_date' days_since_prev = 'days_since_prev' days_to_next = 'days_to_next' next_announcement = 'next_announcement' previous_announcement = 'previous_announcement' previous_buyback_announcement = 'previous_buyback_announcement' previous_buyback_cash = 'previous_buyback_cash' previous_buyback_share_count = 'previous_buyback_share_count' share_count_field_name = 'share_count' sid_field_name = 'sid' ts_field_name = 'timestamp'
''' urlycue's private modules ''' type(1 or 0 @ 0) # Python >= 3.5 is required
""" urlycue's private modules """ type(1 or 0 @ 0)
with open ("testcopy.txt", "r") as test_copy: chunk_size = 10 read_data = test_copy.read(chunk_size) while len(read_data) > 0: print(read_data) read_data = test_copy.read (chunk_size)
with open('testcopy.txt', 'r') as test_copy: chunk_size = 10 read_data = test_copy.read(chunk_size) while len(read_data) > 0: print(read_data) read_data = test_copy.read(chunk_size)
#!/usr/bin/env python # -*- coding: utf-8 -*- # Author: Dusan Klinec, ph4r05, 2018 def collect(*args, **kwargs): pass def mem_free(*args, **kwargs): return 1000 def mem_alloc(*args, **kwargs): return 100
def collect(*args, **kwargs): pass def mem_free(*args, **kwargs): return 1000 def mem_alloc(*args, **kwargs): return 100
def part01(input, slope_right, slope_down): total = 0 pos = 0 for i in range(0, len(input), slope_down): if input[i][pos] == "#": total += 1 pos = (pos + slope_right) % len(input[i]) return total def part02(input): return part01(input, 1, 1) * part01(input, 3, 1) * part01(input, 5, 1) * part01(input, 7, 1) * part01(input, 1, 2) f = open("input.txt", "r") input = f.read().splitlines() print(part01(input, 3, 1)) #181 print(part02(input)) #1260601650 f.close()
def part01(input, slope_right, slope_down): total = 0 pos = 0 for i in range(0, len(input), slope_down): if input[i][pos] == '#': total += 1 pos = (pos + slope_right) % len(input[i]) return total def part02(input): return part01(input, 1, 1) * part01(input, 3, 1) * part01(input, 5, 1) * part01(input, 7, 1) * part01(input, 1, 2) f = open('input.txt', 'r') input = f.read().splitlines() print(part01(input, 3, 1)) print(part02(input)) f.close()
def meme1(): return str( bytes( list( map( lambda i: i + 48, [ int("49"), int("3c", 16), int("60"), int(str(-16)), int("38", 16), int("41", 12), int("1l", 36), int("2020", 3), int("-100", 4), int("30", 21), int("1o", 26), int("3h", 18), int("2j", 25), int("29", 31), int(str(63), int("1011", 2)), ], ) ) ), "".join(map(lambda c: chr(ord(c) + 12), list("ihZ,"))), )
def meme1(): return str(bytes(list(map(lambda i: i + 48, [int('49'), int('3c', 16), int('60'), int(str(-16)), int('38', 16), int('41', 12), int('1l', 36), int('2020', 3), int('-100', 4), int('30', 21), int('1o', 26), int('3h', 18), int('2j', 25), int('29', 31), int(str(63), int('1011', 2))]))), ''.join(map(lambda c: chr(ord(c) + 12), list('ihZ,'))))
""" aoe2record-to-json utility functions. """ def is_record(path: str) -> bool: """ Is filename a record file? :param (str) path: User-supplied filename. :return: True if filename is valid record file; otherwise False. :rtype: bool """ return path.find("..") == -1 def record(path: str) -> str: """ Get record file path by filename. :param path: User-supplied filename. :return: User-supplied record file. :rtype: str """ return "records/" + path
""" aoe2record-to-json utility functions. """ def is_record(path: str) -> bool: """ Is filename a record file? :param (str) path: User-supplied filename. :return: True if filename is valid record file; otherwise False. :rtype: bool """ return path.find('..') == -1 def record(path: str) -> str: """ Get record file path by filename. :param path: User-supplied filename. :return: User-supplied record file. :rtype: str """ return 'records/' + path
# /app/models.py class Family: def __init__(self): pass def get_tree(self): """ Return tree of all family members """ pass def jsonify(self): pass class Person: def __init__(self): pass def get_profile(self): """ Returns profile of user TODO Juliette try and complete """ pass def jsonify(self): pass
class Family: def __init__(self): pass def get_tree(self): """ Return tree of all family members """ pass def jsonify(self): pass class Person: def __init__(self): pass def get_profile(self): """ Returns profile of user TODO Juliette try and complete """ pass def jsonify(self): pass
# https://leetcode.com/problems/all-possible-full-binary-trees/description/ # # algorithms # Medium (64.1%) # Total Accepted: 3k # Total Submissions: 4.7k # beats 87.00% of python submissions # Definition for a binary tree node. # class TreeNode(object): # def __init__(self, x): # self.val = x # self.left = None # self.right = None class Solution(object): def allPossibleFBT(self, N): """ :type N: int :rtype: List[TreeNode] """ if N & 1 == 0: return [] if N == 1: return [TreeNode(0)] res = [] for i in xrange(1, N / 2 + 1, 2): left_arr = self.allPossibleFBT(i) right_arr = self.allPossibleFBT(N - 1 - i) for left in left_arr: for right in right_arr: root = TreeNode(0) root.left = left root.right = right res.append(root) if i != N - i - 1: root = TreeNode(0) root.left = right root.right = left res.append(root) return res
class Solution(object): def all_possible_fbt(self, N): """ :type N: int :rtype: List[TreeNode] """ if N & 1 == 0: return [] if N == 1: return [tree_node(0)] res = [] for i in xrange(1, N / 2 + 1, 2): left_arr = self.allPossibleFBT(i) right_arr = self.allPossibleFBT(N - 1 - i) for left in left_arr: for right in right_arr: root = tree_node(0) root.left = left root.right = right res.append(root) if i != N - i - 1: root = tree_node(0) root.left = right root.right = left res.append(root) return res
def is_valid(input_line: str) -> bool: min_max, pass_char, password = input_line.split(' ') min_count, max_count = [int(i) for i in min_max.split('-')] pass_char = pass_char.rstrip(':') min_valid = (password[min_count-1] == pass_char) max_valid = (password[max_count-1] == pass_char) ret_val = min_valid ^ max_valid return ret_val if __name__ == '__main__': lines = [i.strip() for i in open('./input_data.csv','r').readlines()] count = 0 for line in lines: if is_valid(line): count += 1 print(count)
def is_valid(input_line: str) -> bool: (min_max, pass_char, password) = input_line.split(' ') (min_count, max_count) = [int(i) for i in min_max.split('-')] pass_char = pass_char.rstrip(':') min_valid = password[min_count - 1] == pass_char max_valid = password[max_count - 1] == pass_char ret_val = min_valid ^ max_valid return ret_val if __name__ == '__main__': lines = [i.strip() for i in open('./input_data.csv', 'r').readlines()] count = 0 for line in lines: if is_valid(line): count += 1 print(count)
X = 'spam' Y = 'eggs' # will swap X, Y = Y, X print((X, Y))
x = 'spam' y = 'eggs' (x, y) = (Y, X) print((X, Y))
fout=open('oops.txt','wt') print('oops, i created a file',file=fout) fout.close() fin=open('oops.txt','rt') po=fin.read() fin.close() print(po)
fout = open('oops.txt', 'wt') print('oops, i created a file', file=fout) fout.close() fin = open('oops.txt', 'rt') po = fin.read() fin.close() print(po)
# Curbrock Summon 3 CURBROCK3 = 9400931 # MOD ID CURBROCKS_ESCAPE_ROUTE_VER3 = 600050050 # MAP ID sm.spawnMob(CURBROCK3, 320, -208, False) sm.createClock(1800) sm.addEvent(sm.invokeAfterDelay(1800000, "warp", CURBROCKS_ESCAPE_ROUTE_VER3, 0)) sm.waitForMobDeath(CURBROCK3) sm.warp(CURBROCKS_ESCAPE_ROUTE_VER3) sm.stopEvents()
curbrock3 = 9400931 curbrocks_escape_route_ver3 = 600050050 sm.spawnMob(CURBROCK3, 320, -208, False) sm.createClock(1800) sm.addEvent(sm.invokeAfterDelay(1800000, 'warp', CURBROCKS_ESCAPE_ROUTE_VER3, 0)) sm.waitForMobDeath(CURBROCK3) sm.warp(CURBROCKS_ESCAPE_ROUTE_VER3) sm.stopEvents()
#! /usr/bin/python class Calculator(object): def add(self, operanda, operandb): return operanda + operandb
class Calculator(object): def add(self, operanda, operandb): return operanda + operandb
#!/usr/bin/python3 def print_matrix_integer(matrix=[[]]): for X in matrix: for Y in X: print('{:d}'.format(Y), end="") if Y != X[-1]: print(' ', end="") print()
def print_matrix_integer(matrix=[[]]): for x in matrix: for y in X: print('{:d}'.format(Y), end='') if Y != X[-1]: print(' ', end='') print()
class Position: """ Coordanates system that uses an 'y' and 'x' notation to represent unequivocally a specific location that goes universally for every object. """ __slots__ = ('y', 'x') @staticmethod def create_collection(first_position: tuple, last_position: tuple): """ Generates the postions between the passed two position index. """ assert type(last_position[0]) == int and type(first_position[0]) == int, \ "'y' must be an int." assert type(first_position[1]) == int and type(last_position[1]) == int, \ "'x' must be an int." return [[Position(y, x) for x in range(first_position[1], last_position[1] + 1)] for y in range(first_position[0], last_position[0] + 1)] def __init__(self, y:int, x:int): self.y = y self.x = x def get_index(self): return (self.y, self.x) def __hash__(self): return hash((self.y, self.x)) def __repr__(self): return f"({self.y}, {self.x})" def __getitem__(self, i): return list(self.get_index())[i] def __eq__(self, other): """ Uses the get_index method to equalize both instannces of position """ try: other_get_index = other.get_index except AttributeError: return False return self.get_index() == other_get_index()
class Position: """ Coordanates system that uses an 'y' and 'x' notation to represent unequivocally a specific location that goes universally for every object. """ __slots__ = ('y', 'x') @staticmethod def create_collection(first_position: tuple, last_position: tuple): """ Generates the postions between the passed two position index. """ assert type(last_position[0]) == int and type(first_position[0]) == int, "'y' must be an int." assert type(first_position[1]) == int and type(last_position[1]) == int, "'x' must be an int." return [[position(y, x) for x in range(first_position[1], last_position[1] + 1)] for y in range(first_position[0], last_position[0] + 1)] def __init__(self, y: int, x: int): self.y = y self.x = x def get_index(self): return (self.y, self.x) def __hash__(self): return hash((self.y, self.x)) def __repr__(self): return f'({self.y}, {self.x})' def __getitem__(self, i): return list(self.get_index())[i] def __eq__(self, other): """ Uses the get_index method to equalize both instannces of position """ try: other_get_index = other.get_index except AttributeError: return False return self.get_index() == other_get_index()
#!/usr/bin/env python3 bday_dict = {} while True: name = input("\nEnter name: ") if len(name) != 0 and type(name) == str: # Check the existence of the name in bday_dict if bday_dict.get(name): print("\n{} found in db".format(name)) print("Name: {}".format(name)) print("Date : {}\n".format(bday_dict[name])) else: print("* {} not found in db, Adding.".format(name)) new_date = input("* Enter bday date of {}: ".format(name)) bday_dict[name] = new_date print("\nExisting names and b'day dates") for _ in bday_dict: print("{} : {}".format(_, bday_dict[_])) else: print("A proper name is required")
bday_dict = {} while True: name = input('\nEnter name: ') if len(name) != 0 and type(name) == str: if bday_dict.get(name): print('\n{} found in db'.format(name)) print('Name: {}'.format(name)) print('Date : {}\n'.format(bday_dict[name])) else: print('* {} not found in db, Adding.'.format(name)) new_date = input('* Enter bday date of {}: '.format(name)) bday_dict[name] = new_date print("\nExisting names and b'day dates") for _ in bday_dict: print('{} : {}'.format(_, bday_dict[_])) else: print('A proper name is required')
N=int(input()) A=list(map(int,input().split())) diff=0 ans=N for i in range(N-1): if A[i]<A[i+1]: diff+=1 ans+=diff else: diff=0 print(ans)
n = int(input()) a = list(map(int, input().split())) diff = 0 ans = N for i in range(N - 1): if A[i] < A[i + 1]: diff += 1 ans += diff else: diff = 0 print(ans)
inFile = open('input.txt') primes = [2, 3, 5, 7, 11, 13, 17, 19, 23, 29, 31, 37, 41, 43, 47, 53, 59, 61, 67, 71, 73, 79, 83, 89, 97] for line in inFile: n = int(line) if n == 0: break lenPrime = len(primes) counter = [0] * lenPrime for i in range(1, n + 1): number = i for i, p in enumerate(primes): while number % p == 0: counter[i] += 1 number /= p while counter[-1] == 0: counter.pop() print ('%3d! = ' % n) + ' '.join(str(c) for c in counter)
in_file = open('input.txt') primes = [2, 3, 5, 7, 11, 13, 17, 19, 23, 29, 31, 37, 41, 43, 47, 53, 59, 61, 67, 71, 73, 79, 83, 89, 97] for line in inFile: n = int(line) if n == 0: break len_prime = len(primes) counter = [0] * lenPrime for i in range(1, n + 1): number = i for (i, p) in enumerate(primes): while number % p == 0: counter[i] += 1 number /= p while counter[-1] == 0: counter.pop() print('%3d! = ' % n) + ' '.join((str(c) for c in counter))
structure = { 'Public_encryption': 'public Alice key for encoding', 'Public_signing': 'public Alice key for signing', 'Message': {'message_id_hash': #message_id_5383710b780583f1f462b6e719071523147cde25a5a47c380126c3395f84b9b3 {'Address': address, #e6jB08WPeBjoPS4Lb4CFRVW/TAWSrGq7MD5OG8NVA794z4GwhlXz7vov1i2w6GLWYkY2vjhCgtux5vUuE+sKC97yMd9X9xhf5V8= 'Files': ['Qm...', 'Qm...', 'Qm...']}}, #... and other messages 'Points': []}
structure = {'Public_encryption': 'public Alice key for encoding', 'Public_signing': 'public Alice key for signing', 'Message': {'message_id_hash': {'Address': address, 'Files': ['Qm...', 'Qm...', 'Qm...']}}, 'Points': []}
# We are dealing with the "Young's Double Slit Experiment" simulation here: # https://github.com/NSLS-II/sirepo-bluesky/blob/master/sirepo_bluesky/tests/SIREPO_SRDB_ROOT/user/SdP3aU5G/srw/00000000/sirepo-data.json RE( optimization_plan( fly_plan=run_fly_sim, bounds=param_bounds, db=db, run_parallel=True, num_interm_vals=1, num_scans_at_once=4, sim_id="00000000", server_name="http://localhost:8000", root_dir=root_dir, watch_name="W60", flyer_name="sirepo_flyer", intensity_name="mean", opt_type="sirepo", max_iter=5, ) )
re(optimization_plan(fly_plan=run_fly_sim, bounds=param_bounds, db=db, run_parallel=True, num_interm_vals=1, num_scans_at_once=4, sim_id='00000000', server_name='http://localhost:8000', root_dir=root_dir, watch_name='W60', flyer_name='sirepo_flyer', intensity_name='mean', opt_type='sirepo', max_iter=5))
""" This module includes wrapper classes for Tool connection parameters """ #pylint: disable=too-few-public-methods class ToolConnection(object): """ Base class for ToolConnection classes used to wrap configuration parameters for tool connections """ #pylint: disable=too-few-public-methods class ToolUsbHidConnection(ToolConnection): """ Helper class wrapping configuration parameters for a connection to a USB HID tool """ serialnumber = None tool_name = None def __init__(self, serialnumber=None, tool_name=None): """ :param tool_name: Tool name as given in USB Product string. Some shortnames are also supported as defined in pyedbglib.hidtransport.toolinfo.py. Set to None if don't care :param serialnumber: USB serial number string. Set to None if don't care """ self.serialnumber = serialnumber self.tool_name = tool_name #pylint: disable=too-few-public-methods class ToolSerialConnection(ToolConnection): """ Helper class wrapping configuration parameters for a connection to a serial port """ serialport = None def __init__(self, serialport="COM1"): self.serialport = serialport
""" This module includes wrapper classes for Tool connection parameters """ class Toolconnection(object): """ Base class for ToolConnection classes used to wrap configuration parameters for tool connections """ class Toolusbhidconnection(ToolConnection): """ Helper class wrapping configuration parameters for a connection to a USB HID tool """ serialnumber = None tool_name = None def __init__(self, serialnumber=None, tool_name=None): """ :param tool_name: Tool name as given in USB Product string. Some shortnames are also supported as defined in pyedbglib.hidtransport.toolinfo.py. Set to None if don't care :param serialnumber: USB serial number string. Set to None if don't care """ self.serialnumber = serialnumber self.tool_name = tool_name class Toolserialconnection(ToolConnection): """ Helper class wrapping configuration parameters for a connection to a serial port """ serialport = None def __init__(self, serialport='COM1'): self.serialport = serialport
'''class Pessoa(object): def __init__(self, nome, idade, peso): self.nome = nome self.idade = idade self.peso = peso def andar(self): print('anda') pessoa1 = Pessoa("Juliana", 23, 75) pessoa2 = Pessoa("Carlos", 39, 72) print(pessoa1.nome) pessoa1.andar() def fatorial(n): if n == 0: return 0 if n == 1: return 1 if n > 1: return fatorial(n-1) * n print(fatorial(5))'''
"""class Pessoa(object): def __init__(self, nome, idade, peso): self.nome = nome self.idade = idade self.peso = peso def andar(self): print('anda') pessoa1 = Pessoa("Juliana", 23, 75) pessoa2 = Pessoa("Carlos", 39, 72) print(pessoa1.nome) pessoa1.andar() def fatorial(n): if n == 0: return 0 if n == 1: return 1 if n > 1: return fatorial(n-1) * n print(fatorial(5))"""
""" Implements a set of ORMs for getting, setting against a database """ class RawJobDescriptionClient(object): raise NotImplementedError
""" Implements a set of ORMs for getting, setting against a database """ class Rawjobdescriptionclient(object): raise NotImplementedError
{ "targets": [ { "target_name": "addon", "sources": ["./src/cpp/nodeBridge.cpp", "./src/cpp/os/windows.cpp"], "include_dirs": [ "<!@(node -p \"require('node-addon-api').include\")" ], 'defines': [ 'NAPI_CPP_EXCEPTIONS' ] } ] }
{'targets': [{'target_name': 'addon', 'sources': ['./src/cpp/nodeBridge.cpp', './src/cpp/os/windows.cpp'], 'include_dirs': ['<!@(node -p "require(\'node-addon-api\').include")'], 'defines': ['NAPI_CPP_EXCEPTIONS']}]}
expected_output = {'interface': {'Eth5/48.106': {'interface_status': 'protocol-down/link-down/admin-up', 'ip_address': '10.81.6.1'}, 'Lo3': {'interface_status': 'protocol-up/link-up/admin-up', 'ip_address': '192.168.205.1'}, 'Po1.102': {'interface_status': 'protocol-up/link-up/admin-up', 'ip_address': '192.168.70.2'}, 'Lo11': {'interface_status': 'protocol-up/link-up/admin-up', 'ip_address': '192.168.151.1'}, 'Vlan23': {'vlan_id': {'23': {'interface_status': 'protocol-up/link-up/admin-up', 'ip_address': '192.168.186.1'}}}, 'Eth5/48.101': {'interface_status': 'protocol-down/link-down/admin-up', 'ip_address': '10.81.1.1'}, 'Eth5/48.102': {'interface_status': 'protocol-down/link-down/admin-up', 'ip_address': '10.81.2.1'}, 'Eth5/48.105': {'interface_status': 'protocol-down/link-down/admin-up', 'ip_address': '10.81.5.1'}, 'Lo2': {'interface_status': 'protocol-up/link-up/admin-up', 'ip_address': '192.168.51.1'}, 'Lo1': {'interface_status': 'protocol-up/link-up/admin-up', 'ip_address': '192.168.154.1'}, 'Eth6/22': {'interface_status': 'protocol-up/link-up/admin-up', 'ip_address': '192.168.145.1'}, 'Po1.101': {'interface_status': 'protocol-up/link-up/admin-up', 'ip_address': '192.168.151.2'}, 'Lo10': {'interface_status': 'protocol-up/link-up/admin-up', 'ip_address': '192.168.64.1'}, 'Po1.103': {'interface_status': 'protocol-up/link-up/admin-up', 'ip_address': '192.168.246.2'}, 'Eth5/48.100': {'interface_status': 'protocol-down/link-down/admin-up', 'ip_address': '10.81.0.1'}, 'Po2.107': {'interface_status': 'protocol-up/link-up/admin-up', 'ip_address': '192.168.66.1'}, 'Eth5/48.103': {'interface_status': 'protocol-down/link-down/admin-up', 'ip_address': '10.81.3.1'}, 'tunnel-te12': {'interface_status': 'protocol-up/link-up/admin-up', 'ip_address': 'unnumbered(loopback0)'}, 'Eth5/48.110': {'interface_status': 'protocol-down/link-down/admin-up', 'ip_address': '10.81.10.1'}, 'Po2.103': {'interface_status': 'protocol-up/link-up/admin-up', 'ip_address': '192.168.19.1'}, 'Lo0': {'interface_status': 'protocol-up/link-up/admin-up', 'ip_address': '192.168.4.1'}, 'Po2.101': {'interface_status': 'protocol-up/link-up/admin-up', 'ip_address': '192.168.135.1'}, 'Po2.100': {'interface_status': 'protocol-up/link-up/admin-up', 'ip_address': '192.168.196.1'}, 'tunnel-te11': {'interface_status': 'protocol-up/link-up/admin-up', 'ip_address': 'unnumbered(loopback0)'}, 'Po2.102': {'interface_status': 'protocol-up/link-up/admin-up', 'ip_address': '192.168.76.1'}, 'Eth5/48.104': {'interface_status': 'protocol-down/link-down/admin-up', 'ip_address': '10.81.4.1'} } }
expected_output = {'interface': {'Eth5/48.106': {'interface_status': 'protocol-down/link-down/admin-up', 'ip_address': '10.81.6.1'}, 'Lo3': {'interface_status': 'protocol-up/link-up/admin-up', 'ip_address': '192.168.205.1'}, 'Po1.102': {'interface_status': 'protocol-up/link-up/admin-up', 'ip_address': '192.168.70.2'}, 'Lo11': {'interface_status': 'protocol-up/link-up/admin-up', 'ip_address': '192.168.151.1'}, 'Vlan23': {'vlan_id': {'23': {'interface_status': 'protocol-up/link-up/admin-up', 'ip_address': '192.168.186.1'}}}, 'Eth5/48.101': {'interface_status': 'protocol-down/link-down/admin-up', 'ip_address': '10.81.1.1'}, 'Eth5/48.102': {'interface_status': 'protocol-down/link-down/admin-up', 'ip_address': '10.81.2.1'}, 'Eth5/48.105': {'interface_status': 'protocol-down/link-down/admin-up', 'ip_address': '10.81.5.1'}, 'Lo2': {'interface_status': 'protocol-up/link-up/admin-up', 'ip_address': '192.168.51.1'}, 'Lo1': {'interface_status': 'protocol-up/link-up/admin-up', 'ip_address': '192.168.154.1'}, 'Eth6/22': {'interface_status': 'protocol-up/link-up/admin-up', 'ip_address': '192.168.145.1'}, 'Po1.101': {'interface_status': 'protocol-up/link-up/admin-up', 'ip_address': '192.168.151.2'}, 'Lo10': {'interface_status': 'protocol-up/link-up/admin-up', 'ip_address': '192.168.64.1'}, 'Po1.103': {'interface_status': 'protocol-up/link-up/admin-up', 'ip_address': '192.168.246.2'}, 'Eth5/48.100': {'interface_status': 'protocol-down/link-down/admin-up', 'ip_address': '10.81.0.1'}, 'Po2.107': {'interface_status': 'protocol-up/link-up/admin-up', 'ip_address': '192.168.66.1'}, 'Eth5/48.103': {'interface_status': 'protocol-down/link-down/admin-up', 'ip_address': '10.81.3.1'}, 'tunnel-te12': {'interface_status': 'protocol-up/link-up/admin-up', 'ip_address': 'unnumbered(loopback0)'}, 'Eth5/48.110': {'interface_status': 'protocol-down/link-down/admin-up', 'ip_address': '10.81.10.1'}, 'Po2.103': {'interface_status': 'protocol-up/link-up/admin-up', 'ip_address': '192.168.19.1'}, 'Lo0': {'interface_status': 'protocol-up/link-up/admin-up', 'ip_address': '192.168.4.1'}, 'Po2.101': {'interface_status': 'protocol-up/link-up/admin-up', 'ip_address': '192.168.135.1'}, 'Po2.100': {'interface_status': 'protocol-up/link-up/admin-up', 'ip_address': '192.168.196.1'}, 'tunnel-te11': {'interface_status': 'protocol-up/link-up/admin-up', 'ip_address': 'unnumbered(loopback0)'}, 'Po2.102': {'interface_status': 'protocol-up/link-up/admin-up', 'ip_address': '192.168.76.1'}, 'Eth5/48.104': {'interface_status': 'protocol-down/link-down/admin-up', 'ip_address': '10.81.4.1'}}}
#!/usr/bin/env python3 grid = {} def sum_neighboors(x, y): sum = 0 for i in range(-1, 2): for k in range(-1, 2): sum = sum + grid.get((x + i, y + k), 0) return sum def print_grid(grid): print("---") for i in range(-10, 10): for k in range(-10, 10): print(grid.get((i, k), 0), end=" ") print() print("---") def move_right(x, y): return x, y + 1 def move_down(x, y): return x - 1, y def move_up(x, y): return x + 1, y def move_left(x, y): return x, y - 1 def change_move(move): if move == move_right: return move_down if move == move_down: return move_left if move == move_left: return move_up if move == move_up: return move_right value = 289326 # Starting point x = 0 y = 0 grid[(x, y)] = 1 steps = 1 next_steps = 1 move = move_right index_loop = 0 while grid[(x, y)] < value: print("Looped: %s times" % index_loop) while steps > 0: print("Moving: %s for %s steps" % (move, steps)) x, y = move(x, y) grid[(x, y)] = sum_neighboors(x, y) if grid[(x, y)] > value: break # Value found, exit early steps = steps - 1 steps = next_steps index_loop = index_loop + 1 next_steps = next_steps + (index_loop % 2) move = change_move(move) print_grid(grid) print(grid[(x, y)])
grid = {} def sum_neighboors(x, y): sum = 0 for i in range(-1, 2): for k in range(-1, 2): sum = sum + grid.get((x + i, y + k), 0) return sum def print_grid(grid): print('---') for i in range(-10, 10): for k in range(-10, 10): print(grid.get((i, k), 0), end=' ') print() print('---') def move_right(x, y): return (x, y + 1) def move_down(x, y): return (x - 1, y) def move_up(x, y): return (x + 1, y) def move_left(x, y): return (x, y - 1) def change_move(move): if move == move_right: return move_down if move == move_down: return move_left if move == move_left: return move_up if move == move_up: return move_right value = 289326 x = 0 y = 0 grid[x, y] = 1 steps = 1 next_steps = 1 move = move_right index_loop = 0 while grid[x, y] < value: print('Looped: %s times' % index_loop) while steps > 0: print('Moving: %s for %s steps' % (move, steps)) (x, y) = move(x, y) grid[x, y] = sum_neighboors(x, y) if grid[x, y] > value: break steps = steps - 1 steps = next_steps index_loop = index_loop + 1 next_steps = next_steps + index_loop % 2 move = change_move(move) print_grid(grid) print(grid[x, y])
#!/usr/bin/env python3 ipchk = "192.168.0.1" # a string tests as True if ipchk: print("Looks like the IP address was set: " + ipchk)
ipchk = '192.168.0.1' if ipchk: print('Looks like the IP address was set: ' + ipchk)
class BloxplorerException(Exception): def __init__(self, message, resource_url, request_method): self.message = message self.resource_url = resource_url self.request_method = request_method def __str__(self): return f'{self.message} (URL: {self.resource_url}, Method: {self.request_method})' class BlockstreamClientError(BloxplorerException): pass class BlockstreamClientTimeout(BloxplorerException): pass class BlockstreamClientNetworkError(BloxplorerException): pass class BlockstreamApiError(BloxplorerException): def __init__(self, message, resource_url, request_method, status_code): super().__init__(message, resource_url, request_method) self.status_code = status_code def __str__(self): return f'{self.message} ' \ f'(URL: {self.resource_url}, Method: {self.request_method}, ' \ f'Status code: {self.status_code})'
class Bloxplorerexception(Exception): def __init__(self, message, resource_url, request_method): self.message = message self.resource_url = resource_url self.request_method = request_method def __str__(self): return f'{self.message} (URL: {self.resource_url}, Method: {self.request_method})' class Blockstreamclienterror(BloxplorerException): pass class Blockstreamclienttimeout(BloxplorerException): pass class Blockstreamclientnetworkerror(BloxplorerException): pass class Blockstreamapierror(BloxplorerException): def __init__(self, message, resource_url, request_method, status_code): super().__init__(message, resource_url, request_method) self.status_code = status_code def __str__(self): return f'{self.message} (URL: {self.resource_url}, Method: {self.request_method}, Status code: {self.status_code})'
__author__ = 'Managed by Q, Inc.', __author_email__ = 'open-source@managedbyq.com' __description__ = 'MBQ Atomiq' __license__ = 'Apache 2.0' __title__ = 'mbq.atomiq' __url__ = 'https://github.com/managedbyq/mbq.atomiq' __version__ = '1.1.0'
__author__ = ('Managed by Q, Inc.',) __author_email__ = 'open-source@managedbyq.com' __description__ = 'MBQ Atomiq' __license__ = 'Apache 2.0' __title__ = 'mbq.atomiq' __url__ = 'https://github.com/managedbyq/mbq.atomiq' __version__ = '1.1.0'
# -*- coding: utf-8 -*- __author__ = "Thomas Bianchi" __copyright__ = "Thomas Bianchi" __license__ = "mit"
__author__ = 'Thomas Bianchi' __copyright__ = 'Thomas Bianchi' __license__ = 'mit'
num1=int(input("enter a num")) num2=int(input("enter a num")) if num1<0 and num2<0: print("enter a positive number") else: sum=0 while(num1>0 and num2>0): sum = num1+num2 print("the sum is",sum) break
num1 = int(input('enter a num')) num2 = int(input('enter a num')) if num1 < 0 and num2 < 0: print('enter a positive number') else: sum = 0 while num1 > 0 and num2 > 0: sum = num1 + num2 print('the sum is', sum) break
def counting_sort(A, B, k): C = [0 for i in range(0, k+1)] for j in A: C[j] += 1 for i in range(1, k+1): C[i] += C[i-1] for n in reversed(A): B[C[n]-1] = n C[n] = C[n] - 1 return B if __name__ == "__main__": myList = [4,0,3,6,1,5,7,0,4] otherList = [0 for i in range(0, len(myList))] print(counting_sort(myList, otherList, 7))
def counting_sort(A, B, k): c = [0 for i in range(0, k + 1)] for j in A: C[j] += 1 for i in range(1, k + 1): C[i] += C[i - 1] for n in reversed(A): B[C[n] - 1] = n C[n] = C[n] - 1 return B if __name__ == '__main__': my_list = [4, 0, 3, 6, 1, 5, 7, 0, 4] other_list = [0 for i in range(0, len(myList))] print(counting_sort(myList, otherList, 7))
class APP: APPLICATION = "denon-commander" AUTHOR = "Aleksander Psuj" VERSION = "V1.0" class CONNECTION: # I recommend to set static IP address on device IP = "192.168.1.150" class DEFAULT: # Default volume from -80 to 18 VOLUME = "-40" # Default input INPUT = "GAME" # Default sound mode SOUND_MODE = "MCH STEREO"
class App: application = 'denon-commander' author = 'Aleksander Psuj' version = 'V1.0' class Connection: ip = '192.168.1.150' class Default: volume = '-40' input = 'GAME' sound_mode = 'MCH STEREO'
def longestSubsequence(A, N): L = [1]*N hm = {} for i in range(1,N): if abs(A[i]-A[i-1]) == 1: L[i] = 1 + L[i-1] elif hm.get(A[i]+1,0) or hm.get(A[i]-1,0): L[i] = 1+max(hm.get(A[i]+1,0), hm.get(A[i]-1,0)) hm[A[i]] = L[i] return max(L) A = [1, 2, 3, 4, 5, 3, 2] N = len(A) print(longestSubsequence(A, N))
def longest_subsequence(A, N): l = [1] * N hm = {} for i in range(1, N): if abs(A[i] - A[i - 1]) == 1: L[i] = 1 + L[i - 1] elif hm.get(A[i] + 1, 0) or hm.get(A[i] - 1, 0): L[i] = 1 + max(hm.get(A[i] + 1, 0), hm.get(A[i] - 1, 0)) hm[A[i]] = L[i] return max(L) a = [1, 2, 3, 4, 5, 3, 2] n = len(A) print(longest_subsequence(A, N))
#reversing a string using loop s = ('Python is the best programming language') reversed_string = '' for i in range(len(s)-1, -1, -1): reversed_string += s[i] print("reversed string: ", reversed_string) exit() #The range() function has two sets of parameters, as follows: #range(stop) #stop: Number of integers (whole numbers) to generate, starting from zero. eg. range(3) == [0, 1, 2]. #range([start], stop[, step]) #start: Starting number of the sequence. #stop: Generate numbers up to, but not including this number. #step: Difference between each number in the sequence.
s = 'Python is the best programming language' reversed_string = '' for i in range(len(s) - 1, -1, -1): reversed_string += s[i] print('reversed string: ', reversed_string) exit()
# math3d_side.py class Side: NEITHER = 'NEITHER' BACK = 'BACK' FRONT = 'FRONT'
class Side: neither = 'NEITHER' back = 'BACK' front = 'FRONT'
"""Defines the StartResponseMock class. Copyright 2013 by Rackspace Hosting, Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. """ class StartResponseMock: """Mock object that represents a WSGI start_response callable Attributes: call_count: Number of times start_response was called. status: HTTP status line, e.g. "785 TPS Cover Sheet not attached". headers: Headers array passed to start_response, per PEP-333 headers_dict: Headers array parsed into a dict to facilitate lookups """ def __init__(self): """Initialize attributes to default values""" self._called = 0 self.status = None self.headers = None self.exc_info = None def __call__(self, status, headers, exc_info=None): """Implements the PEP-3333 start_response protocol""" self._called += 1 self.status = status self.headers = headers self.headers_dict = dict(headers) self.exc_info = exc_info @property def call_count(self): return self._called
"""Defines the StartResponseMock class. Copyright 2013 by Rackspace Hosting, Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. """ class Startresponsemock: """Mock object that represents a WSGI start_response callable Attributes: call_count: Number of times start_response was called. status: HTTP status line, e.g. "785 TPS Cover Sheet not attached". headers: Headers array passed to start_response, per PEP-333 headers_dict: Headers array parsed into a dict to facilitate lookups """ def __init__(self): """Initialize attributes to default values""" self._called = 0 self.status = None self.headers = None self.exc_info = None def __call__(self, status, headers, exc_info=None): """Implements the PEP-3333 start_response protocol""" self._called += 1 self.status = status self.headers = headers self.headers_dict = dict(headers) self.exc_info = exc_info @property def call_count(self): return self._called
first_space = int(input()) end_space = int(input()) magic_num = int(input()) combinations = 0 is_found = False for a in range(first_space, end_space + 1): for b in range(first_space, end_space + 1): combinations +=1 if a + b == magic_num: print(f'Combination N:{combinations} ({a} + {b} = {magic_num})') is_found = True break if is_found: break if not is_found: print(f'{combinations} combinations - neither equals {magic_num}')
first_space = int(input()) end_space = int(input()) magic_num = int(input()) combinations = 0 is_found = False for a in range(first_space, end_space + 1): for b in range(first_space, end_space + 1): combinations += 1 if a + b == magic_num: print(f'Combination N:{combinations} ({a} + {b} = {magic_num})') is_found = True break if is_found: break if not is_found: print(f'{combinations} combinations - neither equals {magic_num}')
#!/bin/python PrimerTypes = ["ForwardPrimer", "ReversePrimer"] FastaRegionPrefix = "REGION_" ClustalCommand = "clustalo"
primer_types = ['ForwardPrimer', 'ReversePrimer'] fasta_region_prefix = 'REGION_' clustal_command = 'clustalo'
# Read two integer numbers and, after that, exchange their values. Print the variable values before and after the exchange, as shown below: a = int(input()) b = int(input()) print(f'Before:\na = {a}\nb = {b}') a, b = b, a print(f'After:\na = {a}\nb = {b}')
a = int(input()) b = int(input()) print(f'Before:\na = {a}\nb = {b}') (a, b) = (b, a) print(f'After:\na = {a}\nb = {b}')
IDENTITY = lambda a: a IF = IDENTITY # boolean values TRUE = lambda a: lambda b: a FALSE = lambda a: lambda b: b # base boolean operations OR = lambda a: lambda b: a(TRUE)(b) AND = lambda a: lambda b: a(b)(FALSE) NOT = lambda a: a(FALSE)(TRUE) # additional boolean operations XOR = lambda a: lambda b: a(b(FALSE)(TRUE))(b(TRUE)(FALSE)) XNOR = lambda a: lambda b: NOT(XOR(a)(b))
identity = lambda a: a if = IDENTITY true = lambda a: lambda b: a false = lambda a: lambda b: b or = lambda a: lambda b: a(TRUE)(b) and = lambda a: lambda b: a(b)(FALSE) not = lambda a: a(FALSE)(TRUE) xor = lambda a: lambda b: a(b(FALSE)(TRUE))(b(TRUE)(FALSE)) xnor = lambda a: lambda b: not(xor(a)(b))
def merge(d, *dicts): """ Recursively merges dictionaries """ for d_update in dicts: if not isinstance(d, dict): raise TypeError("{0} is not a dict".format(d)) dict_merge_pair(d, d_update) return d def dict_merge_pair(d1, d2): """ Recursively merges values from d2 into d1. """ for key in d2: if key in d1 and isinstance(d1[key], dict) and \ isinstance(d2[key], dict): dict_merge_pair(d1[key], d2[key]) else: d1[key] = d2[key] return d1
def merge(d, *dicts): """ Recursively merges dictionaries """ for d_update in dicts: if not isinstance(d, dict): raise type_error('{0} is not a dict'.format(d)) dict_merge_pair(d, d_update) return d def dict_merge_pair(d1, d2): """ Recursively merges values from d2 into d1. """ for key in d2: if key in d1 and isinstance(d1[key], dict) and isinstance(d2[key], dict): dict_merge_pair(d1[key], d2[key]) else: d1[key] = d2[key] return d1
# example to understand variables a = [2, 4, 6] b = a a.append(8) print(b) # example to understand variables scope a = 15; b = 25 def my_function(): global a a = 11; b = 21 my_function() print(a) #11 print(b) #25
a = [2, 4, 6] b = a a.append(8) print(b) a = 15 b = 25 def my_function(): global a a = 11 b = 21 my_function() print(a) print(b)
def multiply(a,b): return a*b def divide(a,b): return a/b
def multiply(a, b): return a * b def divide(a, b): return a / b
expected_output = { "version": { "build_time": "08:13:43 Apr 7, 2021", "firmware_ver": "18r.1.00h", "install_time": "07:14:32 Jun 1, 2021", "slot": { "L1/0": { "name": "L1/0", "primary_ver": "18r.1.00h", "secondary_ver": "18r.1.00h", "status": "ACTIVE", }, "L2/0": { "name": "L2/0", "primary_ver": "18r.1.00h", "secondary_ver": "18r.1.00h", "status": "ACTIVE", }, "L3/0": { "name": "L3/0", "primary_ver": "18r.1.00h", "secondary_ver": "18r.1.00h", "status": "ACTIVE", }, "L4/0": { "name": "L4/0", "primary_ver": "18r.1.00h", "secondary_ver": "18r.1.00h", "status": "ACTIVE", }, "L5/0": { "name": "L5/0", "primary_ver": "18r.1.00h", "secondary_ver": "18r.1.00h", "status": "ACTIVE", }, "L6/0": { "name": "L6/0", "primary_ver": "18r.1.00h", "secondary_ver": "18r.1.00h", "status": "ACTIVE", }, "L7/0": { "name": "L7/0", "primary_ver": "18r.1.00h", "secondary_ver": "18r.1.00h", "status": "ACTIVE", }, "L8/0": { "name": "L8/0", "primary_ver": "18r.1.00h", "secondary_ver": "18r.1.00h", "status": "ACTIVE", }, "M1": { "name": "M1", "primary_ver": "18r.1.00h", "secondary_ver": "18r.1.00h", "status": "ACTIVE", }, "M2": { "name": "M2", "primary_ver": "18r.1.00h", "secondary_ver": "18r.1.00h", "status": "STANDBY", }, }, "system_uptime": "94days 8hrs 25mins 29secs", } }
expected_output = {'version': {'build_time': '08:13:43 Apr 7, 2021', 'firmware_ver': '18r.1.00h', 'install_time': '07:14:32 Jun 1, 2021', 'slot': {'L1/0': {'name': 'L1/0', 'primary_ver': '18r.1.00h', 'secondary_ver': '18r.1.00h', 'status': 'ACTIVE'}, 'L2/0': {'name': 'L2/0', 'primary_ver': '18r.1.00h', 'secondary_ver': '18r.1.00h', 'status': 'ACTIVE'}, 'L3/0': {'name': 'L3/0', 'primary_ver': '18r.1.00h', 'secondary_ver': '18r.1.00h', 'status': 'ACTIVE'}, 'L4/0': {'name': 'L4/0', 'primary_ver': '18r.1.00h', 'secondary_ver': '18r.1.00h', 'status': 'ACTIVE'}, 'L5/0': {'name': 'L5/0', 'primary_ver': '18r.1.00h', 'secondary_ver': '18r.1.00h', 'status': 'ACTIVE'}, 'L6/0': {'name': 'L6/0', 'primary_ver': '18r.1.00h', 'secondary_ver': '18r.1.00h', 'status': 'ACTIVE'}, 'L7/0': {'name': 'L7/0', 'primary_ver': '18r.1.00h', 'secondary_ver': '18r.1.00h', 'status': 'ACTIVE'}, 'L8/0': {'name': 'L8/0', 'primary_ver': '18r.1.00h', 'secondary_ver': '18r.1.00h', 'status': 'ACTIVE'}, 'M1': {'name': 'M1', 'primary_ver': '18r.1.00h', 'secondary_ver': '18r.1.00h', 'status': 'ACTIVE'}, 'M2': {'name': 'M2', 'primary_ver': '18r.1.00h', 'secondary_ver': '18r.1.00h', 'status': 'STANDBY'}}, 'system_uptime': '94days 8hrs 25mins 29secs'}}
# testNamespace.someFunction testNamespace.some_function("", 0, False) # testNamespace.someFunctionWithDefl testNamespace.some_function_with_defl(5, True)
testNamespace.some_function('', 0, False) testNamespace.some_function_with_defl(5, True)
def solve(): n = int(input()) f = [1, 2] + [0] * (n - 2) for i in range(2, n): f[i] = (f[i - 2] + f[i - 1]) % 15746 print(f[n - 1]) solve()
def solve(): n = int(input()) f = [1, 2] + [0] * (n - 2) for i in range(2, n): f[i] = (f[i - 2] + f[i - 1]) % 15746 print(f[n - 1]) solve()
# -*- coding: UTF-8 -*- """Set Operations.""" hero1 = {"smart", "rich", "armored", "martial_artist", "strong"} hero2 = {"smart", "fast", "strong", "invulnerable", "antigravity"} type(hero1) type(hero2) # Attributes for both heros (union) hero1 | hero2 hero1.union(hero2) # Attributes common to both heros (intersection) hero1 & hero2 hero1.intersection(hero2) # Attributes in hero1 that are not in hero2 (difference) hero1 - hero2 hero1.difference(hero2) # Attributes in hero2 that are not in hero1 (difference) hero2 - hero1 hero2.difference(hero1) # Attributes for hero1 or hero2 but not both (symmetric difference) hero1 ^ hero2 hero1.symmetric_difference(hero2)
"""Set Operations.""" hero1 = {'smart', 'rich', 'armored', 'martial_artist', 'strong'} hero2 = {'smart', 'fast', 'strong', 'invulnerable', 'antigravity'} type(hero1) type(hero2) hero1 | hero2 hero1.union(hero2) hero1 & hero2 hero1.intersection(hero2) hero1 - hero2 hero1.difference(hero2) hero2 - hero1 hero2.difference(hero1) hero1 ^ hero2 hero1.symmetric_difference(hero2)
m, n = map(int, input().split()) dicionario = {} for i in range(m): cargo, valor = input().split() dicionario[cargo] = int(valor) for i in range(n): a = input().split() total = 0 while a != ["."]: for word in a: if word in dicionario: total += dicionario[word] a = input().split() print(total)
(m, n) = map(int, input().split()) dicionario = {} for i in range(m): (cargo, valor) = input().split() dicionario[cargo] = int(valor) for i in range(n): a = input().split() total = 0 while a != ['.']: for word in a: if word in dicionario: total += dicionario[word] a = input().split() print(total)
f = lambda seg,c: sum([v[0]/(v[1]+c) for v in seg]) n,t = [int(i) for i in input().split()] seg = [] l,r = -2011,10**9 for i in range(n): seg.append([int(j) for j in input().split()]) l = max(l,-seg[i][1]) c = (l+r)/2 curr = f(seg,c) it = 1000 while abs(curr-t) > 10**(-7) and it > 0: if curr >= t: l = c elif curr < t: r = c c = (l+r)/2 curr = f(seg,c) it -= 1 print(c)
f = lambda seg, c: sum([v[0] / (v[1] + c) for v in seg]) (n, t) = [int(i) for i in input().split()] seg = [] (l, r) = (-2011, 10 ** 9) for i in range(n): seg.append([int(j) for j in input().split()]) l = max(l, -seg[i][1]) c = (l + r) / 2 curr = f(seg, c) it = 1000 while abs(curr - t) > 10 ** (-7) and it > 0: if curr >= t: l = c elif curr < t: r = c c = (l + r) / 2 curr = f(seg, c) it -= 1 print(c)
# Copyright (c) 2020 Graphcore Ltd. All rights reserved # signatures for manually added operators signatures = { 'beginIpuBlock': [['clong'], ['clong'], ['clong']], 'cast': ['Args', ['scalar_type']], 'internalCast': ['Args', ['cstr']], 'constantPad': ['Args', ['clong_list'], ['cfloat']], 'edgePad': ['Args', ['clong_list']], 'optimizerGroup': [['clong'], ['tensor_list']], 'printIpuTensor': ['Args', ['cstr']], 'callCpuOp': [['tensor_list'], ['cstr'], ['node']], 'randomNormal': [ 'Args', ['tensor_shape'], ['cfloat'], ['cfloat'], ['scalar_type', 'None'] ], 'randomUniform': [ 'Args', ['tensor_shape'], ['cfloat'], ['cfloat'], ['scalar_type', 'None'] ], 'recomputationCheckpoint': ['Args'], 'reflectionPad': ['Args', ['clong_list']], 'setAvailableMemory': ['Args', ['cfloat']], 'setMatMulSerialization': ['Args', ['cstr'], ['clong'], ['cint']], 'endForLoop': ['Args', ['clong']] }
signatures = {'beginIpuBlock': [['clong'], ['clong'], ['clong']], 'cast': ['Args', ['scalar_type']], 'internalCast': ['Args', ['cstr']], 'constantPad': ['Args', ['clong_list'], ['cfloat']], 'edgePad': ['Args', ['clong_list']], 'optimizerGroup': [['clong'], ['tensor_list']], 'printIpuTensor': ['Args', ['cstr']], 'callCpuOp': [['tensor_list'], ['cstr'], ['node']], 'randomNormal': ['Args', ['tensor_shape'], ['cfloat'], ['cfloat'], ['scalar_type', 'None']], 'randomUniform': ['Args', ['tensor_shape'], ['cfloat'], ['cfloat'], ['scalar_type', 'None']], 'recomputationCheckpoint': ['Args'], 'reflectionPad': ['Args', ['clong_list']], 'setAvailableMemory': ['Args', ['cfloat']], 'setMatMulSerialization': ['Args', ['cstr'], ['clong'], ['cint']], 'endForLoop': ['Args', ['clong']]}
def post(settings): data = {"dynaconf_merge": True} if settings.get("ADD_BEATLES") is True: data["BANDS"] = ["Beatles"] return data
def post(settings): data = {'dynaconf_merge': True} if settings.get('ADD_BEATLES') is True: data['BANDS'] = ['Beatles'] return data
# Bluerred Image Detection # # Author: Jasonsey # Email: 2627866800@qq.com # # ============================================================================= """global config file""" # ------------------------------net config------------------------ NUM_CLASS = 2 # number of classes CUDA_VISIBLE_DEVICES = '2' # which device to use BATCH_SIZE = 32 # the batch size to train the CNN model PREDICT_GPU_MEMORY = 0.08 # limit the gpu use for each process # ------------------------------queue config----------------------- THRIFT_HOST = '172.18.31.211' # the host of thrift served THRIFT_PORT = 9099 # the port of thrift served THRIFT_NUM_WORKS = 12 # how manny subprocess the thrift use def init_config(): """config the remaining configuration""" global GPUS GPUS = len(CUDA_VISIBLE_DEVICES.split(',')) init_config()
"""global config file""" num_class = 2 cuda_visible_devices = '2' batch_size = 32 predict_gpu_memory = 0.08 thrift_host = '172.18.31.211' thrift_port = 9099 thrift_num_works = 12 def init_config(): """config the remaining configuration""" global GPUS gpus = len(CUDA_VISIBLE_DEVICES.split(',')) init_config()
class Text(): RED = "\033[1;31;1m" GREEN = '\033[1;32;1m' YELLOW = '\033[1;33;1m' UNDERLINE = '\033[4m' def apply(str, format): return(format + str + '\033[0m')
class Text: red = '\x1b[1;31;1m' green = '\x1b[1;32;1m' yellow = '\x1b[1;33;1m' underline = '\x1b[4m' def apply(str, format): return format + str + '\x1b[0m'
# ................................................................................................................. level_dict["bronze"] = { "scheme": "bronze_scheme", "size": (9,6,9), "intro": "bronze", "help": ( "$scale(1.5)mission:\nactivate the exit!\n\n" + \ "to activate the exit\nfeed it with electricity:\n\n" + \ "connect the generator\nwith the motor\n"+ \ "and close the circuit\nwith the wire stones", ), "player": { "position": (0,1,0), }, "exits": [ { "name": "exit", "active": 0, "position": (0,0,0), }, ], "create": """ s = world.getSize() d = 2 world.addObjectAtPos (KikiMotorCylinder (KikiFace.PY), KikiPos (s.x/2, 1, s.z/2)) world.addObjectAtPos (KikiMotorGear (KikiFace.PY), KikiPos (s.x/2, 0, s.z/2)) world.addObjectAtPos (KikiGear (KikiFace.PY), KikiPos (s.x/2-1, s.y-1, s.z/2-1)) world.addObjectAtPos (KikiGenerator (KikiFace.PY), KikiPos (s.x/2+1, s.y-1, s.z/2-1)) #world.addObjectAtPos (KikiHealthAtom (), KikiPos (s.x/2+1, s.y-1, s.z/2+1)) world.addObjectAtPos (KikiBomb (), KikiPos (s.x/2-1, s.y-1, s.z/2+1)) world.addObjectAtPos (KikiWireStone (), KikiPos (s.x/2, s.y-1, s.z/2)) world.addObjectAtPos (KikiWireStone (), KikiPos (s.x/2+1, s.y-2, s.z/2)) world.addObjectAtPos (KikiWireStone (), KikiPos (s.x/2-1, s.y-2, s.z/2)) # floor wire square world.addObjectLine ("KikiWire (KikiFace.PY, 10)", KikiPos (s.x/2-d+1, 0, s.z/2-d), KikiPos (s.x/2+d, 0, s.z/2-d)) world.addObjectLine ("KikiWire (KikiFace.PY, 10)", KikiPos (s.x/2-d+1, 0, s.z/2+d), KikiPos (s.x/2+d, 0, s.z/2+d)) world.addObjectAtPos (KikiWire (KikiFace.PY, 5), KikiPos (s.x/2-d, 0, s.z/2+1)) world.addObjectAtPos (KikiWire (KikiFace.PY, 5), KikiPos (s.x/2-d, 0, s.z/2-1)) world.addObjectAtPos (KikiWire (KikiFace.PY, 13), KikiPos (s.x/2-d, 0, s.z/2)) world.addObjectAtPos (KikiWire (KikiFace.PY, 5), KikiPos (s.x/2+d, 0, s.z/2+1)) world.addObjectAtPos (KikiWire (KikiFace.PY, 5), KikiPos (s.x/2+d, 0, s.z/2-1)) world.addObjectAtPos (KikiWire (KikiFace.PY, 7), KikiPos (s.x/2+d, 0, s.z/2)) # corners of wire square world.addObjectAtPos (KikiWire (KikiFace.PY, 6), KikiPos (s.x/2-d, 0, s.z/2-d)) world.addObjectAtPos (KikiWire (KikiFace.PY, 3), KikiPos (s.x/2-d, 0, s.z/2+d)) world.addObjectAtPos (KikiWire (KikiFace.PY, 9), KikiPos (s.x/2+d, 0, s.z/2+d)) world.addObjectAtPos (KikiWire (KikiFace.PY, 12), KikiPos (s.x/2+d, 0, s.z/2-d)) world.addObjectLine ("KikiWire (KikiFace.PY, 10)", KikiPos (0, 0, s.z/2), KikiPos (s.x/2-d, 0, s.z/2)) world.addObjectLine ("KikiWire (KikiFace.PY, 10)", KikiPos (s.x/2+d+1, 0, s.z/2), KikiPos (s.x, 0, s.z/2)) # ceiling wire square world.addObjectLine ("KikiWire (KikiFace.NY, 10)", KikiPos (s.x/2-d+1, s.y-1, s.z/2-d), KikiPos (s.x/2+d, s.y-1, s.z/2-d)) world.addObjectLine ("KikiWire (KikiFace.NY, 10)", KikiPos (s.x/2-d+1, s.y-1, s.z/2+d), KikiPos (s.x/2+d, s.y-1, s.z/2+d)) world.addObjectAtPos (KikiWire (KikiFace.NY, 5), KikiPos (s.x/2-d, s.y-1, s.z/2+1)) world.addObjectAtPos (KikiWire (KikiFace.NY, 5), KikiPos (s.x/2-d, s.y-1, s.z/2-1)) world.addObjectAtPos (KikiWire (KikiFace.NY, 13), KikiPos (s.x/2-d, s.y-1, s.z/2)) world.addObjectAtPos (KikiWire (KikiFace.NY, 5), KikiPos (s.x/2+d, s.y-1, s.z/2+1)) world.addObjectAtPos (KikiWire (KikiFace.NY, 5), KikiPos (s.x/2+d, s.y-1, s.z/2-1)) world.addObjectAtPos (KikiWire (KikiFace.NY, 7), KikiPos (s.x/2+d, s.y-1, s.z/2)) # corners of wire square world.addObjectAtPos (KikiWire (KikiFace.NY, 3), KikiPos (s.x/2-d, s.y-1, s.z/2-d)) world.addObjectAtPos (KikiWire (KikiFace.NY, 6), KikiPos (s.x/2-d, s.y-1, s.z/2+d)) world.addObjectAtPos (KikiWire (KikiFace.NY, 12), KikiPos (s.x/2+d, s.y-1, s.z/2+d)) world.addObjectAtPos (KikiWire (KikiFace.NY, 9), KikiPos (s.x/2+d, s.y-1, s.z/2-d)) world.addObjectLine ("KikiWire (KikiFace.NY, 10)", KikiPos (0, s.y-1, s.z/2), KikiPos (s.x/2-d, s.y-1, s.z/2)) world.addObjectLine ("KikiWire (KikiFace.NY, 10)", KikiPos (s.x/2+d+1, s.y-1, s.z/2), KikiPos (s.x, s.y-1, s.z/2)) # wall wire lines world.addObjectLine ("KikiWire (KikiFace.PX, 5)", KikiPos ( 0, 0, s.z/2), KikiPos ( 0, s.y, s.z/2)) world.addObjectLine ("KikiWire (KikiFace.NX, 5)", KikiPos (s.x-1, 0, s.z/2), KikiPos (s.x-1, s.y, s.z/2)) """, }
level_dict['bronze'] = {'scheme': 'bronze_scheme', 'size': (9, 6, 9), 'intro': 'bronze', 'help': ('$scale(1.5)mission:\nactivate the exit!\n\n' + 'to activate the exit\nfeed it with electricity:\n\n' + 'connect the generator\nwith the motor\n' + 'and close the circuit\nwith the wire stones',), 'player': {'position': (0, 1, 0)}, 'exits': [{'name': 'exit', 'active': 0, 'position': (0, 0, 0)}], 'create': '\ns = world.getSize()\nd = 2\n\nworld.addObjectAtPos (KikiMotorCylinder (KikiFace.PY), KikiPos (s.x/2, 1, s.z/2))\nworld.addObjectAtPos (KikiMotorGear (KikiFace.PY), KikiPos (s.x/2, 0, s.z/2))\n\nworld.addObjectAtPos (KikiGear (KikiFace.PY), KikiPos (s.x/2-1, s.y-1, s.z/2-1))\nworld.addObjectAtPos (KikiGenerator (KikiFace.PY), KikiPos (s.x/2+1, s.y-1, s.z/2-1))\n \n#world.addObjectAtPos (KikiHealthAtom (), KikiPos (s.x/2+1, s.y-1, s.z/2+1))\nworld.addObjectAtPos (KikiBomb (), KikiPos (s.x/2-1, s.y-1, s.z/2+1))\n\nworld.addObjectAtPos (KikiWireStone (), KikiPos (s.x/2, s.y-1, s.z/2))\nworld.addObjectAtPos (KikiWireStone (), KikiPos (s.x/2+1, s.y-2, s.z/2))\nworld.addObjectAtPos (KikiWireStone (), KikiPos (s.x/2-1, s.y-2, s.z/2))\n\n\n# floor wire square\nworld.addObjectLine ("KikiWire (KikiFace.PY, 10)", KikiPos (s.x/2-d+1, 0, s.z/2-d), KikiPos (s.x/2+d, 0, s.z/2-d))\nworld.addObjectLine ("KikiWire (KikiFace.PY, 10)", KikiPos (s.x/2-d+1, 0, s.z/2+d), KikiPos (s.x/2+d, 0, s.z/2+d))\n\nworld.addObjectAtPos (KikiWire (KikiFace.PY, 5), KikiPos (s.x/2-d, 0, s.z/2+1))\nworld.addObjectAtPos (KikiWire (KikiFace.PY, 5), KikiPos (s.x/2-d, 0, s.z/2-1))\nworld.addObjectAtPos (KikiWire (KikiFace.PY, 13), KikiPos (s.x/2-d, 0, s.z/2))\n\nworld.addObjectAtPos (KikiWire (KikiFace.PY, 5), KikiPos (s.x/2+d, 0, s.z/2+1))\nworld.addObjectAtPos (KikiWire (KikiFace.PY, 5), KikiPos (s.x/2+d, 0, s.z/2-1))\nworld.addObjectAtPos (KikiWire (KikiFace.PY, 7), KikiPos (s.x/2+d, 0, s.z/2))\n\n# corners of wire square\nworld.addObjectAtPos (KikiWire (KikiFace.PY, 6), KikiPos (s.x/2-d, 0, s.z/2-d))\nworld.addObjectAtPos (KikiWire (KikiFace.PY, 3), KikiPos (s.x/2-d, 0, s.z/2+d))\nworld.addObjectAtPos (KikiWire (KikiFace.PY, 9), KikiPos (s.x/2+d, 0, s.z/2+d))\nworld.addObjectAtPos (KikiWire (KikiFace.PY, 12), KikiPos (s.x/2+d, 0, s.z/2-d))\n\nworld.addObjectLine ("KikiWire (KikiFace.PY, 10)", KikiPos (0, 0, s.z/2), KikiPos (s.x/2-d, 0, s.z/2))\nworld.addObjectLine ("KikiWire (KikiFace.PY, 10)", KikiPos (s.x/2+d+1, 0, s.z/2), KikiPos (s.x, 0, s.z/2))\n\n# ceiling wire square\nworld.addObjectLine ("KikiWire (KikiFace.NY, 10)", KikiPos (s.x/2-d+1, s.y-1, s.z/2-d), KikiPos (s.x/2+d, s.y-1, s.z/2-d))\nworld.addObjectLine ("KikiWire (KikiFace.NY, 10)", KikiPos (s.x/2-d+1, s.y-1, s.z/2+d), KikiPos (s.x/2+d, s.y-1, s.z/2+d))\n\nworld.addObjectAtPos (KikiWire (KikiFace.NY, 5), KikiPos (s.x/2-d, s.y-1, s.z/2+1))\nworld.addObjectAtPos (KikiWire (KikiFace.NY, 5), KikiPos (s.x/2-d, s.y-1, s.z/2-1))\nworld.addObjectAtPos (KikiWire (KikiFace.NY, 13), KikiPos (s.x/2-d, s.y-1, s.z/2))\n\nworld.addObjectAtPos (KikiWire (KikiFace.NY, 5), KikiPos (s.x/2+d, s.y-1, s.z/2+1))\nworld.addObjectAtPos (KikiWire (KikiFace.NY, 5), KikiPos (s.x/2+d, s.y-1, s.z/2-1))\nworld.addObjectAtPos (KikiWire (KikiFace.NY, 7), KikiPos (s.x/2+d, s.y-1, s.z/2))\n\n# corners of wire square\nworld.addObjectAtPos (KikiWire (KikiFace.NY, 3), KikiPos (s.x/2-d, s.y-1, s.z/2-d))\nworld.addObjectAtPos (KikiWire (KikiFace.NY, 6), KikiPos (s.x/2-d, s.y-1, s.z/2+d))\nworld.addObjectAtPos (KikiWire (KikiFace.NY, 12), KikiPos (s.x/2+d, s.y-1, s.z/2+d))\nworld.addObjectAtPos (KikiWire (KikiFace.NY, 9), KikiPos (s.x/2+d, s.y-1, s.z/2-d))\n\nworld.addObjectLine ("KikiWire (KikiFace.NY, 10)", KikiPos (0, s.y-1, s.z/2), KikiPos (s.x/2-d, s.y-1, s.z/2))\nworld.addObjectLine ("KikiWire (KikiFace.NY, 10)", KikiPos (s.x/2+d+1, s.y-1, s.z/2), KikiPos (s.x, s.y-1, s.z/2))\n\n# wall wire lines\nworld.addObjectLine ("KikiWire (KikiFace.PX, 5)", KikiPos ( 0, 0, s.z/2), KikiPos ( 0, s.y, s.z/2))\nworld.addObjectLine ("KikiWire (KikiFace.NX, 5)", KikiPos (s.x-1, 0, s.z/2), KikiPos (s.x-1, s.y, s.z/2))\n\n'}
# parsetab.py # This file is automatically generated. Do not edit. _tabversion = '3.10' _lr_method = 'LALR' _lr_signature = 'leftIDleftNUMBERINFINITYleftBEGIN_CASEEND_CASEBEGIN_BMATRIXEND_BMATRIXBEGIN_PMATRIXEND_PMATRIXBACKSLASHESleftINTEGRALDIFFERENTIALDIEPARTIALLIMITTOrightCOMMArightPIPErightLPARENRPARENrightLBRACERBRACELBRACKETRBRACKETFRACleftPIPRIMErightLEGELTGTEQNEQleftINrightDOTSleftSUMPRODleftFACTORIALleftPLUSMINUSleftTIMESDIVIDEMODCHOOSEDOTleftUPLUSUMINUSrightCARETleftLFLOORRFLOORLCEILRCEILSINHASINHSINASINCOSHACOSHCOSACOSTANHATANHTANATANSECASECCSCACSCCOTHACOTHCOTACOTSQRTLNLOGEXPGCDDEGGRADIENTDETERMINANTCROSSFRAC NUMBER PLUS MINUS TIMES DIVIDE LPAREN RPAREN LBRACKET RBRACKET LBRACE RBRACE LFLOOR RFLOOR LCEIL RCEIL ASINH SINH ASIN SIN ACOSH COSH ACOS COS ATANH TANH ATAN TAN ASEC SEC ACSC CSC ACOTH COTH ACOT COT SQRT LOG LN EXP MOD CARET COMMA ID PIPE INFINITY UNDERLINE INTEGRAL DIFFERENTIAL D I E PARTIAL SUM PROD IN DOTS EQ NEQ LT LE GT GE FACTORIAL PERCENT ETA_LOWER ZETA_LOWER PHI_LOWER PSI_LOWER SIGMA_LOWER DELTA_LOWER THETA_LOWER LAMBDA_LOWER EPSILON_LOWER TAU_LOWER KAPPA_LOWER OMEGA_LOWER ALPHA_LOWER XI_LOWER CHI_LOWER NU_LOWER RHO_LOWER OMICRON_LOWER UPSILON_LOWER IOTA_LOWER BETA_LOWER GAMMA_LOWER MU_LOWER PI_UPPER PI BETA GAMMA MU KAPPA OMICRON OMEGA LAMBDA IOTA PSI PHI SIGMA ETA ZETA THETA EPSILON TAU ALPHA XI CHI NU RHO UPSILON LIMIT TO PRIME GCD DEG CHOOSE GRADIENT LAPLACIAN BEGIN_CASE END_CASE BACKSLASHES BEGIN_BMATRIX END_BMATRIX BEGIN_PMATRIX END_PMATRIX BEGIN_VMATRIX END_VMATRIX BEGIN_NMATRIX END_NMATRIX AMPERSAND DETERMINANT CROSS DOTMAIN : Expression\n | Constraint\n | ConstraintSystemFactor : NUMBER\n | ImaginaryNumber\n | NapierNumber\n | ID\n | INFINITY\n | Symbol\n | IteratedExpression\n | DivisorFunction\n | Derivative\n | Integral\n | Limit\n | DifferentialVariable\n | ChooseExpression\n | Matrix\n | Determinant\n | Norm\n | FractionalExpression\n | ID CARET LBRACE Expression RBRACE\n | LPAREN Expression RPARENTerm : Term TIMES Factor\n | Term DOT Factor\n | Term CROSS Factor\n | Term DIVIDE Factor\n | Term MOD Factor\n | Term CARET LBRACE Expression RBRACE\n | FactorExpression : Expression PLUS Term\n | Expression MINUS Term\n | TermFactor : PLUS Expression %prec UPLUS\n | MINUS Expression %prec UMINUSFactor : NUMBER FACTORIAL\n | ID FACTORIAL\n | LPAREN Expression RPAREN FACTORIAL\n | NUMBER PERCENT\n | ID PERCENT\n | LPAREN Expression RPAREN PERCENTFractionalExpression : FRAC LBRACE Expression RBRACE LBRACE Expression RBRACEFactor : SQRT LBRACE Expression RBRACE\n\n | SQRT LBRACKET NUMBER RBRACKET LBRACE Expression RBRACE\n \n | LFLOOR Expression RFLOOR\n \n | LCEIL Expression RCEIL\n \n | PIPE Expression PIPE\n\n | ASINH LPAREN Expression RPAREN\n \n | ASINH ID\n\n | ASINH NUMBER\n\n | SINH LPAREN Expression RPAREN\n \n | SINH ID\n\n | SINH NUMBER\n \n | ASIN LPAREN Expression RPAREN\n\n | ASIN ID\n\n | ASIN NUMBER\n\n | SIN LPAREN Expression RPAREN\n \n | SIN ID\n\n | SIN NUMBER\n\n | ACOSH LPAREN Expression RPAREN\n\n | ACOSH ID\n\n | ACOSH NUMBER\n\n | COSH LPAREN Expression RPAREN\n\n | COSH ID\n\n | COSH NUMBER\n\n | ACOS LPAREN Expression RPAREN\n\n | ACOS ID\n\n | ACOS NUMBER\n\n | COS LPAREN Expression RPAREN\n\n | COS ID\n\n | COS NUMBER\n\n | ATANH LPAREN Expression RPAREN\n\n | ATANH ID\n\n | ATANH NUMBER\n\n | TANH LPAREN Expression RPAREN\n\n | TANH ID\n\n | TANH NUMBER\n\n | ATAN LPAREN Expression COMMA Expression RPAREN\n | ATAN LPAREN Expression RPAREN\n \n | ATAN ID\n\n | ATAN NUMBER\n\n | TAN LPAREN Expression RPAREN\n\n | TAN ID\n\n | TAN NUMBER\n\n | ASEC LPAREN Expression RPAREN\n\n | ASEC ID\n\n | ASEC NUMBER\n\n | SEC LPAREN Expression RPAREN\n \n | SEC ID\n\n | SEC NUMBER\n\n | ACSC LPAREN Expression RPAREN\n\n | ACSC ID\n\n | ACSC NUMBER\n\n | CSC LPAREN Expression RPAREN\n\n | CSC ID\n\n | CSC NUMBER\n\n | ACOTH LPAREN Expression RPAREN\n\n | ACOTH ID\n\n | ACOTH NUMBER\n\n | COTH LPAREN Expression RPAREN\n\n | COTH ID\n\n | COTH NUMBER\n\n | ACOT LPAREN Expression RPAREN\n\n | ACOT ID\n\n | ACOT NUMBER\n\n | COT LPAREN Expression RPAREN\n\n | COT ID\n\n | COT NUMBER\n \n | LOG LPAREN Expression RPAREN\n\n | LOG ID\n\n | LOG NUMBER\n\n | LOG UNDERLINE LBRACE NUMBER RBRACE LPAREN Expression RPAREN\n \n | LN LPAREN Expression RPAREN\n\n | LN ID\n\n | LN NUMBER\n \n | EXP LPAREN Expression RPAREN\n\n | EXP ID\n\n | EXP NUMBER\n\n | GCD LPAREN ExpressionList RPAREN\n\n | GCD ID\n\n | GCD NUMBER\n\n | DEG LPAREN ExpressionList RPAREN\n\n | DEG ID\n\n | DEG NUMBER\n\n | GRADIENT LPAREN ExpressionList RPAREN\n\n | GRADIENT ID\n\n | GRADIENT NUMBER\n\n | GRADIENT DOT LPAREN ExpressionList RPAREN\n\n | GRADIENT DOT ID\n\n | GRADIENT DOT NUMBER\n\n | GRADIENT CROSS LPAREN ExpressionList RPAREN\n \n | GRADIENT CROSS ID\n \n | GRADIENT CROSS NUMBER\n \n | LAPLACIAN LPAREN Expression RPAREN\n \n | LAPLACIAN NUMBER\n \n | LAPLACIAN ID\n \n | DETERMINANT LPAREN Matrix RPAREN\n \n | DETERMINANT Matrix\n\n | Symbol LPAREN ExpressionList RPAREN\n \n | ID LPAREN ExpressionList RPAREN\n \n | ID LPAREN RPARENRange : Expression DOTS ExpressionIndexingExpression : ID IN RangeIteratedExpression : SUM UNDERLINE LBRACE IndexingExpression RBRACE Expression\n | SUM UNDERLINE LBRACE ID EQ Expression RBRACE CARET LBRACE Expression RBRACE Expression\n | PROD UNDERLINE LBRACE IndexingExpression RBRACE Expression\n | PROD UNDERLINE LBRACE ID EQ Expression RBRACE CARET LBRACE Expression RBRACE ExpressionIntegral : INTEGRAL UNDERLINE LBRACE Expression RBRACE CARET LBRACE Expression RBRACE Expression DIFFERENTIAL\n | INTEGRAL UNDERLINE LBRACE Expression RBRACE Expression DIFFERENTIAL\n | INTEGRAL CARET LBRACE Expression RBRACE Expression DIFFERENTIAL\n | INTEGRAL Expression DIFFERENTIALDerivative : FRAC LBRACE D RBRACE LBRACE DIFFERENTIAL RBRACE Expression\n | FRAC LBRACE D CARET LBRACE NUMBER RBRACE RBRACE LBRACE DIFFERENTIAL CARET LBRACE NUMBER RBRACE RBRACE ExpressionDerivative : FRAC LBRACE D Expression RBRACE LBRACE DIFFERENTIAL RBRACE\n | FRAC LBRACE D CARET LBRACE NUMBER RBRACE Expression RBRACE LBRACE DIFFERENTIAL CARET LBRACE NUMBER RBRACE RBRACEDerivative : FRAC LBRACE PARTIAL RBRACE LBRACE PARTIAL ID RBRACE Expression\n | FRAC LBRACE PARTIAL CARET LBRACE NUMBER RBRACE RBRACE LBRACE PARTIAL ID CARET LBRACE NUMBER RBRACE RBRACE ExpressionDerivative : FRAC LBRACE PARTIAL Expression RBRACE LBRACE PARTIAL ID RBRACE\n | FRAC LBRACE PARTIAL CARET LBRACE NUMBER RBRACE Expression RBRACE LBRACE PARTIAL ID CARET LBRACE NUMBER RBRACE RBRACEDivisorFunction : SIGMA_LOWER UNDERLINE LBRACE NUMBER RBRACE LPAREN ExpressionList RPARENImaginaryNumber : I\n | NUMBER INapierNumber : E\n | NUMBER EDifferentialVariable : ID PrimeList LPAREN ExpressionList RPAREN\n | ID PrimeListDifferentialVariable : ID CARET LBRACE LPAREN NUMBER RPAREN RBRACE LPAREN ExpressionList RPAREN\n | ID CARET LBRACE LPAREN NUMBER RPAREN RBRACEChooseExpression : LBRACE Expression CHOOSE Expression RBRACELimit : LIMIT UNDERLINE LBRACE ID TO Expression RBRACE Expression\n | LIMIT UNDERLINE LBRACE ID TO Expression PLUS RBRACE Expression\n | LIMIT UNDERLINE LBRACE ID TO Expression MINUS RBRACE Expression\n | LIMIT UNDERLINE LBRACE ID TO Expression CARET LBRACE PLUS RBRACE RBRACE Expression\n | LIMIT UNDERLINE LBRACE ID TO Expression CARET LBRACE MINUS RBRACE RBRACE Expression\n | LIMIT UNDERLINE LBRACE ID TO Term CARET LBRACE PLUS RBRACE RBRACE Expression\n | LIMIT UNDERLINE LBRACE ID TO Term CARET LBRACE MINUS RBRACE RBRACE ExpressionConstraintSystem : BEGIN_CASE Constraints END_CASE\n | BEGIN_CASE Constraints BACKSLASHES END_CASEConstraints : Constraints BACKSLASHES Constraint\n | ConstraintDeterminant : BEGIN_VMATRIX ExpressionsRows END_VMATRIX\n | BEGIN_VMATRIX ExpressionsRows BACKSLASHES END_VMATRIXNorm : BEGIN_NMATRIX ExpressionsRows END_NMATRIX\n | BEGIN_NMATRIX ExpressionsRows BACKSLASHES END_NMATRIXMatrix : BEGIN_BMATRIX ExpressionsRows END_BMATRIX\n | BEGIN_BMATRIX ExpressionsRows BACKSLASHES END_BMATRIX\n\n | BEGIN_PMATRIX ExpressionsRows END_PMATRIX\n | BEGIN_PMATRIX ExpressionsRows BACKSLASHES END_PMATRIXExpressionsRow : ExpressionsRow AMPERSAND Expression\n | ExpressionExpressionsRows : ExpressionsRows BACKSLASHES ExpressionsRow\n | ExpressionsRowExpressionList : ExpressionList COMMA Expression\n | ExpressionPrimeList : PrimeList PRIME\n | PRIMEConstraint : Expression EQ Expression\n | Expression NEQ Expression\n | Expression LT Expression\n | Expression LE Expression\n | Expression GT Expression\n | Expression GE ExpressionSymbol : PI\n | XI_LOWER\n | CHI_LOWER\n | PHI_LOWER\n | PSI_LOWER\n | SIGMA_LOWER\n | ZETA_LOWER\n | ETA_LOWER\n | DELTA_LOWER\n | THETA_LOWER\n | LAMBDA_LOWER\n | EPSILON_LOWER\n | TAU_LOWER\n | KAPPA_LOWER\n | OMEGA_LOWER\n | ALPHA_LOWER\n | NU_LOWER\n | RHO_LOWER\n | OMICRON_LOWER\n | UPSILON_LOWER\n | IOTA_LOWER\n | BETA_LOWER\n | GAMMA_LOWER\n | MU_LOWER\n | PI_UPPER\n | BETA\n | GAMMA\n | KAPPA\n | OMICRON\n | OMEGA\n | LAMBDA\n | IOTA\n | PSI\n | MU\n | PHI\n | SIGMA\n | ETA\n | ZETA\n | THETA\n | EPSILON\n | TAU\n | ALPHA\n | XI\n | CHI\n | NU\n | RHO\n | UPSILON' _lr_action_items = {'LFLOOR':([0,1,6,15,18,38,47,52,70,78,87,94,100,108,121,125,129,132,136,139,141,144,148,154,157,161,163,167,172,173,174,175,176,178,181,186,189,193,196,200,203,206,207,208,209,210,211,212,213,217,227,230,233,237,244,248,251,254,265,266,272,280,281,282,290,301,311,315,316,322,325,329,331,335,345,355,398,407,415,420,421,422,423,424,426,427,433,444,451,459,460,461,462,464,466,471,475,479,482,483,488,498,499,500,511,512,513,527,528,529,530,535,536,557,562,],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,]),'LAPLACIAN':([0,1,6,15,18,38,47,52,70,78,87,94,100,108,121,125,129,132,136,139,141,144,148,154,157,161,163,167,172,173,174,175,176,178,181,186,189,193,196,200,203,206,207,208,209,210,211,212,213,217,227,230,233,237,244,248,251,254,265,266,272,280,281,282,290,301,311,315,316,322,325,329,331,335,345,355,398,407,415,420,421,422,423,424,426,427,433,444,451,459,460,461,462,464,466,471,475,479,482,483,488,498,499,500,511,512,513,527,528,529,530,535,536,557,562,],[3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,]),'LBRACKET':([114,],[252,]),'LIMIT':([0,1,6,15,18,38,47,52,70,78,87,94,100,108,121,125,129,132,136,139,141,144,148,154,157,161,163,167,172,173,174,175,176,178,181,186,189,193,196,200,203,206,207,208,209,210,211,212,213,217,227,230,233,237,244,248,251,254,265,266,272,280,281,282,290,301,311,315,316,322,325,329,331,335,345,355,398,407,415,420,421,422,423,424,426,427,433,444,451,459,460,461,462,464,466,471,475,479,482,483,488,498,499,500,511,512,513,527,528,529,530,535,536,557,562,],[4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,]),'EXP':([0,1,6,15,18,38,47,52,70,78,87,94,100,108,121,125,129,132,136,139,141,144,148,154,157,161,163,167,172,173,174,175,176,178,181,186,189,193,196,200,203,206,207,208,209,210,211,212,213,217,227,230,233,237,244,248,251,254,265,266,272,280,281,282,290,301,311,315,316,322,325,329,331,335,345,355,398,407,415,420,421,422,423,424,426,427,433,444,451,459,460,461,462,464,466,471,475,479,482,483,488,498,499,500,511,512,513,527,528,529,530,535,536,557,562,],[5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,]),'SIN':([0,1,6,15,18,38,47,52,70,78,87,94,100,108,121,125,129,132,136,139,141,144,148,154,157,161,163,167,172,173,174,175,176,178,181,186,189,193,196,200,203,206,207,208,209,210,211,212,213,217,227,230,233,237,244,248,251,254,265,266,272,280,281,282,290,301,311,315,316,322,325,329,331,335,345,355,398,407,415,420,421,422,423,424,426,427,433,444,451,459,460,461,462,464,466,471,475,479,482,483,488,498,499,500,511,512,513,527,528,529,530,535,536,557,562,],[42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,]),'TAU':([0,1,6,15,18,38,47,52,70,78,87,94,100,108,121,125,129,132,136,139,141,144,148,154,157,161,163,167,172,173,174,175,176,178,181,186,189,193,196,200,203,206,207,208,209,210,211,212,213,217,227,230,233,237,244,248,251,254,265,266,272,280,281,282,290,301,311,315,316,322,325,329,331,335,345,355,398,407,415,420,421,422,423,424,426,427,433,444,451,459,460,461,462,464,466,471,475,479,482,483,488,498,499,500,511,512,513,527,528,529,530,535,536,557,562,],[8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,]),'RPAREN':([2,7,8,9,11,12,13,17,21,22,23,25,26,27,28,30,31,32,33,34,35,37,39,43,45,48,49,53,54,55,63,64,65,66,68,69,72,73,74,75,76,79,80,81,82,83,85,86,88,89,90,91,92,95,97,101,103,104,105,106,107,109,110,112,113,116,117,118,120,122,124,126,127,128,130,131,133,134,135,137,140,142,143,145,147,149,153,155,156,158,159,160,162,164,165,166,177,179,180,182,185,187,188,190,192,194,195,197,198,202,204,215,218,222,223,224,225,226,228,229,231,232,234,236,238,239,241,242,243,244,245,246,249,253,255,256,257,259,260,261,262,263,264,268,269,271,274,275,276,277,278,279,283,284,285,286,287,288,289,292,293,295,296,297,298,299,300,302,308,309,312,314,317,318,319,320,321,323,324,326,327,328,330,332,333,334,336,339,340,342,343,344,346,354,356,358,361,362,363,364,365,366,370,371,375,376,379,380,381,382,383,384,385,387,390,391,392,393,394,395,396,399,400,401,402,403,404,406,408,416,418,419,428,429,430,431,432,443,448,450,468,469,473,474,476,477,478,481,486,487,492,496,503,504,507,510,514,526,537,538,539,540,541,546,547,560,561,564,565,],[-218,-17,-242,-18,-216,-205,-6,-233,-245,-236,-14,-10,-13,-238,-247,-237,-210,-20,-207,-209,-29,-12,-228,-5,-202,-32,-234,-212,-235,-213,-215,-203,-204,-211,-222,-9,-162,-206,-244,-229,-208,-219,-214,-227,-226,-240,-231,-246,-16,-224,-225,-11,-15,-4,-19,-248,-217,-220,-8,-221,-160,-239,-7,-241,-230,-243,-232,-223,-134,-135,-117,-116,-34,-98,-97,-120,-119,-33,-83,-82,-80,-79,-49,-48,-86,-85,-123,-122,-76,-75,-58,-57,-67,-66,-104,-103,-95,-94,-101,-100,-70,-69,-107,-106,-73,-72,-64,-63,-137,-89,-88,-110,-109,-35,-161,-38,-163,-52,-51,-55,-54,-114,-113,-92,-91,324,-195,-36,-39,326,-165,-126,-125,-61,-60,-44,340,342,343,344,-193,346,-45,354,356,358,361,362,363,364,365,-182,-26,-25,-23,-24,-27,370,371,375,376,379,380,381,382,-46,383,-186,-30,-31,-184,387,-150,390,391,392,-180,394,-22,-140,399,-194,-132,-131,402,-129,-128,406,-133,-115,-96,-118,-81,-78,-47,-84,-121,-74,-56,-65,-102,-183,-93,-99,-68,-105,-71,-62,-136,-138,-87,-187,-185,-108,-50,-53,-112,-181,-90,-37,-40,-139,430,431,-124,432,-42,-59,-192,443,-28,-168,-21,455,-164,-130,-127,-77,-145,-143,-41,492,496,-149,-148,-167,-43,-169,-153,-151,-159,-111,-171,-170,-155,-157,526,-166,-147,-175,-174,-173,-172,-146,-144,-154,-152,-156,-158,]),'ACOTH':([0,1,6,15,18,38,47,52,70,78,87,94,100,108,121,125,129,132,136,139,141,144,148,154,157,161,163,167,172,173,174,175,176,178,181,186,189,193,196,200,203,206,207,208,209,210,211,212,213,217,227,230,233,237,244,248,251,254,265,266,272,280,281,282,290,301,311,315,316,322,325,329,331,335,345,355,398,407,415,420,421,422,423,424,426,427,433,444,451,459,460,461,462,464,466,471,475,479,482,483,488,498,499,500,511,512,513,527,528,529,530,535,536,557,562,],[10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,]),'OMEGA_LOWER':([0,1,6,15,18,38,47,52,70,78,87,94,100,108,121,125,129,132,136,139,141,144,148,154,157,161,163,167,172,173,174,175,176,178,181,186,189,193,196,200,203,206,207,208,209,210,211,212,213,217,227,230,233,237,244,248,251,254,265,266,272,280,281,282,290,301,311,315,316,322,325,329,331,335,345,355,398,407,415,420,421,422,423,424,426,427,433,444,451,459,460,461,462,464,466,471,475,479,482,483,488,498,499,500,511,512,513,527,528,529,530,535,536,557,562,],[11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,]),'LT':([2,7,8,9,11,12,13,17,21,22,23,25,26,27,28,30,31,32,33,34,35,37,39,43,45,48,49,53,54,55,63,64,65,66,68,69,72,73,74,75,76,79,80,81,82,83,84,85,86,88,89,90,91,92,95,97,101,103,104,105,106,107,109,110,112,113,116,117,118,120,122,124,126,127,128,130,131,133,134,135,137,140,142,143,145,147,149,151,153,155,156,158,159,160,162,164,165,166,177,179,180,182,185,187,188,190,192,194,195,197,198,202,204,215,218,222,223,224,225,226,228,229,231,232,234,236,238,241,242,243,245,246,249,253,255,256,264,279,283,284,285,286,287,299,302,308,309,312,317,321,324,326,328,330,332,334,336,340,342,343,344,346,354,356,358,361,362,363,364,365,366,370,371,375,376,379,380,381,382,383,384,385,387,390,391,392,393,394,395,396,399,402,404,406,418,419,428,430,431,432,443,448,450,468,474,476,477,478,481,486,487,492,496,503,504,507,510,526,537,538,539,540,541,546,547,560,561,564,565,],[-218,-17,-242,-18,-216,-205,-6,-233,-245,-236,-14,-10,-13,-238,-247,-237,-210,-20,-207,-209,-29,-12,-228,-5,-202,-32,-234,-212,-235,-213,-215,-203,-204,-211,-222,-9,-162,-206,-244,-229,-208,-219,-214,-227,-226,-240,209,-231,-246,-16,-224,-225,-11,-15,-4,-19,-248,-217,-220,-8,-221,-160,-239,-7,-241,-230,-243,-232,-223,-134,-135,-117,-116,-34,-98,-97,-120,-119,-33,-83,-82,-80,-79,-49,-48,-86,-85,209,-123,-122,-76,-75,-58,-57,-67,-66,-104,-103,-95,-94,-101,-100,-70,-69,-107,-106,-73,-72,-64,-63,-137,-89,-88,-110,-109,-35,-161,-38,-163,-52,-51,-55,-54,-114,-113,-92,-91,-195,-36,-39,-165,-126,-125,-61,-60,-44,-45,-182,-26,-25,-23,-24,-27,-46,-186,-30,-31,-184,-150,-180,-22,-140,-194,-132,-131,-129,-128,-133,-115,-96,-118,-81,-78,-47,-84,-121,-74,-56,-65,-102,-183,-93,-99,-68,-105,-71,-62,-136,-138,-87,-187,-185,-108,-50,-53,-112,-181,-90,-37,-40,-139,-124,-42,-59,-28,-168,-21,-164,-130,-127,-77,-145,-143,-41,-149,-148,-167,-43,-169,-153,-151,-159,-111,-171,-170,-155,-157,-166,-147,-175,-174,-173,-172,-146,-144,-154,-152,-156,-158,]),'PLUS':([0,1,2,6,7,8,9,11,12,13,15,17,18,21,22,23,25,26,27,28,30,31,32,33,34,35,37,38,39,43,45,47,48,49,52,53,54,55,63,64,65,66,68,69,70,72,73,74,75,76,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,94,95,97,100,101,103,104,105,106,107,108,109,110,112,113,116,117,118,119,120,121,122,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,147,148,149,151,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,170,172,173,174,175,176,177,178,179,180,181,182,183,185,186,187,188,189,190,192,193,194,195,196,197,198,200,201,202,203,204,206,207,208,209,210,211,212,213,215,217,218,221,222,223,224,225,226,227,228,229,230,231,232,233,234,236,237,238,239,241,242,243,244,245,246,248,249,251,253,254,255,256,257,259,260,262,263,264,265,266,267,268,269,271,272,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,292,293,295,296,299,300,301,302,303,304,305,306,307,308,309,310,311,312,314,315,316,317,318,319,320,321,322,323,324,325,326,328,329,330,331,332,334,335,336,337,339,340,342,343,344,345,346,348,352,354,355,356,358,361,362,363,364,365,366,368,369,370,371,372,375,376,379,380,381,382,383,384,385,387,388,389,390,391,392,393,394,395,396,397,398,399,402,404,406,407,408,415,416,418,419,420,421,422,423,424,426,427,428,429,430,431,432,433,434,435,442,443,444,445,447,448,449,450,451,452,454,456,459,460,461,462,464,466,468,471,473,474,475,476,477,478,479,480,481,482,483,484,486,487,488,490,492,494,496,497,498,499,500,503,504,507,510,511,512,513,523,524,525,526,527,528,529,530,535,536,537,538,539,540,541,546,547,557,560,561,562,564,565,],[15,15,-218,15,-17,-242,-18,-216,-205,-6,15,-233,15,-245,-236,-14,-10,-13,-238,-247,-237,-210,-20,-207,-209,-29,-12,15,-228,-5,-202,15,-32,-234,15,-212,-235,-213,-215,-203,-204,-211,-222,-9,15,-162,-206,-244,-229,-208,15,-219,-214,-227,-226,-240,211,-231,-246,15,-16,-224,-225,-11,-15,15,-4,-19,15,-248,-217,-220,-8,-221,-160,15,-239,-7,-241,-230,-243,-232,-223,211,-134,15,-135,-117,15,-116,-34,-98,15,-97,-120,15,-119,-33,-83,15,-82,211,15,-80,15,-79,-49,15,-48,-86,15,-85,211,-123,15,-122,-76,15,-75,-58,-57,15,-67,15,-66,-104,-103,15,211,15,15,15,15,15,-95,15,-94,-101,15,-100,211,-70,15,-69,-107,15,-106,-73,15,-72,-64,15,-63,-137,15,211,-89,15,-88,15,15,15,15,15,15,15,15,-110,15,-109,211,-35,-161,-38,-163,-52,15,-51,-55,15,-54,-114,15,-113,-92,15,-91,211,-195,-36,-39,15,-165,-126,15,-125,15,-61,15,-60,-44,211,211,211,211,211,-45,15,15,211,211,211,211,15,211,211,211,211,-182,15,15,15,-26,-25,-23,-24,-27,211,211,15,211,211,211,211,-46,211,15,-186,211,211,211,211,211,-30,-31,211,15,-184,211,15,15,-150,211,211,211,-180,15,211,-22,15,-140,-194,15,-132,15,-131,-129,15,-128,211,211,-133,-115,-96,-118,15,-81,211,211,-78,15,-47,-84,-121,-74,-56,-65,-102,-183,211,211,-93,-99,211,-68,-105,-71,-62,-136,-138,-87,-187,-185,-108,211,211,-50,-53,-112,-181,-90,-37,-40,211,15,-139,-124,-42,-59,15,211,15,211,-28,-168,15,15,15,15,15,15,15,-21,-4,-164,-130,-127,15,-32,461,211,-77,15,211,211,211,211,211,15,211,211,211,15,15,15,15,15,15,-41,15,211,-149,15,-148,-167,-43,500,502,211,15,15,211,-153,211,15,211,-159,211,-111,211,15,15,15,211,211,211,-157,15,15,15,211,211,211,-166,15,15,15,15,15,15,-147,211,211,211,211,211,211,15,-154,211,15,211,-158,]),'TAN':([0,1,6,15,18,38,47,52,70,78,87,94,100,108,121,125,129,132,136,139,141,144,148,154,157,161,163,167,172,173,174,175,176,178,181,186,189,193,196,200,203,206,207,208,209,210,211,212,213,217,227,230,233,237,244,248,251,254,265,266,272,280,281,282,290,301,311,315,316,322,325,329,331,335,345,355,398,407,415,420,421,422,423,424,426,427,433,444,451,459,460,461,462,464,466,471,475,479,482,483,488,498,499,500,511,512,513,527,528,529,530,535,536,557,562,],[16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,]),'IOTA':([0,1,6,15,18,38,47,52,70,78,87,94,100,108,121,125,129,132,136,139,141,144,148,154,157,161,163,167,172,173,174,175,176,178,181,186,189,193,196,200,203,206,207,208,209,210,211,212,213,217,227,230,233,237,244,248,251,254,265,266,272,280,281,282,290,301,311,315,316,322,325,329,331,335,345,355,398,407,415,420,421,422,423,424,426,427,433,444,451,459,460,461,462,464,466,471,475,479,482,483,488,498,499,500,511,512,513,527,528,529,530,535,536,557,562,],[17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,]),'PRIME':([110,241,245,328,],[241,-195,328,-194,]),'LCEIL':([0,1,6,15,18,38,47,52,70,78,87,94,100,108,121,125,129,132,136,139,141,144,148,154,157,161,163,167,172,173,174,175,176,178,181,186,189,193,196,200,203,206,207,208,209,210,211,212,213,217,227,230,233,237,244,248,251,254,265,266,272,280,281,282,290,301,311,315,316,322,325,329,331,335,345,355,398,407,415,420,421,422,423,424,426,427,433,444,451,459,460,461,462,464,466,471,475,479,482,483,488,498,499,500,511,512,513,527,528,529,530,535,536,557,562,],[18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,]),'GT':([2,7,8,9,11,12,13,17,21,22,23,25,26,27,28,30,31,32,33,34,35,37,39,43,45,48,49,53,54,55,63,64,65,66,68,69,72,73,74,75,76,79,80,81,82,83,84,85,86,88,89,90,91,92,95,97,101,103,104,105,106,107,109,110,112,113,116,117,118,120,122,124,126,127,128,130,131,133,134,135,137,140,142,143,145,147,149,151,153,155,156,158,159,160,162,164,165,166,177,179,180,182,185,187,188,190,192,194,195,197,198,202,204,215,218,222,223,224,225,226,228,229,231,232,234,236,238,241,242,243,245,246,249,253,255,256,264,279,283,284,285,286,287,299,302,308,309,312,317,321,324,326,328,330,332,334,336,340,342,343,344,346,354,356,358,361,362,363,364,365,366,370,371,375,376,379,380,381,382,383,384,385,387,390,391,392,393,394,395,396,399,402,404,406,418,419,428,430,431,432,443,448,450,468,474,476,477,478,481,486,487,492,496,503,504,507,510,526,537,538,539,540,541,546,547,560,561,564,565,],[-218,-17,-242,-18,-216,-205,-6,-233,-245,-236,-14,-10,-13,-238,-247,-237,-210,-20,-207,-209,-29,-12,-228,-5,-202,-32,-234,-212,-235,-213,-215,-203,-204,-211,-222,-9,-162,-206,-244,-229,-208,-219,-214,-227,-226,-240,210,-231,-246,-16,-224,-225,-11,-15,-4,-19,-248,-217,-220,-8,-221,-160,-239,-7,-241,-230,-243,-232,-223,-134,-135,-117,-116,-34,-98,-97,-120,-119,-33,-83,-82,-80,-79,-49,-48,-86,-85,210,-123,-122,-76,-75,-58,-57,-67,-66,-104,-103,-95,-94,-101,-100,-70,-69,-107,-106,-73,-72,-64,-63,-137,-89,-88,-110,-109,-35,-161,-38,-163,-52,-51,-55,-54,-114,-113,-92,-91,-195,-36,-39,-165,-126,-125,-61,-60,-44,-45,-182,-26,-25,-23,-24,-27,-46,-186,-30,-31,-184,-150,-180,-22,-140,-194,-132,-131,-129,-128,-133,-115,-96,-118,-81,-78,-47,-84,-121,-74,-56,-65,-102,-183,-93,-99,-68,-105,-71,-62,-136,-138,-87,-187,-185,-108,-50,-53,-112,-181,-90,-37,-40,-139,-124,-42,-59,-28,-168,-21,-164,-130,-127,-77,-145,-143,-41,-149,-148,-167,-43,-169,-153,-151,-159,-111,-171,-170,-155,-157,-166,-147,-175,-174,-173,-172,-146,-144,-154,-152,-156,-158,]),'FRAC':([0,1,6,15,18,38,47,52,70,78,87,94,100,108,121,125,129,132,136,139,141,144,148,154,157,161,163,167,172,173,174,175,176,178,181,186,189,193,196,200,203,206,207,208,209,210,211,212,213,217,227,230,233,237,244,248,251,254,265,266,272,280,281,282,290,301,311,315,316,322,325,329,331,335,345,355,398,407,415,420,421,422,423,424,426,427,433,444,451,459,460,461,462,464,466,471,475,479,482,483,488,498,499,500,511,512,513,527,528,529,530,535,536,557,562,],[19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,]),'RBRACE':([2,7,8,9,11,12,13,17,21,22,23,25,26,27,28,30,31,32,33,34,35,37,39,43,45,48,49,53,54,55,63,64,65,66,68,69,72,73,74,75,76,79,80,81,82,83,85,86,88,89,90,91,92,95,97,101,103,104,105,106,107,109,110,112,113,116,117,118,120,122,124,126,127,128,130,131,133,134,135,137,140,142,143,145,147,149,153,155,156,158,159,160,162,164,165,166,177,179,180,182,185,187,188,190,192,194,195,197,198,202,204,215,218,222,223,224,225,226,228,229,231,232,234,236,238,241,242,243,245,246,249,253,255,256,264,265,266,267,279,283,284,285,286,287,299,302,308,309,312,317,321,324,326,328,330,332,334,336,337,340,342,343,344,346,348,352,354,356,357,358,361,362,363,364,365,366,369,370,371,372,374,375,376,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,399,402,404,406,418,419,428,430,431,432,434,435,436,438,440,442,443,445,446,448,449,450,455,456,460,461,462,463,465,466,468,474,476,477,478,481,484,486,487,490,491,492,494,496,497,499,500,501,502,503,504,507,510,515,516,517,518,523,524,526,537,538,539,540,541,546,547,549,552,553,554,556,558,559,560,561,563,564,565,],[-218,-17,-242,-18,-216,-205,-6,-233,-245,-236,-14,-10,-13,-238,-247,-237,-210,-20,-207,-209,-29,-12,-228,-5,-202,-32,-234,-212,-235,-213,-215,-203,-204,-211,-222,-9,-162,-206,-244,-229,-208,-219,-214,-227,-226,-240,-231,-246,-16,-224,-225,-11,-15,-4,-19,-248,-217,-220,-8,-221,-160,-239,-7,-241,-230,-243,-232,-223,-134,-135,-117,-116,-34,-98,-97,-120,-119,-33,-83,-82,-80,-79,-49,-48,-86,-85,-123,-122,-76,-75,-58,-57,-67,-66,-104,-103,-95,-94,-101,-100,-70,-69,-107,-106,-73,-72,-64,-63,-137,-89,-88,-110,-109,-35,-161,-38,-163,-52,-51,-55,-54,-114,-113,-92,-91,-195,-36,-39,-165,-126,-125,-61,-60,-44,-45,349,350,353,-182,-26,-25,-23,-24,-27,-46,-186,-30,-31,-184,-150,-180,-22,-140,-194,-132,-131,-129,-128,404,-133,-115,-96,-118,-81,410,414,-78,-47,417,-84,-121,-74,-56,-65,-102,-183,418,-93,-99,419,422,-68,-105,424,-71,-62,-136,-138,-87,-187,-185,425,-108,426,427,-50,-53,-112,-181,-90,-37,-40,428,-139,-124,-42,-59,-28,-168,-21,-164,-130,-127,-32,459,462,464,466,468,-77,470,-142,-145,472,-143,477,478,482,483,485,486,488,489,-41,-149,-148,-167,-43,-169,505,-153,-151,509,510,-159,-141,-111,513,515,516,517,518,-171,-170,-155,-157,527,528,529,530,535,536,-166,-147,-175,-174,-173,-172,-146,-144,553,556,557,558,560,562,563,-154,-152,565,-156,-158,]),'ATAN':([0,1,6,15,18,38,47,52,70,78,87,94,100,108,121,125,129,132,136,139,141,144,148,154,157,161,163,167,172,173,174,175,176,178,181,186,189,193,196,200,203,206,207,208,209,210,211,212,213,217,227,230,233,237,244,248,251,254,265,266,272,280,281,282,290,301,311,315,316,322,325,329,331,335,345,355,398,407,415,420,421,422,423,424,426,427,433,444,451,459,460,461,462,464,466,471,475,479,482,483,488,498,499,500,511,512,513,527,528,529,530,535,536,557,562,],[20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,]),'CHI':([0,1,6,15,18,38,47,52,70,78,87,94,100,108,121,125,129,132,136,139,141,144,148,154,157,161,163,167,172,173,174,175,176,178,181,186,189,193,196,200,203,206,207,208,209,210,211,212,213,217,227,230,233,237,244,248,251,254,265,266,272,280,281,282,290,301,311,315,316,322,325,329,331,335,345,355,398,407,415,420,421,422,423,424,426,427,433,444,451,459,460,461,462,464,466,471,475,479,482,483,488,498,499,500,511,512,513,527,528,529,530,535,536,557,562,],[21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,]),'ASINH':([0,1,6,15,18,38,47,52,70,78,87,94,100,108,121,125,129,132,136,139,141,144,148,154,157,161,163,167,172,173,174,175,176,178,181,186,189,193,196,200,203,206,207,208,209,210,211,212,213,217,227,230,233,237,244,248,251,254,265,266,272,280,281,282,290,301,311,315,316,322,325,329,331,335,345,355,398,407,415,420,421,422,423,424,426,427,433,444,451,459,460,461,462,464,466,471,475,479,482,483,488,498,499,500,511,512,513,527,528,529,530,535,536,557,562,],[24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,]),'RCEIL':([2,7,8,9,11,12,13,17,21,22,23,25,26,27,28,30,31,32,33,34,35,37,39,43,45,48,49,53,54,55,63,64,65,66,68,69,72,73,74,75,76,79,80,81,82,83,85,86,88,89,90,91,92,95,97,101,103,104,105,106,107,109,110,112,113,116,117,118,120,122,124,126,127,128,130,131,133,134,135,137,138,140,142,143,145,147,149,153,155,156,158,159,160,162,164,165,166,177,179,180,182,185,187,188,190,192,194,195,197,198,202,204,215,218,222,223,224,225,226,228,229,231,232,234,236,238,241,242,243,245,246,249,253,255,256,264,279,283,284,285,286,287,299,302,308,309,312,317,321,324,326,328,330,332,334,336,340,342,343,344,346,354,356,358,361,362,363,364,365,366,370,371,375,376,379,380,381,382,383,384,385,387,390,391,392,393,394,395,396,399,402,404,406,418,419,428,430,431,432,443,448,450,468,474,476,477,478,481,486,487,492,496,503,504,507,510,526,537,538,539,540,541,546,547,560,561,564,565,],[-218,-17,-242,-18,-216,-205,-6,-233,-245,-236,-14,-10,-13,-238,-247,-237,-210,-20,-207,-209,-29,-12,-228,-5,-202,-32,-234,-212,-235,-213,-215,-203,-204,-211,-222,-9,-162,-206,-244,-229,-208,-219,-214,-227,-226,-240,-231,-246,-16,-224,-225,-11,-15,-4,-19,-248,-217,-220,-8,-221,-160,-239,-7,-241,-230,-243,-232,-223,-134,-135,-117,-116,-34,-98,-97,-120,-119,-33,-83,-82,264,-80,-79,-49,-48,-86,-85,-123,-122,-76,-75,-58,-57,-67,-66,-104,-103,-95,-94,-101,-100,-70,-69,-107,-106,-73,-72,-64,-63,-137,-89,-88,-110,-109,-35,-161,-38,-163,-52,-51,-55,-54,-114,-113,-92,-91,-195,-36,-39,-165,-126,-125,-61,-60,-44,-45,-182,-26,-25,-23,-24,-27,-46,-186,-30,-31,-184,-150,-180,-22,-140,-194,-132,-131,-129,-128,-133,-115,-96,-118,-81,-78,-47,-84,-121,-74,-56,-65,-102,-183,-93,-99,-68,-105,-71,-62,-136,-138,-87,-187,-185,-108,-50,-53,-112,-181,-90,-37,-40,-139,-124,-42,-59,-28,-168,-21,-164,-130,-127,-77,-145,-143,-41,-149,-148,-167,-43,-169,-153,-151,-159,-111,-171,-170,-155,-157,-166,-147,-175,-174,-173,-172,-146,-144,-154,-152,-156,-158,]),'PHI':([0,1,6,15,18,38,47,52,70,78,87,94,100,108,121,125,129,132,136,139,141,144,148,154,157,161,163,167,172,173,174,175,176,178,181,186,189,193,196,200,203,206,207,208,209,210,211,212,213,217,227,230,233,237,244,248,251,254,265,266,272,280,281,282,290,301,311,315,316,322,325,329,331,335,345,355,398,407,415,420,421,422,423,424,426,427,433,444,451,459,460,461,462,464,466,471,475,479,482,483,488,498,499,500,511,512,513,527,528,529,530,535,536,557,562,],[22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,]),'PARTIAL':([139,412,441,508,522,],[266,439,467,521,534,]),'FACTORIAL':([95,110,324,429,],[222,242,395,222,]),'MU':([0,1,6,15,18,38,47,52,70,78,87,94,100,108,121,125,129,132,136,139,141,144,148,154,157,161,163,167,172,173,174,175,176,178,181,186,189,193,196,200,203,206,207,208,209,210,211,212,213,217,227,230,233,237,244,248,251,254,265,266,272,280,281,282,290,301,311,315,316,322,325,329,331,335,345,355,398,407,415,420,421,422,423,424,426,427,433,444,451,459,460,461,462,464,466,471,475,479,482,483,488,498,499,500,511,512,513,527,528,529,530,535,536,557,562,],[54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,]),'XI_LOWER':([0,1,6,15,18,38,47,52,70,78,87,94,100,108,121,125,129,132,136,139,141,144,148,154,157,161,163,167,172,173,174,175,176,178,181,186,189,193,196,200,203,206,207,208,209,210,211,212,213,217,227,230,233,237,244,248,251,254,265,266,272,280,281,282,290,301,311,315,316,322,325,329,331,335,345,355,398,407,415,420,421,422,423,424,426,427,433,444,451,459,460,461,462,464,466,471,475,479,482,483,488,498,499,500,511,512,513,527,528,529,530,535,536,557,562,],[64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,]),'RHO':([0,1,6,15,18,38,47,52,70,78,87,94,100,108,121,125,129,132,136,139,141,144,148,154,157,161,163,167,172,173,174,175,176,178,181,186,189,193,196,200,203,206,207,208,209,210,211,212,213,217,227,230,233,237,244,248,251,254,265,266,272,280,281,282,290,301,311,315,316,322,325,329,331,335,345,355,398,407,415,420,421,422,423,424,426,427,433,444,451,459,460,461,462,464,466,471,475,479,482,483,488,498,499,500,511,512,513,527,528,529,530,535,536,557,562,],[28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,]),'END_BMATRIX':([2,7,8,9,11,12,13,17,21,22,23,25,26,27,28,30,31,32,33,34,35,37,39,43,45,48,49,53,54,55,63,64,65,66,68,69,72,73,74,75,76,79,80,81,82,83,85,86,88,89,90,91,92,95,97,101,103,104,105,106,107,109,110,112,113,116,117,118,120,122,124,126,127,128,130,131,133,134,135,137,140,142,143,145,147,149,153,155,156,158,159,160,162,164,165,166,169,170,177,179,180,182,185,187,188,190,192,194,195,197,198,202,204,214,215,218,222,223,224,225,226,228,229,231,232,234,236,238,241,242,243,245,246,249,253,255,256,264,279,283,284,285,286,287,299,302,308,309,311,312,317,321,324,326,328,330,332,334,336,340,342,343,344,346,354,356,358,361,362,363,364,365,366,367,368,370,371,375,376,379,380,381,382,383,384,385,387,390,391,392,393,394,395,396,399,402,404,406,418,419,428,430,431,432,443,448,450,468,474,476,477,478,481,486,487,492,496,503,504,507,510,526,537,538,539,540,541,546,547,560,561,564,565,],[-218,-17,-242,-18,-216,-205,-6,-233,-245,-236,-14,-10,-13,-238,-247,-237,-210,-20,-207,-209,-29,-12,-228,-5,-202,-32,-234,-212,-235,-213,-215,-203,-204,-211,-222,-9,-162,-206,-244,-229,-208,-219,-214,-227,-226,-240,-231,-246,-16,-224,-225,-11,-15,-4,-19,-248,-217,-220,-8,-221,-160,-239,-7,-241,-230,-243,-232,-223,-134,-135,-117,-116,-34,-98,-97,-120,-119,-33,-83,-82,-80,-79,-49,-48,-86,-85,-123,-122,-76,-75,-58,-57,-67,-66,-104,-103,-191,-189,-95,-94,-101,-100,-70,-69,-107,-106,-73,-72,-64,-63,-137,-89,-88,312,-110,-109,-35,-161,-38,-163,-52,-51,-55,-54,-114,-113,-92,-91,-195,-36,-39,-165,-126,-125,-61,-60,-44,-45,-182,-26,-25,-23,-24,-27,-46,-186,-30,-31,385,-184,-150,-180,-22,-140,-194,-132,-131,-129,-128,-133,-115,-96,-118,-81,-78,-47,-84,-121,-74,-56,-65,-102,-183,-190,-188,-93,-99,-68,-105,-71,-62,-136,-138,-87,-187,-185,-108,-50,-53,-112,-181,-90,-37,-40,-139,-124,-42,-59,-28,-168,-21,-164,-130,-127,-77,-145,-143,-41,-149,-148,-167,-43,-169,-153,-151,-159,-111,-171,-170,-155,-157,-166,-147,-175,-174,-173,-172,-146,-144,-154,-152,-156,-158,]),'CARET':([2,7,8,9,11,12,13,17,21,22,23,25,26,27,28,30,31,32,33,34,35,37,39,43,45,48,49,53,54,55,63,64,65,66,68,69,72,73,74,75,76,79,80,81,82,83,85,86,88,89,90,91,92,94,95,97,101,103,104,105,106,107,109,110,112,113,116,117,118,120,122,124,126,127,128,130,131,133,134,135,137,140,142,143,145,147,149,153,155,156,158,159,160,162,164,165,166,177,179,180,182,185,187,188,190,192,194,195,197,198,202,204,215,218,222,223,224,225,226,228,229,231,232,234,236,238,241,242,243,245,246,249,253,255,256,264,265,266,279,283,284,285,286,287,299,302,308,309,312,317,321,324,326,328,330,332,334,336,340,342,343,344,346,354,356,358,361,362,363,364,365,366,370,371,375,376,379,380,381,382,383,384,385,387,390,391,392,393,394,395,396,399,402,404,406,418,419,427,428,429,430,431,432,434,435,443,448,450,468,470,472,474,476,477,478,481,486,487,492,496,503,504,507,510,520,526,531,533,537,538,539,540,541,545,546,547,560,561,564,565,],[-218,-17,-242,-18,-216,-205,-6,-233,-245,-236,-14,-10,-13,-238,-247,-237,-210,-20,-207,-209,-29,-12,-228,-5,-202,171,-234,-212,-235,-213,-215,-203,-204,-211,-222,-9,-162,-206,-244,-229,-208,-219,-214,-227,-226,-240,-231,-246,-16,-224,-225,-11,-15,219,-4,-19,-248,-217,-220,-8,-221,-160,-239,240,-241,-230,-243,-232,-223,-134,-135,-117,-116,-34,-98,-97,-120,-119,-33,-83,-82,-80,-79,-49,-48,-86,-85,-123,-122,-76,-75,-58,-57,-67,-66,-104,-103,-95,-94,-101,-100,-70,-69,-107,-106,-73,-72,-64,-63,-137,-89,-88,-110,-109,-35,-161,-38,-163,-52,-51,-55,-54,-114,-113,-92,-91,-195,-36,-39,-165,-126,-125,-61,-60,-44,-45,347,351,-182,-26,-25,-23,-24,-27,-46,-186,171,171,-184,-150,-180,-22,-140,-194,-132,-131,-129,-128,-133,-115,-96,-118,-81,-78,-47,-84,-121,-74,-56,-65,-102,-183,-93,-99,-68,-105,-71,-62,-136,-138,-87,-187,-185,-108,-50,-53,-112,-181,-90,-37,-40,-139,-124,-42,-59,-28,-168,453,-21,-4,-164,-130,-127,457,458,-77,-145,-143,-41,493,495,-149,-148,-167,-43,-169,-153,-151,-159,-111,-171,-170,-155,-157,532,-166,542,544,-147,-175,-174,-173,-172,551,-146,-144,-154,-152,-156,-158,]),'DELTA_LOWER':([0,1,6,15,18,38,47,52,70,78,87,94,100,108,121,125,129,132,136,139,141,144,148,154,157,161,163,167,172,173,174,175,176,178,181,186,189,193,196,200,203,206,207,208,209,210,211,212,213,217,227,230,233,237,244,248,251,254,265,266,272,280,281,282,290,301,311,315,316,322,325,329,331,335,345,355,398,407,415,420,421,422,423,424,426,427,433,444,451,459,460,461,462,464,466,471,475,479,482,483,488,498,499,500,511,512,513,527,528,529,530,535,536,557,562,],[31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,]),'ALPHA_LOWER':([0,1,6,15,18,38,47,52,70,78,87,94,100,108,121,125,129,132,136,139,141,144,148,154,157,161,163,167,172,173,174,175,176,178,181,186,189,193,196,200,203,206,207,208,209,210,211,212,213,217,227,230,233,237,244,248,251,254,265,266,272,280,281,282,290,301,311,315,316,322,325,329,331,335,345,355,398,407,415,420,421,422,423,424,426,427,433,444,451,459,460,461,462,464,466,471,475,479,482,483,488,498,499,500,511,512,513,527,528,529,530,535,536,557,562,],[103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,]),'SIGMA_LOWER':([0,1,6,15,18,38,47,52,70,78,87,94,100,108,121,125,129,132,136,139,141,144,148,154,157,161,163,167,172,173,174,175,176,178,181,186,189,193,196,200,203,206,207,208,209,210,211,212,213,217,227,230,233,237,244,248,251,254,265,266,272,280,281,282,290,301,311,315,316,322,325,329,331,335,345,355,398,407,415,420,421,422,423,424,426,427,433,444,451,459,460,461,462,464,466,471,475,479,482,483,488,498,499,500,511,512,513,527,528,529,530,535,536,557,562,],[33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,]),'ETA_LOWER':([0,1,6,15,18,38,47,52,70,78,87,94,100,108,121,125,129,132,136,139,141,144,148,154,157,161,163,167,172,173,174,175,176,178,181,186,189,193,196,200,203,206,207,208,209,210,211,212,213,217,227,230,233,237,244,248,251,254,265,266,272,280,281,282,290,301,311,315,316,322,325,329,331,335,345,355,398,407,415,420,421,422,423,424,426,427,433,444,451,459,460,461,462,464,466,471,475,479,482,483,488,498,499,500,511,512,513,527,528,529,530,535,536,557,562,],[34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,]),'ASEC':([0,1,6,15,18,38,47,52,70,78,87,94,100,108,121,125,129,132,136,139,141,144,148,154,157,161,163,167,172,173,174,175,176,178,181,186,189,193,196,200,203,206,207,208,209,210,211,212,213,217,227,230,233,237,244,248,251,254,265,266,272,280,281,282,290,301,311,315,316,322,325,329,331,335,345,355,398,407,415,420,421,422,423,424,426,427,433,444,451,459,460,461,462,464,466,471,475,479,482,483,488,498,499,500,511,512,513,527,528,529,530,535,536,557,562,],[36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,]),'E':([0,1,6,15,18,38,47,52,70,78,87,94,95,100,108,121,125,129,132,136,139,141,144,148,154,157,161,163,167,172,173,174,175,176,178,181,186,189,193,196,200,203,206,207,208,209,210,211,212,213,217,227,230,233,237,244,248,251,254,265,266,272,280,281,282,290,301,311,315,316,322,325,329,331,335,345,355,398,407,415,420,421,422,423,424,426,427,429,433,444,451,459,460,461,462,464,466,471,475,479,482,483,488,498,499,500,511,512,513,527,528,529,530,535,536,557,562,],[72,72,72,72,72,72,72,72,72,72,72,72,225,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,225,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,72,]),'BEGIN_CASE':([0,],[38,]),'GAMMA':([0,1,6,15,18,38,47,52,70,78,87,94,100,108,121,125,129,132,136,139,141,144,148,154,157,161,163,167,172,173,174,175,176,178,181,186,189,193,196,200,203,206,207,208,209,210,211,212,213,217,227,230,233,237,244,248,251,254,265,266,272,280,281,282,290,301,311,315,316,322,325,329,331,335,345,355,398,407,415,420,421,422,423,424,426,427,433,444,451,459,460,461,462,464,466,471,475,479,482,483,488,498,499,500,511,512,513,527,528,529,530,535,536,557,562,],[39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,]),'DEG':([0,1,6,15,18,38,47,52,70,78,87,94,100,108,121,125,129,132,136,139,141,144,148,154,157,161,163,167,172,173,174,175,176,178,181,186,189,193,196,200,203,206,207,208,209,210,211,212,213,217,227,230,233,237,244,248,251,254,265,266,272,280,281,282,290,301,311,315,316,322,325,329,331,335,345,355,398,407,415,420,421,422,423,424,426,427,433,444,451,459,460,461,462,464,466,471,475,479,482,483,488,498,499,500,511,512,513,527,528,529,530,535,536,557,562,],[40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,]),'TANH':([0,1,6,15,18,38,47,52,70,78,87,94,100,108,121,125,129,132,136,139,141,144,148,154,157,161,163,167,172,173,174,175,176,178,181,186,189,193,196,200,203,206,207,208,209,210,211,212,213,217,227,230,233,237,244,248,251,254,265,266,272,280,281,282,290,301,311,315,316,322,325,329,331,335,345,355,398,407,415,420,421,422,423,424,426,427,433,444,451,459,460,461,462,464,466,471,475,479,482,483,488,498,499,500,511,512,513,527,528,529,530,535,536,557,562,],[41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,]),'MINUS':([0,1,2,6,7,8,9,11,12,13,15,17,18,21,22,23,25,26,27,28,30,31,32,33,34,35,37,38,39,43,45,47,48,49,52,53,54,55,63,64,65,66,68,69,70,72,73,74,75,76,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,94,95,97,100,101,103,104,105,106,107,108,109,110,112,113,116,117,118,119,120,121,122,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,147,148,149,151,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,170,172,173,174,175,176,177,178,179,180,181,182,183,185,186,187,188,189,190,192,193,194,195,196,197,198,200,201,202,203,204,206,207,208,209,210,211,212,213,215,217,218,221,222,223,224,225,226,227,228,229,230,231,232,233,234,236,237,238,239,241,242,243,244,245,246,248,249,251,253,254,255,256,257,259,260,262,263,264,265,266,267,268,269,271,272,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,292,293,295,296,299,300,301,302,303,304,305,306,307,308,309,310,311,312,314,315,316,317,318,319,320,321,322,323,324,325,326,328,329,330,331,332,334,335,336,337,339,340,342,343,344,345,346,348,352,354,355,356,358,361,362,363,364,365,366,368,369,370,371,372,375,376,379,380,381,382,383,384,385,387,388,389,390,391,392,393,394,395,396,397,398,399,402,404,406,407,408,415,416,418,419,420,421,422,423,424,426,427,428,429,430,431,432,433,434,435,442,443,444,445,447,448,449,450,451,452,454,456,459,460,461,462,464,466,468,471,473,474,475,476,477,478,479,480,481,482,483,484,486,487,488,490,492,494,496,497,498,499,500,503,504,507,510,511,512,513,523,524,525,526,527,528,529,530,535,536,537,538,539,540,541,546,547,557,560,561,562,564,565,],[6,6,-218,6,-17,-242,-18,-216,-205,-6,6,-233,6,-245,-236,-14,-10,-13,-238,-247,-237,-210,-20,-207,-209,-29,-12,6,-228,-5,-202,6,-32,-234,6,-212,-235,-213,-215,-203,-204,-211,-222,-9,6,-162,-206,-244,-229,-208,6,-219,-214,-227,-226,-240,212,-231,-246,6,-16,-224,-225,-11,-15,6,-4,-19,6,-248,-217,-220,-8,-221,-160,6,-239,-7,-241,-230,-243,-232,-223,212,-134,6,-135,-117,6,-116,-34,-98,6,-97,-120,6,-119,-33,-83,6,-82,212,6,-80,6,-79,-49,6,-48,-86,6,-85,212,-123,6,-122,-76,6,-75,-58,-57,6,-67,6,-66,-104,-103,6,212,6,6,6,6,6,-95,6,-94,-101,6,-100,212,-70,6,-69,-107,6,-106,-73,6,-72,-64,6,-63,-137,6,212,-89,6,-88,6,6,6,6,6,6,6,6,-110,6,-109,212,-35,-161,-38,-163,-52,6,-51,-55,6,-54,-114,6,-113,-92,6,-91,212,-195,-36,-39,6,-165,-126,6,-125,6,-61,6,-60,-44,212,212,212,212,212,-45,6,6,212,212,212,212,6,212,212,212,212,-182,6,6,6,-26,-25,-23,-24,-27,212,212,6,212,212,212,212,-46,212,6,-186,212,212,212,212,212,-30,-31,212,6,-184,212,6,6,-150,212,212,212,-180,6,212,-22,6,-140,-194,6,-132,6,-131,-129,6,-128,212,212,-133,-115,-96,-118,6,-81,212,212,-78,6,-47,-84,-121,-74,-56,-65,-102,-183,212,212,-93,-99,212,-68,-105,-71,-62,-136,-138,-87,-187,-185,-108,212,212,-50,-53,-112,-181,-90,-37,-40,212,6,-139,-124,-42,-59,6,212,6,212,-28,-168,6,6,6,6,6,6,6,-21,-4,-164,-130,-127,6,-32,460,212,-77,6,212,212,212,212,212,6,212,212,212,6,6,6,6,6,6,-41,6,212,-149,6,-148,-167,-43,499,501,212,6,6,212,-153,212,6,212,-159,212,-111,212,6,6,6,212,212,212,-157,6,6,6,212,212,212,-166,6,6,6,6,6,6,-147,212,212,212,212,212,212,6,-154,212,6,212,-158,]),'BACKSLASHES':([2,7,8,9,11,12,13,17,21,22,23,25,26,27,28,30,31,32,33,34,35,37,39,43,45,48,49,53,54,55,63,64,65,66,68,69,72,73,74,75,76,79,80,81,82,83,85,86,88,89,90,91,92,95,97,101,103,104,105,106,107,109,110,112,113,116,117,118,120,122,124,126,127,128,130,131,133,134,135,137,140,142,143,145,147,149,150,152,153,155,156,158,159,160,162,164,165,166,168,169,170,177,179,180,182,185,187,188,190,192,194,195,197,198,202,204,205,214,215,218,222,223,224,225,226,228,229,231,232,234,235,236,238,241,242,243,245,246,249,253,255,256,264,279,283,284,285,286,287,299,302,303,304,305,306,307,308,309,310,312,317,321,324,326,328,330,332,334,336,340,342,343,344,346,354,356,358,359,361,362,363,364,365,366,367,368,370,371,375,376,379,380,381,382,383,384,385,387,390,391,392,393,394,395,396,399,402,404,406,418,419,428,430,431,432,443,448,450,468,474,476,477,478,481,486,487,492,496,503,504,507,510,526,537,538,539,540,541,546,547,560,561,564,565,],[-218,-17,-242,-18,-216,-205,-6,-233,-245,-236,-14,-10,-13,-238,-247,-237,-210,-20,-207,-209,-29,-12,-228,-5,-202,-32,-234,-212,-235,-213,-215,-203,-204,-211,-222,-9,-162,-206,-244,-229,-208,-219,-214,-227,-226,-240,-231,-246,-16,-224,-225,-11,-15,-4,-19,-248,-217,-220,-8,-221,-160,-239,-7,-241,-230,-243,-232,-223,-134,-135,-117,-116,-34,-98,-97,-120,-119,-33,-83,-82,-80,-79,-49,-48,-86,-85,-179,272,-123,-122,-76,-75,-58,-57,-67,-66,-104,-103,280,-191,-189,-95,-94,-101,-100,-70,-69,-107,-106,-73,-72,-64,-63,-137,-89,-88,301,311,-110,-109,-35,-161,-38,-163,-52,-51,-55,-54,-114,-113,322,-92,-91,-195,-36,-39,-165,-126,-125,-61,-60,-44,-45,-182,-26,-25,-23,-24,-27,-46,-186,-199,-196,-201,-198,-200,-30,-31,-197,-184,-150,-180,-22,-140,-194,-132,-131,-129,-128,-133,-115,-96,-118,-81,-78,-47,-84,-178,-121,-74,-56,-65,-102,-183,-190,-188,-93,-99,-68,-105,-71,-62,-136,-138,-87,-187,-185,-108,-50,-53,-112,-181,-90,-37,-40,-139,-124,-42,-59,-28,-168,-21,-164,-130,-127,-77,-145,-143,-41,-149,-148,-167,-43,-169,-153,-151,-159,-111,-171,-170,-155,-157,-166,-147,-175,-174,-173,-172,-146,-144,-154,-152,-156,-158,]),'ACOS':([0,1,6,15,18,38,47,52,70,78,87,94,100,108,121,125,129,132,136,139,141,144,148,154,157,161,163,167,172,173,174,175,176,178,181,186,189,193,196,200,203,206,207,208,209,210,211,212,213,217,227,230,233,237,244,248,251,254,265,266,272,280,281,282,290,301,311,315,316,322,325,329,331,335,345,355,398,407,415,420,421,422,423,424,426,427,433,444,451,459,460,461,462,464,466,471,475,479,482,483,488,498,499,500,511,512,513,527,528,529,530,535,536,557,562,],[44,44,44,44,44,44,44,44,44,44,44,44,44,44,44,44,44,44,44,44,44,44,44,44,44,44,44,44,44,44,44,44,44,44,44,44,44,44,44,44,44,44,44,44,44,44,44,44,44,44,44,44,44,44,44,44,44,44,44,44,44,44,44,44,44,44,44,44,44,44,44,44,44,44,44,44,44,44,44,44,44,44,44,44,44,44,44,44,44,44,44,44,44,44,44,44,44,44,44,44,44,44,44,44,44,44,44,44,44,44,44,44,44,44,44,]),'PI':([0,1,6,15,18,38,47,52,70,78,87,94,100,108,121,125,129,132,136,139,141,144,148,154,157,161,163,167,172,173,174,175,176,178,181,186,189,193,196,200,203,206,207,208,209,210,211,212,213,217,227,230,233,237,244,248,251,254,265,266,272,280,281,282,290,301,311,315,316,322,325,329,331,335,345,355,398,407,415,420,421,422,423,424,426,427,433,444,451,459,460,461,462,464,466,471,475,479,482,483,488,498,499,500,511,512,513,527,528,529,530,535,536,557,562,],[45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,]),'ACOT':([0,1,6,15,18,38,47,52,70,78,87,94,100,108,121,125,129,132,136,139,141,144,148,154,157,161,163,167,172,173,174,175,176,178,181,186,189,193,196,200,203,206,207,208,209,210,211,212,213,217,227,230,233,237,244,248,251,254,265,266,272,280,281,282,290,301,311,315,316,322,325,329,331,335,345,355,398,407,415,420,421,422,423,424,426,427,433,444,451,459,460,461,462,464,466,471,475,479,482,483,488,498,499,500,511,512,513,527,528,529,530,535,536,557,562,],[46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,]),'BEGIN_NMATRIX':([0,1,6,15,18,38,47,52,70,78,87,94,100,108,121,125,129,132,136,139,141,144,148,154,157,161,163,167,172,173,174,175,176,178,181,186,189,193,196,200,203,206,207,208,209,210,211,212,213,217,227,230,233,237,244,248,251,254,265,266,272,280,281,282,290,301,311,315,316,322,325,329,331,335,345,355,398,407,415,420,421,422,423,424,426,427,433,444,451,459,460,461,462,464,466,471,475,479,482,483,488,498,499,500,511,512,513,527,528,529,530,535,536,557,562,],[47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,]),'$end':([2,7,8,9,11,12,13,17,21,22,23,25,26,27,28,29,30,31,32,33,34,35,37,39,43,45,48,49,53,54,55,56,63,64,65,66,68,69,72,73,74,75,76,77,79,80,81,82,83,84,85,86,88,89,90,91,92,95,97,101,103,104,105,106,107,109,110,112,113,116,117,118,120,122,124,126,127,128,130,131,133,134,135,137,140,142,143,145,147,149,153,155,156,158,159,160,162,164,165,166,177,179,180,182,185,187,188,190,192,194,195,197,198,202,204,215,218,222,223,224,225,226,228,229,231,232,234,236,238,241,242,243,245,246,249,253,255,256,264,273,279,283,284,285,286,287,299,302,303,304,305,306,307,308,309,310,312,317,321,324,326,328,330,332,334,336,340,342,343,344,346,354,356,358,360,361,362,363,364,365,366,370,371,375,376,379,380,381,382,383,384,385,387,390,391,392,393,394,395,396,399,402,404,406,418,419,428,430,431,432,443,448,450,468,474,476,477,478,481,486,487,492,496,503,504,507,510,526,537,538,539,540,541,546,547,560,561,564,565,],[-218,-17,-242,-18,-216,-205,-6,-233,-245,-236,-14,-10,-13,-238,-247,0,-237,-210,-20,-207,-209,-29,-12,-228,-5,-202,-32,-234,-212,-235,-213,-3,-215,-203,-204,-211,-222,-9,-162,-206,-244,-229,-208,-2,-219,-214,-227,-226,-240,-1,-231,-246,-16,-224,-225,-11,-15,-4,-19,-248,-217,-220,-8,-221,-160,-239,-7,-241,-230,-243,-232,-223,-134,-135,-117,-116,-34,-98,-97,-120,-119,-33,-83,-82,-80,-79,-49,-48,-86,-85,-123,-122,-76,-75,-58,-57,-67,-66,-104,-103,-95,-94,-101,-100,-70,-69,-107,-106,-73,-72,-64,-63,-137,-89,-88,-110,-109,-35,-161,-38,-163,-52,-51,-55,-54,-114,-113,-92,-91,-195,-36,-39,-165,-126,-125,-61,-60,-44,-45,-176,-182,-26,-25,-23,-24,-27,-46,-186,-199,-196,-201,-198,-200,-30,-31,-197,-184,-150,-180,-22,-140,-194,-132,-131,-129,-128,-133,-115,-96,-118,-81,-78,-47,-84,-177,-121,-74,-56,-65,-102,-183,-93,-99,-68,-105,-71,-62,-136,-138,-87,-187,-185,-108,-50,-53,-112,-181,-90,-37,-40,-139,-124,-42,-59,-28,-168,-21,-164,-130,-127,-77,-145,-143,-41,-149,-148,-167,-43,-169,-153,-151,-159,-111,-171,-170,-155,-157,-166,-147,-175,-174,-173,-172,-146,-144,-154,-152,-156,-158,]),'DOTS':([2,7,8,9,11,12,13,17,21,22,23,25,26,27,28,30,31,32,33,34,35,37,39,43,45,48,49,53,54,55,63,64,65,66,68,69,72,73,74,75,76,79,80,81,82,83,85,86,88,89,90,91,92,95,97,101,103,104,105,106,107,109,110,112,113,116,117,118,120,122,124,126,127,128,130,131,133,134,135,137,140,142,143,145,147,149,153,155,156,158,159,160,162,164,165,166,177,179,180,182,185,187,188,190,192,194,195,197,198,202,204,215,218,222,223,224,225,226,228,229,231,232,234,236,238,241,242,243,245,246,249,253,255,256,264,279,283,284,285,286,287,299,302,308,309,312,317,321,324,326,328,330,332,334,336,340,342,343,344,346,354,356,358,361,362,363,364,365,366,370,371,375,376,379,380,381,382,383,384,385,387,390,391,392,393,394,395,396,399,402,404,406,418,419,428,430,431,432,443,447,448,450,468,474,476,477,478,481,486,487,492,496,503,504,507,510,526,537,538,539,540,541,546,547,560,561,564,565,],[-218,-17,-242,-18,-216,-205,-6,-233,-245,-236,-14,-10,-13,-238,-247,-237,-210,-20,-207,-209,-29,-12,-228,-5,-202,-32,-234,-212,-235,-213,-215,-203,-204,-211,-222,-9,-162,-206,-244,-229,-208,-219,-214,-227,-226,-240,-231,-246,-16,-224,-225,-11,-15,-4,-19,-248,-217,-220,-8,-221,-160,-239,-7,-241,-230,-243,-232,-223,-134,-135,-117,-116,-34,-98,-97,-120,-119,-33,-83,-82,-80,-79,-49,-48,-86,-85,-123,-122,-76,-75,-58,-57,-67,-66,-104,-103,-95,-94,-101,-100,-70,-69,-107,-106,-73,-72,-64,-63,-137,-89,-88,-110,-109,-35,-161,-38,-163,-52,-51,-55,-54,-114,-113,-92,-91,-195,-36,-39,-165,-126,-125,-61,-60,-44,-45,-182,-26,-25,-23,-24,-27,-46,-186,-30,-31,-184,-150,-180,-22,-140,-194,-132,-131,-129,-128,-133,-115,-96,-118,-81,-78,-47,-84,-121,-74,-56,-65,-102,-183,-93,-99,-68,-105,-71,-62,-136,-138,-87,-187,-185,-108,-50,-53,-112,-181,-90,-37,-40,-139,-124,-42,-59,-28,-168,-21,-164,-130,-127,-77,471,-145,-143,-41,-149,-148,-167,-43,-169,-153,-151,-159,-111,-171,-170,-155,-157,-166,-147,-175,-174,-173,-172,-146,-144,-154,-152,-156,-158,]),'GCD':([0,1,6,15,18,38,47,52,70,78,87,94,100,108,121,125,129,132,136,139,141,144,148,154,157,161,163,167,172,173,174,175,176,178,181,186,189,193,196,200,203,206,207,208,209,210,211,212,213,217,227,230,233,237,244,248,251,254,265,266,272,280,281,282,290,301,311,315,316,322,325,329,331,335,345,355,398,407,415,420,421,422,423,424,426,427,433,444,451,459,460,461,462,464,466,471,475,479,482,483,488,498,499,500,511,512,513,527,528,529,530,535,536,557,562,],[14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,]),'CSC':([0,1,6,15,18,38,47,52,70,78,87,94,100,108,121,125,129,132,136,139,141,144,148,154,157,161,163,167,172,173,174,175,176,178,181,186,189,193,196,200,203,206,207,208,209,210,211,212,213,217,227,230,233,237,244,248,251,254,265,266,272,280,281,282,290,301,311,315,316,322,325,329,331,335,345,355,398,407,415,420,421,422,423,424,426,427,433,444,451,459,460,461,462,464,466,471,475,479,482,483,488,498,499,500,511,512,513,527,528,529,530,535,536,557,562,],[50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,]),'END_VMATRIX':([2,7,8,9,11,12,13,17,21,22,23,25,26,27,28,30,31,32,33,34,35,37,39,43,45,48,49,53,54,55,63,64,65,66,68,69,72,73,74,75,76,79,80,81,82,83,85,86,88,89,90,91,92,95,97,101,103,104,105,106,107,109,110,112,113,116,117,118,120,122,124,126,127,128,130,131,133,134,135,137,140,142,143,145,147,149,153,155,156,158,159,160,162,164,165,166,169,170,177,179,180,182,185,187,188,190,192,194,195,197,198,202,204,215,218,222,223,224,225,226,228,229,231,232,234,235,236,238,241,242,243,245,246,249,253,255,256,264,279,283,284,285,286,287,299,302,308,309,312,317,321,322,324,326,328,330,332,334,336,340,342,343,344,346,354,356,358,361,362,363,364,365,366,367,368,370,371,375,376,379,380,381,382,383,384,385,387,390,391,392,393,394,395,396,399,402,404,406,418,419,428,430,431,432,443,448,450,468,474,476,477,478,481,486,487,492,496,503,504,507,510,526,537,538,539,540,541,546,547,560,561,564,565,],[-218,-17,-242,-18,-216,-205,-6,-233,-245,-236,-14,-10,-13,-238,-247,-237,-210,-20,-207,-209,-29,-12,-228,-5,-202,-32,-234,-212,-235,-213,-215,-203,-204,-211,-222,-9,-162,-206,-244,-229,-208,-219,-214,-227,-226,-240,-231,-246,-16,-224,-225,-11,-15,-4,-19,-248,-217,-220,-8,-221,-160,-239,-7,-241,-230,-243,-232,-223,-134,-135,-117,-116,-34,-98,-97,-120,-119,-33,-83,-82,-80,-79,-49,-48,-86,-85,-123,-122,-76,-75,-58,-57,-67,-66,-104,-103,-191,-189,-95,-94,-101,-100,-70,-69,-107,-106,-73,-72,-64,-63,-137,-89,-88,-110,-109,-35,-161,-38,-163,-52,-51,-55,-54,-114,-113,321,-92,-91,-195,-36,-39,-165,-126,-125,-61,-60,-44,-45,-182,-26,-25,-23,-24,-27,-46,-186,-30,-31,-184,-150,-180,393,-22,-140,-194,-132,-131,-129,-128,-133,-115,-96,-118,-81,-78,-47,-84,-121,-74,-56,-65,-102,-183,-190,-188,-93,-99,-68,-105,-71,-62,-136,-138,-87,-187,-185,-108,-50,-53,-112,-181,-90,-37,-40,-139,-124,-42,-59,-28,-168,-21,-164,-130,-127,-77,-145,-143,-41,-149,-148,-167,-43,-169,-153,-151,-159,-111,-171,-170,-155,-157,-166,-147,-175,-174,-173,-172,-146,-144,-154,-152,-156,-158,]),'AMPERSAND':([2,7,8,9,11,12,13,17,21,22,23,25,26,27,28,30,31,32,33,34,35,37,39,43,45,48,49,53,54,55,63,64,65,66,68,69,72,73,74,75,76,79,80,81,82,83,85,86,88,89,90,91,92,95,97,101,103,104,105,106,107,109,110,112,113,116,117,118,120,122,124,126,127,128,130,131,133,134,135,137,140,142,143,145,147,149,153,155,156,158,159,160,162,164,165,166,169,170,177,179,180,182,185,187,188,190,192,194,195,197,198,202,204,215,218,222,223,224,225,226,228,229,231,232,234,236,238,241,242,243,245,246,249,253,255,256,264,279,283,284,285,286,287,299,302,308,309,312,317,321,324,326,328,330,332,334,336,340,342,343,344,346,354,356,358,361,362,363,364,365,366,367,368,370,371,375,376,379,380,381,382,383,384,385,387,390,391,392,393,394,395,396,399,402,404,406,418,419,428,430,431,432,443,448,450,468,474,476,477,478,481,486,487,492,496,503,504,507,510,526,537,538,539,540,541,546,547,560,561,564,565,],[-218,-17,-242,-18,-216,-205,-6,-233,-245,-236,-14,-10,-13,-238,-247,-237,-210,-20,-207,-209,-29,-12,-228,-5,-202,-32,-234,-212,-235,-213,-215,-203,-204,-211,-222,-9,-162,-206,-244,-229,-208,-219,-214,-227,-226,-240,-231,-246,-16,-224,-225,-11,-15,-4,-19,-248,-217,-220,-8,-221,-160,-239,-7,-241,-230,-243,-232,-223,-134,-135,-117,-116,-34,-98,-97,-120,-119,-33,-83,-82,-80,-79,-49,-48,-86,-85,-123,-122,-76,-75,-58,-57,-67,-66,-104,-103,281,-189,-95,-94,-101,-100,-70,-69,-107,-106,-73,-72,-64,-63,-137,-89,-88,-110,-109,-35,-161,-38,-163,-52,-51,-55,-54,-114,-113,-92,-91,-195,-36,-39,-165,-126,-125,-61,-60,-44,-45,-182,-26,-25,-23,-24,-27,-46,-186,-30,-31,-184,-150,-180,-22,-140,-194,-132,-131,-129,-128,-133,-115,-96,-118,-81,-78,-47,-84,-121,-74,-56,-65,-102,-183,281,-188,-93,-99,-68,-105,-71,-62,-136,-138,-87,-187,-185,-108,-50,-53,-112,-181,-90,-37,-40,-139,-124,-42,-59,-28,-168,-21,-164,-130,-127,-77,-145,-143,-41,-149,-148,-167,-43,-169,-153,-151,-159,-111,-171,-170,-155,-157,-166,-147,-175,-174,-173,-172,-146,-144,-154,-152,-156,-158,]),'END_NMATRIX':([2,7,8,9,11,12,13,17,21,22,23,25,26,27,28,30,31,32,33,34,35,37,39,43,45,48,49,53,54,55,63,64,65,66,68,69,72,73,74,75,76,79,80,81,82,83,85,86,88,89,90,91,92,95,97,101,103,104,105,106,107,109,110,112,113,116,117,118,120,122,124,126,127,128,130,131,133,134,135,137,140,142,143,145,147,149,153,155,156,158,159,160,162,164,165,166,168,169,170,177,179,180,182,185,187,188,190,192,194,195,197,198,202,204,215,218,222,223,224,225,226,228,229,231,232,234,236,238,241,242,243,245,246,249,253,255,256,264,279,280,283,284,285,286,287,299,302,308,309,312,317,321,324,326,328,330,332,334,336,340,342,343,344,346,354,356,358,361,362,363,364,365,366,367,368,370,371,375,376,379,380,381,382,383,384,385,387,390,391,392,393,394,395,396,399,402,404,406,418,419,428,430,431,432,443,448,450,468,474,476,477,478,481,486,487,492,496,503,504,507,510,526,537,538,539,540,541,546,547,560,561,564,565,],[-218,-17,-242,-18,-216,-205,-6,-233,-245,-236,-14,-10,-13,-238,-247,-237,-210,-20,-207,-209,-29,-12,-228,-5,-202,-32,-234,-212,-235,-213,-215,-203,-204,-211,-222,-9,-162,-206,-244,-229,-208,-219,-214,-227,-226,-240,-231,-246,-16,-224,-225,-11,-15,-4,-19,-248,-217,-220,-8,-221,-160,-239,-7,-241,-230,-243,-232,-223,-134,-135,-117,-116,-34,-98,-97,-120,-119,-33,-83,-82,-80,-79,-49,-48,-86,-85,-123,-122,-76,-75,-58,-57,-67,-66,-104,-103,279,-191,-189,-95,-94,-101,-100,-70,-69,-107,-106,-73,-72,-64,-63,-137,-89,-88,-110,-109,-35,-161,-38,-163,-52,-51,-55,-54,-114,-113,-92,-91,-195,-36,-39,-165,-126,-125,-61,-60,-44,-45,-182,366,-26,-25,-23,-24,-27,-46,-186,-30,-31,-184,-150,-180,-22,-140,-194,-132,-131,-129,-128,-133,-115,-96,-118,-81,-78,-47,-84,-121,-74,-56,-65,-102,-183,-190,-188,-93,-99,-68,-105,-71,-62,-136,-138,-87,-187,-185,-108,-50,-53,-112,-181,-90,-37,-40,-139,-124,-42,-59,-28,-168,-21,-164,-130,-127,-77,-145,-143,-41,-149,-148,-167,-43,-169,-153,-151,-159,-111,-171,-170,-155,-157,-166,-147,-175,-174,-173,-172,-146,-144,-154,-152,-156,-158,]),'EQ':([2,7,8,9,11,12,13,17,21,22,23,25,26,27,28,30,31,32,33,34,35,37,39,43,45,48,49,53,54,55,63,64,65,66,68,69,72,73,74,75,76,79,80,81,82,83,84,85,86,88,89,90,91,92,95,97,101,103,104,105,106,107,109,110,112,113,116,117,118,120,122,124,126,127,128,130,131,133,134,135,137,140,142,143,145,147,149,151,153,155,156,158,159,160,162,164,165,166,177,179,180,182,185,187,188,190,192,194,195,197,198,202,204,215,218,222,223,224,225,226,228,229,231,232,234,236,238,241,242,243,245,246,249,253,255,256,264,279,283,284,285,286,287,299,302,308,309,312,317,321,324,326,328,330,332,334,336,340,342,343,344,346,354,356,358,361,362,363,364,365,366,370,371,373,375,376,377,379,380,381,382,383,384,385,387,390,391,392,393,394,395,396,399,402,404,406,418,419,428,430,431,432,443,448,450,468,474,476,477,478,481,486,487,492,496,503,504,507,510,526,537,538,539,540,541,546,547,560,561,564,565,],[-218,-17,-242,-18,-216,-205,-6,-233,-245,-236,-14,-10,-13,-238,-247,-237,-210,-20,-207,-209,-29,-12,-228,-5,-202,-32,-234,-212,-235,-213,-215,-203,-204,-211,-222,-9,-162,-206,-244,-229,-208,-219,-214,-227,-226,-240,207,-231,-246,-16,-224,-225,-11,-15,-4,-19,-248,-217,-220,-8,-221,-160,-239,-7,-241,-230,-243,-232,-223,-134,-135,-117,-116,-34,-98,-97,-120,-119,-33,-83,-82,-80,-79,-49,-48,-86,-85,207,-123,-122,-76,-75,-58,-57,-67,-66,-104,-103,-95,-94,-101,-100,-70,-69,-107,-106,-73,-72,-64,-63,-137,-89,-88,-110,-109,-35,-161,-38,-163,-52,-51,-55,-54,-114,-113,-92,-91,-195,-36,-39,-165,-126,-125,-61,-60,-44,-45,-182,-26,-25,-23,-24,-27,-46,-186,-30,-31,-184,-150,-180,-22,-140,-194,-132,-131,-129,-128,-133,-115,-96,-118,-81,-78,-47,-84,-121,-74,-56,-65,-102,-183,-93,-99,420,-68,-105,423,-71,-62,-136,-138,-87,-187,-185,-108,-50,-53,-112,-181,-90,-37,-40,-139,-124,-42,-59,-28,-168,-21,-164,-130,-127,-77,-145,-143,-41,-149,-148,-167,-43,-169,-153,-151,-159,-111,-171,-170,-155,-157,-166,-147,-175,-174,-173,-172,-146,-144,-154,-152,-156,-158,]),'COTH':([0,1,6,15,18,38,47,52,70,78,87,94,100,108,121,125,129,132,136,139,141,144,148,154,157,161,163,167,172,173,174,175,176,178,181,186,189,193,196,200,203,206,207,208,209,210,211,212,213,217,227,230,233,237,244,248,251,254,265,266,272,280,281,282,290,301,311,315,316,322,325,329,331,335,345,355,398,407,415,420,421,422,423,424,426,427,433,444,451,459,460,461,462,464,466,471,475,479,482,483,488,498,499,500,511,512,513,527,528,529,530,535,536,557,562,],[51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,]),'LBRACE':([0,1,6,15,18,19,38,47,52,70,78,87,94,100,108,114,121,123,125,129,132,136,139,141,144,146,148,154,157,161,163,167,171,172,173,174,175,176,178,181,184,186,189,191,193,196,200,203,206,207,208,209,210,211,212,213,216,217,219,220,227,230,233,237,240,244,248,251,254,265,266,272,280,281,282,290,301,311,315,316,322,325,329,331,335,345,347,349,350,351,353,355,398,405,407,410,414,415,420,421,422,423,424,426,427,433,444,451,453,457,458,459,460,461,462,464,466,471,475,479,482,483,485,488,489,493,495,498,499,500,505,509,511,512,513,527,528,529,530,532,535,536,542,544,551,557,562,],[52,52,52,52,52,139,52,52,52,52,52,52,52,52,52,251,52,258,52,52,52,52,52,52,52,270,52,52,52,52,52,52,282,52,52,52,52,52,52,52,291,52,52,294,52,52,52,52,52,52,52,52,52,52,52,52,313,52,315,316,52,52,52,52,325,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,52,409,411,412,413,415,52,52,433,52,437,441,52,52,52,52,52,52,52,52,52,52,52,475,479,480,52,52,52,52,52,52,52,52,52,52,52,506,52,508,511,512,52,52,52,519,522,52,52,52,52,52,52,52,543,52,52,548,550,555,52,52,]),'LAMBDA_LOWER':([0,1,6,15,18,38,47,52,70,78,87,94,100,108,121,125,129,132,136,139,141,144,148,154,157,161,163,167,172,173,174,175,176,178,181,186,189,193,196,200,203,206,207,208,209,210,211,212,213,217,227,230,233,237,244,248,251,254,265,266,272,280,281,282,290,301,311,315,316,322,325,329,331,335,345,355,398,407,415,420,421,422,423,424,426,427,433,444,451,459,460,461,462,464,466,471,475,479,482,483,488,498,499,500,511,512,513,527,528,529,530,535,536,557,562,],[53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,]),'BEGIN_PMATRIX':([0,1,6,15,18,38,47,52,67,70,78,87,94,100,108,121,125,129,132,136,139,141,144,148,154,157,161,163,167,172,173,174,175,176,178,181,186,189,193,196,199,200,203,206,207,208,209,210,211,212,213,217,227,230,233,237,244,248,251,254,265,266,272,280,281,282,290,301,311,315,316,322,325,329,331,335,345,355,398,407,415,420,421,422,423,424,426,427,433,444,451,459,460,461,462,464,466,471,475,479,482,483,488,498,499,500,511,512,513,527,528,529,530,535,536,557,562,],[78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,78,]),'EPSILON_LOWER':([0,1,6,15,18,38,47,52,70,78,87,94,100,108,121,125,129,132,136,139,141,144,148,154,157,161,163,167,172,173,174,175,176,178,181,186,189,193,196,200,203,206,207,208,209,210,211,212,213,217,227,230,233,237,244,248,251,254,265,266,272,280,281,282,290,301,311,315,316,322,325,329,331,335,345,355,398,407,415,420,421,422,423,424,426,427,433,444,451,459,460,461,462,464,466,471,475,479,482,483,488,498,499,500,511,512,513,527,528,529,530,535,536,557,562,],[55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,55,]),'PROD':([0,1,6,15,18,38,47,52,70,78,87,94,100,108,121,125,129,132,136,139,141,144,148,154,157,161,163,167,172,173,174,175,176,178,181,186,189,193,196,200,203,206,207,208,209,210,211,212,213,217,227,230,233,237,244,248,251,254,265,266,272,280,281,282,290,301,311,315,316,322,325,329,331,335,345,355,398,407,415,420,421,422,423,424,426,427,433,444,451,459,460,461,462,464,466,471,475,479,482,483,488,498,499,500,511,512,513,527,528,529,530,535,536,557,562,],[57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,57,]),'LAMBDA':([0,1,6,15,18,38,47,52,70,78,87,94,100,108,121,125,129,132,136,139,141,144,148,154,157,161,163,167,172,173,174,175,176,178,181,186,189,193,196,200,203,206,207,208,209,210,211,212,213,217,227,230,233,237,244,248,251,254,265,266,272,280,281,282,290,301,311,315,316,322,325,329,331,335,345,355,398,407,415,420,421,422,423,424,426,427,433,444,451,459,460,461,462,464,466,471,475,479,482,483,488,498,499,500,511,512,513,527,528,529,530,535,536,557,562,],[117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,117,]),'COS':([0,1,6,15,18,38,47,52,70,78,87,94,100,108,121,125,129,132,136,139,141,144,148,154,157,161,163,167,172,173,174,175,176,178,181,186,189,193,196,200,203,206,207,208,209,210,211,212,213,217,227,230,233,237,244,248,251,254,265,266,272,280,281,282,290,301,311,315,316,322,325,329,331,335,345,355,398,407,415,420,421,422,423,424,426,427,433,444,451,459,460,461,462,464,466,471,475,479,482,483,488,498,499,500,511,512,513,527,528,529,530,535,536,557,562,],[58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,]),'COT':([0,1,6,15,18,38,47,52,70,78,87,94,100,108,121,125,129,132,136,139,141,144,148,154,157,161,163,167,172,173,174,175,176,178,181,186,189,193,196,200,203,206,207,208,209,210,211,212,213,217,227,230,233,237,244,248,251,254,265,266,272,280,281,282,290,301,311,315,316,322,325,329,331,335,345,355,398,407,415,420,421,422,423,424,426,427,433,444,451,459,460,461,462,464,466,471,475,479,482,483,488,498,499,500,511,512,513,527,528,529,530,535,536,557,562,],[59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,]),'SUM':([0,1,6,15,18,38,47,52,70,78,87,94,100,108,121,125,129,132,136,139,141,144,148,154,157,161,163,167,172,173,174,175,176,178,181,186,189,193,196,200,203,206,207,208,209,210,211,212,213,217,227,230,233,237,244,248,251,254,265,266,272,280,281,282,290,301,311,315,316,322,325,329,331,335,345,355,398,407,415,420,421,422,423,424,426,427,433,444,451,459,460,461,462,464,466,471,475,479,482,483,488,498,499,500,511,512,513,527,528,529,530,535,536,557,562,],[60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,60,]),'ATANH':([0,1,6,15,18,38,47,52,70,78,87,94,100,108,121,125,129,132,136,139,141,144,148,154,157,161,163,167,172,173,174,175,176,178,181,186,189,193,196,200,203,206,207,208,209,210,211,212,213,217,227,230,233,237,244,248,251,254,265,266,272,280,281,282,290,301,311,315,316,322,325,329,331,335,345,355,398,407,415,420,421,422,423,424,426,427,433,444,451,459,460,461,462,464,466,471,475,479,482,483,488,498,499,500,511,512,513,527,528,529,530,535,536,557,562,],[61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,]),'CROSS':([2,7,8,9,11,12,13,17,21,22,23,25,26,27,28,30,31,32,33,34,35,37,39,43,45,48,49,53,54,55,63,64,65,66,68,69,72,73,74,75,76,79,80,81,82,83,85,86,88,89,90,91,92,95,97,101,103,104,105,106,107,109,110,111,112,113,116,117,118,120,122,124,126,127,128,130,131,133,134,135,137,140,142,143,145,147,149,153,155,156,158,159,160,162,164,165,166,177,179,180,182,185,187,188,190,192,194,195,197,198,202,204,215,218,222,223,224,225,226,228,229,231,232,234,236,238,241,242,243,245,246,249,253,255,256,264,279,283,284,285,286,287,299,302,308,309,312,317,321,324,326,328,330,332,334,336,340,342,343,344,346,354,356,358,361,362,363,364,365,366,370,371,375,376,379,380,381,382,383,384,385,387,390,391,392,393,394,395,396,399,402,404,406,418,419,428,429,430,431,432,434,443,448,450,468,474,476,477,478,481,486,487,492,496,503,504,507,510,526,537,538,539,540,541,546,547,560,561,564,565,],[-218,-17,-242,-18,-216,-205,-6,-233,-245,-236,-14,-10,-13,-238,-247,-237,-210,-20,-207,-209,-29,-12,-228,-5,-202,173,-234,-212,-235,-213,-215,-203,-204,-211,-222,-9,-162,-206,-244,-229,-208,-219,-214,-227,-226,-240,-231,-246,-16,-224,-225,-11,-15,-4,-19,-248,-217,-220,-8,-221,-160,-239,-7,247,-241,-230,-243,-232,-223,-134,-135,-117,-116,-34,-98,-97,-120,-119,-33,-83,-82,-80,-79,-49,-48,-86,-85,-123,-122,-76,-75,-58,-57,-67,-66,-104,-103,-95,-94,-101,-100,-70,-69,-107,-106,-73,-72,-64,-63,-137,-89,-88,-110,-109,-35,-161,-38,-163,-52,-51,-55,-54,-114,-113,-92,-91,-195,-36,-39,-165,-126,-125,-61,-60,-44,-45,-182,-26,-25,-23,-24,-27,-46,-186,173,173,-184,-150,-180,-22,-140,-194,-132,-131,-129,-128,-133,-115,-96,-118,-81,-78,-47,-84,-121,-74,-56,-65,-102,-183,-93,-99,-68,-105,-71,-62,-136,-138,-87,-187,-185,-108,-50,-53,-112,-181,-90,-37,-40,-139,-124,-42,-59,-28,-168,-21,-4,-164,-130,-127,173,-77,-145,-143,-41,-149,-148,-167,-43,-169,-153,-151,-159,-111,-171,-170,-155,-157,-166,-147,-175,-174,-173,-172,-146,-144,-154,-152,-156,-158,]),'COSH':([0,1,6,15,18,38,47,52,70,78,87,94,100,108,121,125,129,132,136,139,141,144,148,154,157,161,163,167,172,173,174,175,176,178,181,186,189,193,196,200,203,206,207,208,209,210,211,212,213,217,227,230,233,237,244,248,251,254,265,266,272,280,281,282,290,301,311,315,316,322,325,329,331,335,345,355,398,407,415,420,421,422,423,424,426,427,433,444,451,459,460,461,462,464,466,471,475,479,482,483,488,498,499,500,511,512,513,527,528,529,530,535,536,557,562,],[62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,]),'KAPPA_LOWER':([0,1,6,15,18,38,47,52,70,78,87,94,100,108,121,125,129,132,136,139,141,144,148,154,157,161,163,167,172,173,174,175,176,178,181,186,189,193,196,200,203,206,207,208,209,210,211,212,213,217,227,230,233,237,244,248,251,254,265,266,272,280,281,282,290,301,311,315,316,322,325,329,331,335,345,355,398,407,415,420,421,422,423,424,426,427,433,444,451,459,460,461,462,464,466,471,475,479,482,483,488,498,499,500,511,512,513,527,528,529,530,535,536,557,562,],[63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,]),'ETA':([0,1,6,15,18,38,47,52,70,78,87,94,100,108,121,125,129,132,136,139,141,144,148,154,157,161,163,167,172,173,174,175,176,178,181,186,189,193,196,200,203,206,207,208,209,210,211,212,213,217,227,230,233,237,244,248,251,254,265,266,272,280,281,282,290,301,311,315,316,322,325,329,331,335,345,355,398,407,415,420,421,422,423,424,426,427,433,444,451,459,460,461,462,464,466,471,475,479,482,483,488,498,499,500,511,512,513,527,528,529,530,535,536,557,562,],[27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,]),'END_PMATRIX':([2,7,8,9,11,12,13,17,21,22,23,25,26,27,28,30,31,32,33,34,35,37,39,43,45,48,49,53,54,55,63,64,65,66,68,69,72,73,74,75,76,79,80,81,82,83,85,86,88,89,90,91,92,95,97,101,103,104,105,106,107,109,110,112,113,116,117,118,120,122,124,126,127,128,130,131,133,134,135,137,140,142,143,145,147,149,153,155,156,158,159,160,162,164,165,166,169,170,177,179,180,182,185,187,188,190,192,194,195,197,198,202,204,205,215,218,222,223,224,225,226,228,229,231,232,234,236,238,241,242,243,245,246,249,253,255,256,264,279,283,284,285,286,287,299,301,302,308,309,312,317,321,324,326,328,330,332,334,336,340,342,343,344,346,354,356,358,361,362,363,364,365,366,367,368,370,371,375,376,379,380,381,382,383,384,385,387,390,391,392,393,394,395,396,399,402,404,406,418,419,428,430,431,432,443,448,450,468,474,476,477,478,481,486,487,492,496,503,504,507,510,526,537,538,539,540,541,546,547,560,561,564,565,],[-218,-17,-242,-18,-216,-205,-6,-233,-245,-236,-14,-10,-13,-238,-247,-237,-210,-20,-207,-209,-29,-12,-228,-5,-202,-32,-234,-212,-235,-213,-215,-203,-204,-211,-222,-9,-162,-206,-244,-229,-208,-219,-214,-227,-226,-240,-231,-246,-16,-224,-225,-11,-15,-4,-19,-248,-217,-220,-8,-221,-160,-239,-7,-241,-230,-243,-232,-223,-134,-135,-117,-116,-34,-98,-97,-120,-119,-33,-83,-82,-80,-79,-49,-48,-86,-85,-123,-122,-76,-75,-58,-57,-67,-66,-104,-103,-191,-189,-95,-94,-101,-100,-70,-69,-107,-106,-73,-72,-64,-63,-137,-89,-88,302,-110,-109,-35,-161,-38,-163,-52,-51,-55,-54,-114,-113,-92,-91,-195,-36,-39,-165,-126,-125,-61,-60,-44,-45,-182,-26,-25,-23,-24,-27,-46,384,-186,-30,-31,-184,-150,-180,-22,-140,-194,-132,-131,-129,-128,-133,-115,-96,-118,-81,-78,-47,-84,-121,-74,-56,-65,-102,-183,-190,-188,-93,-99,-68,-105,-71,-62,-136,-138,-87,-187,-185,-108,-50,-53,-112,-181,-90,-37,-40,-139,-124,-42,-59,-28,-168,-21,-164,-130,-127,-77,-145,-143,-41,-149,-148,-167,-43,-169,-153,-151,-159,-111,-171,-170,-155,-157,-166,-147,-175,-174,-173,-172,-146,-144,-154,-152,-156,-158,]),'CHI_LOWER':([0,1,6,15,18,38,47,52,70,78,87,94,100,108,121,125,129,132,136,139,141,144,148,154,157,161,163,167,172,173,174,175,176,178,181,186,189,193,196,200,203,206,207,208,209,210,211,212,213,217,227,230,233,237,244,248,251,254,265,266,272,280,281,282,290,301,311,315,316,322,325,329,331,335,345,355,398,407,415,420,421,422,423,424,426,427,433,444,451,459,460,461,462,464,466,471,475,479,482,483,488,498,499,500,511,512,513,527,528,529,530,535,536,557,562,],[65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,65,]),'DOT':([2,7,8,9,11,12,13,17,21,22,23,25,26,27,28,30,31,32,33,34,35,37,39,43,45,48,49,53,54,55,63,64,65,66,68,69,72,73,74,75,76,79,80,81,82,83,85,86,88,89,90,91,92,95,97,101,103,104,105,106,107,109,110,111,112,113,116,117,118,120,122,124,126,127,128,130,131,133,134,135,137,140,142,143,145,147,149,153,155,156,158,159,160,162,164,165,166,177,179,180,182,185,187,188,190,192,194,195,197,198,202,204,215,218,222,223,224,225,226,228,229,231,232,234,236,238,241,242,243,245,246,249,253,255,256,264,279,283,284,285,286,287,299,302,308,309,312,317,321,324,326,328,330,332,334,336,340,342,343,344,346,354,356,358,361,362,363,364,365,366,370,371,375,376,379,380,381,382,383,384,385,387,390,391,392,393,394,395,396,399,402,404,406,418,419,428,429,430,431,432,434,443,448,450,468,474,476,477,478,481,486,487,492,496,503,504,507,510,526,537,538,539,540,541,546,547,560,561,564,565,],[-218,-17,-242,-18,-216,-205,-6,-233,-245,-236,-14,-10,-13,-238,-247,-237,-210,-20,-207,-209,-29,-12,-228,-5,-202,175,-234,-212,-235,-213,-215,-203,-204,-211,-222,-9,-162,-206,-244,-229,-208,-219,-214,-227,-226,-240,-231,-246,-16,-224,-225,-11,-15,-4,-19,-248,-217,-220,-8,-221,-160,-239,-7,250,-241,-230,-243,-232,-223,-134,-135,-117,-116,-34,-98,-97,-120,-119,-33,-83,-82,-80,-79,-49,-48,-86,-85,-123,-122,-76,-75,-58,-57,-67,-66,-104,-103,-95,-94,-101,-100,-70,-69,-107,-106,-73,-72,-64,-63,-137,-89,-88,-110,-109,-35,-161,-38,-163,-52,-51,-55,-54,-114,-113,-92,-91,-195,-36,-39,-165,-126,-125,-61,-60,-44,-45,-182,-26,-25,-23,-24,-27,-46,-186,175,175,-184,-150,-180,-22,-140,-194,-132,-131,-129,-128,-133,-115,-96,-118,-81,-78,-47,-84,-121,-74,-56,-65,-102,-183,-93,-99,-68,-105,-71,-62,-136,-138,-87,-187,-185,-108,-50,-53,-112,-181,-90,-37,-40,-139,-124,-42,-59,-28,-168,-21,-4,-164,-130,-127,175,-77,-145,-143,-41,-149,-148,-167,-43,-169,-153,-151,-159,-111,-171,-170,-155,-157,-166,-147,-175,-174,-173,-172,-146,-144,-154,-152,-156,-158,]),'NEQ':([2,7,8,9,11,12,13,17,21,22,23,25,26,27,28,30,31,32,33,34,35,37,39,43,45,48,49,53,54,55,63,64,65,66,68,69,72,73,74,75,76,79,80,81,82,83,84,85,86,88,89,90,91,92,95,97,101,103,104,105,106,107,109,110,112,113,116,117,118,120,122,124,126,127,128,130,131,133,134,135,137,140,142,143,145,147,149,151,153,155,156,158,159,160,162,164,165,166,177,179,180,182,185,187,188,190,192,194,195,197,198,202,204,215,218,222,223,224,225,226,228,229,231,232,234,236,238,241,242,243,245,246,249,253,255,256,264,279,283,284,285,286,287,299,302,308,309,312,317,321,324,326,328,330,332,334,336,340,342,343,344,346,354,356,358,361,362,363,364,365,366,370,371,375,376,379,380,381,382,383,384,385,387,390,391,392,393,394,395,396,399,402,404,406,418,419,428,430,431,432,443,448,450,468,474,476,477,478,481,486,487,492,496,503,504,507,510,526,537,538,539,540,541,546,547,560,561,564,565,],[-218,-17,-242,-18,-216,-205,-6,-233,-245,-236,-14,-10,-13,-238,-247,-237,-210,-20,-207,-209,-29,-12,-228,-5,-202,-32,-234,-212,-235,-213,-215,-203,-204,-211,-222,-9,-162,-206,-244,-229,-208,-219,-214,-227,-226,-240,213,-231,-246,-16,-224,-225,-11,-15,-4,-19,-248,-217,-220,-8,-221,-160,-239,-7,-241,-230,-243,-232,-223,-134,-135,-117,-116,-34,-98,-97,-120,-119,-33,-83,-82,-80,-79,-49,-48,-86,-85,213,-123,-122,-76,-75,-58,-57,-67,-66,-104,-103,-95,-94,-101,-100,-70,-69,-107,-106,-73,-72,-64,-63,-137,-89,-88,-110,-109,-35,-161,-38,-163,-52,-51,-55,-54,-114,-113,-92,-91,-195,-36,-39,-165,-126,-125,-61,-60,-44,-45,-182,-26,-25,-23,-24,-27,-46,-186,-30,-31,-184,-150,-180,-22,-140,-194,-132,-131,-129,-128,-133,-115,-96,-118,-81,-78,-47,-84,-121,-74,-56,-65,-102,-183,-93,-99,-68,-105,-71,-62,-136,-138,-87,-187,-185,-108,-50,-53,-112,-181,-90,-37,-40,-139,-124,-42,-59,-28,-168,-21,-164,-130,-127,-77,-145,-143,-41,-149,-148,-167,-43,-169,-153,-151,-159,-111,-171,-170,-155,-157,-166,-147,-175,-174,-173,-172,-146,-144,-154,-152,-156,-158,]),'THETA_LOWER':([0,1,6,15,18,38,47,52,70,78,87,94,100,108,121,125,129,132,136,139,141,144,148,154,157,161,163,167,172,173,174,175,176,178,181,186,189,193,196,200,203,206,207,208,209,210,211,212,213,217,227,230,233,237,244,248,251,254,265,266,272,280,281,282,290,301,311,315,316,322,325,329,331,335,345,355,398,407,415,420,421,422,423,424,426,427,433,444,451,459,460,461,462,464,466,471,475,479,482,483,488,498,499,500,511,512,513,527,528,529,530,535,536,557,562,],[66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,66,]),'DETERMINANT':([0,1,6,15,18,38,47,52,70,78,87,94,100,108,121,125,129,132,136,139,141,144,148,154,157,161,163,167,172,173,174,175,176,178,181,186,189,193,196,200,203,206,207,208,209,210,211,212,213,217,227,230,233,237,244,248,251,254,265,266,272,280,281,282,290,301,311,315,316,322,325,329,331,335,345,355,398,407,415,420,421,422,423,424,426,427,433,444,451,459,460,461,462,464,466,471,475,479,482,483,488,498,499,500,511,512,513,527,528,529,530,535,536,557,562,],[67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,]),'IOTA_LOWER':([0,1,6,15,18,38,47,52,70,78,87,94,100,108,121,125,129,132,136,139,141,144,148,154,157,161,163,167,172,173,174,175,176,178,181,186,189,193,196,200,203,206,207,208,209,210,211,212,213,217,227,230,233,237,244,248,251,254,265,266,272,280,281,282,290,301,311,315,316,322,325,329,331,335,345,355,398,407,415,420,421,422,423,424,426,427,433,444,451,459,460,461,462,464,466,471,475,479,482,483,488,498,499,500,511,512,513,527,528,529,530,535,536,557,562,],[68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,]),'PIPE':([0,1,2,6,7,8,9,11,12,13,15,17,18,21,22,23,25,26,27,28,30,31,32,33,34,35,37,38,39,43,45,47,48,49,52,53,54,55,63,64,65,66,68,69,70,72,73,74,75,76,78,79,80,81,82,83,85,86,87,88,89,90,91,92,94,95,97,100,101,103,104,105,106,107,108,109,110,112,113,116,117,118,120,121,122,124,125,126,127,128,129,130,131,132,133,134,135,136,137,139,140,141,142,143,144,145,147,148,149,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,172,173,174,175,176,177,178,179,180,181,182,185,186,187,188,189,190,192,193,194,195,196,197,198,200,201,202,203,204,206,207,208,209,210,211,212,213,215,217,218,222,223,224,225,226,227,228,229,230,231,232,233,234,236,237,238,241,242,243,244,245,246,248,249,251,253,254,255,256,264,265,266,272,279,280,281,282,283,284,285,286,287,290,299,301,302,308,309,311,312,315,316,317,321,322,324,325,326,328,329,330,331,332,334,335,336,340,342,343,344,345,346,354,355,356,358,361,362,363,364,365,366,370,371,375,376,379,380,381,382,383,384,385,387,390,391,392,393,394,395,396,398,399,402,404,406,407,415,418,419,420,421,422,423,424,426,427,428,430,431,432,433,443,444,448,450,451,459,460,461,462,464,466,468,471,474,475,476,477,478,479,481,482,483,486,487,488,492,496,498,499,500,503,504,507,510,511,512,513,526,527,528,529,530,535,536,537,538,539,540,541,546,547,557,560,561,562,564,565,],[70,70,-218,70,-17,-242,-18,-216,-205,-6,70,-233,70,-245,-236,-14,-10,-13,-238,-247,-237,-210,-20,-207,-209,-29,-12,70,-228,-5,-202,70,-32,-234,70,-212,-235,-213,-215,-203,-204,-211,-222,-9,70,-162,-206,-244,-229,-208,70,-219,-214,-227,-226,-240,-231,-246,70,-16,-224,-225,-11,-15,70,-4,-19,70,-248,-217,-220,-8,-221,-160,70,-239,-7,-241,-230,-243,-232,-223,-134,70,-135,-117,70,-116,-34,-98,70,-97,-120,70,-119,-33,-83,70,-82,70,-80,70,-79,-49,70,-48,-86,70,-85,-123,70,-122,-76,70,-75,-58,-57,70,-67,70,-66,-104,-103,70,70,70,70,70,70,-95,70,-94,-101,70,-100,-70,70,-69,-107,70,-106,-73,70,-72,-64,70,-63,-137,70,299,-89,70,-88,70,70,70,70,70,70,70,70,-110,70,-109,-35,-161,-38,-163,-52,70,-51,-55,70,-54,-114,70,-113,-92,70,-91,-195,-36,-39,70,-165,-126,70,-125,70,-61,70,-60,-44,-45,70,70,70,-182,70,70,70,-26,-25,-23,-24,-27,70,-46,70,-186,-30,-31,70,-184,70,70,-150,-180,70,-22,70,-140,-194,70,-132,70,-131,-129,70,-128,-133,-115,-96,-118,70,-81,-78,70,-47,-84,-121,-74,-56,-65,-102,-183,-93,-99,-68,-105,-71,-62,-136,-138,-87,-187,-185,-108,-50,-53,-112,-181,-90,-37,-40,70,-139,-124,-42,-59,70,70,-28,-168,70,70,70,70,70,70,70,-21,-164,-130,-127,70,-77,70,-145,-143,70,70,70,70,70,70,70,-41,70,-149,70,-148,-167,-43,70,-169,70,70,-153,-151,70,-159,-111,70,70,70,-171,-170,-155,-157,70,70,70,-166,70,70,70,70,70,70,-147,-175,-174,-173,-172,-146,-144,70,-154,-152,70,-156,-158,]),'SEC':([0,1,6,15,18,38,47,52,70,78,87,94,100,108,121,125,129,132,136,139,141,144,148,154,157,161,163,167,172,173,174,175,176,178,181,186,189,193,196,200,203,206,207,208,209,210,211,212,213,217,227,230,233,237,244,248,251,254,265,266,272,280,281,282,290,301,311,315,316,322,325,329,331,335,345,355,398,407,415,420,421,422,423,424,426,427,433,444,451,459,460,461,462,464,466,471,475,479,482,483,488,498,499,500,511,512,513,527,528,529,530,535,536,557,562,],[71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,]),'OMEGA':([0,1,6,15,18,38,47,52,70,78,87,94,100,108,121,125,129,132,136,139,141,144,148,154,157,161,163,167,172,173,174,175,176,178,181,186,189,193,196,200,203,206,207,208,209,210,211,212,213,217,227,230,233,237,244,248,251,254,265,266,272,280,281,282,290,301,311,315,316,322,325,329,331,335,345,355,398,407,415,420,421,422,423,424,426,427,433,444,451,459,460,461,462,464,466,471,475,479,482,483,488,498,499,500,511,512,513,527,528,529,530,535,536,557,562,],[85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,]),'NU':([0,1,6,15,18,38,47,52,70,78,87,94,100,108,121,125,129,132,136,139,141,144,148,154,157,161,163,167,172,173,174,175,176,178,181,186,189,193,196,200,203,206,207,208,209,210,211,212,213,217,227,230,233,237,244,248,251,254,265,266,272,280,281,282,290,301,311,315,316,322,325,329,331,335,345,355,398,407,415,420,421,422,423,424,426,427,433,444,451,459,460,461,462,464,466,471,475,479,482,483,488,498,499,500,511,512,513,527,528,529,530,535,536,557,562,],[86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,]),'PSI_LOWER':([0,1,6,15,18,38,47,52,70,78,87,94,100,108,121,125,129,132,136,139,141,144,148,154,157,161,163,167,172,173,174,175,176,178,181,186,189,193,196,200,203,206,207,208,209,210,211,212,213,217,227,230,233,237,244,248,251,254,265,266,272,280,281,282,290,301,311,315,316,322,325,329,331,335,345,355,398,407,415,420,421,422,423,424,426,427,433,444,451,459,460,461,462,464,466,471,475,479,482,483,488,498,499,500,511,512,513,527,528,529,530,535,536,557,562,],[73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,]),'XI':([0,1,6,15,18,38,47,52,70,78,87,94,100,108,121,125,129,132,136,139,141,144,148,154,157,161,163,167,172,173,174,175,176,178,181,186,189,193,196,200,203,206,207,208,209,210,211,212,213,217,227,230,233,237,244,248,251,254,265,266,272,280,281,282,290,301,311,315,316,322,325,329,331,335,345,355,398,407,415,420,421,422,423,424,426,427,433,444,451,459,460,461,462,464,466,471,475,479,482,483,488,498,499,500,511,512,513,527,528,529,530,535,536,557,562,],[74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,]),'KAPPA':([0,1,6,15,18,38,47,52,70,78,87,94,100,108,121,125,129,132,136,139,141,144,148,154,157,161,163,167,172,173,174,175,176,178,181,186,189,193,196,200,203,206,207,208,209,210,211,212,213,217,227,230,233,237,244,248,251,254,265,266,272,280,281,282,290,301,311,315,316,322,325,329,331,335,345,355,398,407,415,420,421,422,423,424,426,427,433,444,451,459,460,461,462,464,466,471,475,479,482,483,488,498,499,500,511,512,513,527,528,529,530,535,536,557,562,],[75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,75,]),'ZETA_LOWER':([0,1,6,15,18,38,47,52,70,78,87,94,100,108,121,125,129,132,136,139,141,144,148,154,157,161,163,167,172,173,174,175,176,178,181,186,189,193,196,200,203,206,207,208,209,210,211,212,213,217,227,230,233,237,244,248,251,254,265,266,272,280,281,282,290,301,311,315,316,322,325,329,331,335,345,355,398,407,415,420,421,422,423,424,426,427,433,444,451,459,460,461,462,464,466,471,475,479,482,483,488,498,499,500,511,512,513,527,528,529,530,535,536,557,562,],[76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,76,]),'PERCENT':([95,110,324,429,],[224,243,396,224,]),'RHO_LOWER':([0,1,6,15,18,38,47,52,70,78,87,94,100,108,121,125,129,132,136,139,141,144,148,154,157,161,163,167,172,173,174,175,176,178,181,186,189,193,196,200,203,206,207,208,209,210,211,212,213,217,227,230,233,237,244,248,251,254,265,266,272,280,281,282,290,301,311,315,316,322,325,329,331,335,345,355,398,407,415,420,421,422,423,424,426,427,433,444,451,459,460,461,462,464,466,471,475,479,482,483,488,498,499,500,511,512,513,527,528,529,530,535,536,557,562,],[79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,79,]),'TAU_LOWER':([0,1,6,15,18,38,47,52,70,78,87,94,100,108,121,125,129,132,136,139,141,144,148,154,157,161,163,167,172,173,174,175,176,178,181,186,189,193,196,200,203,206,207,208,209,210,211,212,213,217,227,230,233,237,244,248,251,254,265,266,272,280,281,282,290,301,311,315,316,322,325,329,331,335,345,355,398,407,415,420,421,422,423,424,426,427,433,444,451,459,460,461,462,464,466,471,475,479,482,483,488,498,499,500,511,512,513,527,528,529,530,535,536,557,562,],[80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,80,]),'BETA':([0,1,6,15,18,38,47,52,70,78,87,94,100,108,121,125,129,132,136,139,141,144,148,154,157,161,163,167,172,173,174,175,176,178,181,186,189,193,196,200,203,206,207,208,209,210,211,212,213,217,227,230,233,237,244,248,251,254,265,266,272,280,281,282,290,301,311,315,316,322,325,329,331,335,345,355,398,407,415,420,421,422,423,424,426,427,433,444,451,459,460,461,462,464,466,471,475,479,482,483,488,498,499,500,511,512,513,527,528,529,530,535,536,557,562,],[81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,81,]),'PSI':([0,1,6,15,18,38,47,52,70,78,87,94,100,108,121,125,129,132,136,139,141,144,148,154,157,161,163,167,172,173,174,175,176,178,181,186,189,193,196,200,203,206,207,208,209,210,211,212,213,217,227,230,233,237,244,248,251,254,265,266,272,280,281,282,290,301,311,315,316,322,325,329,331,335,345,355,398,407,415,420,421,422,423,424,426,427,433,444,451,459,460,461,462,464,466,471,475,479,482,483,488,498,499,500,511,512,513,527,528,529,530,535,536,557,562,],[49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,]),'PI_UPPER':([0,1,6,15,18,38,47,52,70,78,87,94,100,108,121,125,129,132,136,139,141,144,148,154,157,161,163,167,172,173,174,175,176,178,181,186,189,193,196,200,203,206,207,208,209,210,211,212,213,217,227,230,233,237,244,248,251,254,265,266,272,280,281,282,290,301,311,315,316,322,325,329,331,335,345,355,398,407,415,420,421,422,423,424,426,427,433,444,451,459,460,461,462,464,466,471,475,479,482,483,488,498,499,500,511,512,513,527,528,529,530,535,536,557,562,],[82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,]),'THETA':([0,1,6,15,18,38,47,52,70,78,87,94,100,108,121,125,129,132,136,139,141,144,148,154,157,161,163,167,172,173,174,175,176,178,181,186,189,193,196,200,203,206,207,208,209,210,211,212,213,217,227,230,233,237,244,248,251,254,265,266,272,280,281,282,290,301,311,315,316,322,325,329,331,335,345,355,398,407,415,420,421,422,423,424,426,427,433,444,451,459,460,461,462,464,466,471,475,479,482,483,488,498,499,500,511,512,513,527,528,529,530,535,536,557,562,],[83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,]),'DIFFERENTIAL':([2,7,8,9,11,12,13,17,21,22,23,25,26,27,28,30,31,32,33,34,35,37,39,43,45,48,49,53,54,55,63,64,65,66,68,69,72,73,74,75,76,79,80,81,82,83,85,86,88,89,90,91,92,95,97,101,103,104,105,106,107,109,110,112,113,116,117,118,120,122,124,126,127,128,130,131,133,134,135,137,140,142,143,145,147,149,153,155,156,158,159,160,162,164,165,166,177,179,180,182,185,187,188,190,192,194,195,197,198,202,204,215,218,221,222,223,224,225,226,228,229,231,232,234,236,238,241,242,243,245,246,249,253,255,256,264,279,283,284,285,286,287,299,302,308,309,312,317,321,324,326,328,330,332,334,336,340,342,343,344,346,354,356,358,361,362,363,364,365,366,370,371,375,376,379,380,381,382,383,384,385,387,390,391,392,393,394,395,396,399,402,404,406,411,418,419,428,430,431,432,437,443,448,450,452,454,468,474,476,477,478,481,486,487,492,496,503,504,506,507,510,519,525,526,537,538,539,540,541,546,547,560,561,564,565,],[-218,-17,-242,-18,-216,-205,-6,-233,-245,-236,-14,-10,-13,-238,-247,-237,-210,-20,-207,-209,-29,-12,-228,-5,-202,-32,-234,-212,-235,-213,-215,-203,-204,-211,-222,-9,-162,-206,-244,-229,-208,-219,-214,-227,-226,-240,-231,-246,-16,-224,-225,-11,-15,-4,-19,-248,-217,-220,-8,-221,-160,-239,-7,-241,-230,-243,-232,-223,-134,-135,-117,-116,-34,-98,-97,-120,-119,-33,-83,-82,-80,-79,-49,-48,-86,-85,-123,-122,-76,-75,-58,-57,-67,-66,-104,-103,-95,-94,-101,-100,-70,-69,-107,-106,-73,-72,-64,-63,-137,-89,-88,-110,-109,317,-35,-161,-38,-163,-52,-51,-55,-54,-114,-113,-92,-91,-195,-36,-39,-165,-126,-125,-61,-60,-44,-45,-182,-26,-25,-23,-24,-27,-46,-186,-30,-31,-184,-150,-180,-22,-140,-194,-132,-131,-129,-128,-133,-115,-96,-118,-81,-78,-47,-84,-121,-74,-56,-65,-102,-183,-93,-99,-68,-105,-71,-62,-136,-138,-87,-187,-185,-108,-50,-53,-112,-181,-90,-37,-40,-139,-124,-42,-59,438,-28,-168,-21,-164,-130,-127,463,-77,-145,-143,474,476,-41,-149,-148,-167,-43,-169,-153,-151,-159,-111,-171,-170,520,-155,-157,531,537,-166,-147,-175,-174,-173,-172,-146,-144,-154,-152,-156,-158,]),'UNDERLINE':([4,33,57,60,93,94,],[123,146,184,191,216,220,]),'BEGIN_BMATRIX':([0,1,6,15,18,38,47,52,67,70,78,87,94,100,108,121,125,129,132,136,139,141,144,148,154,157,161,163,167,172,173,174,175,176,178,181,186,189,193,196,199,200,203,206,207,208,209,210,211,212,213,217,227,230,233,237,244,248,251,254,265,266,272,280,281,282,290,301,311,315,316,322,325,329,331,335,345,355,398,407,415,420,421,422,423,424,426,427,433,444,451,459,460,461,462,464,466,471,475,479,482,483,488,498,499,500,511,512,513,527,528,529,530,535,536,557,562,],[87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,]),'CHOOSE':([2,7,8,9,11,12,13,17,21,22,23,25,26,27,28,30,31,32,33,34,35,37,39,43,45,48,49,53,54,55,63,64,65,66,68,69,72,73,74,75,76,79,80,81,82,83,85,86,88,89,90,91,92,95,97,101,103,104,105,106,107,109,110,112,113,116,117,118,120,122,124,126,127,128,130,131,133,134,135,137,140,142,143,145,147,149,153,155,156,158,159,160,162,164,165,166,177,179,180,182,183,185,187,188,190,192,194,195,197,198,202,204,215,218,222,223,224,225,226,228,229,231,232,234,236,238,241,242,243,245,246,249,253,255,256,264,279,283,284,285,286,287,299,302,308,309,312,317,321,324,326,328,330,332,334,336,340,342,343,344,346,354,356,358,361,362,363,364,365,366,370,371,375,376,379,380,381,382,383,384,385,387,390,391,392,393,394,395,396,399,402,404,406,418,419,428,430,431,432,443,448,450,468,474,476,477,478,481,486,487,492,496,503,504,507,510,526,537,538,539,540,541,546,547,560,561,564,565,],[-218,-17,-242,-18,-216,-205,-6,-233,-245,-236,-14,-10,-13,-238,-247,-237,-210,-20,-207,-209,-29,-12,-228,-5,-202,-32,-234,-212,-235,-213,-215,-203,-204,-211,-222,-9,-162,-206,-244,-229,-208,-219,-214,-227,-226,-240,-231,-246,-16,-224,-225,-11,-15,-4,-19,-248,-217,-220,-8,-221,-160,-239,-7,-241,-230,-243,-232,-223,-134,-135,-117,-116,-34,-98,-97,-120,-119,-33,-83,-82,-80,-79,-49,-48,-86,-85,-123,-122,-76,-75,-58,-57,-67,-66,-104,-103,-95,-94,-101,-100,290,-70,-69,-107,-106,-73,-72,-64,-63,-137,-89,-88,-110,-109,-35,-161,-38,-163,-52,-51,-55,-54,-114,-113,-92,-91,-195,-36,-39,-165,-126,-125,-61,-60,-44,-45,-182,-26,-25,-23,-24,-27,-46,-186,-30,-31,-184,-150,-180,-22,-140,-194,-132,-131,-129,-128,-133,-115,-96,-118,-81,-78,-47,-84,-121,-74,-56,-65,-102,-183,-93,-99,-68,-105,-71,-62,-136,-138,-87,-187,-185,-108,-50,-53,-112,-181,-90,-37,-40,-139,-124,-42,-59,-28,-168,-21,-164,-130,-127,-77,-145,-143,-41,-149,-148,-167,-43,-169,-153,-151,-159,-111,-171,-170,-155,-157,-166,-147,-175,-174,-173,-172,-146,-144,-154,-152,-156,-158,]),'GAMMA_LOWER':([0,1,6,15,18,38,47,52,70,78,87,94,100,108,121,125,129,132,136,139,141,144,148,154,157,161,163,167,172,173,174,175,176,178,181,186,189,193,196,200,203,206,207,208,209,210,211,212,213,217,227,230,233,237,244,248,251,254,265,266,272,280,281,282,290,301,311,315,316,322,325,329,331,335,345,355,398,407,415,420,421,422,423,424,426,427,433,444,451,459,460,461,462,464,466,471,475,479,482,483,488,498,499,500,511,512,513,527,528,529,530,535,536,557,562,],[89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,]),'END_CASE':([2,7,8,9,11,12,13,17,21,22,23,25,26,27,28,30,31,32,33,34,35,37,39,43,45,48,49,53,54,55,63,64,65,66,68,69,72,73,74,75,76,79,80,81,82,83,85,86,88,89,90,91,92,95,97,101,103,104,105,106,107,109,110,112,113,116,117,118,120,122,124,126,127,128,130,131,133,134,135,137,140,142,143,145,147,149,150,152,153,155,156,158,159,160,162,164,165,166,177,179,180,182,185,187,188,190,192,194,195,197,198,202,204,215,218,222,223,224,225,226,228,229,231,232,234,236,238,241,242,243,245,246,249,253,255,256,264,272,279,283,284,285,286,287,299,302,303,304,305,306,307,308,309,310,312,317,321,324,326,328,330,332,334,336,340,342,343,344,346,354,356,358,359,361,362,363,364,365,366,370,371,375,376,379,380,381,382,383,384,385,387,390,391,392,393,394,395,396,399,402,404,406,418,419,428,430,431,432,443,448,450,468,474,476,477,478,481,486,487,492,496,503,504,507,510,526,537,538,539,540,541,546,547,560,561,564,565,],[-218,-17,-242,-18,-216,-205,-6,-233,-245,-236,-14,-10,-13,-238,-247,-237,-210,-20,-207,-209,-29,-12,-228,-5,-202,-32,-234,-212,-235,-213,-215,-203,-204,-211,-222,-9,-162,-206,-244,-229,-208,-219,-214,-227,-226,-240,-231,-246,-16,-224,-225,-11,-15,-4,-19,-248,-217,-220,-8,-221,-160,-239,-7,-241,-230,-243,-232,-223,-134,-135,-117,-116,-34,-98,-97,-120,-119,-33,-83,-82,-80,-79,-49,-48,-86,-85,-179,273,-123,-122,-76,-75,-58,-57,-67,-66,-104,-103,-95,-94,-101,-100,-70,-69,-107,-106,-73,-72,-64,-63,-137,-89,-88,-110,-109,-35,-161,-38,-163,-52,-51,-55,-54,-114,-113,-92,-91,-195,-36,-39,-165,-126,-125,-61,-60,-44,-45,360,-182,-26,-25,-23,-24,-27,-46,-186,-199,-196,-201,-198,-200,-30,-31,-197,-184,-150,-180,-22,-140,-194,-132,-131,-129,-128,-133,-115,-96,-118,-81,-78,-47,-84,-178,-121,-74,-56,-65,-102,-183,-93,-99,-68,-105,-71,-62,-136,-138,-87,-187,-185,-108,-50,-53,-112,-181,-90,-37,-40,-139,-124,-42,-59,-28,-168,-21,-164,-130,-127,-77,-145,-143,-41,-149,-148,-167,-43,-169,-153,-151,-159,-111,-171,-170,-155,-157,-166,-147,-175,-174,-173,-172,-146,-144,-154,-152,-156,-158,]),'MU_LOWER':([0,1,6,15,18,38,47,52,70,78,87,94,100,108,121,125,129,132,136,139,141,144,148,154,157,161,163,167,172,173,174,175,176,178,181,186,189,193,196,200,203,206,207,208,209,210,211,212,213,217,227,230,233,237,244,248,251,254,265,266,272,280,281,282,290,301,311,315,316,322,325,329,331,335,345,355,398,407,415,420,421,422,423,424,426,427,433,444,451,459,460,461,462,464,466,471,475,479,482,483,488,498,499,500,511,512,513,527,528,529,530,535,536,557,562,],[90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,]),'DIVIDE':([2,7,8,9,11,12,13,17,21,22,23,25,26,27,28,30,31,32,33,34,35,37,39,43,45,48,49,53,54,55,63,64,65,66,68,69,72,73,74,75,76,79,80,81,82,83,85,86,88,89,90,91,92,95,97,101,103,104,105,106,107,109,110,112,113,116,117,118,120,122,124,126,127,128,130,131,133,134,135,137,140,142,143,145,147,149,153,155,156,158,159,160,162,164,165,166,177,179,180,182,185,187,188,190,192,194,195,197,198,202,204,215,218,222,223,224,225,226,228,229,231,232,234,236,238,241,242,243,245,246,249,253,255,256,264,279,283,284,285,286,287,299,302,308,309,312,317,321,324,326,328,330,332,334,336,340,342,343,344,346,354,356,358,361,362,363,364,365,366,370,371,375,376,379,380,381,382,383,384,385,387,390,391,392,393,394,395,396,399,402,404,406,418,419,428,429,430,431,432,434,443,448,450,468,474,476,477,478,481,486,487,492,496,503,504,507,510,526,537,538,539,540,541,546,547,560,561,564,565,],[-218,-17,-242,-18,-216,-205,-6,-233,-245,-236,-14,-10,-13,-238,-247,-237,-210,-20,-207,-209,-29,-12,-228,-5,-202,172,-234,-212,-235,-213,-215,-203,-204,-211,-222,-9,-162,-206,-244,-229,-208,-219,-214,-227,-226,-240,-231,-246,-16,-224,-225,-11,-15,-4,-19,-248,-217,-220,-8,-221,-160,-239,-7,-241,-230,-243,-232,-223,-134,-135,-117,-116,-34,-98,-97,-120,-119,-33,-83,-82,-80,-79,-49,-48,-86,-85,-123,-122,-76,-75,-58,-57,-67,-66,-104,-103,-95,-94,-101,-100,-70,-69,-107,-106,-73,-72,-64,-63,-137,-89,-88,-110,-109,-35,-161,-38,-163,-52,-51,-55,-54,-114,-113,-92,-91,-195,-36,-39,-165,-126,-125,-61,-60,-44,-45,-182,-26,-25,-23,-24,-27,-46,-186,172,172,-184,-150,-180,-22,-140,-194,-132,-131,-129,-128,-133,-115,-96,-118,-81,-78,-47,-84,-121,-74,-56,-65,-102,-183,-93,-99,-68,-105,-71,-62,-136,-138,-87,-187,-185,-108,-50,-53,-112,-181,-90,-37,-40,-139,-124,-42,-59,-28,-168,-21,-4,-164,-130,-127,172,-77,-145,-143,-41,-149,-148,-167,-43,-169,-153,-151,-159,-111,-171,-170,-155,-157,-166,-147,-175,-174,-173,-172,-146,-144,-154,-152,-156,-158,]),'LOG':([0,1,6,15,18,38,47,52,70,78,87,94,100,108,121,125,129,132,136,139,141,144,148,154,157,161,163,167,172,173,174,175,176,178,181,186,189,193,196,200,203,206,207,208,209,210,211,212,213,217,227,230,233,237,244,248,251,254,265,266,272,280,281,282,290,301,311,315,316,322,325,329,331,335,345,355,398,407,415,420,421,422,423,424,426,427,433,444,451,459,460,461,462,464,466,471,475,479,482,483,488,498,499,500,511,512,513,527,528,529,530,535,536,557,562,],[93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,]),'INTEGRAL':([0,1,6,15,18,38,47,52,70,78,87,94,100,108,121,125,129,132,136,139,141,144,148,154,157,161,163,167,172,173,174,175,176,178,181,186,189,193,196,200,203,206,207,208,209,210,211,212,213,217,227,230,233,237,244,248,251,254,265,266,272,280,281,282,290,301,311,315,316,322,325,329,331,335,345,355,398,407,415,420,421,422,423,424,426,427,433,444,451,459,460,461,462,464,466,471,475,479,482,483,488,498,499,500,511,512,513,527,528,529,530,535,536,557,562,],[94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,]),'NUMBER':([0,1,3,5,6,10,14,15,16,18,20,24,36,38,40,41,42,44,46,47,50,51,52,58,59,61,62,70,71,78,87,93,94,96,98,99,100,102,108,111,115,121,125,129,132,136,139,141,144,148,154,157,161,163,167,172,173,174,175,176,178,181,186,189,193,196,200,203,206,207,208,209,210,211,212,213,217,227,230,233,237,244,247,248,250,251,252,254,265,266,270,272,280,281,282,290,301,311,313,315,316,322,325,329,331,335,345,355,398,407,409,413,415,420,421,422,423,424,426,427,433,444,451,459,460,461,462,464,466,471,475,479,482,483,488,498,499,500,511,512,513,527,528,529,530,535,536,543,548,550,555,557,562,],[95,95,120,124,95,128,131,95,135,95,140,143,147,95,153,156,159,162,165,95,177,180,95,185,188,192,195,95,202,95,95,215,95,226,229,232,95,236,95,246,253,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,330,95,334,95,338,95,95,95,357,95,95,95,95,95,95,95,386,95,95,95,95,95,95,95,95,95,429,95,436,440,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,549,552,554,559,95,95,]),'RFLOOR':([2,7,8,9,11,12,13,17,21,22,23,25,26,27,28,30,31,32,33,34,35,37,39,43,45,48,49,53,54,55,63,64,65,66,68,69,72,73,74,75,76,79,80,81,82,83,85,86,88,89,90,91,92,95,97,101,103,104,105,106,107,109,110,112,113,116,117,118,119,120,122,124,126,127,128,130,131,133,134,135,137,140,142,143,145,147,149,153,155,156,158,159,160,162,164,165,166,177,179,180,182,185,187,188,190,192,194,195,197,198,202,204,215,218,222,223,224,225,226,228,229,231,232,234,236,238,241,242,243,245,246,249,253,255,256,264,279,283,284,285,286,287,299,302,308,309,312,317,321,324,326,328,330,332,334,336,340,342,343,344,346,354,356,358,361,362,363,364,365,366,370,371,375,376,379,380,381,382,383,384,385,387,390,391,392,393,394,395,396,399,402,404,406,418,419,428,430,431,432,443,448,450,468,474,476,477,478,481,486,487,492,496,503,504,507,510,526,537,538,539,540,541,546,547,560,561,564,565,],[-218,-17,-242,-18,-216,-205,-6,-233,-245,-236,-14,-10,-13,-238,-247,-237,-210,-20,-207,-209,-29,-12,-228,-5,-202,-32,-234,-212,-235,-213,-215,-203,-204,-211,-222,-9,-162,-206,-244,-229,-208,-219,-214,-227,-226,-240,-231,-246,-16,-224,-225,-11,-15,-4,-19,-248,-217,-220,-8,-221,-160,-239,-7,-241,-230,-243,-232,-223,256,-134,-135,-117,-116,-34,-98,-97,-120,-119,-33,-83,-82,-80,-79,-49,-48,-86,-85,-123,-122,-76,-75,-58,-57,-67,-66,-104,-103,-95,-94,-101,-100,-70,-69,-107,-106,-73,-72,-64,-63,-137,-89,-88,-110,-109,-35,-161,-38,-163,-52,-51,-55,-54,-114,-113,-92,-91,-195,-36,-39,-165,-126,-125,-61,-60,-44,-45,-182,-26,-25,-23,-24,-27,-46,-186,-30,-31,-184,-150,-180,-22,-140,-194,-132,-131,-129,-128,-133,-115,-96,-118,-81,-78,-47,-84,-121,-74,-56,-65,-102,-183,-93,-99,-68,-105,-71,-62,-136,-138,-87,-187,-185,-108,-50,-53,-112,-181,-90,-37,-40,-139,-124,-42,-59,-28,-168,-21,-164,-130,-127,-77,-145,-143,-41,-149,-148,-167,-43,-169,-153,-151,-159,-111,-171,-170,-155,-157,-166,-147,-175,-174,-173,-172,-146,-144,-154,-152,-156,-158,]),'SINH':([0,1,6,15,18,38,47,52,70,78,87,94,100,108,121,125,129,132,136,139,141,144,148,154,157,161,163,167,172,173,174,175,176,178,181,186,189,193,196,200,203,206,207,208,209,210,211,212,213,217,227,230,233,237,244,248,251,254,265,266,272,280,281,282,290,301,311,315,316,322,325,329,331,335,345,355,398,407,415,420,421,422,423,424,426,427,433,444,451,459,460,461,462,464,466,471,475,479,482,483,488,498,499,500,511,512,513,527,528,529,530,535,536,557,562,],[96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,]),'D':([139,],[265,]),'UPSILON_LOWER':([0,1,6,15,18,38,47,52,70,78,87,94,100,108,121,125,129,132,136,139,141,144,148,154,157,161,163,167,172,173,174,175,176,178,181,186,189,193,196,200,203,206,207,208,209,210,211,212,213,217,227,230,233,237,244,248,251,254,265,266,272,280,281,282,290,301,311,315,316,322,325,329,331,335,345,355,398,407,415,420,421,422,423,424,426,427,433,444,451,459,460,461,462,464,466,471,475,479,482,483,488,498,499,500,511,512,513,527,528,529,530,535,536,557,562,],[106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,106,]),'LE':([2,7,8,9,11,12,13,17,21,22,23,25,26,27,28,30,31,32,33,34,35,37,39,43,45,48,49,53,54,55,63,64,65,66,68,69,72,73,74,75,76,79,80,81,82,83,84,85,86,88,89,90,91,92,95,97,101,103,104,105,106,107,109,110,112,113,116,117,118,120,122,124,126,127,128,130,131,133,134,135,137,140,142,143,145,147,149,151,153,155,156,158,159,160,162,164,165,166,177,179,180,182,185,187,188,190,192,194,195,197,198,202,204,215,218,222,223,224,225,226,228,229,231,232,234,236,238,241,242,243,245,246,249,253,255,256,264,279,283,284,285,286,287,299,302,308,309,312,317,321,324,326,328,330,332,334,336,340,342,343,344,346,354,356,358,361,362,363,364,365,366,370,371,375,376,379,380,381,382,383,384,385,387,390,391,392,393,394,395,396,399,402,404,406,418,419,428,430,431,432,443,448,450,468,474,476,477,478,481,486,487,492,496,503,504,507,510,526,537,538,539,540,541,546,547,560,561,564,565,],[-218,-17,-242,-18,-216,-205,-6,-233,-245,-236,-14,-10,-13,-238,-247,-237,-210,-20,-207,-209,-29,-12,-228,-5,-202,-32,-234,-212,-235,-213,-215,-203,-204,-211,-222,-9,-162,-206,-244,-229,-208,-219,-214,-227,-226,-240,206,-231,-246,-16,-224,-225,-11,-15,-4,-19,-248,-217,-220,-8,-221,-160,-239,-7,-241,-230,-243,-232,-223,-134,-135,-117,-116,-34,-98,-97,-120,-119,-33,-83,-82,-80,-79,-49,-48,-86,-85,206,-123,-122,-76,-75,-58,-57,-67,-66,-104,-103,-95,-94,-101,-100,-70,-69,-107,-106,-73,-72,-64,-63,-137,-89,-88,-110,-109,-35,-161,-38,-163,-52,-51,-55,-54,-114,-113,-92,-91,-195,-36,-39,-165,-126,-125,-61,-60,-44,-45,-182,-26,-25,-23,-24,-27,-46,-186,-30,-31,-184,-150,-180,-22,-140,-194,-132,-131,-129,-128,-133,-115,-96,-118,-81,-78,-47,-84,-121,-74,-56,-65,-102,-183,-93,-99,-68,-105,-71,-62,-136,-138,-87,-187,-185,-108,-50,-53,-112,-181,-90,-37,-40,-139,-124,-42,-59,-28,-168,-21,-164,-130,-127,-77,-145,-143,-41,-149,-148,-167,-43,-169,-153,-151,-159,-111,-171,-170,-155,-157,-166,-147,-175,-174,-173,-172,-146,-144,-154,-152,-156,-158,]),'LN':([0,1,6,15,18,38,47,52,70,78,87,94,100,108,121,125,129,132,136,139,141,144,148,154,157,161,163,167,172,173,174,175,176,178,181,186,189,193,196,200,203,206,207,208,209,210,211,212,213,217,227,230,233,237,244,248,251,254,265,266,272,280,281,282,290,301,311,315,316,322,325,329,331,335,345,355,398,407,415,420,421,422,423,424,426,427,433,444,451,459,460,461,462,464,466,471,475,479,482,483,488,498,499,500,511,512,513,527,528,529,530,535,536,557,562,],[99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,]),'SIGMA':([0,1,6,15,18,38,47,52,70,78,87,94,100,108,121,125,129,132,136,139,141,144,148,154,157,161,163,167,172,173,174,175,176,178,181,186,189,193,196,200,203,206,207,208,209,210,211,212,213,217,227,230,233,237,244,248,251,254,265,266,272,280,281,282,290,301,311,315,316,322,325,329,331,335,345,355,398,407,415,420,421,422,423,424,426,427,433,444,451,459,460,461,462,464,466,471,475,479,482,483,488,498,499,500,511,512,513,527,528,529,530,535,536,557,562,],[30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,]),'TO':([341,],[407,]),'PHI_LOWER':([0,1,6,15,18,38,47,52,70,78,87,94,100,108,121,125,129,132,136,139,141,144,148,154,157,161,163,167,172,173,174,175,176,178,181,186,189,193,196,200,203,206,207,208,209,210,211,212,213,217,227,230,233,237,244,248,251,254,265,266,272,280,281,282,290,301,311,315,316,322,325,329,331,335,345,355,398,407,415,420,421,422,423,424,426,427,433,444,451,459,460,461,462,464,466,471,475,479,482,483,488,498,499,500,511,512,513,527,528,529,530,535,536,557,562,],[12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,]),'COMMA':([2,7,8,9,11,12,13,17,21,22,23,25,26,27,28,30,31,32,33,34,35,37,39,43,45,48,49,53,54,55,63,64,65,66,68,69,72,73,74,75,76,79,80,81,82,83,85,86,88,89,90,91,92,95,97,101,103,104,105,106,107,109,110,112,113,116,117,118,120,122,124,126,127,128,130,131,133,134,135,137,140,142,143,145,147,149,153,155,156,158,159,160,162,164,165,166,177,179,180,182,185,187,188,190,192,194,195,197,198,202,204,215,218,222,223,224,225,226,228,229,231,232,234,236,238,241,242,243,245,246,249,253,255,256,261,262,264,268,274,279,283,284,285,286,287,298,299,302,308,309,312,317,321,324,326,327,328,330,332,333,334,336,340,342,343,344,346,354,356,358,361,362,363,364,365,366,370,371,375,376,379,380,381,382,383,384,385,387,390,391,392,393,394,395,396,399,400,401,402,403,404,406,408,418,419,428,430,431,432,443,448,450,468,469,474,476,477,478,481,486,487,492,496,503,504,507,510,514,526,537,538,539,540,541,546,547,560,561,564,565,],[-218,-17,-242,-18,-216,-205,-6,-233,-245,-236,-14,-10,-13,-238,-247,-237,-210,-20,-207,-209,-29,-12,-228,-5,-202,-32,-234,-212,-235,-213,-215,-203,-204,-211,-222,-9,-162,-206,-244,-229,-208,-219,-214,-227,-226,-240,-231,-246,-16,-224,-225,-11,-15,-4,-19,-248,-217,-220,-8,-221,-160,-239,-7,-241,-230,-243,-232,-223,-134,-135,-117,-116,-34,-98,-97,-120,-119,-33,-83,-82,-80,-79,-49,-48,-86,-85,-123,-122,-76,-75,-58,-57,-67,-66,-104,-103,-95,-94,-101,-100,-70,-69,-107,-106,-73,-72,-64,-63,-137,-89,-88,-110,-109,-35,-161,-38,-163,-52,-51,-55,-54,-114,-113,-92,-91,-195,-36,-39,-165,-126,-125,-61,-60,-44,345,-193,-45,355,345,-182,-26,-25,-23,-24,-27,345,-46,-186,-30,-31,-184,-150,-180,-22,-140,345,-194,-132,-131,345,-129,-128,-133,-115,-96,-118,-81,-78,-47,-84,-121,-74,-56,-65,-102,-183,-93,-99,-68,-105,-71,-62,-136,-138,-87,-187,-185,-108,-50,-53,-112,-181,-90,-37,-40,-139,345,345,-124,345,-42,-59,-192,-28,-168,-21,-164,-130,-127,-77,-145,-143,-41,345,-149,-148,-167,-43,-169,-153,-151,-159,-111,-171,-170,-155,-157,345,-166,-147,-175,-174,-173,-172,-146,-144,-154,-152,-156,-158,]),'BEGIN_VMATRIX':([0,1,6,15,18,38,47,52,70,78,87,94,100,108,121,125,129,132,136,139,141,144,148,154,157,161,163,167,172,173,174,175,176,178,181,186,189,193,196,200,203,206,207,208,209,210,211,212,213,217,227,230,233,237,244,248,251,254,265,266,272,280,281,282,290,301,311,315,316,322,325,329,331,335,345,355,398,407,415,420,421,422,423,424,426,427,433,444,451,459,460,461,462,464,466,471,475,479,482,483,488,498,499,500,511,512,513,527,528,529,530,535,536,557,562,],[100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,]),'UPSILON':([0,1,6,15,18,38,47,52,70,78,87,94,100,108,121,125,129,132,136,139,141,144,148,154,157,161,163,167,172,173,174,175,176,178,181,186,189,193,196,200,203,206,207,208,209,210,211,212,213,217,227,230,233,237,244,248,251,254,265,266,272,280,281,282,290,301,311,315,316,322,325,329,331,335,345,355,398,407,415,420,421,422,423,424,426,427,433,444,451,459,460,461,462,464,466,471,475,479,482,483,488,498,499,500,511,512,513,527,528,529,530,535,536,557,562,],[101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,]),'ACSC':([0,1,6,15,18,38,47,52,70,78,87,94,100,108,121,125,129,132,136,139,141,144,148,154,157,161,163,167,172,173,174,175,176,178,181,186,189,193,196,200,203,206,207,208,209,210,211,212,213,217,227,230,233,237,244,248,251,254,265,266,272,280,281,282,290,301,311,315,316,322,325,329,331,335,345,355,398,407,415,420,421,422,423,424,426,427,433,444,451,459,460,461,462,464,466,471,475,479,482,483,488,498,499,500,511,512,513,527,528,529,530,535,536,557,562,],[102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,]),'NU_LOWER':([0,1,6,15,18,38,47,52,70,78,87,94,100,108,121,125,129,132,136,139,141,144,148,154,157,161,163,167,172,173,174,175,176,178,181,186,189,193,196,200,203,206,207,208,209,210,211,212,213,217,227,230,233,237,244,248,251,254,265,266,272,280,281,282,290,301,311,315,316,322,325,329,331,335,345,355,398,407,415,420,421,422,423,424,426,427,433,444,451,459,460,461,462,464,466,471,475,479,482,483,488,498,499,500,511,512,513,527,528,529,530,535,536,557,562,],[2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,]),'OMICRON_LOWER':([0,1,6,15,18,38,47,52,70,78,87,94,100,108,121,125,129,132,136,139,141,144,148,154,157,161,163,167,172,173,174,175,176,178,181,186,189,193,196,200,203,206,207,208,209,210,211,212,213,217,227,230,233,237,244,248,251,254,265,266,272,280,281,282,290,301,311,315,316,322,325,329,331,335,345,355,398,407,415,420,421,422,423,424,426,427,433,444,451,459,460,461,462,464,466,471,475,479,482,483,488,498,499,500,511,512,513,527,528,529,530,535,536,557,562,],[104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,104,]),'INFINITY':([0,1,6,15,18,38,47,52,70,78,87,94,100,108,121,125,129,132,136,139,141,144,148,154,157,161,163,167,172,173,174,175,176,178,181,186,189,193,196,200,203,206,207,208,209,210,211,212,213,217,227,230,233,237,244,248,251,254,265,266,272,280,281,282,290,301,311,315,316,322,325,329,331,335,345,355,398,407,415,420,421,422,423,424,426,427,433,444,451,459,460,461,462,464,466,471,475,479,482,483,488,498,499,500,511,512,513,527,528,529,530,535,536,557,562,],[105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,]),'ASIN':([0,1,6,15,18,38,47,52,70,78,87,94,100,108,121,125,129,132,136,139,141,144,148,154,157,161,163,167,172,173,174,175,176,178,181,186,189,193,196,200,203,206,207,208,209,210,211,212,213,217,227,230,233,237,244,248,251,254,265,266,272,280,281,282,290,301,311,315,316,322,325,329,331,335,345,355,398,407,415,420,421,422,423,424,426,427,433,444,451,459,460,461,462,464,466,471,475,479,482,483,488,498,499,500,511,512,513,527,528,529,530,535,536,557,562,],[98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,]),'I':([0,1,6,15,18,38,47,52,70,78,87,94,95,100,108,121,125,129,132,136,139,141,144,148,154,157,161,163,167,172,173,174,175,176,178,181,186,189,193,196,200,203,206,207,208,209,210,211,212,213,217,227,230,233,237,244,248,251,254,265,266,272,280,281,282,290,301,311,315,316,322,325,329,331,335,345,355,398,407,415,420,421,422,423,424,426,427,429,433,444,451,459,460,461,462,464,466,471,475,479,482,483,488,498,499,500,511,512,513,527,528,529,530,535,536,557,562,],[107,107,107,107,107,107,107,107,107,107,107,107,223,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,223,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,]),'TIMES':([2,7,8,9,11,12,13,17,21,22,23,25,26,27,28,30,31,32,33,34,35,37,39,43,45,48,49,53,54,55,63,64,65,66,68,69,72,73,74,75,76,79,80,81,82,83,85,86,88,89,90,91,92,95,97,101,103,104,105,106,107,109,110,112,113,116,117,118,120,122,124,126,127,128,130,131,133,134,135,137,140,142,143,145,147,149,153,155,156,158,159,160,162,164,165,166,177,179,180,182,185,187,188,190,192,194,195,197,198,202,204,215,218,222,223,224,225,226,228,229,231,232,234,236,238,241,242,243,245,246,249,253,255,256,264,279,283,284,285,286,287,299,302,308,309,312,317,321,324,326,328,330,332,334,336,340,342,343,344,346,354,356,358,361,362,363,364,365,366,370,371,375,376,379,380,381,382,383,384,385,387,390,391,392,393,394,395,396,399,402,404,406,418,419,428,429,430,431,432,434,443,448,450,468,474,476,477,478,481,486,487,492,496,503,504,507,510,526,537,538,539,540,541,546,547,560,561,564,565,],[-218,-17,-242,-18,-216,-205,-6,-233,-245,-236,-14,-10,-13,-238,-247,-237,-210,-20,-207,-209,-29,-12,-228,-5,-202,174,-234,-212,-235,-213,-215,-203,-204,-211,-222,-9,-162,-206,-244,-229,-208,-219,-214,-227,-226,-240,-231,-246,-16,-224,-225,-11,-15,-4,-19,-248,-217,-220,-8,-221,-160,-239,-7,-241,-230,-243,-232,-223,-134,-135,-117,-116,-34,-98,-97,-120,-119,-33,-83,-82,-80,-79,-49,-48,-86,-85,-123,-122,-76,-75,-58,-57,-67,-66,-104,-103,-95,-94,-101,-100,-70,-69,-107,-106,-73,-72,-64,-63,-137,-89,-88,-110,-109,-35,-161,-38,-163,-52,-51,-55,-54,-114,-113,-92,-91,-195,-36,-39,-165,-126,-125,-61,-60,-44,-45,-182,-26,-25,-23,-24,-27,-46,-186,174,174,-184,-150,-180,-22,-140,-194,-132,-131,-129,-128,-133,-115,-96,-118,-81,-78,-47,-84,-121,-74,-56,-65,-102,-183,-93,-99,-68,-105,-71,-62,-136,-138,-87,-187,-185,-108,-50,-53,-112,-181,-90,-37,-40,-139,-124,-42,-59,-28,-168,-21,-4,-164,-130,-127,174,-77,-145,-143,-41,-149,-148,-167,-43,-169,-153,-151,-159,-111,-171,-170,-155,-157,-166,-147,-175,-174,-173,-172,-146,-144,-154,-152,-156,-158,]),'LPAREN':([0,1,2,3,5,6,8,10,11,12,14,15,16,17,18,20,21,22,24,27,28,30,31,33,34,36,38,39,40,41,42,44,45,46,47,49,50,51,52,53,54,55,58,59,61,62,63,64,65,66,67,68,69,70,71,73,74,75,76,78,79,80,81,82,83,85,86,87,89,90,93,94,96,98,99,100,101,102,103,104,106,108,109,110,111,112,113,115,116,117,118,121,125,129,132,136,139,141,144,148,154,157,161,163,167,172,173,174,175,176,178,181,186,189,193,196,200,203,206,207,208,209,210,211,212,213,217,227,230,233,237,241,244,245,247,248,250,251,254,265,266,272,280,281,282,290,301,311,315,316,322,325,328,329,331,335,345,355,398,407,415,417,420,421,422,423,424,425,426,427,433,444,451,459,460,461,462,464,466,471,475,477,479,482,483,488,498,499,500,511,512,513,527,528,529,530,535,536,557,562,],[108,108,-218,121,125,108,-242,129,-216,-205,132,108,136,-233,108,141,-245,-236,144,-238,-247,-237,-210,-207,-209,148,108,-228,154,157,161,163,-202,167,108,-234,178,181,108,-212,-235,-213,186,189,193,196,-215,-203,-204,-211,199,-222,200,108,203,-206,-244,-229,-208,108,-219,-214,-227,-226,-240,-231,-246,108,-224,-225,217,108,227,230,233,108,-248,237,-217,-220,-221,108,-239,244,248,-241,-230,254,-243,-232,-223,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,-195,108,329,331,108,335,108,108,108,108,108,108,108,108,108,108,108,108,108,108,398,-194,108,108,108,108,108,108,108,108,444,108,108,108,108,108,451,108,108,108,108,108,108,108,108,108,108,108,108,108,498,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,]),'IN':([373,377,],[421,421,]),'ZETA':([0,1,6,15,18,38,47,52,70,78,87,94,100,108,121,125,129,132,136,139,141,144,148,154,157,161,163,167,172,173,174,175,176,178,181,186,189,193,196,200,203,206,207,208,209,210,211,212,213,217,227,230,233,237,244,248,251,254,265,266,272,280,281,282,290,301,311,315,316,322,325,329,331,335,345,355,398,407,415,420,421,422,423,424,426,427,433,444,451,459,460,461,462,464,466,471,475,479,482,483,488,498,499,500,511,512,513,527,528,529,530,535,536,557,562,],[109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,]),'ID':([0,1,3,5,6,10,14,15,16,18,20,24,36,38,40,41,42,44,46,47,50,51,52,58,59,61,62,70,71,78,87,93,94,96,98,99,100,102,108,111,115,121,125,129,132,136,139,141,144,148,154,157,161,163,167,172,173,174,175,176,178,181,186,189,193,196,200,203,206,207,208,209,210,211,212,213,217,227,230,233,237,244,247,248,250,251,254,258,265,266,272,280,281,282,290,291,294,301,311,315,316,322,325,329,331,335,345,355,398,407,415,420,421,422,423,424,426,427,433,439,444,451,459,460,461,462,464,466,467,471,475,479,482,483,488,498,499,500,511,512,513,521,527,528,529,530,534,535,536,557,562,],[110,110,122,126,110,130,133,110,137,110,142,145,149,110,155,158,160,164,166,110,179,182,110,187,190,194,197,110,204,110,110,218,110,228,231,234,110,238,110,249,255,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,332,110,336,110,110,341,110,110,110,110,110,110,110,373,377,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,465,110,110,110,110,110,110,110,110,491,110,110,110,110,110,110,110,110,110,110,110,110,533,110,110,110,110,545,110,110,110,110,]),'GRADIENT':([0,1,6,15,18,38,47,52,70,78,87,94,100,108,121,125,129,132,136,139,141,144,148,154,157,161,163,167,172,173,174,175,176,178,181,186,189,193,196,200,203,206,207,208,209,210,211,212,213,217,227,230,233,237,244,248,251,254,265,266,272,280,281,282,290,301,311,315,316,322,325,329,331,335,345,355,398,407,415,420,421,422,423,424,426,427,433,444,451,459,460,461,462,464,466,471,475,479,482,483,488,498,499,500,511,512,513,527,528,529,530,535,536,557,562,],[111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,111,]),'EPSILON':([0,1,6,15,18,38,47,52,70,78,87,94,100,108,121,125,129,132,136,139,141,144,148,154,157,161,163,167,172,173,174,175,176,178,181,186,189,193,196,200,203,206,207,208,209,210,211,212,213,217,227,230,233,237,244,248,251,254,265,266,272,280,281,282,290,301,311,315,316,322,325,329,331,335,345,355,398,407,415,420,421,422,423,424,426,427,433,444,451,459,460,461,462,464,466,471,475,479,482,483,488,498,499,500,511,512,513,527,528,529,530,535,536,557,562,],[112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,]),'OMICRON':([0,1,6,15,18,38,47,52,70,78,87,94,100,108,121,125,129,132,136,139,141,144,148,154,157,161,163,167,172,173,174,175,176,178,181,186,189,193,196,200,203,206,207,208,209,210,211,212,213,217,227,230,233,237,244,248,251,254,265,266,272,280,281,282,290,301,311,315,316,322,325,329,331,335,345,355,398,407,415,420,421,422,423,424,426,427,433,444,451,459,460,461,462,464,466,471,475,479,482,483,488,498,499,500,511,512,513,527,528,529,530,535,536,557,562,],[113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,]),'GE':([2,7,8,9,11,12,13,17,21,22,23,25,26,27,28,30,31,32,33,34,35,37,39,43,45,48,49,53,54,55,63,64,65,66,68,69,72,73,74,75,76,79,80,81,82,83,84,85,86,88,89,90,91,92,95,97,101,103,104,105,106,107,109,110,112,113,116,117,118,120,122,124,126,127,128,130,131,133,134,135,137,140,142,143,145,147,149,151,153,155,156,158,159,160,162,164,165,166,177,179,180,182,185,187,188,190,192,194,195,197,198,202,204,215,218,222,223,224,225,226,228,229,231,232,234,236,238,241,242,243,245,246,249,253,255,256,264,279,283,284,285,286,287,299,302,308,309,312,317,321,324,326,328,330,332,334,336,340,342,343,344,346,354,356,358,361,362,363,364,365,366,370,371,375,376,379,380,381,382,383,384,385,387,390,391,392,393,394,395,396,399,402,404,406,418,419,428,430,431,432,443,448,450,468,474,476,477,478,481,486,487,492,496,503,504,507,510,526,537,538,539,540,541,546,547,560,561,564,565,],[-218,-17,-242,-18,-216,-205,-6,-233,-245,-236,-14,-10,-13,-238,-247,-237,-210,-20,-207,-209,-29,-12,-228,-5,-202,-32,-234,-212,-235,-213,-215,-203,-204,-211,-222,-9,-162,-206,-244,-229,-208,-219,-214,-227,-226,-240,208,-231,-246,-16,-224,-225,-11,-15,-4,-19,-248,-217,-220,-8,-221,-160,-239,-7,-241,-230,-243,-232,-223,-134,-135,-117,-116,-34,-98,-97,-120,-119,-33,-83,-82,-80,-79,-49,-48,-86,-85,208,-123,-122,-76,-75,-58,-57,-67,-66,-104,-103,-95,-94,-101,-100,-70,-69,-107,-106,-73,-72,-64,-63,-137,-89,-88,-110,-109,-35,-161,-38,-163,-52,-51,-55,-54,-114,-113,-92,-91,-195,-36,-39,-165,-126,-125,-61,-60,-44,-45,-182,-26,-25,-23,-24,-27,-46,-186,-30,-31,-184,-150,-180,-22,-140,-194,-132,-131,-129,-128,-133,-115,-96,-118,-81,-78,-47,-84,-121,-74,-56,-65,-102,-183,-93,-99,-68,-105,-71,-62,-136,-138,-87,-187,-185,-108,-50,-53,-112,-181,-90,-37,-40,-139,-124,-42,-59,-28,-168,-21,-164,-130,-127,-77,-145,-143,-41,-149,-148,-167,-43,-169,-153,-151,-159,-111,-171,-170,-155,-157,-166,-147,-175,-174,-173,-172,-146,-144,-154,-152,-156,-158,]),'SQRT':([0,1,6,15,18,38,47,52,70,78,87,94,100,108,121,125,129,132,136,139,141,144,148,154,157,161,163,167,172,173,174,175,176,178,181,186,189,193,196,200,203,206,207,208,209,210,211,212,213,217,227,230,233,237,244,248,251,254,265,266,272,280,281,282,290,301,311,315,316,322,325,329,331,335,345,355,398,407,415,420,421,422,423,424,426,427,433,444,451,459,460,461,462,464,466,471,475,479,482,483,488,498,499,500,511,512,513,527,528,529,530,535,536,557,562,],[114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,]),'ACOSH':([0,1,6,15,18,38,47,52,70,78,87,94,100,108,121,125,129,132,136,139,141,144,148,154,157,161,163,167,172,173,174,175,176,178,181,186,189,193,196,200,203,206,207,208,209,210,211,212,213,217,227,230,233,237,244,248,251,254,265,266,272,280,281,282,290,301,311,315,316,322,325,329,331,335,345,355,398,407,415,420,421,422,423,424,426,427,433,444,451,459,460,461,462,464,466,471,475,479,482,483,488,498,499,500,511,512,513,527,528,529,530,535,536,557,562,],[115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,]),'ALPHA':([0,1,6,15,18,38,47,52,70,78,87,94,100,108,121,125,129,132,136,139,141,144,148,154,157,161,163,167,172,173,174,175,176,178,181,186,189,193,196,200,203,206,207,208,209,210,211,212,213,217,227,230,233,237,244,248,251,254,265,266,272,280,281,282,290,301,311,315,316,322,325,329,331,335,345,355,398,407,415,420,421,422,423,424,426,427,433,444,451,459,460,461,462,464,466,471,475,479,482,483,488,498,499,500,511,512,513,527,528,529,530,535,536,557,562,],[116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,]),'RBRACKET':([338,],[405,]),'MOD':([2,7,8,9,11,12,13,17,21,22,23,25,26,27,28,30,31,32,33,34,35,37,39,43,45,48,49,53,54,55,63,64,65,66,68,69,72,73,74,75,76,79,80,81,82,83,85,86,88,89,90,91,92,95,97,101,103,104,105,106,107,109,110,112,113,116,117,118,120,122,124,126,127,128,130,131,133,134,135,137,140,142,143,145,147,149,153,155,156,158,159,160,162,164,165,166,177,179,180,182,185,187,188,190,192,194,195,197,198,202,204,215,218,222,223,224,225,226,228,229,231,232,234,236,238,241,242,243,245,246,249,253,255,256,264,279,283,284,285,286,287,299,302,308,309,312,317,321,324,326,328,330,332,334,336,340,342,343,344,346,354,356,358,361,362,363,364,365,366,370,371,375,376,379,380,381,382,383,384,385,387,390,391,392,393,394,395,396,399,402,404,406,418,419,428,429,430,431,432,434,443,448,450,468,474,476,477,478,481,486,487,492,496,503,504,507,510,526,537,538,539,540,541,546,547,560,561,564,565,],[-218,-17,-242,-18,-216,-205,-6,-233,-245,-236,-14,-10,-13,-238,-247,-237,-210,-20,-207,-209,-29,-12,-228,-5,-202,176,-234,-212,-235,-213,-215,-203,-204,-211,-222,-9,-162,-206,-244,-229,-208,-219,-214,-227,-226,-240,-231,-246,-16,-224,-225,-11,-15,-4,-19,-248,-217,-220,-8,-221,-160,-239,-7,-241,-230,-243,-232,-223,-134,-135,-117,-116,-34,-98,-97,-120,-119,-33,-83,-82,-80,-79,-49,-48,-86,-85,-123,-122,-76,-75,-58,-57,-67,-66,-104,-103,-95,-94,-101,-100,-70,-69,-107,-106,-73,-72,-64,-63,-137,-89,-88,-110,-109,-35,-161,-38,-163,-52,-51,-55,-54,-114,-113,-92,-91,-195,-36,-39,-165,-126,-125,-61,-60,-44,-45,-182,-26,-25,-23,-24,-27,-46,-186,176,176,-184,-150,-180,-22,-140,-194,-132,-131,-129,-128,-133,-115,-96,-118,-81,-78,-47,-84,-121,-74,-56,-65,-102,-183,-93,-99,-68,-105,-71,-62,-136,-138,-87,-187,-185,-108,-50,-53,-112,-181,-90,-37,-40,-139,-124,-42,-59,-28,-168,-21,-4,-164,-130,-127,176,-77,-145,-143,-41,-149,-148,-167,-43,-169,-153,-151,-159,-111,-171,-170,-155,-157,-166,-147,-175,-174,-173,-172,-146,-144,-154,-152,-156,-158,]),'BETA_LOWER':([0,1,6,15,18,38,47,52,70,78,87,94,100,108,121,125,129,132,136,139,141,144,148,154,157,161,163,167,172,173,174,175,176,178,181,186,189,193,196,200,203,206,207,208,209,210,211,212,213,217,227,230,233,237,244,248,251,254,265,266,272,280,281,282,290,301,311,315,316,322,325,329,331,335,345,355,398,407,415,420,421,422,423,424,426,427,433,444,451,459,460,461,462,464,466,471,475,479,482,483,488,498,499,500,511,512,513,527,528,529,530,535,536,557,562,],[118,118,118,118,118,118,118,118,118,118,118,118,118,118,118,118,118,118,118,118,118,118,118,118,118,118,118,118,118,118,118,118,118,118,118,118,118,118,118,118,118,118,118,118,118,118,118,118,118,118,118,118,118,118,118,118,118,118,118,118,118,118,118,118,118,118,118,118,118,118,118,118,118,118,118,118,118,118,118,118,118,118,118,118,118,118,118,118,118,118,118,118,118,118,118,118,118,118,118,118,118,118,118,118,118,118,118,118,118,118,118,118,118,118,118,]),} _lr_action = {} for _k, _v in _lr_action_items.items(): for _x,_y in zip(_v[0],_v[1]): if not _x in _lr_action: _lr_action[_x] = {} _lr_action[_x][_k] = _y del _lr_action_items _lr_goto_items = {'DivisorFunction':([0,1,6,15,18,38,47,52,70,78,87,94,100,108,121,125,129,132,136,139,141,144,148,154,157,161,163,167,172,173,174,175,176,178,181,186,189,193,196,200,203,206,207,208,209,210,211,212,213,217,227,230,233,237,244,248,251,254,265,266,272,280,281,282,290,301,311,315,316,322,325,329,331,335,345,355,398,407,415,420,421,422,423,424,426,427,433,444,451,459,460,461,462,464,466,471,475,479,482,483,488,498,499,500,511,512,513,527,528,529,530,535,536,557,562,],[91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,]),'DifferentialVariable':([0,1,6,15,18,38,47,52,70,78,87,94,100,108,121,125,129,132,136,139,141,144,148,154,157,161,163,167,172,173,174,175,176,178,181,186,189,193,196,200,203,206,207,208,209,210,211,212,213,217,227,230,233,237,244,248,251,254,265,266,272,280,281,282,290,301,311,315,316,322,325,329,331,335,345,355,398,407,415,420,421,422,423,424,426,427,433,444,451,459,460,461,462,464,466,471,475,479,482,483,488,498,499,500,511,512,513,527,528,529,530,535,536,557,562,],[92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,]),'Matrix':([0,1,6,15,18,38,47,52,67,70,78,87,94,100,108,121,125,129,132,136,139,141,144,148,154,157,161,163,167,172,173,174,175,176,178,181,186,189,193,196,199,200,203,206,207,208,209,210,211,212,213,217,227,230,233,237,244,248,251,254,265,266,272,280,281,282,290,301,311,315,316,322,325,329,331,335,345,355,398,407,415,420,421,422,423,424,426,427,433,444,451,459,460,461,462,464,466,471,475,479,482,483,488,498,499,500,511,512,513,527,528,529,530,535,536,557,562,],[7,7,7,7,7,7,7,7,198,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,297,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,]),'FractionalExpression':([0,1,6,15,18,38,47,52,70,78,87,94,100,108,121,125,129,132,136,139,141,144,148,154,157,161,163,167,172,173,174,175,176,178,181,186,189,193,196,200,203,206,207,208,209,210,211,212,213,217,227,230,233,237,244,248,251,254,265,266,272,280,281,282,290,301,311,315,316,322,325,329,331,335,345,355,398,407,415,420,421,422,423,424,426,427,433,444,451,459,460,461,462,464,466,471,475,479,482,483,488,498,499,500,511,512,513,527,528,529,530,535,536,557,562,],[32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,]),'Factor':([0,1,6,15,18,38,47,52,70,78,87,94,100,108,121,125,129,132,136,139,141,144,148,154,157,161,163,167,172,173,174,175,176,178,181,186,189,193,196,200,203,206,207,208,209,210,211,212,213,217,227,230,233,237,244,248,251,254,265,266,272,280,281,282,290,301,311,315,316,322,325,329,331,335,345,355,398,407,415,420,421,422,423,424,426,427,433,444,451,459,460,461,462,464,466,471,475,479,482,483,488,498,499,500,511,512,513,527,528,529,530,535,536,557,562,],[35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,283,284,285,286,287,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,]),'Derivative':([0,1,6,15,18,38,47,52,70,78,87,94,100,108,121,125,129,132,136,139,141,144,148,154,157,161,163,167,172,173,174,175,176,178,181,186,189,193,196,200,203,206,207,208,209,210,211,212,213,217,227,230,233,237,244,248,251,254,265,266,272,280,281,282,290,301,311,315,316,322,325,329,331,335,345,355,398,407,415,420,421,422,423,424,426,427,433,444,451,459,460,461,462,464,466,471,475,479,482,483,488,498,499,500,511,512,513,527,528,529,530,535,536,557,562,],[37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,]),'Norm':([0,1,6,15,18,38,47,52,70,78,87,94,100,108,121,125,129,132,136,139,141,144,148,154,157,161,163,167,172,173,174,175,176,178,181,186,189,193,196,200,203,206,207,208,209,210,211,212,213,217,227,230,233,237,244,248,251,254,265,266,272,280,281,282,290,301,311,315,316,322,325,329,331,335,345,355,398,407,415,420,421,422,423,424,426,427,433,444,451,459,460,461,462,464,466,471,475,479,482,483,488,498,499,500,511,512,513,527,528,529,530,535,536,557,562,],[97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,]),'Determinant':([0,1,6,15,18,38,47,52,70,78,87,94,100,108,121,125,129,132,136,139,141,144,148,154,157,161,163,167,172,173,174,175,176,178,181,186,189,193,196,200,203,206,207,208,209,210,211,212,213,217,227,230,233,237,244,248,251,254,265,266,272,280,281,282,290,301,311,315,316,322,325,329,331,335,345,355,398,407,415,420,421,422,423,424,426,427,433,444,451,459,460,461,462,464,466,471,475,479,482,483,488,498,499,500,511,512,513,527,528,529,530,535,536,557,562,],[9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,]),'ExpressionsRows':([47,78,87,100,],[168,205,214,235,]),'Symbol':([0,1,6,15,18,38,47,52,70,78,87,94,100,108,121,125,129,132,136,139,141,144,148,154,157,161,163,167,172,173,174,175,176,178,181,186,189,193,196,200,203,206,207,208,209,210,211,212,213,217,227,230,233,237,244,248,251,254,265,266,272,280,281,282,290,301,311,315,316,322,325,329,331,335,345,355,398,407,415,420,421,422,423,424,426,427,433,444,451,459,460,461,462,464,466,471,475,479,482,483,488,498,499,500,511,512,513,527,528,529,530,535,536,557,562,],[69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,69,]),'NapierNumber':([0,1,6,15,18,38,47,52,70,78,87,94,100,108,121,125,129,132,136,139,141,144,148,154,157,161,163,167,172,173,174,175,176,178,181,186,189,193,196,200,203,206,207,208,209,210,211,212,213,217,227,230,233,237,244,248,251,254,265,266,272,280,281,282,290,301,311,315,316,322,325,329,331,335,345,355,398,407,415,420,421,422,423,424,426,427,433,444,451,459,460,461,462,464,466,471,475,479,482,483,488,498,499,500,511,512,513,527,528,529,530,535,536,557,562,],[13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,]),'ImaginaryNumber':([0,1,6,15,18,38,47,52,70,78,87,94,100,108,121,125,129,132,136,139,141,144,148,154,157,161,163,167,172,173,174,175,176,178,181,186,189,193,196,200,203,206,207,208,209,210,211,212,213,217,227,230,233,237,244,248,251,254,265,266,272,280,281,282,290,301,311,315,316,322,325,329,331,335,345,355,398,407,415,420,421,422,423,424,426,427,433,444,451,459,460,461,462,464,466,471,475,479,482,483,488,498,499,500,511,512,513,527,528,529,530,535,536,557,562,],[43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,]),'ExpressionsRow':([47,78,87,100,280,301,311,322,],[169,169,169,169,367,367,367,367,]),'Term':([0,1,6,15,18,38,47,52,70,78,87,94,100,108,121,125,129,132,136,139,141,144,148,154,157,161,163,167,178,181,186,189,193,196,200,203,206,207,208,209,210,211,212,213,217,227,230,233,237,244,248,251,254,265,266,272,280,281,282,290,301,311,315,316,322,325,329,331,335,345,355,398,407,415,420,421,422,423,424,426,427,433,444,451,459,460,461,462,464,466,471,475,479,482,483,488,498,499,500,511,512,513,527,528,529,530,535,536,557,562,],[48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,308,309,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,434,48,48,48,48,48,48,48,48,48,48,48,48,309,308,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,]),'PrimeList':([110,],[245,]),'Constraint':([0,38,272,],[77,150,359,]),'Range':([421,],[446,]),'Limit':([0,1,6,15,18,38,47,52,70,78,87,94,100,108,121,125,129,132,136,139,141,144,148,154,157,161,163,167,172,173,174,175,176,178,181,186,189,193,196,200,203,206,207,208,209,210,211,212,213,217,227,230,233,237,244,248,251,254,265,266,272,280,281,282,290,301,311,315,316,322,325,329,331,335,345,355,398,407,415,420,421,422,423,424,426,427,433,444,451,459,460,461,462,464,466,471,475,479,482,483,488,498,499,500,511,512,513,527,528,529,530,535,536,557,562,],[23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,]),'IndexingExpression':([291,294,],[374,378,]),'Expression':([0,1,6,15,18,38,47,52,70,78,87,94,100,108,121,125,129,132,136,139,141,144,148,154,157,161,163,167,178,181,186,189,193,196,200,203,206,207,208,209,210,213,217,227,230,233,237,244,248,251,254,265,266,272,280,281,282,290,301,311,315,316,322,325,329,331,335,345,355,398,407,415,420,421,422,423,424,426,427,433,444,451,459,462,464,466,471,475,479,482,483,488,498,499,500,511,512,513,527,528,529,530,535,536,557,562,],[84,119,127,134,138,151,170,183,201,170,170,221,170,239,257,259,260,262,263,267,268,269,271,262,275,276,277,278,288,289,292,293,295,296,262,300,303,304,305,306,307,310,314,318,319,320,323,262,262,337,339,348,352,151,170,368,369,372,170,170,388,389,170,397,262,262,262,408,416,239,435,442,445,447,448,449,450,452,454,456,262,473,481,484,487,490,494,497,369,503,504,507,262,127,134,523,524,525,538,539,540,541,546,547,561,564,]),'Constraints':([38,],[152,]),'IteratedExpression':([0,1,6,15,18,38,47,52,70,78,87,94,100,108,121,125,129,132,136,139,141,144,148,154,157,161,163,167,172,173,174,175,176,178,181,186,189,193,196,200,203,206,207,208,209,210,211,212,213,217,227,230,233,237,244,248,251,254,265,266,272,280,281,282,290,301,311,315,316,322,325,329,331,335,345,355,398,407,415,420,421,422,423,424,426,427,433,444,451,459,460,461,462,464,466,471,475,479,482,483,488,498,499,500,511,512,513,527,528,529,530,535,536,557,562,],[25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,]),'Integral':([0,1,6,15,18,38,47,52,70,78,87,94,100,108,121,125,129,132,136,139,141,144,148,154,157,161,163,167,172,173,174,175,176,178,181,186,189,193,196,200,203,206,207,208,209,210,211,212,213,217,227,230,233,237,244,248,251,254,265,266,272,280,281,282,290,301,311,315,316,322,325,329,331,335,345,355,398,407,415,420,421,422,423,424,426,427,433,444,451,459,460,461,462,464,466,471,475,479,482,483,488,498,499,500,511,512,513,527,528,529,530,535,536,557,562,],[26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,]),'ConstraintSystem':([0,],[56,]),'ChooseExpression':([0,1,6,15,18,38,47,52,70,78,87,94,100,108,121,125,129,132,136,139,141,144,148,154,157,161,163,167,172,173,174,175,176,178,181,186,189,193,196,200,203,206,207,208,209,210,211,212,213,217,227,230,233,237,244,248,251,254,265,266,272,280,281,282,290,301,311,315,316,322,325,329,331,335,345,355,398,407,415,420,421,422,423,424,426,427,433,444,451,459,460,461,462,464,466,471,475,479,482,483,488,498,499,500,511,512,513,527,528,529,530,535,536,557,562,],[88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,]),'ExpressionList':([132,154,200,244,248,329,331,335,444,498,],[261,274,298,327,333,400,401,403,469,514,]),'MAIN':([0,],[29,]),} _lr_goto = {} for _k, _v in _lr_goto_items.items(): for _x, _y in zip(_v[0], _v[1]): if not _x in _lr_goto: _lr_goto[_x] = {} _lr_goto[_x][_k] = _y del _lr_goto_items _lr_productions = [ ("S' -> MAIN","S'",1,None,None,None), ('MAIN -> Expression','MAIN',1,'p_Main','parser.py',49), ('MAIN -> Constraint','MAIN',1,'p_Main','parser.py',50), ('MAIN -> ConstraintSystem','MAIN',1,'p_Main','parser.py',51), ('Factor -> NUMBER','Factor',1,'p_Factor','parser.py',55), ('Factor -> ImaginaryNumber','Factor',1,'p_Factor','parser.py',56), ('Factor -> NapierNumber','Factor',1,'p_Factor','parser.py',57), ('Factor -> ID','Factor',1,'p_Factor','parser.py',58), ('Factor -> INFINITY','Factor',1,'p_Factor','parser.py',59), ('Factor -> Symbol','Factor',1,'p_Factor','parser.py',60), ('Factor -> IteratedExpression','Factor',1,'p_Factor','parser.py',61), ('Factor -> DivisorFunction','Factor',1,'p_Factor','parser.py',62), ('Factor -> Derivative','Factor',1,'p_Factor','parser.py',63), ('Factor -> Integral','Factor',1,'p_Factor','parser.py',64), ('Factor -> Limit','Factor',1,'p_Factor','parser.py',65), ('Factor -> DifferentialVariable','Factor',1,'p_Factor','parser.py',66), ('Factor -> ChooseExpression','Factor',1,'p_Factor','parser.py',67), ('Factor -> Matrix','Factor',1,'p_Factor','parser.py',68), ('Factor -> Determinant','Factor',1,'p_Factor','parser.py',69), ('Factor -> Norm','Factor',1,'p_Factor','parser.py',70), ('Factor -> FractionalExpression','Factor',1,'p_Factor','parser.py',71), ('Factor -> ID CARET LBRACE Expression RBRACE','Factor',5,'p_Factor','parser.py',72), ('Factor -> LPAREN Expression RPAREN','Factor',3,'p_Factor','parser.py',73), ('Term -> Term TIMES Factor','Term',3,'p_Term','parser.py',89), ('Term -> Term DOT Factor','Term',3,'p_Term','parser.py',90), ('Term -> Term CROSS Factor','Term',3,'p_Term','parser.py',91), ('Term -> Term DIVIDE Factor','Term',3,'p_Term','parser.py',92), ('Term -> Term MOD Factor','Term',3,'p_Term','parser.py',93), ('Term -> Term CARET LBRACE Expression RBRACE','Term',5,'p_Term','parser.py',94), ('Term -> Factor','Term',1,'p_Term','parser.py',95), ('Expression -> Expression PLUS Term','Expression',3,'p_Expression_binop','parser.py',127), ('Expression -> Expression MINUS Term','Expression',3,'p_Expression_binop','parser.py',128), ('Expression -> Term','Expression',1,'p_Expression_binop','parser.py',129), ('Factor -> PLUS Expression','Factor',2,'p_UnaryExpressionOperatorBefore','parser.py',145), ('Factor -> MINUS Expression','Factor',2,'p_UnaryExpressionOperatorBefore','parser.py',146), ('Factor -> NUMBER FACTORIAL','Factor',2,'p_UnaryExpressionOperatorAfter','parser.py',156), ('Factor -> ID FACTORIAL','Factor',2,'p_UnaryExpressionOperatorAfter','parser.py',157), ('Factor -> LPAREN Expression RPAREN FACTORIAL','Factor',4,'p_UnaryExpressionOperatorAfter','parser.py',158), ('Factor -> NUMBER PERCENT','Factor',2,'p_UnaryExpressionOperatorAfter','parser.py',159), ('Factor -> ID PERCENT','Factor',2,'p_UnaryExpressionOperatorAfter','parser.py',160), ('Factor -> LPAREN Expression RPAREN PERCENT','Factor',4,'p_UnaryExpressionOperatorAfter','parser.py',161), ('FractionalExpression -> FRAC LBRACE Expression RBRACE LBRACE Expression RBRACE','FractionalExpression',7,'p_FractionalExpression','parser.py',182), ('Factor -> SQRT LBRACE Expression RBRACE','Factor',4,'p_FunctionExpression','parser.py',187), ('Factor -> SQRT LBRACKET NUMBER RBRACKET LBRACE Expression RBRACE','Factor',7,'p_FunctionExpression','parser.py',189), ('Factor -> LFLOOR Expression RFLOOR','Factor',3,'p_FunctionExpression','parser.py',191), ('Factor -> LCEIL Expression RCEIL','Factor',3,'p_FunctionExpression','parser.py',193), ('Factor -> PIPE Expression PIPE','Factor',3,'p_FunctionExpression','parser.py',195), ('Factor -> ASINH LPAREN Expression RPAREN','Factor',4,'p_FunctionExpression','parser.py',197), ('Factor -> ASINH ID','Factor',2,'p_FunctionExpression','parser.py',199), ('Factor -> ASINH NUMBER','Factor',2,'p_FunctionExpression','parser.py',201), ('Factor -> SINH LPAREN Expression RPAREN','Factor',4,'p_FunctionExpression','parser.py',203), ('Factor -> SINH ID','Factor',2,'p_FunctionExpression','parser.py',205), ('Factor -> SINH NUMBER','Factor',2,'p_FunctionExpression','parser.py',207), ('Factor -> ASIN LPAREN Expression RPAREN','Factor',4,'p_FunctionExpression','parser.py',209), ('Factor -> ASIN ID','Factor',2,'p_FunctionExpression','parser.py',211), ('Factor -> ASIN NUMBER','Factor',2,'p_FunctionExpression','parser.py',213), ('Factor -> SIN LPAREN Expression RPAREN','Factor',4,'p_FunctionExpression','parser.py',215), ('Factor -> SIN ID','Factor',2,'p_FunctionExpression','parser.py',217), ('Factor -> SIN NUMBER','Factor',2,'p_FunctionExpression','parser.py',219), ('Factor -> ACOSH LPAREN Expression RPAREN','Factor',4,'p_FunctionExpression','parser.py',221), ('Factor -> ACOSH ID','Factor',2,'p_FunctionExpression','parser.py',223), ('Factor -> ACOSH NUMBER','Factor',2,'p_FunctionExpression','parser.py',225), ('Factor -> COSH LPAREN Expression RPAREN','Factor',4,'p_FunctionExpression','parser.py',227), ('Factor -> COSH ID','Factor',2,'p_FunctionExpression','parser.py',229), ('Factor -> COSH NUMBER','Factor',2,'p_FunctionExpression','parser.py',231), ('Factor -> ACOS LPAREN Expression RPAREN','Factor',4,'p_FunctionExpression','parser.py',233), ('Factor -> ACOS ID','Factor',2,'p_FunctionExpression','parser.py',235), ('Factor -> ACOS NUMBER','Factor',2,'p_FunctionExpression','parser.py',237), ('Factor -> COS LPAREN Expression RPAREN','Factor',4,'p_FunctionExpression','parser.py',239), ('Factor -> COS ID','Factor',2,'p_FunctionExpression','parser.py',241), ('Factor -> COS NUMBER','Factor',2,'p_FunctionExpression','parser.py',243), ('Factor -> ATANH LPAREN Expression RPAREN','Factor',4,'p_FunctionExpression','parser.py',245), ('Factor -> ATANH ID','Factor',2,'p_FunctionExpression','parser.py',247), ('Factor -> ATANH NUMBER','Factor',2,'p_FunctionExpression','parser.py',249), ('Factor -> TANH LPAREN Expression RPAREN','Factor',4,'p_FunctionExpression','parser.py',251), ('Factor -> TANH ID','Factor',2,'p_FunctionExpression','parser.py',253), ('Factor -> TANH NUMBER','Factor',2,'p_FunctionExpression','parser.py',255), ('Factor -> ATAN LPAREN Expression COMMA Expression RPAREN','Factor',6,'p_FunctionExpression','parser.py',257), ('Factor -> ATAN LPAREN Expression RPAREN','Factor',4,'p_FunctionExpression','parser.py',258), ('Factor -> ATAN ID','Factor',2,'p_FunctionExpression','parser.py',260), ('Factor -> ATAN NUMBER','Factor',2,'p_FunctionExpression','parser.py',262), ('Factor -> TAN LPAREN Expression RPAREN','Factor',4,'p_FunctionExpression','parser.py',264), ('Factor -> TAN ID','Factor',2,'p_FunctionExpression','parser.py',266), ('Factor -> TAN NUMBER','Factor',2,'p_FunctionExpression','parser.py',268), ('Factor -> ASEC LPAREN Expression RPAREN','Factor',4,'p_FunctionExpression','parser.py',270), ('Factor -> ASEC ID','Factor',2,'p_FunctionExpression','parser.py',272), ('Factor -> ASEC NUMBER','Factor',2,'p_FunctionExpression','parser.py',274), ('Factor -> SEC LPAREN Expression RPAREN','Factor',4,'p_FunctionExpression','parser.py',276), ('Factor -> SEC ID','Factor',2,'p_FunctionExpression','parser.py',278), ('Factor -> SEC NUMBER','Factor',2,'p_FunctionExpression','parser.py',280), ('Factor -> ACSC LPAREN Expression RPAREN','Factor',4,'p_FunctionExpression','parser.py',282), ('Factor -> ACSC ID','Factor',2,'p_FunctionExpression','parser.py',284), ('Factor -> ACSC NUMBER','Factor',2,'p_FunctionExpression','parser.py',286), ('Factor -> CSC LPAREN Expression RPAREN','Factor',4,'p_FunctionExpression','parser.py',288), ('Factor -> CSC ID','Factor',2,'p_FunctionExpression','parser.py',290), ('Factor -> CSC NUMBER','Factor',2,'p_FunctionExpression','parser.py',292), ('Factor -> ACOTH LPAREN Expression RPAREN','Factor',4,'p_FunctionExpression','parser.py',294), ('Factor -> ACOTH ID','Factor',2,'p_FunctionExpression','parser.py',296), ('Factor -> ACOTH NUMBER','Factor',2,'p_FunctionExpression','parser.py',298), ('Factor -> COTH LPAREN Expression RPAREN','Factor',4,'p_FunctionExpression','parser.py',300), ('Factor -> COTH ID','Factor',2,'p_FunctionExpression','parser.py',302), ('Factor -> COTH NUMBER','Factor',2,'p_FunctionExpression','parser.py',304), ('Factor -> ACOT LPAREN Expression RPAREN','Factor',4,'p_FunctionExpression','parser.py',306), ('Factor -> ACOT ID','Factor',2,'p_FunctionExpression','parser.py',308), ('Factor -> ACOT NUMBER','Factor',2,'p_FunctionExpression','parser.py',310), ('Factor -> COT LPAREN Expression RPAREN','Factor',4,'p_FunctionExpression','parser.py',312), ('Factor -> COT ID','Factor',2,'p_FunctionExpression','parser.py',314), ('Factor -> COT NUMBER','Factor',2,'p_FunctionExpression','parser.py',316), ('Factor -> LOG LPAREN Expression RPAREN','Factor',4,'p_FunctionExpression','parser.py',318), ('Factor -> LOG ID','Factor',2,'p_FunctionExpression','parser.py',320), ('Factor -> LOG NUMBER','Factor',2,'p_FunctionExpression','parser.py',322), ('Factor -> LOG UNDERLINE LBRACE NUMBER RBRACE LPAREN Expression RPAREN','Factor',8,'p_FunctionExpression','parser.py',324), ('Factor -> LN LPAREN Expression RPAREN','Factor',4,'p_FunctionExpression','parser.py',326), ('Factor -> LN ID','Factor',2,'p_FunctionExpression','parser.py',328), ('Factor -> LN NUMBER','Factor',2,'p_FunctionExpression','parser.py',330), ('Factor -> EXP LPAREN Expression RPAREN','Factor',4,'p_FunctionExpression','parser.py',332), ('Factor -> EXP ID','Factor',2,'p_FunctionExpression','parser.py',334), ('Factor -> EXP NUMBER','Factor',2,'p_FunctionExpression','parser.py',336), ('Factor -> GCD LPAREN ExpressionList RPAREN','Factor',4,'p_FunctionExpression','parser.py',338), ('Factor -> GCD ID','Factor',2,'p_FunctionExpression','parser.py',340), ('Factor -> GCD NUMBER','Factor',2,'p_FunctionExpression','parser.py',342), ('Factor -> DEG LPAREN ExpressionList RPAREN','Factor',4,'p_FunctionExpression','parser.py',344), ('Factor -> DEG ID','Factor',2,'p_FunctionExpression','parser.py',346), ('Factor -> DEG NUMBER','Factor',2,'p_FunctionExpression','parser.py',348), ('Factor -> GRADIENT LPAREN ExpressionList RPAREN','Factor',4,'p_FunctionExpression','parser.py',350), ('Factor -> GRADIENT ID','Factor',2,'p_FunctionExpression','parser.py',352), ('Factor -> GRADIENT NUMBER','Factor',2,'p_FunctionExpression','parser.py',354), ('Factor -> GRADIENT DOT LPAREN ExpressionList RPAREN','Factor',5,'p_FunctionExpression','parser.py',356), ('Factor -> GRADIENT DOT ID','Factor',3,'p_FunctionExpression','parser.py',358), ('Factor -> GRADIENT DOT NUMBER','Factor',3,'p_FunctionExpression','parser.py',360), ('Factor -> GRADIENT CROSS LPAREN ExpressionList RPAREN','Factor',5,'p_FunctionExpression','parser.py',362), ('Factor -> GRADIENT CROSS ID','Factor',3,'p_FunctionExpression','parser.py',364), ('Factor -> GRADIENT CROSS NUMBER','Factor',3,'p_FunctionExpression','parser.py',366), ('Factor -> LAPLACIAN LPAREN Expression RPAREN','Factor',4,'p_FunctionExpression','parser.py',368), ('Factor -> LAPLACIAN NUMBER','Factor',2,'p_FunctionExpression','parser.py',370), ('Factor -> LAPLACIAN ID','Factor',2,'p_FunctionExpression','parser.py',372), ('Factor -> DETERMINANT LPAREN Matrix RPAREN','Factor',4,'p_FunctionExpression','parser.py',374), ('Factor -> DETERMINANT Matrix','Factor',2,'p_FunctionExpression','parser.py',376), ('Factor -> Symbol LPAREN ExpressionList RPAREN','Factor',4,'p_FunctionExpression','parser.py',378), ('Factor -> ID LPAREN ExpressionList RPAREN','Factor',4,'p_FunctionExpression','parser.py',380), ('Factor -> ID LPAREN RPAREN','Factor',3,'p_FunctionExpression','parser.py',382), ('Range -> Expression DOTS Expression','Range',3,'p_Range','parser.py',527), ('IndexingExpression -> ID IN Range','IndexingExpression',3,'p_IndexingExpression','parser.py',531), ('IteratedExpression -> SUM UNDERLINE LBRACE IndexingExpression RBRACE Expression','IteratedExpression',6,'p_IteratedExpression','parser.py',535), ('IteratedExpression -> SUM UNDERLINE LBRACE ID EQ Expression RBRACE CARET LBRACE Expression RBRACE Expression','IteratedExpression',12,'p_IteratedExpression','parser.py',536), ('IteratedExpression -> PROD UNDERLINE LBRACE IndexingExpression RBRACE Expression','IteratedExpression',6,'p_IteratedExpression','parser.py',537), ('IteratedExpression -> PROD UNDERLINE LBRACE ID EQ Expression RBRACE CARET LBRACE Expression RBRACE Expression','IteratedExpression',12,'p_IteratedExpression','parser.py',538), ('Integral -> INTEGRAL UNDERLINE LBRACE Expression RBRACE CARET LBRACE Expression RBRACE Expression DIFFERENTIAL','Integral',11,'p_Integral','parser.py',555), ('Integral -> INTEGRAL UNDERLINE LBRACE Expression RBRACE Expression DIFFERENTIAL','Integral',7,'p_Integral','parser.py',556), ('Integral -> INTEGRAL CARET LBRACE Expression RBRACE Expression DIFFERENTIAL','Integral',7,'p_Integral','parser.py',557), ('Integral -> INTEGRAL Expression DIFFERENTIAL','Integral',3,'p_Integral','parser.py',558), ('Derivative -> FRAC LBRACE D RBRACE LBRACE DIFFERENTIAL RBRACE Expression','Derivative',8,'p_Derivative1','parser.py',575), ('Derivative -> FRAC LBRACE D CARET LBRACE NUMBER RBRACE RBRACE LBRACE DIFFERENTIAL CARET LBRACE NUMBER RBRACE RBRACE Expression','Derivative',16,'p_Derivative1','parser.py',576), ('Derivative -> FRAC LBRACE D Expression RBRACE LBRACE DIFFERENTIAL RBRACE','Derivative',8,'p_Derivative2','parser.py',585), ('Derivative -> FRAC LBRACE D CARET LBRACE NUMBER RBRACE Expression RBRACE LBRACE DIFFERENTIAL CARET LBRACE NUMBER RBRACE RBRACE','Derivative',16,'p_Derivative2','parser.py',586), ('Derivative -> FRAC LBRACE PARTIAL RBRACE LBRACE PARTIAL ID RBRACE Expression','Derivative',9,'p_Derivative3','parser.py',595), ('Derivative -> FRAC LBRACE PARTIAL CARET LBRACE NUMBER RBRACE RBRACE LBRACE PARTIAL ID CARET LBRACE NUMBER RBRACE RBRACE Expression','Derivative',17,'p_Derivative3','parser.py',596), ('Derivative -> FRAC LBRACE PARTIAL Expression RBRACE LBRACE PARTIAL ID RBRACE','Derivative',9,'p_Derivative4','parser.py',605), ('Derivative -> FRAC LBRACE PARTIAL CARET LBRACE NUMBER RBRACE Expression RBRACE LBRACE PARTIAL ID CARET LBRACE NUMBER RBRACE RBRACE','Derivative',17,'p_Derivative4','parser.py',606), ('DivisorFunction -> SIGMA_LOWER UNDERLINE LBRACE NUMBER RBRACE LPAREN ExpressionList RPAREN','DivisorFunction',8,'p_DivisorFunction','parser.py',615), ('ImaginaryNumber -> I','ImaginaryNumber',1,'p_ImaginaryNumber','parser.py',620), ('ImaginaryNumber -> NUMBER I','ImaginaryNumber',2,'p_ImaginaryNumber','parser.py',621), ('NapierNumber -> E','NapierNumber',1,'p_NapierNumber','parser.py',628), ('NapierNumber -> NUMBER E','NapierNumber',2,'p_NapierNumber','parser.py',629), ('DifferentialVariable -> ID PrimeList LPAREN ExpressionList RPAREN','DifferentialVariable',5,'p_DifferentialVariable1','parser.py',636), ('DifferentialVariable -> ID PrimeList','DifferentialVariable',2,'p_DifferentialVariable1','parser.py',637), ('DifferentialVariable -> ID CARET LBRACE LPAREN NUMBER RPAREN RBRACE LPAREN ExpressionList RPAREN','DifferentialVariable',10,'p_DifferentialVariable2','parser.py',646), ('DifferentialVariable -> ID CARET LBRACE LPAREN NUMBER RPAREN RBRACE','DifferentialVariable',7,'p_DifferentialVariable2','parser.py',647), ('ChooseExpression -> LBRACE Expression CHOOSE Expression RBRACE','ChooseExpression',5,'p_Choose','parser.py',678), ('Limit -> LIMIT UNDERLINE LBRACE ID TO Expression RBRACE Expression','Limit',8,'p_LIMIT','parser.py',682), ('Limit -> LIMIT UNDERLINE LBRACE ID TO Expression PLUS RBRACE Expression','Limit',9,'p_LIMIT','parser.py',683), ('Limit -> LIMIT UNDERLINE LBRACE ID TO Expression MINUS RBRACE Expression','Limit',9,'p_LIMIT','parser.py',684), ('Limit -> LIMIT UNDERLINE LBRACE ID TO Expression CARET LBRACE PLUS RBRACE RBRACE Expression','Limit',12,'p_LIMIT','parser.py',685), ('Limit -> LIMIT UNDERLINE LBRACE ID TO Expression CARET LBRACE MINUS RBRACE RBRACE Expression','Limit',12,'p_LIMIT','parser.py',686), ('Limit -> LIMIT UNDERLINE LBRACE ID TO Term CARET LBRACE PLUS RBRACE RBRACE Expression','Limit',12,'p_LIMIT','parser.py',687), ('Limit -> LIMIT UNDERLINE LBRACE ID TO Term CARET LBRACE MINUS RBRACE RBRACE Expression','Limit',12,'p_LIMIT','parser.py',688), ('ConstraintSystem -> BEGIN_CASE Constraints END_CASE','ConstraintSystem',3,'p_ConstraintSystem','parser.py',714), ('ConstraintSystem -> BEGIN_CASE Constraints BACKSLASHES END_CASE','ConstraintSystem',4,'p_ConstraintSystem','parser.py',715), ('Constraints -> Constraints BACKSLASHES Constraint','Constraints',3,'p_Constraints','parser.py',719), ('Constraints -> Constraint','Constraints',1,'p_Constraints','parser.py',720), ('Determinant -> BEGIN_VMATRIX ExpressionsRows END_VMATRIX','Determinant',3,'p_Determinant','parser.py',730), ('Determinant -> BEGIN_VMATRIX ExpressionsRows BACKSLASHES END_VMATRIX','Determinant',4,'p_Determinant','parser.py',731), ('Norm -> BEGIN_NMATRIX ExpressionsRows END_NMATRIX','Norm',3,'p_Norm','parser.py',736), ('Norm -> BEGIN_NMATRIX ExpressionsRows BACKSLASHES END_NMATRIX','Norm',4,'p_Norm','parser.py',737), ('Matrix -> BEGIN_BMATRIX ExpressionsRows END_BMATRIX','Matrix',3,'p_Matrix','parser.py',742), ('Matrix -> BEGIN_BMATRIX ExpressionsRows BACKSLASHES END_BMATRIX','Matrix',4,'p_Matrix','parser.py',743), ('Matrix -> BEGIN_PMATRIX ExpressionsRows END_PMATRIX','Matrix',3,'p_Matrix','parser.py',745), ('Matrix -> BEGIN_PMATRIX ExpressionsRows BACKSLASHES END_PMATRIX','Matrix',4,'p_Matrix','parser.py',746), ('ExpressionsRow -> ExpressionsRow AMPERSAND Expression','ExpressionsRow',3,'p_ExpressionsRow','parser.py',751), ('ExpressionsRow -> Expression','ExpressionsRow',1,'p_ExpressionsRow','parser.py',752), ('ExpressionsRows -> ExpressionsRows BACKSLASHES ExpressionsRow','ExpressionsRows',3,'p_ExpressionsRows','parser.py',762), ('ExpressionsRows -> ExpressionsRow','ExpressionsRows',1,'p_ExpressionsRows','parser.py',763), ('ExpressionList -> ExpressionList COMMA Expression','ExpressionList',3,'p_ExpessionList','parser.py',773), ('ExpressionList -> Expression','ExpressionList',1,'p_ExpessionList','parser.py',774), ('PrimeList -> PrimeList PRIME','PrimeList',2,'p_PrimeList','parser.py',784), ('PrimeList -> PRIME','PrimeList',1,'p_PrimeList','parser.py',785), ('Constraint -> Expression EQ Expression','Constraint',3,'p_Constraint','parser.py',794), ('Constraint -> Expression NEQ Expression','Constraint',3,'p_Constraint','parser.py',795), ('Constraint -> Expression LT Expression','Constraint',3,'p_Constraint','parser.py',796), ('Constraint -> Expression LE Expression','Constraint',3,'p_Constraint','parser.py',797), ('Constraint -> Expression GT Expression','Constraint',3,'p_Constraint','parser.py',798), ('Constraint -> Expression GE Expression','Constraint',3,'p_Constraint','parser.py',799), ('Symbol -> PI','Symbol',1,'p_Symbol','parser.py',824), ('Symbol -> XI_LOWER','Symbol',1,'p_Symbol','parser.py',825), ('Symbol -> CHI_LOWER','Symbol',1,'p_Symbol','parser.py',826), ('Symbol -> PHI_LOWER','Symbol',1,'p_Symbol','parser.py',827), ('Symbol -> PSI_LOWER','Symbol',1,'p_Symbol','parser.py',828), ('Symbol -> SIGMA_LOWER','Symbol',1,'p_Symbol','parser.py',829), ('Symbol -> ZETA_LOWER','Symbol',1,'p_Symbol','parser.py',830), ('Symbol -> ETA_LOWER','Symbol',1,'p_Symbol','parser.py',831), ('Symbol -> DELTA_LOWER','Symbol',1,'p_Symbol','parser.py',832), ('Symbol -> THETA_LOWER','Symbol',1,'p_Symbol','parser.py',833), ('Symbol -> LAMBDA_LOWER','Symbol',1,'p_Symbol','parser.py',834), ('Symbol -> EPSILON_LOWER','Symbol',1,'p_Symbol','parser.py',835), ('Symbol -> TAU_LOWER','Symbol',1,'p_Symbol','parser.py',836), ('Symbol -> KAPPA_LOWER','Symbol',1,'p_Symbol','parser.py',837), ('Symbol -> OMEGA_LOWER','Symbol',1,'p_Symbol','parser.py',838), ('Symbol -> ALPHA_LOWER','Symbol',1,'p_Symbol','parser.py',839), ('Symbol -> NU_LOWER','Symbol',1,'p_Symbol','parser.py',840), ('Symbol -> RHO_LOWER','Symbol',1,'p_Symbol','parser.py',841), ('Symbol -> OMICRON_LOWER','Symbol',1,'p_Symbol','parser.py',842), ('Symbol -> UPSILON_LOWER','Symbol',1,'p_Symbol','parser.py',843), ('Symbol -> IOTA_LOWER','Symbol',1,'p_Symbol','parser.py',844), ('Symbol -> BETA_LOWER','Symbol',1,'p_Symbol','parser.py',845), ('Symbol -> GAMMA_LOWER','Symbol',1,'p_Symbol','parser.py',846), ('Symbol -> MU_LOWER','Symbol',1,'p_Symbol','parser.py',847), ('Symbol -> PI_UPPER','Symbol',1,'p_Symbol','parser.py',848), ('Symbol -> BETA','Symbol',1,'p_Symbol','parser.py',849), ('Symbol -> GAMMA','Symbol',1,'p_Symbol','parser.py',850), ('Symbol -> KAPPA','Symbol',1,'p_Symbol','parser.py',851), ('Symbol -> OMICRON','Symbol',1,'p_Symbol','parser.py',852), ('Symbol -> OMEGA','Symbol',1,'p_Symbol','parser.py',853), ('Symbol -> LAMBDA','Symbol',1,'p_Symbol','parser.py',854), ('Symbol -> IOTA','Symbol',1,'p_Symbol','parser.py',855), ('Symbol -> PSI','Symbol',1,'p_Symbol','parser.py',856), ('Symbol -> MU','Symbol',1,'p_Symbol','parser.py',857), ('Symbol -> PHI','Symbol',1,'p_Symbol','parser.py',858), ('Symbol -> SIGMA','Symbol',1,'p_Symbol','parser.py',859), ('Symbol -> ETA','Symbol',1,'p_Symbol','parser.py',860), ('Symbol -> ZETA','Symbol',1,'p_Symbol','parser.py',861), ('Symbol -> THETA','Symbol',1,'p_Symbol','parser.py',862), ('Symbol -> EPSILON','Symbol',1,'p_Symbol','parser.py',863), ('Symbol -> TAU','Symbol',1,'p_Symbol','parser.py',864), ('Symbol -> ALPHA','Symbol',1,'p_Symbol','parser.py',865), ('Symbol -> XI','Symbol',1,'p_Symbol','parser.py',866), ('Symbol -> CHI','Symbol',1,'p_Symbol','parser.py',867), ('Symbol -> NU','Symbol',1,'p_Symbol','parser.py',868), ('Symbol -> RHO','Symbol',1,'p_Symbol','parser.py',869), ('Symbol -> UPSILON','Symbol',1,'p_Symbol','parser.py',870), ]
_tabversion = '3.10' _lr_method = 'LALR' _lr_signature = 'leftIDleftNUMBERINFINITYleftBEGIN_CASEEND_CASEBEGIN_BMATRIXEND_BMATRIXBEGIN_PMATRIXEND_PMATRIXBACKSLASHESleftINTEGRALDIFFERENTIALDIEPARTIALLIMITTOrightCOMMArightPIPErightLPARENRPARENrightLBRACERBRACELBRACKETRBRACKETFRACleftPIPRIMErightLEGELTGTEQNEQleftINrightDOTSleftSUMPRODleftFACTORIALleftPLUSMINUSleftTIMESDIVIDEMODCHOOSEDOTleftUPLUSUMINUSrightCARETleftLFLOORRFLOORLCEILRCEILSINHASINHSINASINCOSHACOSHCOSACOSTANHATANHTANATANSECASECCSCACSCCOTHACOTHCOTACOTSQRTLNLOGEXPGCDDEGGRADIENTDETERMINANTCROSSFRAC NUMBER PLUS MINUS TIMES DIVIDE LPAREN RPAREN LBRACKET RBRACKET LBRACE RBRACE LFLOOR RFLOOR LCEIL RCEIL ASINH SINH ASIN SIN ACOSH COSH ACOS COS ATANH TANH ATAN TAN ASEC SEC ACSC CSC ACOTH COTH ACOT COT SQRT LOG LN EXP MOD CARET COMMA ID PIPE INFINITY UNDERLINE INTEGRAL DIFFERENTIAL D I E PARTIAL SUM PROD IN DOTS EQ NEQ LT LE GT GE FACTORIAL PERCENT ETA_LOWER ZETA_LOWER PHI_LOWER PSI_LOWER SIGMA_LOWER DELTA_LOWER THETA_LOWER LAMBDA_LOWER EPSILON_LOWER TAU_LOWER KAPPA_LOWER OMEGA_LOWER ALPHA_LOWER XI_LOWER CHI_LOWER NU_LOWER RHO_LOWER OMICRON_LOWER UPSILON_LOWER IOTA_LOWER BETA_LOWER GAMMA_LOWER MU_LOWER PI_UPPER PI BETA GAMMA MU KAPPA OMICRON OMEGA LAMBDA IOTA PSI PHI SIGMA ETA ZETA THETA EPSILON TAU ALPHA XI CHI NU RHO UPSILON LIMIT TO PRIME GCD DEG CHOOSE GRADIENT LAPLACIAN BEGIN_CASE END_CASE BACKSLASHES BEGIN_BMATRIX END_BMATRIX BEGIN_PMATRIX END_PMATRIX BEGIN_VMATRIX END_VMATRIX BEGIN_NMATRIX END_NMATRIX AMPERSAND DETERMINANT CROSS DOTMAIN : Expression\n | Constraint\n | ConstraintSystemFactor : NUMBER\n | ImaginaryNumber\n | NapierNumber\n | ID\n | INFINITY\n | Symbol\n | IteratedExpression\n | DivisorFunction\n | Derivative\n | Integral\n | Limit\n | DifferentialVariable\n | ChooseExpression\n | Matrix\n | Determinant\n | Norm\n | FractionalExpression\n | ID CARET LBRACE Expression RBRACE\n | LPAREN Expression RPARENTerm : Term TIMES Factor\n | Term DOT Factor\n | Term CROSS Factor\n | Term DIVIDE Factor\n | Term MOD Factor\n | Term CARET LBRACE Expression RBRACE\n | FactorExpression : Expression PLUS Term\n | Expression MINUS Term\n | TermFactor : PLUS Expression %prec UPLUS\n | MINUS Expression %prec UMINUSFactor : NUMBER FACTORIAL\n | ID FACTORIAL\n | LPAREN Expression RPAREN FACTORIAL\n | NUMBER PERCENT\n | ID PERCENT\n | LPAREN Expression RPAREN PERCENTFractionalExpression : FRAC LBRACE Expression RBRACE LBRACE Expression RBRACEFactor : SQRT LBRACE Expression RBRACE\n\n | SQRT LBRACKET NUMBER RBRACKET LBRACE Expression RBRACE\n \n | LFLOOR Expression RFLOOR\n \n | LCEIL Expression RCEIL\n \n | PIPE Expression PIPE\n\n | ASINH LPAREN Expression RPAREN\n \n | ASINH ID\n\n | ASINH NUMBER\n\n | SINH LPAREN Expression RPAREN\n \n | SINH ID\n\n | SINH NUMBER\n \n | ASIN LPAREN Expression RPAREN\n\n | ASIN ID\n\n | ASIN NUMBER\n\n | SIN LPAREN Expression RPAREN\n \n | SIN ID\n\n | SIN NUMBER\n\n | ACOSH LPAREN Expression RPAREN\n\n | ACOSH ID\n\n | ACOSH NUMBER\n\n | COSH LPAREN Expression RPAREN\n\n | COSH ID\n\n | COSH NUMBER\n\n | ACOS LPAREN Expression RPAREN\n\n | ACOS ID\n\n | ACOS NUMBER\n\n | COS LPAREN Expression RPAREN\n\n | COS ID\n\n | COS NUMBER\n\n | ATANH LPAREN Expression RPAREN\n\n | ATANH ID\n\n | ATANH NUMBER\n\n | TANH LPAREN Expression RPAREN\n\n | TANH ID\n\n | TANH NUMBER\n\n | ATAN LPAREN Expression COMMA Expression RPAREN\n | ATAN LPAREN Expression RPAREN\n \n | ATAN ID\n\n | ATAN NUMBER\n\n | TAN LPAREN Expression RPAREN\n\n | TAN ID\n\n | TAN NUMBER\n\n | ASEC LPAREN Expression RPAREN\n\n | ASEC ID\n\n | ASEC NUMBER\n\n | SEC LPAREN Expression RPAREN\n \n | SEC ID\n\n | SEC NUMBER\n\n | ACSC LPAREN Expression RPAREN\n\n | ACSC ID\n\n | ACSC NUMBER\n\n | CSC LPAREN Expression RPAREN\n\n | CSC ID\n\n | CSC NUMBER\n\n | ACOTH LPAREN Expression RPAREN\n\n | ACOTH ID\n\n | ACOTH NUMBER\n\n | COTH LPAREN Expression RPAREN\n\n | COTH ID\n\n | COTH NUMBER\n\n | ACOT LPAREN Expression RPAREN\n\n | ACOT ID\n\n | ACOT NUMBER\n\n | COT LPAREN Expression RPAREN\n\n | COT ID\n\n | COT NUMBER\n \n | LOG LPAREN Expression RPAREN\n\n | LOG ID\n\n | LOG NUMBER\n\n | LOG UNDERLINE LBRACE NUMBER RBRACE LPAREN Expression RPAREN\n \n | LN LPAREN Expression RPAREN\n\n | LN ID\n\n | LN NUMBER\n \n | EXP LPAREN Expression RPAREN\n\n | EXP ID\n\n | EXP NUMBER\n\n | GCD LPAREN ExpressionList RPAREN\n\n | GCD ID\n\n | GCD NUMBER\n\n | DEG LPAREN ExpressionList RPAREN\n\n | DEG ID\n\n | DEG NUMBER\n\n | GRADIENT LPAREN ExpressionList RPAREN\n\n | GRADIENT ID\n\n | GRADIENT NUMBER\n\n | GRADIENT DOT LPAREN ExpressionList RPAREN\n\n | GRADIENT DOT ID\n\n | GRADIENT DOT NUMBER\n\n | GRADIENT CROSS LPAREN ExpressionList RPAREN\n \n | GRADIENT CROSS ID\n \n | GRADIENT CROSS NUMBER\n \n | LAPLACIAN LPAREN Expression RPAREN\n \n | LAPLACIAN NUMBER\n \n | LAPLACIAN ID\n \n | DETERMINANT LPAREN Matrix RPAREN\n \n | DETERMINANT Matrix\n\n | Symbol LPAREN ExpressionList RPAREN\n \n | ID LPAREN ExpressionList RPAREN\n \n | ID LPAREN RPARENRange : Expression DOTS ExpressionIndexingExpression : ID IN RangeIteratedExpression : SUM UNDERLINE LBRACE IndexingExpression RBRACE Expression\n | SUM UNDERLINE LBRACE ID EQ Expression RBRACE CARET LBRACE Expression RBRACE Expression\n | PROD UNDERLINE LBRACE IndexingExpression RBRACE Expression\n | PROD UNDERLINE LBRACE ID EQ Expression RBRACE CARET LBRACE Expression RBRACE ExpressionIntegral : INTEGRAL UNDERLINE LBRACE Expression RBRACE CARET LBRACE Expression RBRACE Expression DIFFERENTIAL\n | INTEGRAL UNDERLINE LBRACE Expression RBRACE Expression DIFFERENTIAL\n | INTEGRAL CARET LBRACE Expression RBRACE Expression DIFFERENTIAL\n | INTEGRAL Expression DIFFERENTIALDerivative : FRAC LBRACE D RBRACE LBRACE DIFFERENTIAL RBRACE Expression\n | FRAC LBRACE D CARET LBRACE NUMBER RBRACE RBRACE LBRACE DIFFERENTIAL CARET LBRACE NUMBER RBRACE RBRACE ExpressionDerivative : FRAC LBRACE D Expression RBRACE LBRACE DIFFERENTIAL RBRACE\n | FRAC LBRACE D CARET LBRACE NUMBER RBRACE Expression RBRACE LBRACE DIFFERENTIAL CARET LBRACE NUMBER RBRACE RBRACEDerivative : FRAC LBRACE PARTIAL RBRACE LBRACE PARTIAL ID RBRACE Expression\n | FRAC LBRACE PARTIAL CARET LBRACE NUMBER RBRACE RBRACE LBRACE PARTIAL ID CARET LBRACE NUMBER RBRACE RBRACE ExpressionDerivative : FRAC LBRACE PARTIAL Expression RBRACE LBRACE PARTIAL ID RBRACE\n | FRAC LBRACE PARTIAL CARET LBRACE NUMBER RBRACE Expression RBRACE LBRACE PARTIAL ID CARET LBRACE NUMBER RBRACE RBRACEDivisorFunction : SIGMA_LOWER UNDERLINE LBRACE NUMBER RBRACE LPAREN ExpressionList RPARENImaginaryNumber : I\n | NUMBER INapierNumber : E\n | NUMBER EDifferentialVariable : ID PrimeList LPAREN ExpressionList RPAREN\n | ID PrimeListDifferentialVariable : ID CARET LBRACE LPAREN NUMBER RPAREN RBRACE LPAREN ExpressionList RPAREN\n | ID CARET LBRACE LPAREN NUMBER RPAREN RBRACEChooseExpression : LBRACE Expression CHOOSE Expression RBRACELimit : LIMIT UNDERLINE LBRACE ID TO Expression RBRACE Expression\n | LIMIT UNDERLINE LBRACE ID TO Expression PLUS RBRACE Expression\n | LIMIT UNDERLINE LBRACE ID TO Expression MINUS RBRACE Expression\n | LIMIT UNDERLINE LBRACE ID TO Expression CARET LBRACE PLUS RBRACE RBRACE Expression\n | LIMIT UNDERLINE LBRACE ID TO Expression CARET LBRACE MINUS RBRACE RBRACE Expression\n | LIMIT UNDERLINE LBRACE ID TO Term CARET LBRACE PLUS RBRACE RBRACE Expression\n | LIMIT UNDERLINE LBRACE ID TO Term CARET LBRACE MINUS RBRACE RBRACE ExpressionConstraintSystem : BEGIN_CASE Constraints END_CASE\n | BEGIN_CASE Constraints BACKSLASHES END_CASEConstraints : Constraints BACKSLASHES Constraint\n | ConstraintDeterminant : BEGIN_VMATRIX ExpressionsRows END_VMATRIX\n | BEGIN_VMATRIX ExpressionsRows BACKSLASHES END_VMATRIXNorm : BEGIN_NMATRIX ExpressionsRows END_NMATRIX\n | BEGIN_NMATRIX ExpressionsRows BACKSLASHES END_NMATRIXMatrix : BEGIN_BMATRIX ExpressionsRows END_BMATRIX\n | BEGIN_BMATRIX ExpressionsRows BACKSLASHES END_BMATRIX\n\n | BEGIN_PMATRIX ExpressionsRows END_PMATRIX\n | BEGIN_PMATRIX ExpressionsRows BACKSLASHES END_PMATRIXExpressionsRow : ExpressionsRow AMPERSAND Expression\n | ExpressionExpressionsRows : ExpressionsRows BACKSLASHES ExpressionsRow\n | ExpressionsRowExpressionList : ExpressionList COMMA Expression\n | ExpressionPrimeList : PrimeList PRIME\n | PRIMEConstraint : Expression EQ Expression\n | Expression NEQ Expression\n | Expression LT Expression\n | Expression LE Expression\n | Expression GT Expression\n | Expression GE ExpressionSymbol : PI\n | XI_LOWER\n | CHI_LOWER\n | PHI_LOWER\n | PSI_LOWER\n | SIGMA_LOWER\n | ZETA_LOWER\n | ETA_LOWER\n | DELTA_LOWER\n | THETA_LOWER\n | LAMBDA_LOWER\n | EPSILON_LOWER\n | TAU_LOWER\n | KAPPA_LOWER\n | OMEGA_LOWER\n | ALPHA_LOWER\n | NU_LOWER\n | RHO_LOWER\n | OMICRON_LOWER\n | UPSILON_LOWER\n | IOTA_LOWER\n | BETA_LOWER\n | GAMMA_LOWER\n | MU_LOWER\n | PI_UPPER\n | BETA\n | GAMMA\n | KAPPA\n | OMICRON\n | OMEGA\n | LAMBDA\n | IOTA\n | PSI\n | MU\n | PHI\n | SIGMA\n | ETA\n | ZETA\n | THETA\n | EPSILON\n | TAU\n | ALPHA\n | XI\n | CHI\n | NU\n | RHO\n | UPSILON' _lr_action_items = {'LFLOOR': ([0, 1, 6, 15, 18, 38, 47, 52, 70, 78, 87, 94, 100, 108, 121, 125, 129, 132, 136, 139, 141, 144, 148, 154, 157, 161, 163, 167, 172, 173, 174, 175, 176, 178, 181, 186, 189, 193, 196, 200, 203, 206, 207, 208, 209, 210, 211, 212, 213, 217, 227, 230, 233, 237, 244, 248, 251, 254, 265, 266, 272, 280, 281, 282, 290, 301, 311, 315, 316, 322, 325, 329, 331, 335, 345, 355, 398, 407, 415, 420, 421, 422, 423, 424, 426, 427, 433, 444, 451, 459, 460, 461, 462, 464, 466, 471, 475, 479, 482, 483, 488, 498, 499, 500, 511, 512, 513, 527, 528, 529, 530, 535, 536, 557, 562], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]), 'LAPLACIAN': ([0, 1, 6, 15, 18, 38, 47, 52, 70, 78, 87, 94, 100, 108, 121, 125, 129, 132, 136, 139, 141, 144, 148, 154, 157, 161, 163, 167, 172, 173, 174, 175, 176, 178, 181, 186, 189, 193, 196, 200, 203, 206, 207, 208, 209, 210, 211, 212, 213, 217, 227, 230, 233, 237, 244, 248, 251, 254, 265, 266, 272, 280, 281, 282, 290, 301, 311, 315, 316, 322, 325, 329, 331, 335, 345, 355, 398, 407, 415, 420, 421, 422, 423, 424, 426, 427, 433, 444, 451, 459, 460, 461, 462, 464, 466, 471, 475, 479, 482, 483, 488, 498, 499, 500, 511, 512, 513, 527, 528, 529, 530, 535, 536, 557, 562], [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3]), 'LBRACKET': ([114], [252]), 'LIMIT': ([0, 1, 6, 15, 18, 38, 47, 52, 70, 78, 87, 94, 100, 108, 121, 125, 129, 132, 136, 139, 141, 144, 148, 154, 157, 161, 163, 167, 172, 173, 174, 175, 176, 178, 181, 186, 189, 193, 196, 200, 203, 206, 207, 208, 209, 210, 211, 212, 213, 217, 227, 230, 233, 237, 244, 248, 251, 254, 265, 266, 272, 280, 281, 282, 290, 301, 311, 315, 316, 322, 325, 329, 331, 335, 345, 355, 398, 407, 415, 420, 421, 422, 423, 424, 426, 427, 433, 444, 451, 459, 460, 461, 462, 464, 466, 471, 475, 479, 482, 483, 488, 498, 499, 500, 511, 512, 513, 527, 528, 529, 530, 535, 536, 557, 562], [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4]), 'EXP': ([0, 1, 6, 15, 18, 38, 47, 52, 70, 78, 87, 94, 100, 108, 121, 125, 129, 132, 136, 139, 141, 144, 148, 154, 157, 161, 163, 167, 172, 173, 174, 175, 176, 178, 181, 186, 189, 193, 196, 200, 203, 206, 207, 208, 209, 210, 211, 212, 213, 217, 227, 230, 233, 237, 244, 248, 251, 254, 265, 266, 272, 280, 281, 282, 290, 301, 311, 315, 316, 322, 325, 329, 331, 335, 345, 355, 398, 407, 415, 420, 421, 422, 423, 424, 426, 427, 433, 444, 451, 459, 460, 461, 462, 464, 466, 471, 475, 479, 482, 483, 488, 498, 499, 500, 511, 512, 513, 527, 528, 529, 530, 535, 536, 557, 562], [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5]), 'SIN': ([0, 1, 6, 15, 18, 38, 47, 52, 70, 78, 87, 94, 100, 108, 121, 125, 129, 132, 136, 139, 141, 144, 148, 154, 157, 161, 163, 167, 172, 173, 174, 175, 176, 178, 181, 186, 189, 193, 196, 200, 203, 206, 207, 208, 209, 210, 211, 212, 213, 217, 227, 230, 233, 237, 244, 248, 251, 254, 265, 266, 272, 280, 281, 282, 290, 301, 311, 315, 316, 322, 325, 329, 331, 335, 345, 355, 398, 407, 415, 420, 421, 422, 423, 424, 426, 427, 433, 444, 451, 459, 460, 461, 462, 464, 466, 471, 475, 479, 482, 483, 488, 498, 499, 500, 511, 512, 513, 527, 528, 529, 530, 535, 536, 557, 562], [42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42]), 'TAU': ([0, 1, 6, 15, 18, 38, 47, 52, 70, 78, 87, 94, 100, 108, 121, 125, 129, 132, 136, 139, 141, 144, 148, 154, 157, 161, 163, 167, 172, 173, 174, 175, 176, 178, 181, 186, 189, 193, 196, 200, 203, 206, 207, 208, 209, 210, 211, 212, 213, 217, 227, 230, 233, 237, 244, 248, 251, 254, 265, 266, 272, 280, 281, 282, 290, 301, 311, 315, 316, 322, 325, 329, 331, 335, 345, 355, 398, 407, 415, 420, 421, 422, 423, 424, 426, 427, 433, 444, 451, 459, 460, 461, 462, 464, 466, 471, 475, 479, 482, 483, 488, 498, 499, 500, 511, 512, 513, 527, 528, 529, 530, 535, 536, 557, 562], [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8]), 'RPAREN': ([2, 7, 8, 9, 11, 12, 13, 17, 21, 22, 23, 25, 26, 27, 28, 30, 31, 32, 33, 34, 35, 37, 39, 43, 45, 48, 49, 53, 54, 55, 63, 64, 65, 66, 68, 69, 72, 73, 74, 75, 76, 79, 80, 81, 82, 83, 85, 86, 88, 89, 90, 91, 92, 95, 97, 101, 103, 104, 105, 106, 107, 109, 110, 112, 113, 116, 117, 118, 120, 122, 124, 126, 127, 128, 130, 131, 133, 134, 135, 137, 140, 142, 143, 145, 147, 149, 153, 155, 156, 158, 159, 160, 162, 164, 165, 166, 177, 179, 180, 182, 185, 187, 188, 190, 192, 194, 195, 197, 198, 202, 204, 215, 218, 222, 223, 224, 225, 226, 228, 229, 231, 232, 234, 236, 238, 239, 241, 242, 243, 244, 245, 246, 249, 253, 255, 256, 257, 259, 260, 261, 262, 263, 264, 268, 269, 271, 274, 275, 276, 277, 278, 279, 283, 284, 285, 286, 287, 288, 289, 292, 293, 295, 296, 297, 298, 299, 300, 302, 308, 309, 312, 314, 317, 318, 319, 320, 321, 323, 324, 326, 327, 328, 330, 332, 333, 334, 336, 339, 340, 342, 343, 344, 346, 354, 356, 358, 361, 362, 363, 364, 365, 366, 370, 371, 375, 376, 379, 380, 381, 382, 383, 384, 385, 387, 390, 391, 392, 393, 394, 395, 396, 399, 400, 401, 402, 403, 404, 406, 408, 416, 418, 419, 428, 429, 430, 431, 432, 443, 448, 450, 468, 469, 473, 474, 476, 477, 478, 481, 486, 487, 492, 496, 503, 504, 507, 510, 514, 526, 537, 538, 539, 540, 541, 546, 547, 560, 561, 564, 565], [-218, -17, -242, -18, -216, -205, -6, -233, -245, -236, -14, -10, -13, -238, -247, -237, -210, -20, -207, -209, -29, -12, -228, -5, -202, -32, -234, -212, -235, -213, -215, -203, -204, -211, -222, -9, -162, -206, -244, -229, -208, -219, -214, -227, -226, -240, -231, -246, -16, -224, -225, -11, -15, -4, -19, -248, -217, -220, -8, -221, -160, -239, -7, -241, -230, -243, -232, -223, -134, -135, -117, -116, -34, -98, -97, -120, -119, -33, -83, -82, -80, -79, -49, -48, -86, -85, -123, -122, -76, -75, -58, -57, -67, -66, -104, -103, -95, -94, -101, -100, -70, -69, -107, -106, -73, -72, -64, -63, -137, -89, -88, -110, -109, -35, -161, -38, -163, -52, -51, -55, -54, -114, -113, -92, -91, 324, -195, -36, -39, 326, -165, -126, -125, -61, -60, -44, 340, 342, 343, 344, -193, 346, -45, 354, 356, 358, 361, 362, 363, 364, 365, -182, -26, -25, -23, -24, -27, 370, 371, 375, 376, 379, 380, 381, 382, -46, 383, -186, -30, -31, -184, 387, -150, 390, 391, 392, -180, 394, -22, -140, 399, -194, -132, -131, 402, -129, -128, 406, -133, -115, -96, -118, -81, -78, -47, -84, -121, -74, -56, -65, -102, -183, -93, -99, -68, -105, -71, -62, -136, -138, -87, -187, -185, -108, -50, -53, -112, -181, -90, -37, -40, -139, 430, 431, -124, 432, -42, -59, -192, 443, -28, -168, -21, 455, -164, -130, -127, -77, -145, -143, -41, 492, 496, -149, -148, -167, -43, -169, -153, -151, -159, -111, -171, -170, -155, -157, 526, -166, -147, -175, -174, -173, -172, -146, -144, -154, -152, -156, -158]), 'ACOTH': ([0, 1, 6, 15, 18, 38, 47, 52, 70, 78, 87, 94, 100, 108, 121, 125, 129, 132, 136, 139, 141, 144, 148, 154, 157, 161, 163, 167, 172, 173, 174, 175, 176, 178, 181, 186, 189, 193, 196, 200, 203, 206, 207, 208, 209, 210, 211, 212, 213, 217, 227, 230, 233, 237, 244, 248, 251, 254, 265, 266, 272, 280, 281, 282, 290, 301, 311, 315, 316, 322, 325, 329, 331, 335, 345, 355, 398, 407, 415, 420, 421, 422, 423, 424, 426, 427, 433, 444, 451, 459, 460, 461, 462, 464, 466, 471, 475, 479, 482, 483, 488, 498, 499, 500, 511, 512, 513, 527, 528, 529, 530, 535, 536, 557, 562], [10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10]), 'OMEGA_LOWER': ([0, 1, 6, 15, 18, 38, 47, 52, 70, 78, 87, 94, 100, 108, 121, 125, 129, 132, 136, 139, 141, 144, 148, 154, 157, 161, 163, 167, 172, 173, 174, 175, 176, 178, 181, 186, 189, 193, 196, 200, 203, 206, 207, 208, 209, 210, 211, 212, 213, 217, 227, 230, 233, 237, 244, 248, 251, 254, 265, 266, 272, 280, 281, 282, 290, 301, 311, 315, 316, 322, 325, 329, 331, 335, 345, 355, 398, 407, 415, 420, 421, 422, 423, 424, 426, 427, 433, 444, 451, 459, 460, 461, 462, 464, 466, 471, 475, 479, 482, 483, 488, 498, 499, 500, 511, 512, 513, 527, 528, 529, 530, 535, 536, 557, 562], [11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11]), 'LT': ([2, 7, 8, 9, 11, 12, 13, 17, 21, 22, 23, 25, 26, 27, 28, 30, 31, 32, 33, 34, 35, 37, 39, 43, 45, 48, 49, 53, 54, 55, 63, 64, 65, 66, 68, 69, 72, 73, 74, 75, 76, 79, 80, 81, 82, 83, 84, 85, 86, 88, 89, 90, 91, 92, 95, 97, 101, 103, 104, 105, 106, 107, 109, 110, 112, 113, 116, 117, 118, 120, 122, 124, 126, 127, 128, 130, 131, 133, 134, 135, 137, 140, 142, 143, 145, 147, 149, 151, 153, 155, 156, 158, 159, 160, 162, 164, 165, 166, 177, 179, 180, 182, 185, 187, 188, 190, 192, 194, 195, 197, 198, 202, 204, 215, 218, 222, 223, 224, 225, 226, 228, 229, 231, 232, 234, 236, 238, 241, 242, 243, 245, 246, 249, 253, 255, 256, 264, 279, 283, 284, 285, 286, 287, 299, 302, 308, 309, 312, 317, 321, 324, 326, 328, 330, 332, 334, 336, 340, 342, 343, 344, 346, 354, 356, 358, 361, 362, 363, 364, 365, 366, 370, 371, 375, 376, 379, 380, 381, 382, 383, 384, 385, 387, 390, 391, 392, 393, 394, 395, 396, 399, 402, 404, 406, 418, 419, 428, 430, 431, 432, 443, 448, 450, 468, 474, 476, 477, 478, 481, 486, 487, 492, 496, 503, 504, 507, 510, 526, 537, 538, 539, 540, 541, 546, 547, 560, 561, 564, 565], [-218, -17, -242, -18, -216, -205, -6, -233, -245, -236, -14, -10, -13, -238, -247, -237, -210, -20, -207, -209, -29, -12, -228, -5, -202, -32, -234, -212, -235, -213, -215, -203, -204, -211, -222, -9, -162, -206, -244, -229, -208, -219, -214, -227, -226, -240, 209, -231, -246, -16, -224, -225, -11, -15, -4, -19, -248, -217, -220, -8, -221, -160, -239, -7, -241, -230, -243, -232, -223, -134, -135, -117, -116, -34, -98, -97, -120, -119, -33, -83, -82, -80, -79, -49, -48, -86, -85, 209, -123, -122, -76, -75, -58, -57, -67, -66, -104, -103, -95, -94, -101, -100, -70, -69, -107, -106, -73, -72, -64, -63, -137, -89, -88, -110, -109, -35, -161, -38, -163, -52, -51, -55, -54, -114, -113, -92, -91, -195, -36, -39, -165, -126, -125, -61, -60, -44, -45, -182, -26, -25, -23, -24, -27, -46, -186, -30, -31, -184, -150, -180, -22, -140, -194, -132, -131, -129, -128, -133, -115, -96, -118, -81, -78, -47, -84, -121, -74, -56, -65, -102, -183, -93, -99, -68, -105, -71, -62, -136, -138, -87, -187, -185, -108, -50, -53, -112, -181, -90, -37, -40, -139, -124, -42, -59, -28, -168, -21, -164, -130, -127, -77, -145, -143, -41, -149, -148, -167, -43, -169, -153, -151, -159, -111, -171, -170, -155, -157, -166, -147, -175, -174, -173, -172, -146, -144, -154, -152, -156, -158]), 'PLUS': ([0, 1, 2, 6, 7, 8, 9, 11, 12, 13, 15, 17, 18, 21, 22, 23, 25, 26, 27, 28, 30, 31, 32, 33, 34, 35, 37, 38, 39, 43, 45, 47, 48, 49, 52, 53, 54, 55, 63, 64, 65, 66, 68, 69, 70, 72, 73, 74, 75, 76, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 94, 95, 97, 100, 101, 103, 104, 105, 106, 107, 108, 109, 110, 112, 113, 116, 117, 118, 119, 120, 121, 122, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 147, 148, 149, 151, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 170, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 185, 186, 187, 188, 189, 190, 192, 193, 194, 195, 196, 197, 198, 200, 201, 202, 203, 204, 206, 207, 208, 209, 210, 211, 212, 213, 215, 217, 218, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 236, 237, 238, 239, 241, 242, 243, 244, 245, 246, 248, 249, 251, 253, 254, 255, 256, 257, 259, 260, 262, 263, 264, 265, 266, 267, 268, 269, 271, 272, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 292, 293, 295, 296, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 328, 329, 330, 331, 332, 334, 335, 336, 337, 339, 340, 342, 343, 344, 345, 346, 348, 352, 354, 355, 356, 358, 361, 362, 363, 364, 365, 366, 368, 369, 370, 371, 372, 375, 376, 379, 380, 381, 382, 383, 384, 385, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 402, 404, 406, 407, 408, 415, 416, 418, 419, 420, 421, 422, 423, 424, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 442, 443, 444, 445, 447, 448, 449, 450, 451, 452, 454, 456, 459, 460, 461, 462, 464, 466, 468, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 486, 487, 488, 490, 492, 494, 496, 497, 498, 499, 500, 503, 504, 507, 510, 511, 512, 513, 523, 524, 525, 526, 527, 528, 529, 530, 535, 536, 537, 538, 539, 540, 541, 546, 547, 557, 560, 561, 562, 564, 565], [15, 15, -218, 15, -17, -242, -18, -216, -205, -6, 15, -233, 15, -245, -236, -14, -10, -13, -238, -247, -237, -210, -20, -207, -209, -29, -12, 15, -228, -5, -202, 15, -32, -234, 15, -212, -235, -213, -215, -203, -204, -211, -222, -9, 15, -162, -206, -244, -229, -208, 15, -219, -214, -227, -226, -240, 211, -231, -246, 15, -16, -224, -225, -11, -15, 15, -4, -19, 15, -248, -217, -220, -8, -221, -160, 15, -239, -7, -241, -230, -243, -232, -223, 211, -134, 15, -135, -117, 15, -116, -34, -98, 15, -97, -120, 15, -119, -33, -83, 15, -82, 211, 15, -80, 15, -79, -49, 15, -48, -86, 15, -85, 211, -123, 15, -122, -76, 15, -75, -58, -57, 15, -67, 15, -66, -104, -103, 15, 211, 15, 15, 15, 15, 15, -95, 15, -94, -101, 15, -100, 211, -70, 15, -69, -107, 15, -106, -73, 15, -72, -64, 15, -63, -137, 15, 211, -89, 15, -88, 15, 15, 15, 15, 15, 15, 15, 15, -110, 15, -109, 211, -35, -161, -38, -163, -52, 15, -51, -55, 15, -54, -114, 15, -113, -92, 15, -91, 211, -195, -36, -39, 15, -165, -126, 15, -125, 15, -61, 15, -60, -44, 211, 211, 211, 211, 211, -45, 15, 15, 211, 211, 211, 211, 15, 211, 211, 211, 211, -182, 15, 15, 15, -26, -25, -23, -24, -27, 211, 211, 15, 211, 211, 211, 211, -46, 211, 15, -186, 211, 211, 211, 211, 211, -30, -31, 211, 15, -184, 211, 15, 15, -150, 211, 211, 211, -180, 15, 211, -22, 15, -140, -194, 15, -132, 15, -131, -129, 15, -128, 211, 211, -133, -115, -96, -118, 15, -81, 211, 211, -78, 15, -47, -84, -121, -74, -56, -65, -102, -183, 211, 211, -93, -99, 211, -68, -105, -71, -62, -136, -138, -87, -187, -185, -108, 211, 211, -50, -53, -112, -181, -90, -37, -40, 211, 15, -139, -124, -42, -59, 15, 211, 15, 211, -28, -168, 15, 15, 15, 15, 15, 15, 15, -21, -4, -164, -130, -127, 15, -32, 461, 211, -77, 15, 211, 211, 211, 211, 211, 15, 211, 211, 211, 15, 15, 15, 15, 15, 15, -41, 15, 211, -149, 15, -148, -167, -43, 500, 502, 211, 15, 15, 211, -153, 211, 15, 211, -159, 211, -111, 211, 15, 15, 15, 211, 211, 211, -157, 15, 15, 15, 211, 211, 211, -166, 15, 15, 15, 15, 15, 15, -147, 211, 211, 211, 211, 211, 211, 15, -154, 211, 15, 211, -158]), 'TAN': ([0, 1, 6, 15, 18, 38, 47, 52, 70, 78, 87, 94, 100, 108, 121, 125, 129, 132, 136, 139, 141, 144, 148, 154, 157, 161, 163, 167, 172, 173, 174, 175, 176, 178, 181, 186, 189, 193, 196, 200, 203, 206, 207, 208, 209, 210, 211, 212, 213, 217, 227, 230, 233, 237, 244, 248, 251, 254, 265, 266, 272, 280, 281, 282, 290, 301, 311, 315, 316, 322, 325, 329, 331, 335, 345, 355, 398, 407, 415, 420, 421, 422, 423, 424, 426, 427, 433, 444, 451, 459, 460, 461, 462, 464, 466, 471, 475, 479, 482, 483, 488, 498, 499, 500, 511, 512, 513, 527, 528, 529, 530, 535, 536, 557, 562], [16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16]), 'IOTA': ([0, 1, 6, 15, 18, 38, 47, 52, 70, 78, 87, 94, 100, 108, 121, 125, 129, 132, 136, 139, 141, 144, 148, 154, 157, 161, 163, 167, 172, 173, 174, 175, 176, 178, 181, 186, 189, 193, 196, 200, 203, 206, 207, 208, 209, 210, 211, 212, 213, 217, 227, 230, 233, 237, 244, 248, 251, 254, 265, 266, 272, 280, 281, 282, 290, 301, 311, 315, 316, 322, 325, 329, 331, 335, 345, 355, 398, 407, 415, 420, 421, 422, 423, 424, 426, 427, 433, 444, 451, 459, 460, 461, 462, 464, 466, 471, 475, 479, 482, 483, 488, 498, 499, 500, 511, 512, 513, 527, 528, 529, 530, 535, 536, 557, 562], [17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17]), 'PRIME': ([110, 241, 245, 328], [241, -195, 328, -194]), 'LCEIL': ([0, 1, 6, 15, 18, 38, 47, 52, 70, 78, 87, 94, 100, 108, 121, 125, 129, 132, 136, 139, 141, 144, 148, 154, 157, 161, 163, 167, 172, 173, 174, 175, 176, 178, 181, 186, 189, 193, 196, 200, 203, 206, 207, 208, 209, 210, 211, 212, 213, 217, 227, 230, 233, 237, 244, 248, 251, 254, 265, 266, 272, 280, 281, 282, 290, 301, 311, 315, 316, 322, 325, 329, 331, 335, 345, 355, 398, 407, 415, 420, 421, 422, 423, 424, 426, 427, 433, 444, 451, 459, 460, 461, 462, 464, 466, 471, 475, 479, 482, 483, 488, 498, 499, 500, 511, 512, 513, 527, 528, 529, 530, 535, 536, 557, 562], [18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18]), 'GT': ([2, 7, 8, 9, 11, 12, 13, 17, 21, 22, 23, 25, 26, 27, 28, 30, 31, 32, 33, 34, 35, 37, 39, 43, 45, 48, 49, 53, 54, 55, 63, 64, 65, 66, 68, 69, 72, 73, 74, 75, 76, 79, 80, 81, 82, 83, 84, 85, 86, 88, 89, 90, 91, 92, 95, 97, 101, 103, 104, 105, 106, 107, 109, 110, 112, 113, 116, 117, 118, 120, 122, 124, 126, 127, 128, 130, 131, 133, 134, 135, 137, 140, 142, 143, 145, 147, 149, 151, 153, 155, 156, 158, 159, 160, 162, 164, 165, 166, 177, 179, 180, 182, 185, 187, 188, 190, 192, 194, 195, 197, 198, 202, 204, 215, 218, 222, 223, 224, 225, 226, 228, 229, 231, 232, 234, 236, 238, 241, 242, 243, 245, 246, 249, 253, 255, 256, 264, 279, 283, 284, 285, 286, 287, 299, 302, 308, 309, 312, 317, 321, 324, 326, 328, 330, 332, 334, 336, 340, 342, 343, 344, 346, 354, 356, 358, 361, 362, 363, 364, 365, 366, 370, 371, 375, 376, 379, 380, 381, 382, 383, 384, 385, 387, 390, 391, 392, 393, 394, 395, 396, 399, 402, 404, 406, 418, 419, 428, 430, 431, 432, 443, 448, 450, 468, 474, 476, 477, 478, 481, 486, 487, 492, 496, 503, 504, 507, 510, 526, 537, 538, 539, 540, 541, 546, 547, 560, 561, 564, 565], [-218, -17, -242, -18, -216, -205, -6, -233, -245, -236, -14, -10, -13, -238, -247, -237, -210, -20, -207, -209, -29, -12, -228, -5, -202, -32, -234, -212, -235, -213, -215, -203, -204, -211, -222, -9, -162, -206, -244, -229, -208, -219, -214, -227, -226, -240, 210, -231, -246, -16, -224, -225, -11, -15, -4, -19, -248, -217, -220, -8, -221, -160, -239, -7, -241, -230, -243, -232, -223, -134, -135, -117, -116, -34, -98, -97, -120, -119, -33, -83, -82, -80, -79, -49, -48, -86, -85, 210, -123, -122, -76, -75, -58, -57, -67, -66, -104, -103, -95, -94, -101, -100, -70, -69, -107, -106, -73, -72, -64, -63, -137, -89, -88, -110, -109, -35, -161, -38, -163, -52, -51, -55, -54, -114, -113, -92, -91, -195, -36, -39, -165, -126, -125, -61, -60, -44, -45, -182, -26, -25, -23, -24, -27, -46, -186, -30, -31, -184, -150, -180, -22, -140, -194, -132, -131, -129, -128, -133, -115, -96, -118, -81, -78, -47, -84, -121, -74, -56, -65, -102, -183, -93, -99, -68, -105, -71, -62, -136, -138, -87, -187, -185, -108, -50, -53, -112, -181, -90, -37, -40, -139, -124, -42, -59, -28, -168, -21, -164, -130, -127, -77, -145, -143, -41, -149, -148, -167, -43, -169, -153, -151, -159, -111, -171, -170, -155, -157, -166, -147, -175, -174, -173, -172, -146, -144, -154, -152, -156, -158]), 'FRAC': ([0, 1, 6, 15, 18, 38, 47, 52, 70, 78, 87, 94, 100, 108, 121, 125, 129, 132, 136, 139, 141, 144, 148, 154, 157, 161, 163, 167, 172, 173, 174, 175, 176, 178, 181, 186, 189, 193, 196, 200, 203, 206, 207, 208, 209, 210, 211, 212, 213, 217, 227, 230, 233, 237, 244, 248, 251, 254, 265, 266, 272, 280, 281, 282, 290, 301, 311, 315, 316, 322, 325, 329, 331, 335, 345, 355, 398, 407, 415, 420, 421, 422, 423, 424, 426, 427, 433, 444, 451, 459, 460, 461, 462, 464, 466, 471, 475, 479, 482, 483, 488, 498, 499, 500, 511, 512, 513, 527, 528, 529, 530, 535, 536, 557, 562], [19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19]), 'RBRACE': ([2, 7, 8, 9, 11, 12, 13, 17, 21, 22, 23, 25, 26, 27, 28, 30, 31, 32, 33, 34, 35, 37, 39, 43, 45, 48, 49, 53, 54, 55, 63, 64, 65, 66, 68, 69, 72, 73, 74, 75, 76, 79, 80, 81, 82, 83, 85, 86, 88, 89, 90, 91, 92, 95, 97, 101, 103, 104, 105, 106, 107, 109, 110, 112, 113, 116, 117, 118, 120, 122, 124, 126, 127, 128, 130, 131, 133, 134, 135, 137, 140, 142, 143, 145, 147, 149, 153, 155, 156, 158, 159, 160, 162, 164, 165, 166, 177, 179, 180, 182, 185, 187, 188, 190, 192, 194, 195, 197, 198, 202, 204, 215, 218, 222, 223, 224, 225, 226, 228, 229, 231, 232, 234, 236, 238, 241, 242, 243, 245, 246, 249, 253, 255, 256, 264, 265, 266, 267, 279, 283, 284, 285, 286, 287, 299, 302, 308, 309, 312, 317, 321, 324, 326, 328, 330, 332, 334, 336, 337, 340, 342, 343, 344, 346, 348, 352, 354, 356, 357, 358, 361, 362, 363, 364, 365, 366, 369, 370, 371, 372, 374, 375, 376, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 399, 402, 404, 406, 418, 419, 428, 430, 431, 432, 434, 435, 436, 438, 440, 442, 443, 445, 446, 448, 449, 450, 455, 456, 460, 461, 462, 463, 465, 466, 468, 474, 476, 477, 478, 481, 484, 486, 487, 490, 491, 492, 494, 496, 497, 499, 500, 501, 502, 503, 504, 507, 510, 515, 516, 517, 518, 523, 524, 526, 537, 538, 539, 540, 541, 546, 547, 549, 552, 553, 554, 556, 558, 559, 560, 561, 563, 564, 565], [-218, -17, -242, -18, -216, -205, -6, -233, -245, -236, -14, -10, -13, -238, -247, -237, -210, -20, -207, -209, -29, -12, -228, -5, -202, -32, -234, -212, -235, -213, -215, -203, -204, -211, -222, -9, -162, -206, -244, -229, -208, -219, -214, -227, -226, -240, -231, -246, -16, -224, -225, -11, -15, -4, -19, -248, -217, -220, -8, -221, -160, -239, -7, -241, -230, -243, -232, -223, -134, -135, -117, -116, -34, -98, -97, -120, -119, -33, -83, -82, -80, -79, -49, -48, -86, -85, -123, -122, -76, -75, -58, -57, -67, -66, -104, -103, -95, -94, -101, -100, -70, -69, -107, -106, -73, -72, -64, -63, -137, -89, -88, -110, -109, -35, -161, -38, -163, -52, -51, -55, -54, -114, -113, -92, -91, -195, -36, -39, -165, -126, -125, -61, -60, -44, -45, 349, 350, 353, -182, -26, -25, -23, -24, -27, -46, -186, -30, -31, -184, -150, -180, -22, -140, -194, -132, -131, -129, -128, 404, -133, -115, -96, -118, -81, 410, 414, -78, -47, 417, -84, -121, -74, -56, -65, -102, -183, 418, -93, -99, 419, 422, -68, -105, 424, -71, -62, -136, -138, -87, -187, -185, 425, -108, 426, 427, -50, -53, -112, -181, -90, -37, -40, 428, -139, -124, -42, -59, -28, -168, -21, -164, -130, -127, -32, 459, 462, 464, 466, 468, -77, 470, -142, -145, 472, -143, 477, 478, 482, 483, 485, 486, 488, 489, -41, -149, -148, -167, -43, -169, 505, -153, -151, 509, 510, -159, -141, -111, 513, 515, 516, 517, 518, -171, -170, -155, -157, 527, 528, 529, 530, 535, 536, -166, -147, -175, -174, -173, -172, -146, -144, 553, 556, 557, 558, 560, 562, 563, -154, -152, 565, -156, -158]), 'ATAN': ([0, 1, 6, 15, 18, 38, 47, 52, 70, 78, 87, 94, 100, 108, 121, 125, 129, 132, 136, 139, 141, 144, 148, 154, 157, 161, 163, 167, 172, 173, 174, 175, 176, 178, 181, 186, 189, 193, 196, 200, 203, 206, 207, 208, 209, 210, 211, 212, 213, 217, 227, 230, 233, 237, 244, 248, 251, 254, 265, 266, 272, 280, 281, 282, 290, 301, 311, 315, 316, 322, 325, 329, 331, 335, 345, 355, 398, 407, 415, 420, 421, 422, 423, 424, 426, 427, 433, 444, 451, 459, 460, 461, 462, 464, 466, 471, 475, 479, 482, 483, 488, 498, 499, 500, 511, 512, 513, 527, 528, 529, 530, 535, 536, 557, 562], [20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20]), 'CHI': ([0, 1, 6, 15, 18, 38, 47, 52, 70, 78, 87, 94, 100, 108, 121, 125, 129, 132, 136, 139, 141, 144, 148, 154, 157, 161, 163, 167, 172, 173, 174, 175, 176, 178, 181, 186, 189, 193, 196, 200, 203, 206, 207, 208, 209, 210, 211, 212, 213, 217, 227, 230, 233, 237, 244, 248, 251, 254, 265, 266, 272, 280, 281, 282, 290, 301, 311, 315, 316, 322, 325, 329, 331, 335, 345, 355, 398, 407, 415, 420, 421, 422, 423, 424, 426, 427, 433, 444, 451, 459, 460, 461, 462, 464, 466, 471, 475, 479, 482, 483, 488, 498, 499, 500, 511, 512, 513, 527, 528, 529, 530, 535, 536, 557, 562], [21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21]), 'ASINH': ([0, 1, 6, 15, 18, 38, 47, 52, 70, 78, 87, 94, 100, 108, 121, 125, 129, 132, 136, 139, 141, 144, 148, 154, 157, 161, 163, 167, 172, 173, 174, 175, 176, 178, 181, 186, 189, 193, 196, 200, 203, 206, 207, 208, 209, 210, 211, 212, 213, 217, 227, 230, 233, 237, 244, 248, 251, 254, 265, 266, 272, 280, 281, 282, 290, 301, 311, 315, 316, 322, 325, 329, 331, 335, 345, 355, 398, 407, 415, 420, 421, 422, 423, 424, 426, 427, 433, 444, 451, 459, 460, 461, 462, 464, 466, 471, 475, 479, 482, 483, 488, 498, 499, 500, 511, 512, 513, 527, 528, 529, 530, 535, 536, 557, 562], [24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24]), 'RCEIL': ([2, 7, 8, 9, 11, 12, 13, 17, 21, 22, 23, 25, 26, 27, 28, 30, 31, 32, 33, 34, 35, 37, 39, 43, 45, 48, 49, 53, 54, 55, 63, 64, 65, 66, 68, 69, 72, 73, 74, 75, 76, 79, 80, 81, 82, 83, 85, 86, 88, 89, 90, 91, 92, 95, 97, 101, 103, 104, 105, 106, 107, 109, 110, 112, 113, 116, 117, 118, 120, 122, 124, 126, 127, 128, 130, 131, 133, 134, 135, 137, 138, 140, 142, 143, 145, 147, 149, 153, 155, 156, 158, 159, 160, 162, 164, 165, 166, 177, 179, 180, 182, 185, 187, 188, 190, 192, 194, 195, 197, 198, 202, 204, 215, 218, 222, 223, 224, 225, 226, 228, 229, 231, 232, 234, 236, 238, 241, 242, 243, 245, 246, 249, 253, 255, 256, 264, 279, 283, 284, 285, 286, 287, 299, 302, 308, 309, 312, 317, 321, 324, 326, 328, 330, 332, 334, 336, 340, 342, 343, 344, 346, 354, 356, 358, 361, 362, 363, 364, 365, 366, 370, 371, 375, 376, 379, 380, 381, 382, 383, 384, 385, 387, 390, 391, 392, 393, 394, 395, 396, 399, 402, 404, 406, 418, 419, 428, 430, 431, 432, 443, 448, 450, 468, 474, 476, 477, 478, 481, 486, 487, 492, 496, 503, 504, 507, 510, 526, 537, 538, 539, 540, 541, 546, 547, 560, 561, 564, 565], [-218, -17, -242, -18, -216, -205, -6, -233, -245, -236, -14, -10, -13, -238, -247, -237, -210, -20, -207, -209, -29, -12, -228, -5, -202, -32, -234, -212, -235, -213, -215, -203, -204, -211, -222, -9, -162, -206, -244, -229, -208, -219, -214, -227, -226, -240, -231, -246, -16, -224, -225, -11, -15, -4, -19, -248, -217, -220, -8, -221, -160, -239, -7, -241, -230, -243, -232, -223, -134, -135, -117, -116, -34, -98, -97, -120, -119, -33, -83, -82, 264, -80, -79, -49, -48, -86, -85, -123, -122, -76, -75, -58, -57, -67, -66, -104, -103, -95, -94, -101, -100, -70, -69, -107, -106, -73, -72, -64, -63, -137, -89, -88, -110, -109, -35, -161, -38, -163, -52, -51, -55, -54, -114, -113, -92, -91, -195, -36, -39, -165, -126, -125, -61, -60, -44, -45, -182, -26, -25, -23, -24, -27, -46, -186, -30, -31, -184, -150, -180, -22, -140, -194, -132, -131, -129, -128, -133, -115, -96, -118, -81, -78, -47, -84, -121, -74, -56, -65, -102, -183, -93, -99, -68, -105, -71, -62, -136, -138, -87, -187, -185, -108, -50, -53, -112, -181, -90, -37, -40, -139, -124, -42, -59, -28, -168, -21, -164, -130, -127, -77, -145, -143, -41, -149, -148, -167, -43, -169, -153, -151, -159, -111, -171, -170, -155, -157, -166, -147, -175, -174, -173, -172, -146, -144, -154, -152, -156, -158]), 'PHI': ([0, 1, 6, 15, 18, 38, 47, 52, 70, 78, 87, 94, 100, 108, 121, 125, 129, 132, 136, 139, 141, 144, 148, 154, 157, 161, 163, 167, 172, 173, 174, 175, 176, 178, 181, 186, 189, 193, 196, 200, 203, 206, 207, 208, 209, 210, 211, 212, 213, 217, 227, 230, 233, 237, 244, 248, 251, 254, 265, 266, 272, 280, 281, 282, 290, 301, 311, 315, 316, 322, 325, 329, 331, 335, 345, 355, 398, 407, 415, 420, 421, 422, 423, 424, 426, 427, 433, 444, 451, 459, 460, 461, 462, 464, 466, 471, 475, 479, 482, 483, 488, 498, 499, 500, 511, 512, 513, 527, 528, 529, 530, 535, 536, 557, 562], [22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22]), 'PARTIAL': ([139, 412, 441, 508, 522], [266, 439, 467, 521, 534]), 'FACTORIAL': ([95, 110, 324, 429], [222, 242, 395, 222]), 'MU': ([0, 1, 6, 15, 18, 38, 47, 52, 70, 78, 87, 94, 100, 108, 121, 125, 129, 132, 136, 139, 141, 144, 148, 154, 157, 161, 163, 167, 172, 173, 174, 175, 176, 178, 181, 186, 189, 193, 196, 200, 203, 206, 207, 208, 209, 210, 211, 212, 213, 217, 227, 230, 233, 237, 244, 248, 251, 254, 265, 266, 272, 280, 281, 282, 290, 301, 311, 315, 316, 322, 325, 329, 331, 335, 345, 355, 398, 407, 415, 420, 421, 422, 423, 424, 426, 427, 433, 444, 451, 459, 460, 461, 462, 464, 466, 471, 475, 479, 482, 483, 488, 498, 499, 500, 511, 512, 513, 527, 528, 529, 530, 535, 536, 557, 562], [54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54]), 'XI_LOWER': ([0, 1, 6, 15, 18, 38, 47, 52, 70, 78, 87, 94, 100, 108, 121, 125, 129, 132, 136, 139, 141, 144, 148, 154, 157, 161, 163, 167, 172, 173, 174, 175, 176, 178, 181, 186, 189, 193, 196, 200, 203, 206, 207, 208, 209, 210, 211, 212, 213, 217, 227, 230, 233, 237, 244, 248, 251, 254, 265, 266, 272, 280, 281, 282, 290, 301, 311, 315, 316, 322, 325, 329, 331, 335, 345, 355, 398, 407, 415, 420, 421, 422, 423, 424, 426, 427, 433, 444, 451, 459, 460, 461, 462, 464, 466, 471, 475, 479, 482, 483, 488, 498, 499, 500, 511, 512, 513, 527, 528, 529, 530, 535, 536, 557, 562], [64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64]), 'RHO': ([0, 1, 6, 15, 18, 38, 47, 52, 70, 78, 87, 94, 100, 108, 121, 125, 129, 132, 136, 139, 141, 144, 148, 154, 157, 161, 163, 167, 172, 173, 174, 175, 176, 178, 181, 186, 189, 193, 196, 200, 203, 206, 207, 208, 209, 210, 211, 212, 213, 217, 227, 230, 233, 237, 244, 248, 251, 254, 265, 266, 272, 280, 281, 282, 290, 301, 311, 315, 316, 322, 325, 329, 331, 335, 345, 355, 398, 407, 415, 420, 421, 422, 423, 424, 426, 427, 433, 444, 451, 459, 460, 461, 462, 464, 466, 471, 475, 479, 482, 483, 488, 498, 499, 500, 511, 512, 513, 527, 528, 529, 530, 535, 536, 557, 562], [28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28]), 'END_BMATRIX': ([2, 7, 8, 9, 11, 12, 13, 17, 21, 22, 23, 25, 26, 27, 28, 30, 31, 32, 33, 34, 35, 37, 39, 43, 45, 48, 49, 53, 54, 55, 63, 64, 65, 66, 68, 69, 72, 73, 74, 75, 76, 79, 80, 81, 82, 83, 85, 86, 88, 89, 90, 91, 92, 95, 97, 101, 103, 104, 105, 106, 107, 109, 110, 112, 113, 116, 117, 118, 120, 122, 124, 126, 127, 128, 130, 131, 133, 134, 135, 137, 140, 142, 143, 145, 147, 149, 153, 155, 156, 158, 159, 160, 162, 164, 165, 166, 169, 170, 177, 179, 180, 182, 185, 187, 188, 190, 192, 194, 195, 197, 198, 202, 204, 214, 215, 218, 222, 223, 224, 225, 226, 228, 229, 231, 232, 234, 236, 238, 241, 242, 243, 245, 246, 249, 253, 255, 256, 264, 279, 283, 284, 285, 286, 287, 299, 302, 308, 309, 311, 312, 317, 321, 324, 326, 328, 330, 332, 334, 336, 340, 342, 343, 344, 346, 354, 356, 358, 361, 362, 363, 364, 365, 366, 367, 368, 370, 371, 375, 376, 379, 380, 381, 382, 383, 384, 385, 387, 390, 391, 392, 393, 394, 395, 396, 399, 402, 404, 406, 418, 419, 428, 430, 431, 432, 443, 448, 450, 468, 474, 476, 477, 478, 481, 486, 487, 492, 496, 503, 504, 507, 510, 526, 537, 538, 539, 540, 541, 546, 547, 560, 561, 564, 565], [-218, -17, -242, -18, -216, -205, -6, -233, -245, -236, -14, -10, -13, -238, -247, -237, -210, -20, -207, -209, -29, -12, -228, -5, -202, -32, -234, -212, -235, -213, -215, -203, -204, -211, -222, -9, -162, -206, -244, -229, -208, -219, -214, -227, -226, -240, -231, -246, -16, -224, -225, -11, -15, -4, -19, -248, -217, -220, -8, -221, -160, -239, -7, -241, -230, -243, -232, -223, -134, -135, -117, -116, -34, -98, -97, -120, -119, -33, -83, -82, -80, -79, -49, -48, -86, -85, -123, -122, -76, -75, -58, -57, -67, -66, -104, -103, -191, -189, -95, -94, -101, -100, -70, -69, -107, -106, -73, -72, -64, -63, -137, -89, -88, 312, -110, -109, -35, -161, -38, -163, -52, -51, -55, -54, -114, -113, -92, -91, -195, -36, -39, -165, -126, -125, -61, -60, -44, -45, -182, -26, -25, -23, -24, -27, -46, -186, -30, -31, 385, -184, -150, -180, -22, -140, -194, -132, -131, -129, -128, -133, -115, -96, -118, -81, -78, -47, -84, -121, -74, -56, -65, -102, -183, -190, -188, -93, -99, -68, -105, -71, -62, -136, -138, -87, -187, -185, -108, -50, -53, -112, -181, -90, -37, -40, -139, -124, -42, -59, -28, -168, -21, -164, -130, -127, -77, -145, -143, -41, -149, -148, -167, -43, -169, -153, -151, -159, -111, -171, -170, -155, -157, -166, -147, -175, -174, -173, -172, -146, -144, -154, -152, -156, -158]), 'CARET': ([2, 7, 8, 9, 11, 12, 13, 17, 21, 22, 23, 25, 26, 27, 28, 30, 31, 32, 33, 34, 35, 37, 39, 43, 45, 48, 49, 53, 54, 55, 63, 64, 65, 66, 68, 69, 72, 73, 74, 75, 76, 79, 80, 81, 82, 83, 85, 86, 88, 89, 90, 91, 92, 94, 95, 97, 101, 103, 104, 105, 106, 107, 109, 110, 112, 113, 116, 117, 118, 120, 122, 124, 126, 127, 128, 130, 131, 133, 134, 135, 137, 140, 142, 143, 145, 147, 149, 153, 155, 156, 158, 159, 160, 162, 164, 165, 166, 177, 179, 180, 182, 185, 187, 188, 190, 192, 194, 195, 197, 198, 202, 204, 215, 218, 222, 223, 224, 225, 226, 228, 229, 231, 232, 234, 236, 238, 241, 242, 243, 245, 246, 249, 253, 255, 256, 264, 265, 266, 279, 283, 284, 285, 286, 287, 299, 302, 308, 309, 312, 317, 321, 324, 326, 328, 330, 332, 334, 336, 340, 342, 343, 344, 346, 354, 356, 358, 361, 362, 363, 364, 365, 366, 370, 371, 375, 376, 379, 380, 381, 382, 383, 384, 385, 387, 390, 391, 392, 393, 394, 395, 396, 399, 402, 404, 406, 418, 419, 427, 428, 429, 430, 431, 432, 434, 435, 443, 448, 450, 468, 470, 472, 474, 476, 477, 478, 481, 486, 487, 492, 496, 503, 504, 507, 510, 520, 526, 531, 533, 537, 538, 539, 540, 541, 545, 546, 547, 560, 561, 564, 565], [-218, -17, -242, -18, -216, -205, -6, -233, -245, -236, -14, -10, -13, -238, -247, -237, -210, -20, -207, -209, -29, -12, -228, -5, -202, 171, -234, -212, -235, -213, -215, -203, -204, -211, -222, -9, -162, -206, -244, -229, -208, -219, -214, -227, -226, -240, -231, -246, -16, -224, -225, -11, -15, 219, -4, -19, -248, -217, -220, -8, -221, -160, -239, 240, -241, -230, -243, -232, -223, -134, -135, -117, -116, -34, -98, -97, -120, -119, -33, -83, -82, -80, -79, -49, -48, -86, -85, -123, -122, -76, -75, -58, -57, -67, -66, -104, -103, -95, -94, -101, -100, -70, -69, -107, -106, -73, -72, -64, -63, -137, -89, -88, -110, -109, -35, -161, -38, -163, -52, -51, -55, -54, -114, -113, -92, -91, -195, -36, -39, -165, -126, -125, -61, -60, -44, -45, 347, 351, -182, -26, -25, -23, -24, -27, -46, -186, 171, 171, -184, -150, -180, -22, -140, -194, -132, -131, -129, -128, -133, -115, -96, -118, -81, -78, -47, -84, -121, -74, -56, -65, -102, -183, -93, -99, -68, -105, -71, -62, -136, -138, -87, -187, -185, -108, -50, -53, -112, -181, -90, -37, -40, -139, -124, -42, -59, -28, -168, 453, -21, -4, -164, -130, -127, 457, 458, -77, -145, -143, -41, 493, 495, -149, -148, -167, -43, -169, -153, -151, -159, -111, -171, -170, -155, -157, 532, -166, 542, 544, -147, -175, -174, -173, -172, 551, -146, -144, -154, -152, -156, -158]), 'DELTA_LOWER': ([0, 1, 6, 15, 18, 38, 47, 52, 70, 78, 87, 94, 100, 108, 121, 125, 129, 132, 136, 139, 141, 144, 148, 154, 157, 161, 163, 167, 172, 173, 174, 175, 176, 178, 181, 186, 189, 193, 196, 200, 203, 206, 207, 208, 209, 210, 211, 212, 213, 217, 227, 230, 233, 237, 244, 248, 251, 254, 265, 266, 272, 280, 281, 282, 290, 301, 311, 315, 316, 322, 325, 329, 331, 335, 345, 355, 398, 407, 415, 420, 421, 422, 423, 424, 426, 427, 433, 444, 451, 459, 460, 461, 462, 464, 466, 471, 475, 479, 482, 483, 488, 498, 499, 500, 511, 512, 513, 527, 528, 529, 530, 535, 536, 557, 562], [31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31]), 'ALPHA_LOWER': ([0, 1, 6, 15, 18, 38, 47, 52, 70, 78, 87, 94, 100, 108, 121, 125, 129, 132, 136, 139, 141, 144, 148, 154, 157, 161, 163, 167, 172, 173, 174, 175, 176, 178, 181, 186, 189, 193, 196, 200, 203, 206, 207, 208, 209, 210, 211, 212, 213, 217, 227, 230, 233, 237, 244, 248, 251, 254, 265, 266, 272, 280, 281, 282, 290, 301, 311, 315, 316, 322, 325, 329, 331, 335, 345, 355, 398, 407, 415, 420, 421, 422, 423, 424, 426, 427, 433, 444, 451, 459, 460, 461, 462, 464, 466, 471, 475, 479, 482, 483, 488, 498, 499, 500, 511, 512, 513, 527, 528, 529, 530, 535, 536, 557, 562], [103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103]), 'SIGMA_LOWER': ([0, 1, 6, 15, 18, 38, 47, 52, 70, 78, 87, 94, 100, 108, 121, 125, 129, 132, 136, 139, 141, 144, 148, 154, 157, 161, 163, 167, 172, 173, 174, 175, 176, 178, 181, 186, 189, 193, 196, 200, 203, 206, 207, 208, 209, 210, 211, 212, 213, 217, 227, 230, 233, 237, 244, 248, 251, 254, 265, 266, 272, 280, 281, 282, 290, 301, 311, 315, 316, 322, 325, 329, 331, 335, 345, 355, 398, 407, 415, 420, 421, 422, 423, 424, 426, 427, 433, 444, 451, 459, 460, 461, 462, 464, 466, 471, 475, 479, 482, 483, 488, 498, 499, 500, 511, 512, 513, 527, 528, 529, 530, 535, 536, 557, 562], [33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33]), 'ETA_LOWER': ([0, 1, 6, 15, 18, 38, 47, 52, 70, 78, 87, 94, 100, 108, 121, 125, 129, 132, 136, 139, 141, 144, 148, 154, 157, 161, 163, 167, 172, 173, 174, 175, 176, 178, 181, 186, 189, 193, 196, 200, 203, 206, 207, 208, 209, 210, 211, 212, 213, 217, 227, 230, 233, 237, 244, 248, 251, 254, 265, 266, 272, 280, 281, 282, 290, 301, 311, 315, 316, 322, 325, 329, 331, 335, 345, 355, 398, 407, 415, 420, 421, 422, 423, 424, 426, 427, 433, 444, 451, 459, 460, 461, 462, 464, 466, 471, 475, 479, 482, 483, 488, 498, 499, 500, 511, 512, 513, 527, 528, 529, 530, 535, 536, 557, 562], [34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34]), 'ASEC': ([0, 1, 6, 15, 18, 38, 47, 52, 70, 78, 87, 94, 100, 108, 121, 125, 129, 132, 136, 139, 141, 144, 148, 154, 157, 161, 163, 167, 172, 173, 174, 175, 176, 178, 181, 186, 189, 193, 196, 200, 203, 206, 207, 208, 209, 210, 211, 212, 213, 217, 227, 230, 233, 237, 244, 248, 251, 254, 265, 266, 272, 280, 281, 282, 290, 301, 311, 315, 316, 322, 325, 329, 331, 335, 345, 355, 398, 407, 415, 420, 421, 422, 423, 424, 426, 427, 433, 444, 451, 459, 460, 461, 462, 464, 466, 471, 475, 479, 482, 483, 488, 498, 499, 500, 511, 512, 513, 527, 528, 529, 530, 535, 536, 557, 562], [36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36]), 'E': ([0, 1, 6, 15, 18, 38, 47, 52, 70, 78, 87, 94, 95, 100, 108, 121, 125, 129, 132, 136, 139, 141, 144, 148, 154, 157, 161, 163, 167, 172, 173, 174, 175, 176, 178, 181, 186, 189, 193, 196, 200, 203, 206, 207, 208, 209, 210, 211, 212, 213, 217, 227, 230, 233, 237, 244, 248, 251, 254, 265, 266, 272, 280, 281, 282, 290, 301, 311, 315, 316, 322, 325, 329, 331, 335, 345, 355, 398, 407, 415, 420, 421, 422, 423, 424, 426, 427, 429, 433, 444, 451, 459, 460, 461, 462, 464, 466, 471, 475, 479, 482, 483, 488, 498, 499, 500, 511, 512, 513, 527, 528, 529, 530, 535, 536, 557, 562], [72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 225, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 225, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72]), 'BEGIN_CASE': ([0], [38]), 'GAMMA': ([0, 1, 6, 15, 18, 38, 47, 52, 70, 78, 87, 94, 100, 108, 121, 125, 129, 132, 136, 139, 141, 144, 148, 154, 157, 161, 163, 167, 172, 173, 174, 175, 176, 178, 181, 186, 189, 193, 196, 200, 203, 206, 207, 208, 209, 210, 211, 212, 213, 217, 227, 230, 233, 237, 244, 248, 251, 254, 265, 266, 272, 280, 281, 282, 290, 301, 311, 315, 316, 322, 325, 329, 331, 335, 345, 355, 398, 407, 415, 420, 421, 422, 423, 424, 426, 427, 433, 444, 451, 459, 460, 461, 462, 464, 466, 471, 475, 479, 482, 483, 488, 498, 499, 500, 511, 512, 513, 527, 528, 529, 530, 535, 536, 557, 562], [39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39]), 'DEG': ([0, 1, 6, 15, 18, 38, 47, 52, 70, 78, 87, 94, 100, 108, 121, 125, 129, 132, 136, 139, 141, 144, 148, 154, 157, 161, 163, 167, 172, 173, 174, 175, 176, 178, 181, 186, 189, 193, 196, 200, 203, 206, 207, 208, 209, 210, 211, 212, 213, 217, 227, 230, 233, 237, 244, 248, 251, 254, 265, 266, 272, 280, 281, 282, 290, 301, 311, 315, 316, 322, 325, 329, 331, 335, 345, 355, 398, 407, 415, 420, 421, 422, 423, 424, 426, 427, 433, 444, 451, 459, 460, 461, 462, 464, 466, 471, 475, 479, 482, 483, 488, 498, 499, 500, 511, 512, 513, 527, 528, 529, 530, 535, 536, 557, 562], [40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40]), 'TANH': ([0, 1, 6, 15, 18, 38, 47, 52, 70, 78, 87, 94, 100, 108, 121, 125, 129, 132, 136, 139, 141, 144, 148, 154, 157, 161, 163, 167, 172, 173, 174, 175, 176, 178, 181, 186, 189, 193, 196, 200, 203, 206, 207, 208, 209, 210, 211, 212, 213, 217, 227, 230, 233, 237, 244, 248, 251, 254, 265, 266, 272, 280, 281, 282, 290, 301, 311, 315, 316, 322, 325, 329, 331, 335, 345, 355, 398, 407, 415, 420, 421, 422, 423, 424, 426, 427, 433, 444, 451, 459, 460, 461, 462, 464, 466, 471, 475, 479, 482, 483, 488, 498, 499, 500, 511, 512, 513, 527, 528, 529, 530, 535, 536, 557, 562], [41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41]), 'MINUS': ([0, 1, 2, 6, 7, 8, 9, 11, 12, 13, 15, 17, 18, 21, 22, 23, 25, 26, 27, 28, 30, 31, 32, 33, 34, 35, 37, 38, 39, 43, 45, 47, 48, 49, 52, 53, 54, 55, 63, 64, 65, 66, 68, 69, 70, 72, 73, 74, 75, 76, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 94, 95, 97, 100, 101, 103, 104, 105, 106, 107, 108, 109, 110, 112, 113, 116, 117, 118, 119, 120, 121, 122, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 147, 148, 149, 151, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 170, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 185, 186, 187, 188, 189, 190, 192, 193, 194, 195, 196, 197, 198, 200, 201, 202, 203, 204, 206, 207, 208, 209, 210, 211, 212, 213, 215, 217, 218, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 236, 237, 238, 239, 241, 242, 243, 244, 245, 246, 248, 249, 251, 253, 254, 255, 256, 257, 259, 260, 262, 263, 264, 265, 266, 267, 268, 269, 271, 272, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 292, 293, 295, 296, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 328, 329, 330, 331, 332, 334, 335, 336, 337, 339, 340, 342, 343, 344, 345, 346, 348, 352, 354, 355, 356, 358, 361, 362, 363, 364, 365, 366, 368, 369, 370, 371, 372, 375, 376, 379, 380, 381, 382, 383, 384, 385, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 402, 404, 406, 407, 408, 415, 416, 418, 419, 420, 421, 422, 423, 424, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 442, 443, 444, 445, 447, 448, 449, 450, 451, 452, 454, 456, 459, 460, 461, 462, 464, 466, 468, 471, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 486, 487, 488, 490, 492, 494, 496, 497, 498, 499, 500, 503, 504, 507, 510, 511, 512, 513, 523, 524, 525, 526, 527, 528, 529, 530, 535, 536, 537, 538, 539, 540, 541, 546, 547, 557, 560, 561, 562, 564, 565], [6, 6, -218, 6, -17, -242, -18, -216, -205, -6, 6, -233, 6, -245, -236, -14, -10, -13, -238, -247, -237, -210, -20, -207, -209, -29, -12, 6, -228, -5, -202, 6, -32, -234, 6, -212, -235, -213, -215, -203, -204, -211, -222, -9, 6, -162, -206, -244, -229, -208, 6, -219, -214, -227, -226, -240, 212, -231, -246, 6, -16, -224, -225, -11, -15, 6, -4, -19, 6, -248, -217, -220, -8, -221, -160, 6, -239, -7, -241, -230, -243, -232, -223, 212, -134, 6, -135, -117, 6, -116, -34, -98, 6, -97, -120, 6, -119, -33, -83, 6, -82, 212, 6, -80, 6, -79, -49, 6, -48, -86, 6, -85, 212, -123, 6, -122, -76, 6, -75, -58, -57, 6, -67, 6, -66, -104, -103, 6, 212, 6, 6, 6, 6, 6, -95, 6, -94, -101, 6, -100, 212, -70, 6, -69, -107, 6, -106, -73, 6, -72, -64, 6, -63, -137, 6, 212, -89, 6, -88, 6, 6, 6, 6, 6, 6, 6, 6, -110, 6, -109, 212, -35, -161, -38, -163, -52, 6, -51, -55, 6, -54, -114, 6, -113, -92, 6, -91, 212, -195, -36, -39, 6, -165, -126, 6, -125, 6, -61, 6, -60, -44, 212, 212, 212, 212, 212, -45, 6, 6, 212, 212, 212, 212, 6, 212, 212, 212, 212, -182, 6, 6, 6, -26, -25, -23, -24, -27, 212, 212, 6, 212, 212, 212, 212, -46, 212, 6, -186, 212, 212, 212, 212, 212, -30, -31, 212, 6, -184, 212, 6, 6, -150, 212, 212, 212, -180, 6, 212, -22, 6, -140, -194, 6, -132, 6, -131, -129, 6, -128, 212, 212, -133, -115, -96, -118, 6, -81, 212, 212, -78, 6, -47, -84, -121, -74, -56, -65, -102, -183, 212, 212, -93, -99, 212, -68, -105, -71, -62, -136, -138, -87, -187, -185, -108, 212, 212, -50, -53, -112, -181, -90, -37, -40, 212, 6, -139, -124, -42, -59, 6, 212, 6, 212, -28, -168, 6, 6, 6, 6, 6, 6, 6, -21, -4, -164, -130, -127, 6, -32, 460, 212, -77, 6, 212, 212, 212, 212, 212, 6, 212, 212, 212, 6, 6, 6, 6, 6, 6, -41, 6, 212, -149, 6, -148, -167, -43, 499, 501, 212, 6, 6, 212, -153, 212, 6, 212, -159, 212, -111, 212, 6, 6, 6, 212, 212, 212, -157, 6, 6, 6, 212, 212, 212, -166, 6, 6, 6, 6, 6, 6, -147, 212, 212, 212, 212, 212, 212, 6, -154, 212, 6, 212, -158]), 'BACKSLASHES': ([2, 7, 8, 9, 11, 12, 13, 17, 21, 22, 23, 25, 26, 27, 28, 30, 31, 32, 33, 34, 35, 37, 39, 43, 45, 48, 49, 53, 54, 55, 63, 64, 65, 66, 68, 69, 72, 73, 74, 75, 76, 79, 80, 81, 82, 83, 85, 86, 88, 89, 90, 91, 92, 95, 97, 101, 103, 104, 105, 106, 107, 109, 110, 112, 113, 116, 117, 118, 120, 122, 124, 126, 127, 128, 130, 131, 133, 134, 135, 137, 140, 142, 143, 145, 147, 149, 150, 152, 153, 155, 156, 158, 159, 160, 162, 164, 165, 166, 168, 169, 170, 177, 179, 180, 182, 185, 187, 188, 190, 192, 194, 195, 197, 198, 202, 204, 205, 214, 215, 218, 222, 223, 224, 225, 226, 228, 229, 231, 232, 234, 235, 236, 238, 241, 242, 243, 245, 246, 249, 253, 255, 256, 264, 279, 283, 284, 285, 286, 287, 299, 302, 303, 304, 305, 306, 307, 308, 309, 310, 312, 317, 321, 324, 326, 328, 330, 332, 334, 336, 340, 342, 343, 344, 346, 354, 356, 358, 359, 361, 362, 363, 364, 365, 366, 367, 368, 370, 371, 375, 376, 379, 380, 381, 382, 383, 384, 385, 387, 390, 391, 392, 393, 394, 395, 396, 399, 402, 404, 406, 418, 419, 428, 430, 431, 432, 443, 448, 450, 468, 474, 476, 477, 478, 481, 486, 487, 492, 496, 503, 504, 507, 510, 526, 537, 538, 539, 540, 541, 546, 547, 560, 561, 564, 565], [-218, -17, -242, -18, -216, -205, -6, -233, -245, -236, -14, -10, -13, -238, -247, -237, -210, -20, -207, -209, -29, -12, -228, -5, -202, -32, -234, -212, -235, -213, -215, -203, -204, -211, -222, -9, -162, -206, -244, -229, -208, -219, -214, -227, -226, -240, -231, -246, -16, -224, -225, -11, -15, -4, -19, -248, -217, -220, -8, -221, -160, -239, -7, -241, -230, -243, -232, -223, -134, -135, -117, -116, -34, -98, -97, -120, -119, -33, -83, -82, -80, -79, -49, -48, -86, -85, -179, 272, -123, -122, -76, -75, -58, -57, -67, -66, -104, -103, 280, -191, -189, -95, -94, -101, -100, -70, -69, -107, -106, -73, -72, -64, -63, -137, -89, -88, 301, 311, -110, -109, -35, -161, -38, -163, -52, -51, -55, -54, -114, -113, 322, -92, -91, -195, -36, -39, -165, -126, -125, -61, -60, -44, -45, -182, -26, -25, -23, -24, -27, -46, -186, -199, -196, -201, -198, -200, -30, -31, -197, -184, -150, -180, -22, -140, -194, -132, -131, -129, -128, -133, -115, -96, -118, -81, -78, -47, -84, -178, -121, -74, -56, -65, -102, -183, -190, -188, -93, -99, -68, -105, -71, -62, -136, -138, -87, -187, -185, -108, -50, -53, -112, -181, -90, -37, -40, -139, -124, -42, -59, -28, -168, -21, -164, -130, -127, -77, -145, -143, -41, -149, -148, -167, -43, -169, -153, -151, -159, -111, -171, -170, -155, -157, -166, -147, -175, -174, -173, -172, -146, -144, -154, -152, -156, -158]), 'ACOS': ([0, 1, 6, 15, 18, 38, 47, 52, 70, 78, 87, 94, 100, 108, 121, 125, 129, 132, 136, 139, 141, 144, 148, 154, 157, 161, 163, 167, 172, 173, 174, 175, 176, 178, 181, 186, 189, 193, 196, 200, 203, 206, 207, 208, 209, 210, 211, 212, 213, 217, 227, 230, 233, 237, 244, 248, 251, 254, 265, 266, 272, 280, 281, 282, 290, 301, 311, 315, 316, 322, 325, 329, 331, 335, 345, 355, 398, 407, 415, 420, 421, 422, 423, 424, 426, 427, 433, 444, 451, 459, 460, 461, 462, 464, 466, 471, 475, 479, 482, 483, 488, 498, 499, 500, 511, 512, 513, 527, 528, 529, 530, 535, 536, 557, 562], [44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44]), 'PI': ([0, 1, 6, 15, 18, 38, 47, 52, 70, 78, 87, 94, 100, 108, 121, 125, 129, 132, 136, 139, 141, 144, 148, 154, 157, 161, 163, 167, 172, 173, 174, 175, 176, 178, 181, 186, 189, 193, 196, 200, 203, 206, 207, 208, 209, 210, 211, 212, 213, 217, 227, 230, 233, 237, 244, 248, 251, 254, 265, 266, 272, 280, 281, 282, 290, 301, 311, 315, 316, 322, 325, 329, 331, 335, 345, 355, 398, 407, 415, 420, 421, 422, 423, 424, 426, 427, 433, 444, 451, 459, 460, 461, 462, 464, 466, 471, 475, 479, 482, 483, 488, 498, 499, 500, 511, 512, 513, 527, 528, 529, 530, 535, 536, 557, 562], [45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45]), 'ACOT': ([0, 1, 6, 15, 18, 38, 47, 52, 70, 78, 87, 94, 100, 108, 121, 125, 129, 132, 136, 139, 141, 144, 148, 154, 157, 161, 163, 167, 172, 173, 174, 175, 176, 178, 181, 186, 189, 193, 196, 200, 203, 206, 207, 208, 209, 210, 211, 212, 213, 217, 227, 230, 233, 237, 244, 248, 251, 254, 265, 266, 272, 280, 281, 282, 290, 301, 311, 315, 316, 322, 325, 329, 331, 335, 345, 355, 398, 407, 415, 420, 421, 422, 423, 424, 426, 427, 433, 444, 451, 459, 460, 461, 462, 464, 466, 471, 475, 479, 482, 483, 488, 498, 499, 500, 511, 512, 513, 527, 528, 529, 530, 535, 536, 557, 562], [46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46]), 'BEGIN_NMATRIX': ([0, 1, 6, 15, 18, 38, 47, 52, 70, 78, 87, 94, 100, 108, 121, 125, 129, 132, 136, 139, 141, 144, 148, 154, 157, 161, 163, 167, 172, 173, 174, 175, 176, 178, 181, 186, 189, 193, 196, 200, 203, 206, 207, 208, 209, 210, 211, 212, 213, 217, 227, 230, 233, 237, 244, 248, 251, 254, 265, 266, 272, 280, 281, 282, 290, 301, 311, 315, 316, 322, 325, 329, 331, 335, 345, 355, 398, 407, 415, 420, 421, 422, 423, 424, 426, 427, 433, 444, 451, 459, 460, 461, 462, 464, 466, 471, 475, 479, 482, 483, 488, 498, 499, 500, 511, 512, 513, 527, 528, 529, 530, 535, 536, 557, 562], [47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47]), '$end': ([2, 7, 8, 9, 11, 12, 13, 17, 21, 22, 23, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 37, 39, 43, 45, 48, 49, 53, 54, 55, 56, 63, 64, 65, 66, 68, 69, 72, 73, 74, 75, 76, 77, 79, 80, 81, 82, 83, 84, 85, 86, 88, 89, 90, 91, 92, 95, 97, 101, 103, 104, 105, 106, 107, 109, 110, 112, 113, 116, 117, 118, 120, 122, 124, 126, 127, 128, 130, 131, 133, 134, 135, 137, 140, 142, 143, 145, 147, 149, 153, 155, 156, 158, 159, 160, 162, 164, 165, 166, 177, 179, 180, 182, 185, 187, 188, 190, 192, 194, 195, 197, 198, 202, 204, 215, 218, 222, 223, 224, 225, 226, 228, 229, 231, 232, 234, 236, 238, 241, 242, 243, 245, 246, 249, 253, 255, 256, 264, 273, 279, 283, 284, 285, 286, 287, 299, 302, 303, 304, 305, 306, 307, 308, 309, 310, 312, 317, 321, 324, 326, 328, 330, 332, 334, 336, 340, 342, 343, 344, 346, 354, 356, 358, 360, 361, 362, 363, 364, 365, 366, 370, 371, 375, 376, 379, 380, 381, 382, 383, 384, 385, 387, 390, 391, 392, 393, 394, 395, 396, 399, 402, 404, 406, 418, 419, 428, 430, 431, 432, 443, 448, 450, 468, 474, 476, 477, 478, 481, 486, 487, 492, 496, 503, 504, 507, 510, 526, 537, 538, 539, 540, 541, 546, 547, 560, 561, 564, 565], [-218, -17, -242, -18, -216, -205, -6, -233, -245, -236, -14, -10, -13, -238, -247, 0, -237, -210, -20, -207, -209, -29, -12, -228, -5, -202, -32, -234, -212, -235, -213, -3, -215, -203, -204, -211, -222, -9, -162, -206, -244, -229, -208, -2, -219, -214, -227, -226, -240, -1, -231, -246, -16, -224, -225, -11, -15, -4, -19, -248, -217, -220, -8, -221, -160, -239, -7, -241, -230, -243, -232, -223, -134, -135, -117, -116, -34, -98, -97, -120, -119, -33, -83, -82, -80, -79, -49, -48, -86, -85, -123, -122, -76, -75, -58, -57, -67, -66, -104, -103, -95, -94, -101, -100, -70, -69, -107, -106, -73, -72, -64, -63, -137, -89, -88, -110, -109, -35, -161, -38, -163, -52, -51, -55, -54, -114, -113, -92, -91, -195, -36, -39, -165, -126, -125, -61, -60, -44, -45, -176, -182, -26, -25, -23, -24, -27, -46, -186, -199, -196, -201, -198, -200, -30, -31, -197, -184, -150, -180, -22, -140, -194, -132, -131, -129, -128, -133, -115, -96, -118, -81, -78, -47, -84, -177, -121, -74, -56, -65, -102, -183, -93, -99, -68, -105, -71, -62, -136, -138, -87, -187, -185, -108, -50, -53, -112, -181, -90, -37, -40, -139, -124, -42, -59, -28, -168, -21, -164, -130, -127, -77, -145, -143, -41, -149, -148, -167, -43, -169, -153, -151, -159, -111, -171, -170, -155, -157, -166, -147, -175, -174, -173, -172, -146, -144, -154, -152, -156, -158]), 'DOTS': ([2, 7, 8, 9, 11, 12, 13, 17, 21, 22, 23, 25, 26, 27, 28, 30, 31, 32, 33, 34, 35, 37, 39, 43, 45, 48, 49, 53, 54, 55, 63, 64, 65, 66, 68, 69, 72, 73, 74, 75, 76, 79, 80, 81, 82, 83, 85, 86, 88, 89, 90, 91, 92, 95, 97, 101, 103, 104, 105, 106, 107, 109, 110, 112, 113, 116, 117, 118, 120, 122, 124, 126, 127, 128, 130, 131, 133, 134, 135, 137, 140, 142, 143, 145, 147, 149, 153, 155, 156, 158, 159, 160, 162, 164, 165, 166, 177, 179, 180, 182, 185, 187, 188, 190, 192, 194, 195, 197, 198, 202, 204, 215, 218, 222, 223, 224, 225, 226, 228, 229, 231, 232, 234, 236, 238, 241, 242, 243, 245, 246, 249, 253, 255, 256, 264, 279, 283, 284, 285, 286, 287, 299, 302, 308, 309, 312, 317, 321, 324, 326, 328, 330, 332, 334, 336, 340, 342, 343, 344, 346, 354, 356, 358, 361, 362, 363, 364, 365, 366, 370, 371, 375, 376, 379, 380, 381, 382, 383, 384, 385, 387, 390, 391, 392, 393, 394, 395, 396, 399, 402, 404, 406, 418, 419, 428, 430, 431, 432, 443, 447, 448, 450, 468, 474, 476, 477, 478, 481, 486, 487, 492, 496, 503, 504, 507, 510, 526, 537, 538, 539, 540, 541, 546, 547, 560, 561, 564, 565], [-218, -17, -242, -18, -216, -205, -6, -233, -245, -236, -14, -10, -13, -238, -247, -237, -210, -20, -207, -209, -29, -12, -228, -5, -202, -32, -234, -212, -235, -213, -215, -203, -204, -211, -222, -9, -162, -206, -244, -229, -208, -219, -214, -227, -226, -240, -231, -246, -16, -224, -225, -11, -15, -4, -19, -248, -217, -220, -8, -221, -160, -239, -7, -241, -230, -243, -232, -223, -134, -135, -117, -116, -34, -98, -97, -120, -119, -33, -83, -82, -80, -79, -49, -48, -86, -85, -123, -122, -76, -75, -58, -57, -67, -66, -104, -103, -95, -94, -101, -100, -70, -69, -107, -106, -73, -72, -64, -63, -137, -89, -88, -110, -109, -35, -161, -38, -163, -52, -51, -55, -54, -114, -113, -92, -91, -195, -36, -39, -165, -126, -125, -61, -60, -44, -45, -182, -26, -25, -23, -24, -27, -46, -186, -30, -31, -184, -150, -180, -22, -140, -194, -132, -131, -129, -128, -133, -115, -96, -118, -81, -78, -47, -84, -121, -74, -56, -65, -102, -183, -93, -99, -68, -105, -71, -62, -136, -138, -87, -187, -185, -108, -50, -53, -112, -181, -90, -37, -40, -139, -124, -42, -59, -28, -168, -21, -164, -130, -127, -77, 471, -145, -143, -41, -149, -148, -167, -43, -169, -153, -151, -159, -111, -171, -170, -155, -157, -166, -147, -175, -174, -173, -172, -146, -144, -154, -152, -156, -158]), 'GCD': ([0, 1, 6, 15, 18, 38, 47, 52, 70, 78, 87, 94, 100, 108, 121, 125, 129, 132, 136, 139, 141, 144, 148, 154, 157, 161, 163, 167, 172, 173, 174, 175, 176, 178, 181, 186, 189, 193, 196, 200, 203, 206, 207, 208, 209, 210, 211, 212, 213, 217, 227, 230, 233, 237, 244, 248, 251, 254, 265, 266, 272, 280, 281, 282, 290, 301, 311, 315, 316, 322, 325, 329, 331, 335, 345, 355, 398, 407, 415, 420, 421, 422, 423, 424, 426, 427, 433, 444, 451, 459, 460, 461, 462, 464, 466, 471, 475, 479, 482, 483, 488, 498, 499, 500, 511, 512, 513, 527, 528, 529, 530, 535, 536, 557, 562], [14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14]), 'CSC': ([0, 1, 6, 15, 18, 38, 47, 52, 70, 78, 87, 94, 100, 108, 121, 125, 129, 132, 136, 139, 141, 144, 148, 154, 157, 161, 163, 167, 172, 173, 174, 175, 176, 178, 181, 186, 189, 193, 196, 200, 203, 206, 207, 208, 209, 210, 211, 212, 213, 217, 227, 230, 233, 237, 244, 248, 251, 254, 265, 266, 272, 280, 281, 282, 290, 301, 311, 315, 316, 322, 325, 329, 331, 335, 345, 355, 398, 407, 415, 420, 421, 422, 423, 424, 426, 427, 433, 444, 451, 459, 460, 461, 462, 464, 466, 471, 475, 479, 482, 483, 488, 498, 499, 500, 511, 512, 513, 527, 528, 529, 530, 535, 536, 557, 562], [50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50]), 'END_VMATRIX': ([2, 7, 8, 9, 11, 12, 13, 17, 21, 22, 23, 25, 26, 27, 28, 30, 31, 32, 33, 34, 35, 37, 39, 43, 45, 48, 49, 53, 54, 55, 63, 64, 65, 66, 68, 69, 72, 73, 74, 75, 76, 79, 80, 81, 82, 83, 85, 86, 88, 89, 90, 91, 92, 95, 97, 101, 103, 104, 105, 106, 107, 109, 110, 112, 113, 116, 117, 118, 120, 122, 124, 126, 127, 128, 130, 131, 133, 134, 135, 137, 140, 142, 143, 145, 147, 149, 153, 155, 156, 158, 159, 160, 162, 164, 165, 166, 169, 170, 177, 179, 180, 182, 185, 187, 188, 190, 192, 194, 195, 197, 198, 202, 204, 215, 218, 222, 223, 224, 225, 226, 228, 229, 231, 232, 234, 235, 236, 238, 241, 242, 243, 245, 246, 249, 253, 255, 256, 264, 279, 283, 284, 285, 286, 287, 299, 302, 308, 309, 312, 317, 321, 322, 324, 326, 328, 330, 332, 334, 336, 340, 342, 343, 344, 346, 354, 356, 358, 361, 362, 363, 364, 365, 366, 367, 368, 370, 371, 375, 376, 379, 380, 381, 382, 383, 384, 385, 387, 390, 391, 392, 393, 394, 395, 396, 399, 402, 404, 406, 418, 419, 428, 430, 431, 432, 443, 448, 450, 468, 474, 476, 477, 478, 481, 486, 487, 492, 496, 503, 504, 507, 510, 526, 537, 538, 539, 540, 541, 546, 547, 560, 561, 564, 565], [-218, -17, -242, -18, -216, -205, -6, -233, -245, -236, -14, -10, -13, -238, -247, -237, -210, -20, -207, -209, -29, -12, -228, -5, -202, -32, -234, -212, -235, -213, -215, -203, -204, -211, -222, -9, -162, -206, -244, -229, -208, -219, -214, -227, -226, -240, -231, -246, -16, -224, -225, -11, -15, -4, -19, -248, -217, -220, -8, -221, -160, -239, -7, -241, -230, -243, -232, -223, -134, -135, -117, -116, -34, -98, -97, -120, -119, -33, -83, -82, -80, -79, -49, -48, -86, -85, -123, -122, -76, -75, -58, -57, -67, -66, -104, -103, -191, -189, -95, -94, -101, -100, -70, -69, -107, -106, -73, -72, -64, -63, -137, -89, -88, -110, -109, -35, -161, -38, -163, -52, -51, -55, -54, -114, -113, 321, -92, -91, -195, -36, -39, -165, -126, -125, -61, -60, -44, -45, -182, -26, -25, -23, -24, -27, -46, -186, -30, -31, -184, -150, -180, 393, -22, -140, -194, -132, -131, -129, -128, -133, -115, -96, -118, -81, -78, -47, -84, -121, -74, -56, -65, -102, -183, -190, -188, -93, -99, -68, -105, -71, -62, -136, -138, -87, -187, -185, -108, -50, -53, -112, -181, -90, -37, -40, -139, -124, -42, -59, -28, -168, -21, -164, -130, -127, -77, -145, -143, -41, -149, -148, -167, -43, -169, -153, -151, -159, -111, -171, -170, -155, -157, -166, -147, -175, -174, -173, -172, -146, -144, -154, -152, -156, -158]), 'AMPERSAND': ([2, 7, 8, 9, 11, 12, 13, 17, 21, 22, 23, 25, 26, 27, 28, 30, 31, 32, 33, 34, 35, 37, 39, 43, 45, 48, 49, 53, 54, 55, 63, 64, 65, 66, 68, 69, 72, 73, 74, 75, 76, 79, 80, 81, 82, 83, 85, 86, 88, 89, 90, 91, 92, 95, 97, 101, 103, 104, 105, 106, 107, 109, 110, 112, 113, 116, 117, 118, 120, 122, 124, 126, 127, 128, 130, 131, 133, 134, 135, 137, 140, 142, 143, 145, 147, 149, 153, 155, 156, 158, 159, 160, 162, 164, 165, 166, 169, 170, 177, 179, 180, 182, 185, 187, 188, 190, 192, 194, 195, 197, 198, 202, 204, 215, 218, 222, 223, 224, 225, 226, 228, 229, 231, 232, 234, 236, 238, 241, 242, 243, 245, 246, 249, 253, 255, 256, 264, 279, 283, 284, 285, 286, 287, 299, 302, 308, 309, 312, 317, 321, 324, 326, 328, 330, 332, 334, 336, 340, 342, 343, 344, 346, 354, 356, 358, 361, 362, 363, 364, 365, 366, 367, 368, 370, 371, 375, 376, 379, 380, 381, 382, 383, 384, 385, 387, 390, 391, 392, 393, 394, 395, 396, 399, 402, 404, 406, 418, 419, 428, 430, 431, 432, 443, 448, 450, 468, 474, 476, 477, 478, 481, 486, 487, 492, 496, 503, 504, 507, 510, 526, 537, 538, 539, 540, 541, 546, 547, 560, 561, 564, 565], [-218, -17, -242, -18, -216, -205, -6, -233, -245, -236, -14, -10, -13, -238, -247, -237, -210, -20, -207, -209, -29, -12, -228, -5, -202, -32, -234, -212, -235, -213, -215, -203, -204, -211, -222, -9, -162, -206, -244, -229, -208, -219, -214, -227, -226, -240, -231, -246, -16, -224, -225, -11, -15, -4, -19, -248, -217, -220, -8, -221, -160, -239, -7, -241, -230, -243, -232, -223, -134, -135, -117, -116, -34, -98, -97, -120, -119, -33, -83, -82, -80, -79, -49, -48, -86, -85, -123, -122, -76, -75, -58, -57, -67, -66, -104, -103, 281, -189, -95, -94, -101, -100, -70, -69, -107, -106, -73, -72, -64, -63, -137, -89, -88, -110, -109, -35, -161, -38, -163, -52, -51, -55, -54, -114, -113, -92, -91, -195, -36, -39, -165, -126, -125, -61, -60, -44, -45, -182, -26, -25, -23, -24, -27, -46, -186, -30, -31, -184, -150, -180, -22, -140, -194, -132, -131, -129, -128, -133, -115, -96, -118, -81, -78, -47, -84, -121, -74, -56, -65, -102, -183, 281, -188, -93, -99, -68, -105, -71, -62, -136, -138, -87, -187, -185, -108, -50, -53, -112, -181, -90, -37, -40, -139, -124, -42, -59, -28, -168, -21, -164, -130, -127, -77, -145, -143, -41, -149, -148, -167, -43, -169, -153, -151, -159, -111, -171, -170, -155, -157, -166, -147, -175, -174, -173, -172, -146, -144, -154, -152, -156, -158]), 'END_NMATRIX': ([2, 7, 8, 9, 11, 12, 13, 17, 21, 22, 23, 25, 26, 27, 28, 30, 31, 32, 33, 34, 35, 37, 39, 43, 45, 48, 49, 53, 54, 55, 63, 64, 65, 66, 68, 69, 72, 73, 74, 75, 76, 79, 80, 81, 82, 83, 85, 86, 88, 89, 90, 91, 92, 95, 97, 101, 103, 104, 105, 106, 107, 109, 110, 112, 113, 116, 117, 118, 120, 122, 124, 126, 127, 128, 130, 131, 133, 134, 135, 137, 140, 142, 143, 145, 147, 149, 153, 155, 156, 158, 159, 160, 162, 164, 165, 166, 168, 169, 170, 177, 179, 180, 182, 185, 187, 188, 190, 192, 194, 195, 197, 198, 202, 204, 215, 218, 222, 223, 224, 225, 226, 228, 229, 231, 232, 234, 236, 238, 241, 242, 243, 245, 246, 249, 253, 255, 256, 264, 279, 280, 283, 284, 285, 286, 287, 299, 302, 308, 309, 312, 317, 321, 324, 326, 328, 330, 332, 334, 336, 340, 342, 343, 344, 346, 354, 356, 358, 361, 362, 363, 364, 365, 366, 367, 368, 370, 371, 375, 376, 379, 380, 381, 382, 383, 384, 385, 387, 390, 391, 392, 393, 394, 395, 396, 399, 402, 404, 406, 418, 419, 428, 430, 431, 432, 443, 448, 450, 468, 474, 476, 477, 478, 481, 486, 487, 492, 496, 503, 504, 507, 510, 526, 537, 538, 539, 540, 541, 546, 547, 560, 561, 564, 565], [-218, -17, -242, -18, -216, -205, -6, -233, -245, -236, -14, -10, -13, -238, -247, -237, -210, -20, -207, -209, -29, -12, -228, -5, -202, -32, -234, -212, -235, -213, -215, -203, -204, -211, -222, -9, -162, -206, -244, -229, -208, -219, -214, -227, -226, -240, -231, -246, -16, -224, -225, -11, -15, -4, -19, -248, -217, -220, -8, -221, -160, -239, -7, -241, -230, -243, -232, -223, -134, -135, -117, -116, -34, -98, -97, -120, -119, -33, -83, -82, -80, -79, -49, -48, -86, -85, -123, -122, -76, -75, -58, -57, -67, -66, -104, -103, 279, -191, -189, -95, -94, -101, -100, -70, -69, -107, -106, -73, -72, -64, -63, -137, -89, -88, -110, -109, -35, -161, -38, -163, -52, -51, -55, -54, -114, -113, -92, -91, -195, -36, -39, -165, -126, -125, -61, -60, -44, -45, -182, 366, -26, -25, -23, -24, -27, -46, -186, -30, -31, -184, -150, -180, -22, -140, -194, -132, -131, -129, -128, -133, -115, -96, -118, -81, -78, -47, -84, -121, -74, -56, -65, -102, -183, -190, -188, -93, -99, -68, -105, -71, -62, -136, -138, -87, -187, -185, -108, -50, -53, -112, -181, -90, -37, -40, -139, -124, -42, -59, -28, -168, -21, -164, -130, -127, -77, -145, -143, -41, -149, -148, -167, -43, -169, -153, -151, -159, -111, -171, -170, -155, -157, -166, -147, -175, -174, -173, -172, -146, -144, -154, -152, -156, -158]), 'EQ': ([2, 7, 8, 9, 11, 12, 13, 17, 21, 22, 23, 25, 26, 27, 28, 30, 31, 32, 33, 34, 35, 37, 39, 43, 45, 48, 49, 53, 54, 55, 63, 64, 65, 66, 68, 69, 72, 73, 74, 75, 76, 79, 80, 81, 82, 83, 84, 85, 86, 88, 89, 90, 91, 92, 95, 97, 101, 103, 104, 105, 106, 107, 109, 110, 112, 113, 116, 117, 118, 120, 122, 124, 126, 127, 128, 130, 131, 133, 134, 135, 137, 140, 142, 143, 145, 147, 149, 151, 153, 155, 156, 158, 159, 160, 162, 164, 165, 166, 177, 179, 180, 182, 185, 187, 188, 190, 192, 194, 195, 197, 198, 202, 204, 215, 218, 222, 223, 224, 225, 226, 228, 229, 231, 232, 234, 236, 238, 241, 242, 243, 245, 246, 249, 253, 255, 256, 264, 279, 283, 284, 285, 286, 287, 299, 302, 308, 309, 312, 317, 321, 324, 326, 328, 330, 332, 334, 336, 340, 342, 343, 344, 346, 354, 356, 358, 361, 362, 363, 364, 365, 366, 370, 371, 373, 375, 376, 377, 379, 380, 381, 382, 383, 384, 385, 387, 390, 391, 392, 393, 394, 395, 396, 399, 402, 404, 406, 418, 419, 428, 430, 431, 432, 443, 448, 450, 468, 474, 476, 477, 478, 481, 486, 487, 492, 496, 503, 504, 507, 510, 526, 537, 538, 539, 540, 541, 546, 547, 560, 561, 564, 565], [-218, -17, -242, -18, -216, -205, -6, -233, -245, -236, -14, -10, -13, -238, -247, -237, -210, -20, -207, -209, -29, -12, -228, -5, -202, -32, -234, -212, -235, -213, -215, -203, -204, -211, -222, -9, -162, -206, -244, -229, -208, -219, -214, -227, -226, -240, 207, -231, -246, -16, -224, -225, -11, -15, -4, -19, -248, -217, -220, -8, -221, -160, -239, -7, -241, -230, -243, -232, -223, -134, -135, -117, -116, -34, -98, -97, -120, -119, -33, -83, -82, -80, -79, -49, -48, -86, -85, 207, -123, -122, -76, -75, -58, -57, -67, -66, -104, -103, -95, -94, -101, -100, -70, -69, -107, -106, -73, -72, -64, -63, -137, -89, -88, -110, -109, -35, -161, -38, -163, -52, -51, -55, -54, -114, -113, -92, -91, -195, -36, -39, -165, -126, -125, -61, -60, -44, -45, -182, -26, -25, -23, -24, -27, -46, -186, -30, -31, -184, -150, -180, -22, -140, -194, -132, -131, -129, -128, -133, -115, -96, -118, -81, -78, -47, -84, -121, -74, -56, -65, -102, -183, -93, -99, 420, -68, -105, 423, -71, -62, -136, -138, -87, -187, -185, -108, -50, -53, -112, -181, -90, -37, -40, -139, -124, -42, -59, -28, -168, -21, -164, -130, -127, -77, -145, -143, -41, -149, -148, -167, -43, -169, -153, -151, -159, -111, -171, -170, -155, -157, -166, -147, -175, -174, -173, -172, -146, -144, -154, -152, -156, -158]), 'COTH': ([0, 1, 6, 15, 18, 38, 47, 52, 70, 78, 87, 94, 100, 108, 121, 125, 129, 132, 136, 139, 141, 144, 148, 154, 157, 161, 163, 167, 172, 173, 174, 175, 176, 178, 181, 186, 189, 193, 196, 200, 203, 206, 207, 208, 209, 210, 211, 212, 213, 217, 227, 230, 233, 237, 244, 248, 251, 254, 265, 266, 272, 280, 281, 282, 290, 301, 311, 315, 316, 322, 325, 329, 331, 335, 345, 355, 398, 407, 415, 420, 421, 422, 423, 424, 426, 427, 433, 444, 451, 459, 460, 461, 462, 464, 466, 471, 475, 479, 482, 483, 488, 498, 499, 500, 511, 512, 513, 527, 528, 529, 530, 535, 536, 557, 562], [51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51]), 'LBRACE': ([0, 1, 6, 15, 18, 19, 38, 47, 52, 70, 78, 87, 94, 100, 108, 114, 121, 123, 125, 129, 132, 136, 139, 141, 144, 146, 148, 154, 157, 161, 163, 167, 171, 172, 173, 174, 175, 176, 178, 181, 184, 186, 189, 191, 193, 196, 200, 203, 206, 207, 208, 209, 210, 211, 212, 213, 216, 217, 219, 220, 227, 230, 233, 237, 240, 244, 248, 251, 254, 265, 266, 272, 280, 281, 282, 290, 301, 311, 315, 316, 322, 325, 329, 331, 335, 345, 347, 349, 350, 351, 353, 355, 398, 405, 407, 410, 414, 415, 420, 421, 422, 423, 424, 426, 427, 433, 444, 451, 453, 457, 458, 459, 460, 461, 462, 464, 466, 471, 475, 479, 482, 483, 485, 488, 489, 493, 495, 498, 499, 500, 505, 509, 511, 512, 513, 527, 528, 529, 530, 532, 535, 536, 542, 544, 551, 557, 562], [52, 52, 52, 52, 52, 139, 52, 52, 52, 52, 52, 52, 52, 52, 52, 251, 52, 258, 52, 52, 52, 52, 52, 52, 52, 270, 52, 52, 52, 52, 52, 52, 282, 52, 52, 52, 52, 52, 52, 52, 291, 52, 52, 294, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 313, 52, 315, 316, 52, 52, 52, 52, 325, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 409, 411, 412, 413, 415, 52, 52, 433, 52, 437, 441, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 475, 479, 480, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 506, 52, 508, 511, 512, 52, 52, 52, 519, 522, 52, 52, 52, 52, 52, 52, 52, 543, 52, 52, 548, 550, 555, 52, 52]), 'LAMBDA_LOWER': ([0, 1, 6, 15, 18, 38, 47, 52, 70, 78, 87, 94, 100, 108, 121, 125, 129, 132, 136, 139, 141, 144, 148, 154, 157, 161, 163, 167, 172, 173, 174, 175, 176, 178, 181, 186, 189, 193, 196, 200, 203, 206, 207, 208, 209, 210, 211, 212, 213, 217, 227, 230, 233, 237, 244, 248, 251, 254, 265, 266, 272, 280, 281, 282, 290, 301, 311, 315, 316, 322, 325, 329, 331, 335, 345, 355, 398, 407, 415, 420, 421, 422, 423, 424, 426, 427, 433, 444, 451, 459, 460, 461, 462, 464, 466, 471, 475, 479, 482, 483, 488, 498, 499, 500, 511, 512, 513, 527, 528, 529, 530, 535, 536, 557, 562], [53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53]), 'BEGIN_PMATRIX': ([0, 1, 6, 15, 18, 38, 47, 52, 67, 70, 78, 87, 94, 100, 108, 121, 125, 129, 132, 136, 139, 141, 144, 148, 154, 157, 161, 163, 167, 172, 173, 174, 175, 176, 178, 181, 186, 189, 193, 196, 199, 200, 203, 206, 207, 208, 209, 210, 211, 212, 213, 217, 227, 230, 233, 237, 244, 248, 251, 254, 265, 266, 272, 280, 281, 282, 290, 301, 311, 315, 316, 322, 325, 329, 331, 335, 345, 355, 398, 407, 415, 420, 421, 422, 423, 424, 426, 427, 433, 444, 451, 459, 460, 461, 462, 464, 466, 471, 475, 479, 482, 483, 488, 498, 499, 500, 511, 512, 513, 527, 528, 529, 530, 535, 536, 557, 562], [78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78]), 'EPSILON_LOWER': ([0, 1, 6, 15, 18, 38, 47, 52, 70, 78, 87, 94, 100, 108, 121, 125, 129, 132, 136, 139, 141, 144, 148, 154, 157, 161, 163, 167, 172, 173, 174, 175, 176, 178, 181, 186, 189, 193, 196, 200, 203, 206, 207, 208, 209, 210, 211, 212, 213, 217, 227, 230, 233, 237, 244, 248, 251, 254, 265, 266, 272, 280, 281, 282, 290, 301, 311, 315, 316, 322, 325, 329, 331, 335, 345, 355, 398, 407, 415, 420, 421, 422, 423, 424, 426, 427, 433, 444, 451, 459, 460, 461, 462, 464, 466, 471, 475, 479, 482, 483, 488, 498, 499, 500, 511, 512, 513, 527, 528, 529, 530, 535, 536, 557, 562], [55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55]), 'PROD': ([0, 1, 6, 15, 18, 38, 47, 52, 70, 78, 87, 94, 100, 108, 121, 125, 129, 132, 136, 139, 141, 144, 148, 154, 157, 161, 163, 167, 172, 173, 174, 175, 176, 178, 181, 186, 189, 193, 196, 200, 203, 206, 207, 208, 209, 210, 211, 212, 213, 217, 227, 230, 233, 237, 244, 248, 251, 254, 265, 266, 272, 280, 281, 282, 290, 301, 311, 315, 316, 322, 325, 329, 331, 335, 345, 355, 398, 407, 415, 420, 421, 422, 423, 424, 426, 427, 433, 444, 451, 459, 460, 461, 462, 464, 466, 471, 475, 479, 482, 483, 488, 498, 499, 500, 511, 512, 513, 527, 528, 529, 530, 535, 536, 557, 562], [57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57]), 'LAMBDA': ([0, 1, 6, 15, 18, 38, 47, 52, 70, 78, 87, 94, 100, 108, 121, 125, 129, 132, 136, 139, 141, 144, 148, 154, 157, 161, 163, 167, 172, 173, 174, 175, 176, 178, 181, 186, 189, 193, 196, 200, 203, 206, 207, 208, 209, 210, 211, 212, 213, 217, 227, 230, 233, 237, 244, 248, 251, 254, 265, 266, 272, 280, 281, 282, 290, 301, 311, 315, 316, 322, 325, 329, 331, 335, 345, 355, 398, 407, 415, 420, 421, 422, 423, 424, 426, 427, 433, 444, 451, 459, 460, 461, 462, 464, 466, 471, 475, 479, 482, 483, 488, 498, 499, 500, 511, 512, 513, 527, 528, 529, 530, 535, 536, 557, 562], [117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117]), 'COS': ([0, 1, 6, 15, 18, 38, 47, 52, 70, 78, 87, 94, 100, 108, 121, 125, 129, 132, 136, 139, 141, 144, 148, 154, 157, 161, 163, 167, 172, 173, 174, 175, 176, 178, 181, 186, 189, 193, 196, 200, 203, 206, 207, 208, 209, 210, 211, 212, 213, 217, 227, 230, 233, 237, 244, 248, 251, 254, 265, 266, 272, 280, 281, 282, 290, 301, 311, 315, 316, 322, 325, 329, 331, 335, 345, 355, 398, 407, 415, 420, 421, 422, 423, 424, 426, 427, 433, 444, 451, 459, 460, 461, 462, 464, 466, 471, 475, 479, 482, 483, 488, 498, 499, 500, 511, 512, 513, 527, 528, 529, 530, 535, 536, 557, 562], [58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58]), 'COT': ([0, 1, 6, 15, 18, 38, 47, 52, 70, 78, 87, 94, 100, 108, 121, 125, 129, 132, 136, 139, 141, 144, 148, 154, 157, 161, 163, 167, 172, 173, 174, 175, 176, 178, 181, 186, 189, 193, 196, 200, 203, 206, 207, 208, 209, 210, 211, 212, 213, 217, 227, 230, 233, 237, 244, 248, 251, 254, 265, 266, 272, 280, 281, 282, 290, 301, 311, 315, 316, 322, 325, 329, 331, 335, 345, 355, 398, 407, 415, 420, 421, 422, 423, 424, 426, 427, 433, 444, 451, 459, 460, 461, 462, 464, 466, 471, 475, 479, 482, 483, 488, 498, 499, 500, 511, 512, 513, 527, 528, 529, 530, 535, 536, 557, 562], [59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59]), 'SUM': ([0, 1, 6, 15, 18, 38, 47, 52, 70, 78, 87, 94, 100, 108, 121, 125, 129, 132, 136, 139, 141, 144, 148, 154, 157, 161, 163, 167, 172, 173, 174, 175, 176, 178, 181, 186, 189, 193, 196, 200, 203, 206, 207, 208, 209, 210, 211, 212, 213, 217, 227, 230, 233, 237, 244, 248, 251, 254, 265, 266, 272, 280, 281, 282, 290, 301, 311, 315, 316, 322, 325, 329, 331, 335, 345, 355, 398, 407, 415, 420, 421, 422, 423, 424, 426, 427, 433, 444, 451, 459, 460, 461, 462, 464, 466, 471, 475, 479, 482, 483, 488, 498, 499, 500, 511, 512, 513, 527, 528, 529, 530, 535, 536, 557, 562], [60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60]), 'ATANH': ([0, 1, 6, 15, 18, 38, 47, 52, 70, 78, 87, 94, 100, 108, 121, 125, 129, 132, 136, 139, 141, 144, 148, 154, 157, 161, 163, 167, 172, 173, 174, 175, 176, 178, 181, 186, 189, 193, 196, 200, 203, 206, 207, 208, 209, 210, 211, 212, 213, 217, 227, 230, 233, 237, 244, 248, 251, 254, 265, 266, 272, 280, 281, 282, 290, 301, 311, 315, 316, 322, 325, 329, 331, 335, 345, 355, 398, 407, 415, 420, 421, 422, 423, 424, 426, 427, 433, 444, 451, 459, 460, 461, 462, 464, 466, 471, 475, 479, 482, 483, 488, 498, 499, 500, 511, 512, 513, 527, 528, 529, 530, 535, 536, 557, 562], [61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61]), 'CROSS': ([2, 7, 8, 9, 11, 12, 13, 17, 21, 22, 23, 25, 26, 27, 28, 30, 31, 32, 33, 34, 35, 37, 39, 43, 45, 48, 49, 53, 54, 55, 63, 64, 65, 66, 68, 69, 72, 73, 74, 75, 76, 79, 80, 81, 82, 83, 85, 86, 88, 89, 90, 91, 92, 95, 97, 101, 103, 104, 105, 106, 107, 109, 110, 111, 112, 113, 116, 117, 118, 120, 122, 124, 126, 127, 128, 130, 131, 133, 134, 135, 137, 140, 142, 143, 145, 147, 149, 153, 155, 156, 158, 159, 160, 162, 164, 165, 166, 177, 179, 180, 182, 185, 187, 188, 190, 192, 194, 195, 197, 198, 202, 204, 215, 218, 222, 223, 224, 225, 226, 228, 229, 231, 232, 234, 236, 238, 241, 242, 243, 245, 246, 249, 253, 255, 256, 264, 279, 283, 284, 285, 286, 287, 299, 302, 308, 309, 312, 317, 321, 324, 326, 328, 330, 332, 334, 336, 340, 342, 343, 344, 346, 354, 356, 358, 361, 362, 363, 364, 365, 366, 370, 371, 375, 376, 379, 380, 381, 382, 383, 384, 385, 387, 390, 391, 392, 393, 394, 395, 396, 399, 402, 404, 406, 418, 419, 428, 429, 430, 431, 432, 434, 443, 448, 450, 468, 474, 476, 477, 478, 481, 486, 487, 492, 496, 503, 504, 507, 510, 526, 537, 538, 539, 540, 541, 546, 547, 560, 561, 564, 565], [-218, -17, -242, -18, -216, -205, -6, -233, -245, -236, -14, -10, -13, -238, -247, -237, -210, -20, -207, -209, -29, -12, -228, -5, -202, 173, -234, -212, -235, -213, -215, -203, -204, -211, -222, -9, -162, -206, -244, -229, -208, -219, -214, -227, -226, -240, -231, -246, -16, -224, -225, -11, -15, -4, -19, -248, -217, -220, -8, -221, -160, -239, -7, 247, -241, -230, -243, -232, -223, -134, -135, -117, -116, -34, -98, -97, -120, -119, -33, -83, -82, -80, -79, -49, -48, -86, -85, -123, -122, -76, -75, -58, -57, -67, -66, -104, -103, -95, -94, -101, -100, -70, -69, -107, -106, -73, -72, -64, -63, -137, -89, -88, -110, -109, -35, -161, -38, -163, -52, -51, -55, -54, -114, -113, -92, -91, -195, -36, -39, -165, -126, -125, -61, -60, -44, -45, -182, -26, -25, -23, -24, -27, -46, -186, 173, 173, -184, -150, -180, -22, -140, -194, -132, -131, -129, -128, -133, -115, -96, -118, -81, -78, -47, -84, -121, -74, -56, -65, -102, -183, -93, -99, -68, -105, -71, -62, -136, -138, -87, -187, -185, -108, -50, -53, -112, -181, -90, -37, -40, -139, -124, -42, -59, -28, -168, -21, -4, -164, -130, -127, 173, -77, -145, -143, -41, -149, -148, -167, -43, -169, -153, -151, -159, -111, -171, -170, -155, -157, -166, -147, -175, -174, -173, -172, -146, -144, -154, -152, -156, -158]), 'COSH': ([0, 1, 6, 15, 18, 38, 47, 52, 70, 78, 87, 94, 100, 108, 121, 125, 129, 132, 136, 139, 141, 144, 148, 154, 157, 161, 163, 167, 172, 173, 174, 175, 176, 178, 181, 186, 189, 193, 196, 200, 203, 206, 207, 208, 209, 210, 211, 212, 213, 217, 227, 230, 233, 237, 244, 248, 251, 254, 265, 266, 272, 280, 281, 282, 290, 301, 311, 315, 316, 322, 325, 329, 331, 335, 345, 355, 398, 407, 415, 420, 421, 422, 423, 424, 426, 427, 433, 444, 451, 459, 460, 461, 462, 464, 466, 471, 475, 479, 482, 483, 488, 498, 499, 500, 511, 512, 513, 527, 528, 529, 530, 535, 536, 557, 562], [62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62]), 'KAPPA_LOWER': ([0, 1, 6, 15, 18, 38, 47, 52, 70, 78, 87, 94, 100, 108, 121, 125, 129, 132, 136, 139, 141, 144, 148, 154, 157, 161, 163, 167, 172, 173, 174, 175, 176, 178, 181, 186, 189, 193, 196, 200, 203, 206, 207, 208, 209, 210, 211, 212, 213, 217, 227, 230, 233, 237, 244, 248, 251, 254, 265, 266, 272, 280, 281, 282, 290, 301, 311, 315, 316, 322, 325, 329, 331, 335, 345, 355, 398, 407, 415, 420, 421, 422, 423, 424, 426, 427, 433, 444, 451, 459, 460, 461, 462, 464, 466, 471, 475, 479, 482, 483, 488, 498, 499, 500, 511, 512, 513, 527, 528, 529, 530, 535, 536, 557, 562], [63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63]), 'ETA': ([0, 1, 6, 15, 18, 38, 47, 52, 70, 78, 87, 94, 100, 108, 121, 125, 129, 132, 136, 139, 141, 144, 148, 154, 157, 161, 163, 167, 172, 173, 174, 175, 176, 178, 181, 186, 189, 193, 196, 200, 203, 206, 207, 208, 209, 210, 211, 212, 213, 217, 227, 230, 233, 237, 244, 248, 251, 254, 265, 266, 272, 280, 281, 282, 290, 301, 311, 315, 316, 322, 325, 329, 331, 335, 345, 355, 398, 407, 415, 420, 421, 422, 423, 424, 426, 427, 433, 444, 451, 459, 460, 461, 462, 464, 466, 471, 475, 479, 482, 483, 488, 498, 499, 500, 511, 512, 513, 527, 528, 529, 530, 535, 536, 557, 562], [27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27]), 'END_PMATRIX': ([2, 7, 8, 9, 11, 12, 13, 17, 21, 22, 23, 25, 26, 27, 28, 30, 31, 32, 33, 34, 35, 37, 39, 43, 45, 48, 49, 53, 54, 55, 63, 64, 65, 66, 68, 69, 72, 73, 74, 75, 76, 79, 80, 81, 82, 83, 85, 86, 88, 89, 90, 91, 92, 95, 97, 101, 103, 104, 105, 106, 107, 109, 110, 112, 113, 116, 117, 118, 120, 122, 124, 126, 127, 128, 130, 131, 133, 134, 135, 137, 140, 142, 143, 145, 147, 149, 153, 155, 156, 158, 159, 160, 162, 164, 165, 166, 169, 170, 177, 179, 180, 182, 185, 187, 188, 190, 192, 194, 195, 197, 198, 202, 204, 205, 215, 218, 222, 223, 224, 225, 226, 228, 229, 231, 232, 234, 236, 238, 241, 242, 243, 245, 246, 249, 253, 255, 256, 264, 279, 283, 284, 285, 286, 287, 299, 301, 302, 308, 309, 312, 317, 321, 324, 326, 328, 330, 332, 334, 336, 340, 342, 343, 344, 346, 354, 356, 358, 361, 362, 363, 364, 365, 366, 367, 368, 370, 371, 375, 376, 379, 380, 381, 382, 383, 384, 385, 387, 390, 391, 392, 393, 394, 395, 396, 399, 402, 404, 406, 418, 419, 428, 430, 431, 432, 443, 448, 450, 468, 474, 476, 477, 478, 481, 486, 487, 492, 496, 503, 504, 507, 510, 526, 537, 538, 539, 540, 541, 546, 547, 560, 561, 564, 565], [-218, -17, -242, -18, -216, -205, -6, -233, -245, -236, -14, -10, -13, -238, -247, -237, -210, -20, -207, -209, -29, -12, -228, -5, -202, -32, -234, -212, -235, -213, -215, -203, -204, -211, -222, -9, -162, -206, -244, -229, -208, -219, -214, -227, -226, -240, -231, -246, -16, -224, -225, -11, -15, -4, -19, -248, -217, -220, -8, -221, -160, -239, -7, -241, -230, -243, -232, -223, -134, -135, -117, -116, -34, -98, -97, -120, -119, -33, -83, -82, -80, -79, -49, -48, -86, -85, -123, -122, -76, -75, -58, -57, -67, -66, -104, -103, -191, -189, -95, -94, -101, -100, -70, -69, -107, -106, -73, -72, -64, -63, -137, -89, -88, 302, -110, -109, -35, -161, -38, -163, -52, -51, -55, -54, -114, -113, -92, -91, -195, -36, -39, -165, -126, -125, -61, -60, -44, -45, -182, -26, -25, -23, -24, -27, -46, 384, -186, -30, -31, -184, -150, -180, -22, -140, -194, -132, -131, -129, -128, -133, -115, -96, -118, -81, -78, -47, -84, -121, -74, -56, -65, -102, -183, -190, -188, -93, -99, -68, -105, -71, -62, -136, -138, -87, -187, -185, -108, -50, -53, -112, -181, -90, -37, -40, -139, -124, -42, -59, -28, -168, -21, -164, -130, -127, -77, -145, -143, -41, -149, -148, -167, -43, -169, -153, -151, -159, -111, -171, -170, -155, -157, -166, -147, -175, -174, -173, -172, -146, -144, -154, -152, -156, -158]), 'CHI_LOWER': ([0, 1, 6, 15, 18, 38, 47, 52, 70, 78, 87, 94, 100, 108, 121, 125, 129, 132, 136, 139, 141, 144, 148, 154, 157, 161, 163, 167, 172, 173, 174, 175, 176, 178, 181, 186, 189, 193, 196, 200, 203, 206, 207, 208, 209, 210, 211, 212, 213, 217, 227, 230, 233, 237, 244, 248, 251, 254, 265, 266, 272, 280, 281, 282, 290, 301, 311, 315, 316, 322, 325, 329, 331, 335, 345, 355, 398, 407, 415, 420, 421, 422, 423, 424, 426, 427, 433, 444, 451, 459, 460, 461, 462, 464, 466, 471, 475, 479, 482, 483, 488, 498, 499, 500, 511, 512, 513, 527, 528, 529, 530, 535, 536, 557, 562], [65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65]), 'DOT': ([2, 7, 8, 9, 11, 12, 13, 17, 21, 22, 23, 25, 26, 27, 28, 30, 31, 32, 33, 34, 35, 37, 39, 43, 45, 48, 49, 53, 54, 55, 63, 64, 65, 66, 68, 69, 72, 73, 74, 75, 76, 79, 80, 81, 82, 83, 85, 86, 88, 89, 90, 91, 92, 95, 97, 101, 103, 104, 105, 106, 107, 109, 110, 111, 112, 113, 116, 117, 118, 120, 122, 124, 126, 127, 128, 130, 131, 133, 134, 135, 137, 140, 142, 143, 145, 147, 149, 153, 155, 156, 158, 159, 160, 162, 164, 165, 166, 177, 179, 180, 182, 185, 187, 188, 190, 192, 194, 195, 197, 198, 202, 204, 215, 218, 222, 223, 224, 225, 226, 228, 229, 231, 232, 234, 236, 238, 241, 242, 243, 245, 246, 249, 253, 255, 256, 264, 279, 283, 284, 285, 286, 287, 299, 302, 308, 309, 312, 317, 321, 324, 326, 328, 330, 332, 334, 336, 340, 342, 343, 344, 346, 354, 356, 358, 361, 362, 363, 364, 365, 366, 370, 371, 375, 376, 379, 380, 381, 382, 383, 384, 385, 387, 390, 391, 392, 393, 394, 395, 396, 399, 402, 404, 406, 418, 419, 428, 429, 430, 431, 432, 434, 443, 448, 450, 468, 474, 476, 477, 478, 481, 486, 487, 492, 496, 503, 504, 507, 510, 526, 537, 538, 539, 540, 541, 546, 547, 560, 561, 564, 565], [-218, -17, -242, -18, -216, -205, -6, -233, -245, -236, -14, -10, -13, -238, -247, -237, -210, -20, -207, -209, -29, -12, -228, -5, -202, 175, -234, -212, -235, -213, -215, -203, -204, -211, -222, -9, -162, -206, -244, -229, -208, -219, -214, -227, -226, -240, -231, -246, -16, -224, -225, -11, -15, -4, -19, -248, -217, -220, -8, -221, -160, -239, -7, 250, -241, -230, -243, -232, -223, -134, -135, -117, -116, -34, -98, -97, -120, -119, -33, -83, -82, -80, -79, -49, -48, -86, -85, -123, -122, -76, -75, -58, -57, -67, -66, -104, -103, -95, -94, -101, -100, -70, -69, -107, -106, -73, -72, -64, -63, -137, -89, -88, -110, -109, -35, -161, -38, -163, -52, -51, -55, -54, -114, -113, -92, -91, -195, -36, -39, -165, -126, -125, -61, -60, -44, -45, -182, -26, -25, -23, -24, -27, -46, -186, 175, 175, -184, -150, -180, -22, -140, -194, -132, -131, -129, -128, -133, -115, -96, -118, -81, -78, -47, -84, -121, -74, -56, -65, -102, -183, -93, -99, -68, -105, -71, -62, -136, -138, -87, -187, -185, -108, -50, -53, -112, -181, -90, -37, -40, -139, -124, -42, -59, -28, -168, -21, -4, -164, -130, -127, 175, -77, -145, -143, -41, -149, -148, -167, -43, -169, -153, -151, -159, -111, -171, -170, -155, -157, -166, -147, -175, -174, -173, -172, -146, -144, -154, -152, -156, -158]), 'NEQ': ([2, 7, 8, 9, 11, 12, 13, 17, 21, 22, 23, 25, 26, 27, 28, 30, 31, 32, 33, 34, 35, 37, 39, 43, 45, 48, 49, 53, 54, 55, 63, 64, 65, 66, 68, 69, 72, 73, 74, 75, 76, 79, 80, 81, 82, 83, 84, 85, 86, 88, 89, 90, 91, 92, 95, 97, 101, 103, 104, 105, 106, 107, 109, 110, 112, 113, 116, 117, 118, 120, 122, 124, 126, 127, 128, 130, 131, 133, 134, 135, 137, 140, 142, 143, 145, 147, 149, 151, 153, 155, 156, 158, 159, 160, 162, 164, 165, 166, 177, 179, 180, 182, 185, 187, 188, 190, 192, 194, 195, 197, 198, 202, 204, 215, 218, 222, 223, 224, 225, 226, 228, 229, 231, 232, 234, 236, 238, 241, 242, 243, 245, 246, 249, 253, 255, 256, 264, 279, 283, 284, 285, 286, 287, 299, 302, 308, 309, 312, 317, 321, 324, 326, 328, 330, 332, 334, 336, 340, 342, 343, 344, 346, 354, 356, 358, 361, 362, 363, 364, 365, 366, 370, 371, 375, 376, 379, 380, 381, 382, 383, 384, 385, 387, 390, 391, 392, 393, 394, 395, 396, 399, 402, 404, 406, 418, 419, 428, 430, 431, 432, 443, 448, 450, 468, 474, 476, 477, 478, 481, 486, 487, 492, 496, 503, 504, 507, 510, 526, 537, 538, 539, 540, 541, 546, 547, 560, 561, 564, 565], [-218, -17, -242, -18, -216, -205, -6, -233, -245, -236, -14, -10, -13, -238, -247, -237, -210, -20, -207, -209, -29, -12, -228, -5, -202, -32, -234, -212, -235, -213, -215, -203, -204, -211, -222, -9, -162, -206, -244, -229, -208, -219, -214, -227, -226, -240, 213, -231, -246, -16, -224, -225, -11, -15, -4, -19, -248, -217, -220, -8, -221, -160, -239, -7, -241, -230, -243, -232, -223, -134, -135, -117, -116, -34, -98, -97, -120, -119, -33, -83, -82, -80, -79, -49, -48, -86, -85, 213, -123, -122, -76, -75, -58, -57, -67, -66, -104, -103, -95, -94, -101, -100, -70, -69, -107, -106, -73, -72, -64, -63, -137, -89, -88, -110, -109, -35, -161, -38, -163, -52, -51, -55, -54, -114, -113, -92, -91, -195, -36, -39, -165, -126, -125, -61, -60, -44, -45, -182, -26, -25, -23, -24, -27, -46, -186, -30, -31, -184, -150, -180, -22, -140, -194, -132, -131, -129, -128, -133, -115, -96, -118, -81, -78, -47, -84, -121, -74, -56, -65, -102, -183, -93, -99, -68, -105, -71, -62, -136, -138, -87, -187, -185, -108, -50, -53, -112, -181, -90, -37, -40, -139, -124, -42, -59, -28, -168, -21, -164, -130, -127, -77, -145, -143, -41, -149, -148, -167, -43, -169, -153, -151, -159, -111, -171, -170, -155, -157, -166, -147, -175, -174, -173, -172, -146, -144, -154, -152, -156, -158]), 'THETA_LOWER': ([0, 1, 6, 15, 18, 38, 47, 52, 70, 78, 87, 94, 100, 108, 121, 125, 129, 132, 136, 139, 141, 144, 148, 154, 157, 161, 163, 167, 172, 173, 174, 175, 176, 178, 181, 186, 189, 193, 196, 200, 203, 206, 207, 208, 209, 210, 211, 212, 213, 217, 227, 230, 233, 237, 244, 248, 251, 254, 265, 266, 272, 280, 281, 282, 290, 301, 311, 315, 316, 322, 325, 329, 331, 335, 345, 355, 398, 407, 415, 420, 421, 422, 423, 424, 426, 427, 433, 444, 451, 459, 460, 461, 462, 464, 466, 471, 475, 479, 482, 483, 488, 498, 499, 500, 511, 512, 513, 527, 528, 529, 530, 535, 536, 557, 562], [66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66]), 'DETERMINANT': ([0, 1, 6, 15, 18, 38, 47, 52, 70, 78, 87, 94, 100, 108, 121, 125, 129, 132, 136, 139, 141, 144, 148, 154, 157, 161, 163, 167, 172, 173, 174, 175, 176, 178, 181, 186, 189, 193, 196, 200, 203, 206, 207, 208, 209, 210, 211, 212, 213, 217, 227, 230, 233, 237, 244, 248, 251, 254, 265, 266, 272, 280, 281, 282, 290, 301, 311, 315, 316, 322, 325, 329, 331, 335, 345, 355, 398, 407, 415, 420, 421, 422, 423, 424, 426, 427, 433, 444, 451, 459, 460, 461, 462, 464, 466, 471, 475, 479, 482, 483, 488, 498, 499, 500, 511, 512, 513, 527, 528, 529, 530, 535, 536, 557, 562], [67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67]), 'IOTA_LOWER': ([0, 1, 6, 15, 18, 38, 47, 52, 70, 78, 87, 94, 100, 108, 121, 125, 129, 132, 136, 139, 141, 144, 148, 154, 157, 161, 163, 167, 172, 173, 174, 175, 176, 178, 181, 186, 189, 193, 196, 200, 203, 206, 207, 208, 209, 210, 211, 212, 213, 217, 227, 230, 233, 237, 244, 248, 251, 254, 265, 266, 272, 280, 281, 282, 290, 301, 311, 315, 316, 322, 325, 329, 331, 335, 345, 355, 398, 407, 415, 420, 421, 422, 423, 424, 426, 427, 433, 444, 451, 459, 460, 461, 462, 464, 466, 471, 475, 479, 482, 483, 488, 498, 499, 500, 511, 512, 513, 527, 528, 529, 530, 535, 536, 557, 562], [68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68]), 'PIPE': ([0, 1, 2, 6, 7, 8, 9, 11, 12, 13, 15, 17, 18, 21, 22, 23, 25, 26, 27, 28, 30, 31, 32, 33, 34, 35, 37, 38, 39, 43, 45, 47, 48, 49, 52, 53, 54, 55, 63, 64, 65, 66, 68, 69, 70, 72, 73, 74, 75, 76, 78, 79, 80, 81, 82, 83, 85, 86, 87, 88, 89, 90, 91, 92, 94, 95, 97, 100, 101, 103, 104, 105, 106, 107, 108, 109, 110, 112, 113, 116, 117, 118, 120, 121, 122, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 139, 140, 141, 142, 143, 144, 145, 147, 148, 149, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 185, 186, 187, 188, 189, 190, 192, 193, 194, 195, 196, 197, 198, 200, 201, 202, 203, 204, 206, 207, 208, 209, 210, 211, 212, 213, 215, 217, 218, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 236, 237, 238, 241, 242, 243, 244, 245, 246, 248, 249, 251, 253, 254, 255, 256, 264, 265, 266, 272, 279, 280, 281, 282, 283, 284, 285, 286, 287, 290, 299, 301, 302, 308, 309, 311, 312, 315, 316, 317, 321, 322, 324, 325, 326, 328, 329, 330, 331, 332, 334, 335, 336, 340, 342, 343, 344, 345, 346, 354, 355, 356, 358, 361, 362, 363, 364, 365, 366, 370, 371, 375, 376, 379, 380, 381, 382, 383, 384, 385, 387, 390, 391, 392, 393, 394, 395, 396, 398, 399, 402, 404, 406, 407, 415, 418, 419, 420, 421, 422, 423, 424, 426, 427, 428, 430, 431, 432, 433, 443, 444, 448, 450, 451, 459, 460, 461, 462, 464, 466, 468, 471, 474, 475, 476, 477, 478, 479, 481, 482, 483, 486, 487, 488, 492, 496, 498, 499, 500, 503, 504, 507, 510, 511, 512, 513, 526, 527, 528, 529, 530, 535, 536, 537, 538, 539, 540, 541, 546, 547, 557, 560, 561, 562, 564, 565], [70, 70, -218, 70, -17, -242, -18, -216, -205, -6, 70, -233, 70, -245, -236, -14, -10, -13, -238, -247, -237, -210, -20, -207, -209, -29, -12, 70, -228, -5, -202, 70, -32, -234, 70, -212, -235, -213, -215, -203, -204, -211, -222, -9, 70, -162, -206, -244, -229, -208, 70, -219, -214, -227, -226, -240, -231, -246, 70, -16, -224, -225, -11, -15, 70, -4, -19, 70, -248, -217, -220, -8, -221, -160, 70, -239, -7, -241, -230, -243, -232, -223, -134, 70, -135, -117, 70, -116, -34, -98, 70, -97, -120, 70, -119, -33, -83, 70, -82, 70, -80, 70, -79, -49, 70, -48, -86, 70, -85, -123, 70, -122, -76, 70, -75, -58, -57, 70, -67, 70, -66, -104, -103, 70, 70, 70, 70, 70, 70, -95, 70, -94, -101, 70, -100, -70, 70, -69, -107, 70, -106, -73, 70, -72, -64, 70, -63, -137, 70, 299, -89, 70, -88, 70, 70, 70, 70, 70, 70, 70, 70, -110, 70, -109, -35, -161, -38, -163, -52, 70, -51, -55, 70, -54, -114, 70, -113, -92, 70, -91, -195, -36, -39, 70, -165, -126, 70, -125, 70, -61, 70, -60, -44, -45, 70, 70, 70, -182, 70, 70, 70, -26, -25, -23, -24, -27, 70, -46, 70, -186, -30, -31, 70, -184, 70, 70, -150, -180, 70, -22, 70, -140, -194, 70, -132, 70, -131, -129, 70, -128, -133, -115, -96, -118, 70, -81, -78, 70, -47, -84, -121, -74, -56, -65, -102, -183, -93, -99, -68, -105, -71, -62, -136, -138, -87, -187, -185, -108, -50, -53, -112, -181, -90, -37, -40, 70, -139, -124, -42, -59, 70, 70, -28, -168, 70, 70, 70, 70, 70, 70, 70, -21, -164, -130, -127, 70, -77, 70, -145, -143, 70, 70, 70, 70, 70, 70, 70, -41, 70, -149, 70, -148, -167, -43, 70, -169, 70, 70, -153, -151, 70, -159, -111, 70, 70, 70, -171, -170, -155, -157, 70, 70, 70, -166, 70, 70, 70, 70, 70, 70, -147, -175, -174, -173, -172, -146, -144, 70, -154, -152, 70, -156, -158]), 'SEC': ([0, 1, 6, 15, 18, 38, 47, 52, 70, 78, 87, 94, 100, 108, 121, 125, 129, 132, 136, 139, 141, 144, 148, 154, 157, 161, 163, 167, 172, 173, 174, 175, 176, 178, 181, 186, 189, 193, 196, 200, 203, 206, 207, 208, 209, 210, 211, 212, 213, 217, 227, 230, 233, 237, 244, 248, 251, 254, 265, 266, 272, 280, 281, 282, 290, 301, 311, 315, 316, 322, 325, 329, 331, 335, 345, 355, 398, 407, 415, 420, 421, 422, 423, 424, 426, 427, 433, 444, 451, 459, 460, 461, 462, 464, 466, 471, 475, 479, 482, 483, 488, 498, 499, 500, 511, 512, 513, 527, 528, 529, 530, 535, 536, 557, 562], [71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71]), 'OMEGA': ([0, 1, 6, 15, 18, 38, 47, 52, 70, 78, 87, 94, 100, 108, 121, 125, 129, 132, 136, 139, 141, 144, 148, 154, 157, 161, 163, 167, 172, 173, 174, 175, 176, 178, 181, 186, 189, 193, 196, 200, 203, 206, 207, 208, 209, 210, 211, 212, 213, 217, 227, 230, 233, 237, 244, 248, 251, 254, 265, 266, 272, 280, 281, 282, 290, 301, 311, 315, 316, 322, 325, 329, 331, 335, 345, 355, 398, 407, 415, 420, 421, 422, 423, 424, 426, 427, 433, 444, 451, 459, 460, 461, 462, 464, 466, 471, 475, 479, 482, 483, 488, 498, 499, 500, 511, 512, 513, 527, 528, 529, 530, 535, 536, 557, 562], [85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85]), 'NU': ([0, 1, 6, 15, 18, 38, 47, 52, 70, 78, 87, 94, 100, 108, 121, 125, 129, 132, 136, 139, 141, 144, 148, 154, 157, 161, 163, 167, 172, 173, 174, 175, 176, 178, 181, 186, 189, 193, 196, 200, 203, 206, 207, 208, 209, 210, 211, 212, 213, 217, 227, 230, 233, 237, 244, 248, 251, 254, 265, 266, 272, 280, 281, 282, 290, 301, 311, 315, 316, 322, 325, 329, 331, 335, 345, 355, 398, 407, 415, 420, 421, 422, 423, 424, 426, 427, 433, 444, 451, 459, 460, 461, 462, 464, 466, 471, 475, 479, 482, 483, 488, 498, 499, 500, 511, 512, 513, 527, 528, 529, 530, 535, 536, 557, 562], [86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86]), 'PSI_LOWER': ([0, 1, 6, 15, 18, 38, 47, 52, 70, 78, 87, 94, 100, 108, 121, 125, 129, 132, 136, 139, 141, 144, 148, 154, 157, 161, 163, 167, 172, 173, 174, 175, 176, 178, 181, 186, 189, 193, 196, 200, 203, 206, 207, 208, 209, 210, 211, 212, 213, 217, 227, 230, 233, 237, 244, 248, 251, 254, 265, 266, 272, 280, 281, 282, 290, 301, 311, 315, 316, 322, 325, 329, 331, 335, 345, 355, 398, 407, 415, 420, 421, 422, 423, 424, 426, 427, 433, 444, 451, 459, 460, 461, 462, 464, 466, 471, 475, 479, 482, 483, 488, 498, 499, 500, 511, 512, 513, 527, 528, 529, 530, 535, 536, 557, 562], [73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73]), 'XI': ([0, 1, 6, 15, 18, 38, 47, 52, 70, 78, 87, 94, 100, 108, 121, 125, 129, 132, 136, 139, 141, 144, 148, 154, 157, 161, 163, 167, 172, 173, 174, 175, 176, 178, 181, 186, 189, 193, 196, 200, 203, 206, 207, 208, 209, 210, 211, 212, 213, 217, 227, 230, 233, 237, 244, 248, 251, 254, 265, 266, 272, 280, 281, 282, 290, 301, 311, 315, 316, 322, 325, 329, 331, 335, 345, 355, 398, 407, 415, 420, 421, 422, 423, 424, 426, 427, 433, 444, 451, 459, 460, 461, 462, 464, 466, 471, 475, 479, 482, 483, 488, 498, 499, 500, 511, 512, 513, 527, 528, 529, 530, 535, 536, 557, 562], [74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74]), 'KAPPA': ([0, 1, 6, 15, 18, 38, 47, 52, 70, 78, 87, 94, 100, 108, 121, 125, 129, 132, 136, 139, 141, 144, 148, 154, 157, 161, 163, 167, 172, 173, 174, 175, 176, 178, 181, 186, 189, 193, 196, 200, 203, 206, 207, 208, 209, 210, 211, 212, 213, 217, 227, 230, 233, 237, 244, 248, 251, 254, 265, 266, 272, 280, 281, 282, 290, 301, 311, 315, 316, 322, 325, 329, 331, 335, 345, 355, 398, 407, 415, 420, 421, 422, 423, 424, 426, 427, 433, 444, 451, 459, 460, 461, 462, 464, 466, 471, 475, 479, 482, 483, 488, 498, 499, 500, 511, 512, 513, 527, 528, 529, 530, 535, 536, 557, 562], [75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75]), 'ZETA_LOWER': ([0, 1, 6, 15, 18, 38, 47, 52, 70, 78, 87, 94, 100, 108, 121, 125, 129, 132, 136, 139, 141, 144, 148, 154, 157, 161, 163, 167, 172, 173, 174, 175, 176, 178, 181, 186, 189, 193, 196, 200, 203, 206, 207, 208, 209, 210, 211, 212, 213, 217, 227, 230, 233, 237, 244, 248, 251, 254, 265, 266, 272, 280, 281, 282, 290, 301, 311, 315, 316, 322, 325, 329, 331, 335, 345, 355, 398, 407, 415, 420, 421, 422, 423, 424, 426, 427, 433, 444, 451, 459, 460, 461, 462, 464, 466, 471, 475, 479, 482, 483, 488, 498, 499, 500, 511, 512, 513, 527, 528, 529, 530, 535, 536, 557, 562], [76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76]), 'PERCENT': ([95, 110, 324, 429], [224, 243, 396, 224]), 'RHO_LOWER': ([0, 1, 6, 15, 18, 38, 47, 52, 70, 78, 87, 94, 100, 108, 121, 125, 129, 132, 136, 139, 141, 144, 148, 154, 157, 161, 163, 167, 172, 173, 174, 175, 176, 178, 181, 186, 189, 193, 196, 200, 203, 206, 207, 208, 209, 210, 211, 212, 213, 217, 227, 230, 233, 237, 244, 248, 251, 254, 265, 266, 272, 280, 281, 282, 290, 301, 311, 315, 316, 322, 325, 329, 331, 335, 345, 355, 398, 407, 415, 420, 421, 422, 423, 424, 426, 427, 433, 444, 451, 459, 460, 461, 462, 464, 466, 471, 475, 479, 482, 483, 488, 498, 499, 500, 511, 512, 513, 527, 528, 529, 530, 535, 536, 557, 562], [79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79]), 'TAU_LOWER': ([0, 1, 6, 15, 18, 38, 47, 52, 70, 78, 87, 94, 100, 108, 121, 125, 129, 132, 136, 139, 141, 144, 148, 154, 157, 161, 163, 167, 172, 173, 174, 175, 176, 178, 181, 186, 189, 193, 196, 200, 203, 206, 207, 208, 209, 210, 211, 212, 213, 217, 227, 230, 233, 237, 244, 248, 251, 254, 265, 266, 272, 280, 281, 282, 290, 301, 311, 315, 316, 322, 325, 329, 331, 335, 345, 355, 398, 407, 415, 420, 421, 422, 423, 424, 426, 427, 433, 444, 451, 459, 460, 461, 462, 464, 466, 471, 475, 479, 482, 483, 488, 498, 499, 500, 511, 512, 513, 527, 528, 529, 530, 535, 536, 557, 562], [80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80]), 'BETA': ([0, 1, 6, 15, 18, 38, 47, 52, 70, 78, 87, 94, 100, 108, 121, 125, 129, 132, 136, 139, 141, 144, 148, 154, 157, 161, 163, 167, 172, 173, 174, 175, 176, 178, 181, 186, 189, 193, 196, 200, 203, 206, 207, 208, 209, 210, 211, 212, 213, 217, 227, 230, 233, 237, 244, 248, 251, 254, 265, 266, 272, 280, 281, 282, 290, 301, 311, 315, 316, 322, 325, 329, 331, 335, 345, 355, 398, 407, 415, 420, 421, 422, 423, 424, 426, 427, 433, 444, 451, 459, 460, 461, 462, 464, 466, 471, 475, 479, 482, 483, 488, 498, 499, 500, 511, 512, 513, 527, 528, 529, 530, 535, 536, 557, 562], [81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81]), 'PSI': ([0, 1, 6, 15, 18, 38, 47, 52, 70, 78, 87, 94, 100, 108, 121, 125, 129, 132, 136, 139, 141, 144, 148, 154, 157, 161, 163, 167, 172, 173, 174, 175, 176, 178, 181, 186, 189, 193, 196, 200, 203, 206, 207, 208, 209, 210, 211, 212, 213, 217, 227, 230, 233, 237, 244, 248, 251, 254, 265, 266, 272, 280, 281, 282, 290, 301, 311, 315, 316, 322, 325, 329, 331, 335, 345, 355, 398, 407, 415, 420, 421, 422, 423, 424, 426, 427, 433, 444, 451, 459, 460, 461, 462, 464, 466, 471, 475, 479, 482, 483, 488, 498, 499, 500, 511, 512, 513, 527, 528, 529, 530, 535, 536, 557, 562], [49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49]), 'PI_UPPER': ([0, 1, 6, 15, 18, 38, 47, 52, 70, 78, 87, 94, 100, 108, 121, 125, 129, 132, 136, 139, 141, 144, 148, 154, 157, 161, 163, 167, 172, 173, 174, 175, 176, 178, 181, 186, 189, 193, 196, 200, 203, 206, 207, 208, 209, 210, 211, 212, 213, 217, 227, 230, 233, 237, 244, 248, 251, 254, 265, 266, 272, 280, 281, 282, 290, 301, 311, 315, 316, 322, 325, 329, 331, 335, 345, 355, 398, 407, 415, 420, 421, 422, 423, 424, 426, 427, 433, 444, 451, 459, 460, 461, 462, 464, 466, 471, 475, 479, 482, 483, 488, 498, 499, 500, 511, 512, 513, 527, 528, 529, 530, 535, 536, 557, 562], [82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82]), 'THETA': ([0, 1, 6, 15, 18, 38, 47, 52, 70, 78, 87, 94, 100, 108, 121, 125, 129, 132, 136, 139, 141, 144, 148, 154, 157, 161, 163, 167, 172, 173, 174, 175, 176, 178, 181, 186, 189, 193, 196, 200, 203, 206, 207, 208, 209, 210, 211, 212, 213, 217, 227, 230, 233, 237, 244, 248, 251, 254, 265, 266, 272, 280, 281, 282, 290, 301, 311, 315, 316, 322, 325, 329, 331, 335, 345, 355, 398, 407, 415, 420, 421, 422, 423, 424, 426, 427, 433, 444, 451, 459, 460, 461, 462, 464, 466, 471, 475, 479, 482, 483, 488, 498, 499, 500, 511, 512, 513, 527, 528, 529, 530, 535, 536, 557, 562], [83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83]), 'DIFFERENTIAL': ([2, 7, 8, 9, 11, 12, 13, 17, 21, 22, 23, 25, 26, 27, 28, 30, 31, 32, 33, 34, 35, 37, 39, 43, 45, 48, 49, 53, 54, 55, 63, 64, 65, 66, 68, 69, 72, 73, 74, 75, 76, 79, 80, 81, 82, 83, 85, 86, 88, 89, 90, 91, 92, 95, 97, 101, 103, 104, 105, 106, 107, 109, 110, 112, 113, 116, 117, 118, 120, 122, 124, 126, 127, 128, 130, 131, 133, 134, 135, 137, 140, 142, 143, 145, 147, 149, 153, 155, 156, 158, 159, 160, 162, 164, 165, 166, 177, 179, 180, 182, 185, 187, 188, 190, 192, 194, 195, 197, 198, 202, 204, 215, 218, 221, 222, 223, 224, 225, 226, 228, 229, 231, 232, 234, 236, 238, 241, 242, 243, 245, 246, 249, 253, 255, 256, 264, 279, 283, 284, 285, 286, 287, 299, 302, 308, 309, 312, 317, 321, 324, 326, 328, 330, 332, 334, 336, 340, 342, 343, 344, 346, 354, 356, 358, 361, 362, 363, 364, 365, 366, 370, 371, 375, 376, 379, 380, 381, 382, 383, 384, 385, 387, 390, 391, 392, 393, 394, 395, 396, 399, 402, 404, 406, 411, 418, 419, 428, 430, 431, 432, 437, 443, 448, 450, 452, 454, 468, 474, 476, 477, 478, 481, 486, 487, 492, 496, 503, 504, 506, 507, 510, 519, 525, 526, 537, 538, 539, 540, 541, 546, 547, 560, 561, 564, 565], [-218, -17, -242, -18, -216, -205, -6, -233, -245, -236, -14, -10, -13, -238, -247, -237, -210, -20, -207, -209, -29, -12, -228, -5, -202, -32, -234, -212, -235, -213, -215, -203, -204, -211, -222, -9, -162, -206, -244, -229, -208, -219, -214, -227, -226, -240, -231, -246, -16, -224, -225, -11, -15, -4, -19, -248, -217, -220, -8, -221, -160, -239, -7, -241, -230, -243, -232, -223, -134, -135, -117, -116, -34, -98, -97, -120, -119, -33, -83, -82, -80, -79, -49, -48, -86, -85, -123, -122, -76, -75, -58, -57, -67, -66, -104, -103, -95, -94, -101, -100, -70, -69, -107, -106, -73, -72, -64, -63, -137, -89, -88, -110, -109, 317, -35, -161, -38, -163, -52, -51, -55, -54, -114, -113, -92, -91, -195, -36, -39, -165, -126, -125, -61, -60, -44, -45, -182, -26, -25, -23, -24, -27, -46, -186, -30, -31, -184, -150, -180, -22, -140, -194, -132, -131, -129, -128, -133, -115, -96, -118, -81, -78, -47, -84, -121, -74, -56, -65, -102, -183, -93, -99, -68, -105, -71, -62, -136, -138, -87, -187, -185, -108, -50, -53, -112, -181, -90, -37, -40, -139, -124, -42, -59, 438, -28, -168, -21, -164, -130, -127, 463, -77, -145, -143, 474, 476, -41, -149, -148, -167, -43, -169, -153, -151, -159, -111, -171, -170, 520, -155, -157, 531, 537, -166, -147, -175, -174, -173, -172, -146, -144, -154, -152, -156, -158]), 'UNDERLINE': ([4, 33, 57, 60, 93, 94], [123, 146, 184, 191, 216, 220]), 'BEGIN_BMATRIX': ([0, 1, 6, 15, 18, 38, 47, 52, 67, 70, 78, 87, 94, 100, 108, 121, 125, 129, 132, 136, 139, 141, 144, 148, 154, 157, 161, 163, 167, 172, 173, 174, 175, 176, 178, 181, 186, 189, 193, 196, 199, 200, 203, 206, 207, 208, 209, 210, 211, 212, 213, 217, 227, 230, 233, 237, 244, 248, 251, 254, 265, 266, 272, 280, 281, 282, 290, 301, 311, 315, 316, 322, 325, 329, 331, 335, 345, 355, 398, 407, 415, 420, 421, 422, 423, 424, 426, 427, 433, 444, 451, 459, 460, 461, 462, 464, 466, 471, 475, 479, 482, 483, 488, 498, 499, 500, 511, 512, 513, 527, 528, 529, 530, 535, 536, 557, 562], [87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, 87]), 'CHOOSE': ([2, 7, 8, 9, 11, 12, 13, 17, 21, 22, 23, 25, 26, 27, 28, 30, 31, 32, 33, 34, 35, 37, 39, 43, 45, 48, 49, 53, 54, 55, 63, 64, 65, 66, 68, 69, 72, 73, 74, 75, 76, 79, 80, 81, 82, 83, 85, 86, 88, 89, 90, 91, 92, 95, 97, 101, 103, 104, 105, 106, 107, 109, 110, 112, 113, 116, 117, 118, 120, 122, 124, 126, 127, 128, 130, 131, 133, 134, 135, 137, 140, 142, 143, 145, 147, 149, 153, 155, 156, 158, 159, 160, 162, 164, 165, 166, 177, 179, 180, 182, 183, 185, 187, 188, 190, 192, 194, 195, 197, 198, 202, 204, 215, 218, 222, 223, 224, 225, 226, 228, 229, 231, 232, 234, 236, 238, 241, 242, 243, 245, 246, 249, 253, 255, 256, 264, 279, 283, 284, 285, 286, 287, 299, 302, 308, 309, 312, 317, 321, 324, 326, 328, 330, 332, 334, 336, 340, 342, 343, 344, 346, 354, 356, 358, 361, 362, 363, 364, 365, 366, 370, 371, 375, 376, 379, 380, 381, 382, 383, 384, 385, 387, 390, 391, 392, 393, 394, 395, 396, 399, 402, 404, 406, 418, 419, 428, 430, 431, 432, 443, 448, 450, 468, 474, 476, 477, 478, 481, 486, 487, 492, 496, 503, 504, 507, 510, 526, 537, 538, 539, 540, 541, 546, 547, 560, 561, 564, 565], [-218, -17, -242, -18, -216, -205, -6, -233, -245, -236, -14, -10, -13, -238, -247, -237, -210, -20, -207, -209, -29, -12, -228, -5, -202, -32, -234, -212, -235, -213, -215, -203, -204, -211, -222, -9, -162, -206, -244, -229, -208, -219, -214, -227, -226, -240, -231, -246, -16, -224, -225, -11, -15, -4, -19, -248, -217, -220, -8, -221, -160, -239, -7, -241, -230, -243, -232, -223, -134, -135, -117, -116, -34, -98, -97, -120, -119, -33, -83, -82, -80, -79, -49, -48, -86, -85, -123, -122, -76, -75, -58, -57, -67, -66, -104, -103, -95, -94, -101, -100, 290, -70, -69, -107, -106, -73, -72, -64, -63, -137, -89, -88, -110, -109, -35, -161, -38, -163, -52, -51, -55, -54, -114, -113, -92, -91, -195, -36, -39, -165, -126, -125, -61, -60, -44, -45, -182, -26, -25, -23, -24, -27, -46, -186, -30, -31, -184, -150, -180, -22, -140, -194, -132, -131, -129, -128, -133, -115, -96, -118, -81, -78, -47, -84, -121, -74, -56, -65, -102, -183, -93, -99, -68, -105, -71, -62, -136, -138, -87, -187, -185, -108, -50, -53, -112, -181, -90, -37, -40, -139, -124, -42, -59, -28, -168, -21, -164, -130, -127, -77, -145, -143, -41, -149, -148, -167, -43, -169, -153, -151, -159, -111, -171, -170, -155, -157, -166, -147, -175, -174, -173, -172, -146, -144, -154, -152, -156, -158]), 'GAMMA_LOWER': ([0, 1, 6, 15, 18, 38, 47, 52, 70, 78, 87, 94, 100, 108, 121, 125, 129, 132, 136, 139, 141, 144, 148, 154, 157, 161, 163, 167, 172, 173, 174, 175, 176, 178, 181, 186, 189, 193, 196, 200, 203, 206, 207, 208, 209, 210, 211, 212, 213, 217, 227, 230, 233, 237, 244, 248, 251, 254, 265, 266, 272, 280, 281, 282, 290, 301, 311, 315, 316, 322, 325, 329, 331, 335, 345, 355, 398, 407, 415, 420, 421, 422, 423, 424, 426, 427, 433, 444, 451, 459, 460, 461, 462, 464, 466, 471, 475, 479, 482, 483, 488, 498, 499, 500, 511, 512, 513, 527, 528, 529, 530, 535, 536, 557, 562], [89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89]), 'END_CASE': ([2, 7, 8, 9, 11, 12, 13, 17, 21, 22, 23, 25, 26, 27, 28, 30, 31, 32, 33, 34, 35, 37, 39, 43, 45, 48, 49, 53, 54, 55, 63, 64, 65, 66, 68, 69, 72, 73, 74, 75, 76, 79, 80, 81, 82, 83, 85, 86, 88, 89, 90, 91, 92, 95, 97, 101, 103, 104, 105, 106, 107, 109, 110, 112, 113, 116, 117, 118, 120, 122, 124, 126, 127, 128, 130, 131, 133, 134, 135, 137, 140, 142, 143, 145, 147, 149, 150, 152, 153, 155, 156, 158, 159, 160, 162, 164, 165, 166, 177, 179, 180, 182, 185, 187, 188, 190, 192, 194, 195, 197, 198, 202, 204, 215, 218, 222, 223, 224, 225, 226, 228, 229, 231, 232, 234, 236, 238, 241, 242, 243, 245, 246, 249, 253, 255, 256, 264, 272, 279, 283, 284, 285, 286, 287, 299, 302, 303, 304, 305, 306, 307, 308, 309, 310, 312, 317, 321, 324, 326, 328, 330, 332, 334, 336, 340, 342, 343, 344, 346, 354, 356, 358, 359, 361, 362, 363, 364, 365, 366, 370, 371, 375, 376, 379, 380, 381, 382, 383, 384, 385, 387, 390, 391, 392, 393, 394, 395, 396, 399, 402, 404, 406, 418, 419, 428, 430, 431, 432, 443, 448, 450, 468, 474, 476, 477, 478, 481, 486, 487, 492, 496, 503, 504, 507, 510, 526, 537, 538, 539, 540, 541, 546, 547, 560, 561, 564, 565], [-218, -17, -242, -18, -216, -205, -6, -233, -245, -236, -14, -10, -13, -238, -247, -237, -210, -20, -207, -209, -29, -12, -228, -5, -202, -32, -234, -212, -235, -213, -215, -203, -204, -211, -222, -9, -162, -206, -244, -229, -208, -219, -214, -227, -226, -240, -231, -246, -16, -224, -225, -11, -15, -4, -19, -248, -217, -220, -8, -221, -160, -239, -7, -241, -230, -243, -232, -223, -134, -135, -117, -116, -34, -98, -97, -120, -119, -33, -83, -82, -80, -79, -49, -48, -86, -85, -179, 273, -123, -122, -76, -75, -58, -57, -67, -66, -104, -103, -95, -94, -101, -100, -70, -69, -107, -106, -73, -72, -64, -63, -137, -89, -88, -110, -109, -35, -161, -38, -163, -52, -51, -55, -54, -114, -113, -92, -91, -195, -36, -39, -165, -126, -125, -61, -60, -44, -45, 360, -182, -26, -25, -23, -24, -27, -46, -186, -199, -196, -201, -198, -200, -30, -31, -197, -184, -150, -180, -22, -140, -194, -132, -131, -129, -128, -133, -115, -96, -118, -81, -78, -47, -84, -178, -121, -74, -56, -65, -102, -183, -93, -99, -68, -105, -71, -62, -136, -138, -87, -187, -185, -108, -50, -53, -112, -181, -90, -37, -40, -139, -124, -42, -59, -28, -168, -21, -164, -130, -127, -77, -145, -143, -41, -149, -148, -167, -43, -169, -153, -151, -159, -111, -171, -170, -155, -157, -166, -147, -175, -174, -173, -172, -146, -144, -154, -152, -156, -158]), 'MU_LOWER': ([0, 1, 6, 15, 18, 38, 47, 52, 70, 78, 87, 94, 100, 108, 121, 125, 129, 132, 136, 139, 141, 144, 148, 154, 157, 161, 163, 167, 172, 173, 174, 175, 176, 178, 181, 186, 189, 193, 196, 200, 203, 206, 207, 208, 209, 210, 211, 212, 213, 217, 227, 230, 233, 237, 244, 248, 251, 254, 265, 266, 272, 280, 281, 282, 290, 301, 311, 315, 316, 322, 325, 329, 331, 335, 345, 355, 398, 407, 415, 420, 421, 422, 423, 424, 426, 427, 433, 444, 451, 459, 460, 461, 462, 464, 466, 471, 475, 479, 482, 483, 488, 498, 499, 500, 511, 512, 513, 527, 528, 529, 530, 535, 536, 557, 562], [90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90]), 'DIVIDE': ([2, 7, 8, 9, 11, 12, 13, 17, 21, 22, 23, 25, 26, 27, 28, 30, 31, 32, 33, 34, 35, 37, 39, 43, 45, 48, 49, 53, 54, 55, 63, 64, 65, 66, 68, 69, 72, 73, 74, 75, 76, 79, 80, 81, 82, 83, 85, 86, 88, 89, 90, 91, 92, 95, 97, 101, 103, 104, 105, 106, 107, 109, 110, 112, 113, 116, 117, 118, 120, 122, 124, 126, 127, 128, 130, 131, 133, 134, 135, 137, 140, 142, 143, 145, 147, 149, 153, 155, 156, 158, 159, 160, 162, 164, 165, 166, 177, 179, 180, 182, 185, 187, 188, 190, 192, 194, 195, 197, 198, 202, 204, 215, 218, 222, 223, 224, 225, 226, 228, 229, 231, 232, 234, 236, 238, 241, 242, 243, 245, 246, 249, 253, 255, 256, 264, 279, 283, 284, 285, 286, 287, 299, 302, 308, 309, 312, 317, 321, 324, 326, 328, 330, 332, 334, 336, 340, 342, 343, 344, 346, 354, 356, 358, 361, 362, 363, 364, 365, 366, 370, 371, 375, 376, 379, 380, 381, 382, 383, 384, 385, 387, 390, 391, 392, 393, 394, 395, 396, 399, 402, 404, 406, 418, 419, 428, 429, 430, 431, 432, 434, 443, 448, 450, 468, 474, 476, 477, 478, 481, 486, 487, 492, 496, 503, 504, 507, 510, 526, 537, 538, 539, 540, 541, 546, 547, 560, 561, 564, 565], [-218, -17, -242, -18, -216, -205, -6, -233, -245, -236, -14, -10, -13, -238, -247, -237, -210, -20, -207, -209, -29, -12, -228, -5, -202, 172, -234, -212, -235, -213, -215, -203, -204, -211, -222, -9, -162, -206, -244, -229, -208, -219, -214, -227, -226, -240, -231, -246, -16, -224, -225, -11, -15, -4, -19, -248, -217, -220, -8, -221, -160, -239, -7, -241, -230, -243, -232, -223, -134, -135, -117, -116, -34, -98, -97, -120, -119, -33, -83, -82, -80, -79, -49, -48, -86, -85, -123, -122, -76, -75, -58, -57, -67, -66, -104, -103, -95, -94, -101, -100, -70, -69, -107, -106, -73, -72, -64, -63, -137, -89, -88, -110, -109, -35, -161, -38, -163, -52, -51, -55, -54, -114, -113, -92, -91, -195, -36, -39, -165, -126, -125, -61, -60, -44, -45, -182, -26, -25, -23, -24, -27, -46, -186, 172, 172, -184, -150, -180, -22, -140, -194, -132, -131, -129, -128, -133, -115, -96, -118, -81, -78, -47, -84, -121, -74, -56, -65, -102, -183, -93, -99, -68, -105, -71, -62, -136, -138, -87, -187, -185, -108, -50, -53, -112, -181, -90, -37, -40, -139, -124, -42, -59, -28, -168, -21, -4, -164, -130, -127, 172, -77, -145, -143, -41, -149, -148, -167, -43, -169, -153, -151, -159, -111, -171, -170, -155, -157, -166, -147, -175, -174, -173, -172, -146, -144, -154, -152, -156, -158]), 'LOG': ([0, 1, 6, 15, 18, 38, 47, 52, 70, 78, 87, 94, 100, 108, 121, 125, 129, 132, 136, 139, 141, 144, 148, 154, 157, 161, 163, 167, 172, 173, 174, 175, 176, 178, 181, 186, 189, 193, 196, 200, 203, 206, 207, 208, 209, 210, 211, 212, 213, 217, 227, 230, 233, 237, 244, 248, 251, 254, 265, 266, 272, 280, 281, 282, 290, 301, 311, 315, 316, 322, 325, 329, 331, 335, 345, 355, 398, 407, 415, 420, 421, 422, 423, 424, 426, 427, 433, 444, 451, 459, 460, 461, 462, 464, 466, 471, 475, 479, 482, 483, 488, 498, 499, 500, 511, 512, 513, 527, 528, 529, 530, 535, 536, 557, 562], [93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93]), 'INTEGRAL': ([0, 1, 6, 15, 18, 38, 47, 52, 70, 78, 87, 94, 100, 108, 121, 125, 129, 132, 136, 139, 141, 144, 148, 154, 157, 161, 163, 167, 172, 173, 174, 175, 176, 178, 181, 186, 189, 193, 196, 200, 203, 206, 207, 208, 209, 210, 211, 212, 213, 217, 227, 230, 233, 237, 244, 248, 251, 254, 265, 266, 272, 280, 281, 282, 290, 301, 311, 315, 316, 322, 325, 329, 331, 335, 345, 355, 398, 407, 415, 420, 421, 422, 423, 424, 426, 427, 433, 444, 451, 459, 460, 461, 462, 464, 466, 471, 475, 479, 482, 483, 488, 498, 499, 500, 511, 512, 513, 527, 528, 529, 530, 535, 536, 557, 562], [94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94]), 'NUMBER': ([0, 1, 3, 5, 6, 10, 14, 15, 16, 18, 20, 24, 36, 38, 40, 41, 42, 44, 46, 47, 50, 51, 52, 58, 59, 61, 62, 70, 71, 78, 87, 93, 94, 96, 98, 99, 100, 102, 108, 111, 115, 121, 125, 129, 132, 136, 139, 141, 144, 148, 154, 157, 161, 163, 167, 172, 173, 174, 175, 176, 178, 181, 186, 189, 193, 196, 200, 203, 206, 207, 208, 209, 210, 211, 212, 213, 217, 227, 230, 233, 237, 244, 247, 248, 250, 251, 252, 254, 265, 266, 270, 272, 280, 281, 282, 290, 301, 311, 313, 315, 316, 322, 325, 329, 331, 335, 345, 355, 398, 407, 409, 413, 415, 420, 421, 422, 423, 424, 426, 427, 433, 444, 451, 459, 460, 461, 462, 464, 466, 471, 475, 479, 482, 483, 488, 498, 499, 500, 511, 512, 513, 527, 528, 529, 530, 535, 536, 543, 548, 550, 555, 557, 562], [95, 95, 120, 124, 95, 128, 131, 95, 135, 95, 140, 143, 147, 95, 153, 156, 159, 162, 165, 95, 177, 180, 95, 185, 188, 192, 195, 95, 202, 95, 95, 215, 95, 226, 229, 232, 95, 236, 95, 246, 253, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 330, 95, 334, 95, 338, 95, 95, 95, 357, 95, 95, 95, 95, 95, 95, 95, 386, 95, 95, 95, 95, 95, 95, 95, 95, 95, 429, 95, 436, 440, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 549, 552, 554, 559, 95, 95]), 'RFLOOR': ([2, 7, 8, 9, 11, 12, 13, 17, 21, 22, 23, 25, 26, 27, 28, 30, 31, 32, 33, 34, 35, 37, 39, 43, 45, 48, 49, 53, 54, 55, 63, 64, 65, 66, 68, 69, 72, 73, 74, 75, 76, 79, 80, 81, 82, 83, 85, 86, 88, 89, 90, 91, 92, 95, 97, 101, 103, 104, 105, 106, 107, 109, 110, 112, 113, 116, 117, 118, 119, 120, 122, 124, 126, 127, 128, 130, 131, 133, 134, 135, 137, 140, 142, 143, 145, 147, 149, 153, 155, 156, 158, 159, 160, 162, 164, 165, 166, 177, 179, 180, 182, 185, 187, 188, 190, 192, 194, 195, 197, 198, 202, 204, 215, 218, 222, 223, 224, 225, 226, 228, 229, 231, 232, 234, 236, 238, 241, 242, 243, 245, 246, 249, 253, 255, 256, 264, 279, 283, 284, 285, 286, 287, 299, 302, 308, 309, 312, 317, 321, 324, 326, 328, 330, 332, 334, 336, 340, 342, 343, 344, 346, 354, 356, 358, 361, 362, 363, 364, 365, 366, 370, 371, 375, 376, 379, 380, 381, 382, 383, 384, 385, 387, 390, 391, 392, 393, 394, 395, 396, 399, 402, 404, 406, 418, 419, 428, 430, 431, 432, 443, 448, 450, 468, 474, 476, 477, 478, 481, 486, 487, 492, 496, 503, 504, 507, 510, 526, 537, 538, 539, 540, 541, 546, 547, 560, 561, 564, 565], [-218, -17, -242, -18, -216, -205, -6, -233, -245, -236, -14, -10, -13, -238, -247, -237, -210, -20, -207, -209, -29, -12, -228, -5, -202, -32, -234, -212, -235, -213, -215, -203, -204, -211, -222, -9, -162, -206, -244, -229, -208, -219, -214, -227, -226, -240, -231, -246, -16, -224, -225, -11, -15, -4, -19, -248, -217, -220, -8, -221, -160, -239, -7, -241, -230, -243, -232, -223, 256, -134, -135, -117, -116, -34, -98, -97, -120, -119, -33, -83, -82, -80, -79, -49, -48, -86, -85, -123, -122, -76, -75, -58, -57, -67, -66, -104, -103, -95, -94, -101, -100, -70, -69, -107, -106, -73, -72, -64, -63, -137, -89, -88, -110, -109, -35, -161, -38, -163, -52, -51, -55, -54, -114, -113, -92, -91, -195, -36, -39, -165, -126, -125, -61, -60, -44, -45, -182, -26, -25, -23, -24, -27, -46, -186, -30, -31, -184, -150, -180, -22, -140, -194, -132, -131, -129, -128, -133, -115, -96, -118, -81, -78, -47, -84, -121, -74, -56, -65, -102, -183, -93, -99, -68, -105, -71, -62, -136, -138, -87, -187, -185, -108, -50, -53, -112, -181, -90, -37, -40, -139, -124, -42, -59, -28, -168, -21, -164, -130, -127, -77, -145, -143, -41, -149, -148, -167, -43, -169, -153, -151, -159, -111, -171, -170, -155, -157, -166, -147, -175, -174, -173, -172, -146, -144, -154, -152, -156, -158]), 'SINH': ([0, 1, 6, 15, 18, 38, 47, 52, 70, 78, 87, 94, 100, 108, 121, 125, 129, 132, 136, 139, 141, 144, 148, 154, 157, 161, 163, 167, 172, 173, 174, 175, 176, 178, 181, 186, 189, 193, 196, 200, 203, 206, 207, 208, 209, 210, 211, 212, 213, 217, 227, 230, 233, 237, 244, 248, 251, 254, 265, 266, 272, 280, 281, 282, 290, 301, 311, 315, 316, 322, 325, 329, 331, 335, 345, 355, 398, 407, 415, 420, 421, 422, 423, 424, 426, 427, 433, 444, 451, 459, 460, 461, 462, 464, 466, 471, 475, 479, 482, 483, 488, 498, 499, 500, 511, 512, 513, 527, 528, 529, 530, 535, 536, 557, 562], [96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96]), 'D': ([139], [265]), 'UPSILON_LOWER': ([0, 1, 6, 15, 18, 38, 47, 52, 70, 78, 87, 94, 100, 108, 121, 125, 129, 132, 136, 139, 141, 144, 148, 154, 157, 161, 163, 167, 172, 173, 174, 175, 176, 178, 181, 186, 189, 193, 196, 200, 203, 206, 207, 208, 209, 210, 211, 212, 213, 217, 227, 230, 233, 237, 244, 248, 251, 254, 265, 266, 272, 280, 281, 282, 290, 301, 311, 315, 316, 322, 325, 329, 331, 335, 345, 355, 398, 407, 415, 420, 421, 422, 423, 424, 426, 427, 433, 444, 451, 459, 460, 461, 462, 464, 466, 471, 475, 479, 482, 483, 488, 498, 499, 500, 511, 512, 513, 527, 528, 529, 530, 535, 536, 557, 562], [106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106]), 'LE': ([2, 7, 8, 9, 11, 12, 13, 17, 21, 22, 23, 25, 26, 27, 28, 30, 31, 32, 33, 34, 35, 37, 39, 43, 45, 48, 49, 53, 54, 55, 63, 64, 65, 66, 68, 69, 72, 73, 74, 75, 76, 79, 80, 81, 82, 83, 84, 85, 86, 88, 89, 90, 91, 92, 95, 97, 101, 103, 104, 105, 106, 107, 109, 110, 112, 113, 116, 117, 118, 120, 122, 124, 126, 127, 128, 130, 131, 133, 134, 135, 137, 140, 142, 143, 145, 147, 149, 151, 153, 155, 156, 158, 159, 160, 162, 164, 165, 166, 177, 179, 180, 182, 185, 187, 188, 190, 192, 194, 195, 197, 198, 202, 204, 215, 218, 222, 223, 224, 225, 226, 228, 229, 231, 232, 234, 236, 238, 241, 242, 243, 245, 246, 249, 253, 255, 256, 264, 279, 283, 284, 285, 286, 287, 299, 302, 308, 309, 312, 317, 321, 324, 326, 328, 330, 332, 334, 336, 340, 342, 343, 344, 346, 354, 356, 358, 361, 362, 363, 364, 365, 366, 370, 371, 375, 376, 379, 380, 381, 382, 383, 384, 385, 387, 390, 391, 392, 393, 394, 395, 396, 399, 402, 404, 406, 418, 419, 428, 430, 431, 432, 443, 448, 450, 468, 474, 476, 477, 478, 481, 486, 487, 492, 496, 503, 504, 507, 510, 526, 537, 538, 539, 540, 541, 546, 547, 560, 561, 564, 565], [-218, -17, -242, -18, -216, -205, -6, -233, -245, -236, -14, -10, -13, -238, -247, -237, -210, -20, -207, -209, -29, -12, -228, -5, -202, -32, -234, -212, -235, -213, -215, -203, -204, -211, -222, -9, -162, -206, -244, -229, -208, -219, -214, -227, -226, -240, 206, -231, -246, -16, -224, -225, -11, -15, -4, -19, -248, -217, -220, -8, -221, -160, -239, -7, -241, -230, -243, -232, -223, -134, -135, -117, -116, -34, -98, -97, -120, -119, -33, -83, -82, -80, -79, -49, -48, -86, -85, 206, -123, -122, -76, -75, -58, -57, -67, -66, -104, -103, -95, -94, -101, -100, -70, -69, -107, -106, -73, -72, -64, -63, -137, -89, -88, -110, -109, -35, -161, -38, -163, -52, -51, -55, -54, -114, -113, -92, -91, -195, -36, -39, -165, -126, -125, -61, -60, -44, -45, -182, -26, -25, -23, -24, -27, -46, -186, -30, -31, -184, -150, -180, -22, -140, -194, -132, -131, -129, -128, -133, -115, -96, -118, -81, -78, -47, -84, -121, -74, -56, -65, -102, -183, -93, -99, -68, -105, -71, -62, -136, -138, -87, -187, -185, -108, -50, -53, -112, -181, -90, -37, -40, -139, -124, -42, -59, -28, -168, -21, -164, -130, -127, -77, -145, -143, -41, -149, -148, -167, -43, -169, -153, -151, -159, -111, -171, -170, -155, -157, -166, -147, -175, -174, -173, -172, -146, -144, -154, -152, -156, -158]), 'LN': ([0, 1, 6, 15, 18, 38, 47, 52, 70, 78, 87, 94, 100, 108, 121, 125, 129, 132, 136, 139, 141, 144, 148, 154, 157, 161, 163, 167, 172, 173, 174, 175, 176, 178, 181, 186, 189, 193, 196, 200, 203, 206, 207, 208, 209, 210, 211, 212, 213, 217, 227, 230, 233, 237, 244, 248, 251, 254, 265, 266, 272, 280, 281, 282, 290, 301, 311, 315, 316, 322, 325, 329, 331, 335, 345, 355, 398, 407, 415, 420, 421, 422, 423, 424, 426, 427, 433, 444, 451, 459, 460, 461, 462, 464, 466, 471, 475, 479, 482, 483, 488, 498, 499, 500, 511, 512, 513, 527, 528, 529, 530, 535, 536, 557, 562], [99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99]), 'SIGMA': ([0, 1, 6, 15, 18, 38, 47, 52, 70, 78, 87, 94, 100, 108, 121, 125, 129, 132, 136, 139, 141, 144, 148, 154, 157, 161, 163, 167, 172, 173, 174, 175, 176, 178, 181, 186, 189, 193, 196, 200, 203, 206, 207, 208, 209, 210, 211, 212, 213, 217, 227, 230, 233, 237, 244, 248, 251, 254, 265, 266, 272, 280, 281, 282, 290, 301, 311, 315, 316, 322, 325, 329, 331, 335, 345, 355, 398, 407, 415, 420, 421, 422, 423, 424, 426, 427, 433, 444, 451, 459, 460, 461, 462, 464, 466, 471, 475, 479, 482, 483, 488, 498, 499, 500, 511, 512, 513, 527, 528, 529, 530, 535, 536, 557, 562], [30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30]), 'TO': ([341], [407]), 'PHI_LOWER': ([0, 1, 6, 15, 18, 38, 47, 52, 70, 78, 87, 94, 100, 108, 121, 125, 129, 132, 136, 139, 141, 144, 148, 154, 157, 161, 163, 167, 172, 173, 174, 175, 176, 178, 181, 186, 189, 193, 196, 200, 203, 206, 207, 208, 209, 210, 211, 212, 213, 217, 227, 230, 233, 237, 244, 248, 251, 254, 265, 266, 272, 280, 281, 282, 290, 301, 311, 315, 316, 322, 325, 329, 331, 335, 345, 355, 398, 407, 415, 420, 421, 422, 423, 424, 426, 427, 433, 444, 451, 459, 460, 461, 462, 464, 466, 471, 475, 479, 482, 483, 488, 498, 499, 500, 511, 512, 513, 527, 528, 529, 530, 535, 536, 557, 562], [12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12]), 'COMMA': ([2, 7, 8, 9, 11, 12, 13, 17, 21, 22, 23, 25, 26, 27, 28, 30, 31, 32, 33, 34, 35, 37, 39, 43, 45, 48, 49, 53, 54, 55, 63, 64, 65, 66, 68, 69, 72, 73, 74, 75, 76, 79, 80, 81, 82, 83, 85, 86, 88, 89, 90, 91, 92, 95, 97, 101, 103, 104, 105, 106, 107, 109, 110, 112, 113, 116, 117, 118, 120, 122, 124, 126, 127, 128, 130, 131, 133, 134, 135, 137, 140, 142, 143, 145, 147, 149, 153, 155, 156, 158, 159, 160, 162, 164, 165, 166, 177, 179, 180, 182, 185, 187, 188, 190, 192, 194, 195, 197, 198, 202, 204, 215, 218, 222, 223, 224, 225, 226, 228, 229, 231, 232, 234, 236, 238, 241, 242, 243, 245, 246, 249, 253, 255, 256, 261, 262, 264, 268, 274, 279, 283, 284, 285, 286, 287, 298, 299, 302, 308, 309, 312, 317, 321, 324, 326, 327, 328, 330, 332, 333, 334, 336, 340, 342, 343, 344, 346, 354, 356, 358, 361, 362, 363, 364, 365, 366, 370, 371, 375, 376, 379, 380, 381, 382, 383, 384, 385, 387, 390, 391, 392, 393, 394, 395, 396, 399, 400, 401, 402, 403, 404, 406, 408, 418, 419, 428, 430, 431, 432, 443, 448, 450, 468, 469, 474, 476, 477, 478, 481, 486, 487, 492, 496, 503, 504, 507, 510, 514, 526, 537, 538, 539, 540, 541, 546, 547, 560, 561, 564, 565], [-218, -17, -242, -18, -216, -205, -6, -233, -245, -236, -14, -10, -13, -238, -247, -237, -210, -20, -207, -209, -29, -12, -228, -5, -202, -32, -234, -212, -235, -213, -215, -203, -204, -211, -222, -9, -162, -206, -244, -229, -208, -219, -214, -227, -226, -240, -231, -246, -16, -224, -225, -11, -15, -4, -19, -248, -217, -220, -8, -221, -160, -239, -7, -241, -230, -243, -232, -223, -134, -135, -117, -116, -34, -98, -97, -120, -119, -33, -83, -82, -80, -79, -49, -48, -86, -85, -123, -122, -76, -75, -58, -57, -67, -66, -104, -103, -95, -94, -101, -100, -70, -69, -107, -106, -73, -72, -64, -63, -137, -89, -88, -110, -109, -35, -161, -38, -163, -52, -51, -55, -54, -114, -113, -92, -91, -195, -36, -39, -165, -126, -125, -61, -60, -44, 345, -193, -45, 355, 345, -182, -26, -25, -23, -24, -27, 345, -46, -186, -30, -31, -184, -150, -180, -22, -140, 345, -194, -132, -131, 345, -129, -128, -133, -115, -96, -118, -81, -78, -47, -84, -121, -74, -56, -65, -102, -183, -93, -99, -68, -105, -71, -62, -136, -138, -87, -187, -185, -108, -50, -53, -112, -181, -90, -37, -40, -139, 345, 345, -124, 345, -42, -59, -192, -28, -168, -21, -164, -130, -127, -77, -145, -143, -41, 345, -149, -148, -167, -43, -169, -153, -151, -159, -111, -171, -170, -155, -157, 345, -166, -147, -175, -174, -173, -172, -146, -144, -154, -152, -156, -158]), 'BEGIN_VMATRIX': ([0, 1, 6, 15, 18, 38, 47, 52, 70, 78, 87, 94, 100, 108, 121, 125, 129, 132, 136, 139, 141, 144, 148, 154, 157, 161, 163, 167, 172, 173, 174, 175, 176, 178, 181, 186, 189, 193, 196, 200, 203, 206, 207, 208, 209, 210, 211, 212, 213, 217, 227, 230, 233, 237, 244, 248, 251, 254, 265, 266, 272, 280, 281, 282, 290, 301, 311, 315, 316, 322, 325, 329, 331, 335, 345, 355, 398, 407, 415, 420, 421, 422, 423, 424, 426, 427, 433, 444, 451, 459, 460, 461, 462, 464, 466, 471, 475, 479, 482, 483, 488, 498, 499, 500, 511, 512, 513, 527, 528, 529, 530, 535, 536, 557, 562], [100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100]), 'UPSILON': ([0, 1, 6, 15, 18, 38, 47, 52, 70, 78, 87, 94, 100, 108, 121, 125, 129, 132, 136, 139, 141, 144, 148, 154, 157, 161, 163, 167, 172, 173, 174, 175, 176, 178, 181, 186, 189, 193, 196, 200, 203, 206, 207, 208, 209, 210, 211, 212, 213, 217, 227, 230, 233, 237, 244, 248, 251, 254, 265, 266, 272, 280, 281, 282, 290, 301, 311, 315, 316, 322, 325, 329, 331, 335, 345, 355, 398, 407, 415, 420, 421, 422, 423, 424, 426, 427, 433, 444, 451, 459, 460, 461, 462, 464, 466, 471, 475, 479, 482, 483, 488, 498, 499, 500, 511, 512, 513, 527, 528, 529, 530, 535, 536, 557, 562], [101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101]), 'ACSC': ([0, 1, 6, 15, 18, 38, 47, 52, 70, 78, 87, 94, 100, 108, 121, 125, 129, 132, 136, 139, 141, 144, 148, 154, 157, 161, 163, 167, 172, 173, 174, 175, 176, 178, 181, 186, 189, 193, 196, 200, 203, 206, 207, 208, 209, 210, 211, 212, 213, 217, 227, 230, 233, 237, 244, 248, 251, 254, 265, 266, 272, 280, 281, 282, 290, 301, 311, 315, 316, 322, 325, 329, 331, 335, 345, 355, 398, 407, 415, 420, 421, 422, 423, 424, 426, 427, 433, 444, 451, 459, 460, 461, 462, 464, 466, 471, 475, 479, 482, 483, 488, 498, 499, 500, 511, 512, 513, 527, 528, 529, 530, 535, 536, 557, 562], [102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102]), 'NU_LOWER': ([0, 1, 6, 15, 18, 38, 47, 52, 70, 78, 87, 94, 100, 108, 121, 125, 129, 132, 136, 139, 141, 144, 148, 154, 157, 161, 163, 167, 172, 173, 174, 175, 176, 178, 181, 186, 189, 193, 196, 200, 203, 206, 207, 208, 209, 210, 211, 212, 213, 217, 227, 230, 233, 237, 244, 248, 251, 254, 265, 266, 272, 280, 281, 282, 290, 301, 311, 315, 316, 322, 325, 329, 331, 335, 345, 355, 398, 407, 415, 420, 421, 422, 423, 424, 426, 427, 433, 444, 451, 459, 460, 461, 462, 464, 466, 471, 475, 479, 482, 483, 488, 498, 499, 500, 511, 512, 513, 527, 528, 529, 530, 535, 536, 557, 562], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2]), 'OMICRON_LOWER': ([0, 1, 6, 15, 18, 38, 47, 52, 70, 78, 87, 94, 100, 108, 121, 125, 129, 132, 136, 139, 141, 144, 148, 154, 157, 161, 163, 167, 172, 173, 174, 175, 176, 178, 181, 186, 189, 193, 196, 200, 203, 206, 207, 208, 209, 210, 211, 212, 213, 217, 227, 230, 233, 237, 244, 248, 251, 254, 265, 266, 272, 280, 281, 282, 290, 301, 311, 315, 316, 322, 325, 329, 331, 335, 345, 355, 398, 407, 415, 420, 421, 422, 423, 424, 426, 427, 433, 444, 451, 459, 460, 461, 462, 464, 466, 471, 475, 479, 482, 483, 488, 498, 499, 500, 511, 512, 513, 527, 528, 529, 530, 535, 536, 557, 562], [104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104]), 'INFINITY': ([0, 1, 6, 15, 18, 38, 47, 52, 70, 78, 87, 94, 100, 108, 121, 125, 129, 132, 136, 139, 141, 144, 148, 154, 157, 161, 163, 167, 172, 173, 174, 175, 176, 178, 181, 186, 189, 193, 196, 200, 203, 206, 207, 208, 209, 210, 211, 212, 213, 217, 227, 230, 233, 237, 244, 248, 251, 254, 265, 266, 272, 280, 281, 282, 290, 301, 311, 315, 316, 322, 325, 329, 331, 335, 345, 355, 398, 407, 415, 420, 421, 422, 423, 424, 426, 427, 433, 444, 451, 459, 460, 461, 462, 464, 466, 471, 475, 479, 482, 483, 488, 498, 499, 500, 511, 512, 513, 527, 528, 529, 530, 535, 536, 557, 562], [105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105]), 'ASIN': ([0, 1, 6, 15, 18, 38, 47, 52, 70, 78, 87, 94, 100, 108, 121, 125, 129, 132, 136, 139, 141, 144, 148, 154, 157, 161, 163, 167, 172, 173, 174, 175, 176, 178, 181, 186, 189, 193, 196, 200, 203, 206, 207, 208, 209, 210, 211, 212, 213, 217, 227, 230, 233, 237, 244, 248, 251, 254, 265, 266, 272, 280, 281, 282, 290, 301, 311, 315, 316, 322, 325, 329, 331, 335, 345, 355, 398, 407, 415, 420, 421, 422, 423, 424, 426, 427, 433, 444, 451, 459, 460, 461, 462, 464, 466, 471, 475, 479, 482, 483, 488, 498, 499, 500, 511, 512, 513, 527, 528, 529, 530, 535, 536, 557, 562], [98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98]), 'I': ([0, 1, 6, 15, 18, 38, 47, 52, 70, 78, 87, 94, 95, 100, 108, 121, 125, 129, 132, 136, 139, 141, 144, 148, 154, 157, 161, 163, 167, 172, 173, 174, 175, 176, 178, 181, 186, 189, 193, 196, 200, 203, 206, 207, 208, 209, 210, 211, 212, 213, 217, 227, 230, 233, 237, 244, 248, 251, 254, 265, 266, 272, 280, 281, 282, 290, 301, 311, 315, 316, 322, 325, 329, 331, 335, 345, 355, 398, 407, 415, 420, 421, 422, 423, 424, 426, 427, 429, 433, 444, 451, 459, 460, 461, 462, 464, 466, 471, 475, 479, 482, 483, 488, 498, 499, 500, 511, 512, 513, 527, 528, 529, 530, 535, 536, 557, 562], [107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 223, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 223, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107]), 'TIMES': ([2, 7, 8, 9, 11, 12, 13, 17, 21, 22, 23, 25, 26, 27, 28, 30, 31, 32, 33, 34, 35, 37, 39, 43, 45, 48, 49, 53, 54, 55, 63, 64, 65, 66, 68, 69, 72, 73, 74, 75, 76, 79, 80, 81, 82, 83, 85, 86, 88, 89, 90, 91, 92, 95, 97, 101, 103, 104, 105, 106, 107, 109, 110, 112, 113, 116, 117, 118, 120, 122, 124, 126, 127, 128, 130, 131, 133, 134, 135, 137, 140, 142, 143, 145, 147, 149, 153, 155, 156, 158, 159, 160, 162, 164, 165, 166, 177, 179, 180, 182, 185, 187, 188, 190, 192, 194, 195, 197, 198, 202, 204, 215, 218, 222, 223, 224, 225, 226, 228, 229, 231, 232, 234, 236, 238, 241, 242, 243, 245, 246, 249, 253, 255, 256, 264, 279, 283, 284, 285, 286, 287, 299, 302, 308, 309, 312, 317, 321, 324, 326, 328, 330, 332, 334, 336, 340, 342, 343, 344, 346, 354, 356, 358, 361, 362, 363, 364, 365, 366, 370, 371, 375, 376, 379, 380, 381, 382, 383, 384, 385, 387, 390, 391, 392, 393, 394, 395, 396, 399, 402, 404, 406, 418, 419, 428, 429, 430, 431, 432, 434, 443, 448, 450, 468, 474, 476, 477, 478, 481, 486, 487, 492, 496, 503, 504, 507, 510, 526, 537, 538, 539, 540, 541, 546, 547, 560, 561, 564, 565], [-218, -17, -242, -18, -216, -205, -6, -233, -245, -236, -14, -10, -13, -238, -247, -237, -210, -20, -207, -209, -29, -12, -228, -5, -202, 174, -234, -212, -235, -213, -215, -203, -204, -211, -222, -9, -162, -206, -244, -229, -208, -219, -214, -227, -226, -240, -231, -246, -16, -224, -225, -11, -15, -4, -19, -248, -217, -220, -8, -221, -160, -239, -7, -241, -230, -243, -232, -223, -134, -135, -117, -116, -34, -98, -97, -120, -119, -33, -83, -82, -80, -79, -49, -48, -86, -85, -123, -122, -76, -75, -58, -57, -67, -66, -104, -103, -95, -94, -101, -100, -70, -69, -107, -106, -73, -72, -64, -63, -137, -89, -88, -110, -109, -35, -161, -38, -163, -52, -51, -55, -54, -114, -113, -92, -91, -195, -36, -39, -165, -126, -125, -61, -60, -44, -45, -182, -26, -25, -23, -24, -27, -46, -186, 174, 174, -184, -150, -180, -22, -140, -194, -132, -131, -129, -128, -133, -115, -96, -118, -81, -78, -47, -84, -121, -74, -56, -65, -102, -183, -93, -99, -68, -105, -71, -62, -136, -138, -87, -187, -185, -108, -50, -53, -112, -181, -90, -37, -40, -139, -124, -42, -59, -28, -168, -21, -4, -164, -130, -127, 174, -77, -145, -143, -41, -149, -148, -167, -43, -169, -153, -151, -159, -111, -171, -170, -155, -157, -166, -147, -175, -174, -173, -172, -146, -144, -154, -152, -156, -158]), 'LPAREN': ([0, 1, 2, 3, 5, 6, 8, 10, 11, 12, 14, 15, 16, 17, 18, 20, 21, 22, 24, 27, 28, 30, 31, 33, 34, 36, 38, 39, 40, 41, 42, 44, 45, 46, 47, 49, 50, 51, 52, 53, 54, 55, 58, 59, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 73, 74, 75, 76, 78, 79, 80, 81, 82, 83, 85, 86, 87, 89, 90, 93, 94, 96, 98, 99, 100, 101, 102, 103, 104, 106, 108, 109, 110, 111, 112, 113, 115, 116, 117, 118, 121, 125, 129, 132, 136, 139, 141, 144, 148, 154, 157, 161, 163, 167, 172, 173, 174, 175, 176, 178, 181, 186, 189, 193, 196, 200, 203, 206, 207, 208, 209, 210, 211, 212, 213, 217, 227, 230, 233, 237, 241, 244, 245, 247, 248, 250, 251, 254, 265, 266, 272, 280, 281, 282, 290, 301, 311, 315, 316, 322, 325, 328, 329, 331, 335, 345, 355, 398, 407, 415, 417, 420, 421, 422, 423, 424, 425, 426, 427, 433, 444, 451, 459, 460, 461, 462, 464, 466, 471, 475, 477, 479, 482, 483, 488, 498, 499, 500, 511, 512, 513, 527, 528, 529, 530, 535, 536, 557, 562], [108, 108, -218, 121, 125, 108, -242, 129, -216, -205, 132, 108, 136, -233, 108, 141, -245, -236, 144, -238, -247, -237, -210, -207, -209, 148, 108, -228, 154, 157, 161, 163, -202, 167, 108, -234, 178, 181, 108, -212, -235, -213, 186, 189, 193, 196, -215, -203, -204, -211, 199, -222, 200, 108, 203, -206, -244, -229, -208, 108, -219, -214, -227, -226, -240, -231, -246, 108, -224, -225, 217, 108, 227, 230, 233, 108, -248, 237, -217, -220, -221, 108, -239, 244, 248, -241, -230, 254, -243, -232, -223, 108, 108, 108, 108, 108, 108, 108, 108, 108, 108, 108, 108, 108, 108, 108, 108, 108, 108, 108, 108, 108, 108, 108, 108, 108, 108, 108, 108, 108, 108, 108, 108, 108, 108, 108, 108, 108, 108, 108, 108, -195, 108, 329, 331, 108, 335, 108, 108, 108, 108, 108, 108, 108, 108, 108, 108, 108, 108, 108, 108, 398, -194, 108, 108, 108, 108, 108, 108, 108, 108, 444, 108, 108, 108, 108, 108, 451, 108, 108, 108, 108, 108, 108, 108, 108, 108, 108, 108, 108, 108, 498, 108, 108, 108, 108, 108, 108, 108, 108, 108, 108, 108, 108, 108, 108, 108, 108, 108, 108]), 'IN': ([373, 377], [421, 421]), 'ZETA': ([0, 1, 6, 15, 18, 38, 47, 52, 70, 78, 87, 94, 100, 108, 121, 125, 129, 132, 136, 139, 141, 144, 148, 154, 157, 161, 163, 167, 172, 173, 174, 175, 176, 178, 181, 186, 189, 193, 196, 200, 203, 206, 207, 208, 209, 210, 211, 212, 213, 217, 227, 230, 233, 237, 244, 248, 251, 254, 265, 266, 272, 280, 281, 282, 290, 301, 311, 315, 316, 322, 325, 329, 331, 335, 345, 355, 398, 407, 415, 420, 421, 422, 423, 424, 426, 427, 433, 444, 451, 459, 460, 461, 462, 464, 466, 471, 475, 479, 482, 483, 488, 498, 499, 500, 511, 512, 513, 527, 528, 529, 530, 535, 536, 557, 562], [109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109]), 'ID': ([0, 1, 3, 5, 6, 10, 14, 15, 16, 18, 20, 24, 36, 38, 40, 41, 42, 44, 46, 47, 50, 51, 52, 58, 59, 61, 62, 70, 71, 78, 87, 93, 94, 96, 98, 99, 100, 102, 108, 111, 115, 121, 125, 129, 132, 136, 139, 141, 144, 148, 154, 157, 161, 163, 167, 172, 173, 174, 175, 176, 178, 181, 186, 189, 193, 196, 200, 203, 206, 207, 208, 209, 210, 211, 212, 213, 217, 227, 230, 233, 237, 244, 247, 248, 250, 251, 254, 258, 265, 266, 272, 280, 281, 282, 290, 291, 294, 301, 311, 315, 316, 322, 325, 329, 331, 335, 345, 355, 398, 407, 415, 420, 421, 422, 423, 424, 426, 427, 433, 439, 444, 451, 459, 460, 461, 462, 464, 466, 467, 471, 475, 479, 482, 483, 488, 498, 499, 500, 511, 512, 513, 521, 527, 528, 529, 530, 534, 535, 536, 557, 562], [110, 110, 122, 126, 110, 130, 133, 110, 137, 110, 142, 145, 149, 110, 155, 158, 160, 164, 166, 110, 179, 182, 110, 187, 190, 194, 197, 110, 204, 110, 110, 218, 110, 228, 231, 234, 110, 238, 110, 249, 255, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 332, 110, 336, 110, 110, 341, 110, 110, 110, 110, 110, 110, 110, 373, 377, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 465, 110, 110, 110, 110, 110, 110, 110, 110, 491, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 533, 110, 110, 110, 110, 545, 110, 110, 110, 110]), 'GRADIENT': ([0, 1, 6, 15, 18, 38, 47, 52, 70, 78, 87, 94, 100, 108, 121, 125, 129, 132, 136, 139, 141, 144, 148, 154, 157, 161, 163, 167, 172, 173, 174, 175, 176, 178, 181, 186, 189, 193, 196, 200, 203, 206, 207, 208, 209, 210, 211, 212, 213, 217, 227, 230, 233, 237, 244, 248, 251, 254, 265, 266, 272, 280, 281, 282, 290, 301, 311, 315, 316, 322, 325, 329, 331, 335, 345, 355, 398, 407, 415, 420, 421, 422, 423, 424, 426, 427, 433, 444, 451, 459, 460, 461, 462, 464, 466, 471, 475, 479, 482, 483, 488, 498, 499, 500, 511, 512, 513, 527, 528, 529, 530, 535, 536, 557, 562], [111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111]), 'EPSILON': ([0, 1, 6, 15, 18, 38, 47, 52, 70, 78, 87, 94, 100, 108, 121, 125, 129, 132, 136, 139, 141, 144, 148, 154, 157, 161, 163, 167, 172, 173, 174, 175, 176, 178, 181, 186, 189, 193, 196, 200, 203, 206, 207, 208, 209, 210, 211, 212, 213, 217, 227, 230, 233, 237, 244, 248, 251, 254, 265, 266, 272, 280, 281, 282, 290, 301, 311, 315, 316, 322, 325, 329, 331, 335, 345, 355, 398, 407, 415, 420, 421, 422, 423, 424, 426, 427, 433, 444, 451, 459, 460, 461, 462, 464, 466, 471, 475, 479, 482, 483, 488, 498, 499, 500, 511, 512, 513, 527, 528, 529, 530, 535, 536, 557, 562], [112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112]), 'OMICRON': ([0, 1, 6, 15, 18, 38, 47, 52, 70, 78, 87, 94, 100, 108, 121, 125, 129, 132, 136, 139, 141, 144, 148, 154, 157, 161, 163, 167, 172, 173, 174, 175, 176, 178, 181, 186, 189, 193, 196, 200, 203, 206, 207, 208, 209, 210, 211, 212, 213, 217, 227, 230, 233, 237, 244, 248, 251, 254, 265, 266, 272, 280, 281, 282, 290, 301, 311, 315, 316, 322, 325, 329, 331, 335, 345, 355, 398, 407, 415, 420, 421, 422, 423, 424, 426, 427, 433, 444, 451, 459, 460, 461, 462, 464, 466, 471, 475, 479, 482, 483, 488, 498, 499, 500, 511, 512, 513, 527, 528, 529, 530, 535, 536, 557, 562], [113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113]), 'GE': ([2, 7, 8, 9, 11, 12, 13, 17, 21, 22, 23, 25, 26, 27, 28, 30, 31, 32, 33, 34, 35, 37, 39, 43, 45, 48, 49, 53, 54, 55, 63, 64, 65, 66, 68, 69, 72, 73, 74, 75, 76, 79, 80, 81, 82, 83, 84, 85, 86, 88, 89, 90, 91, 92, 95, 97, 101, 103, 104, 105, 106, 107, 109, 110, 112, 113, 116, 117, 118, 120, 122, 124, 126, 127, 128, 130, 131, 133, 134, 135, 137, 140, 142, 143, 145, 147, 149, 151, 153, 155, 156, 158, 159, 160, 162, 164, 165, 166, 177, 179, 180, 182, 185, 187, 188, 190, 192, 194, 195, 197, 198, 202, 204, 215, 218, 222, 223, 224, 225, 226, 228, 229, 231, 232, 234, 236, 238, 241, 242, 243, 245, 246, 249, 253, 255, 256, 264, 279, 283, 284, 285, 286, 287, 299, 302, 308, 309, 312, 317, 321, 324, 326, 328, 330, 332, 334, 336, 340, 342, 343, 344, 346, 354, 356, 358, 361, 362, 363, 364, 365, 366, 370, 371, 375, 376, 379, 380, 381, 382, 383, 384, 385, 387, 390, 391, 392, 393, 394, 395, 396, 399, 402, 404, 406, 418, 419, 428, 430, 431, 432, 443, 448, 450, 468, 474, 476, 477, 478, 481, 486, 487, 492, 496, 503, 504, 507, 510, 526, 537, 538, 539, 540, 541, 546, 547, 560, 561, 564, 565], [-218, -17, -242, -18, -216, -205, -6, -233, -245, -236, -14, -10, -13, -238, -247, -237, -210, -20, -207, -209, -29, -12, -228, -5, -202, -32, -234, -212, -235, -213, -215, -203, -204, -211, -222, -9, -162, -206, -244, -229, -208, -219, -214, -227, -226, -240, 208, -231, -246, -16, -224, -225, -11, -15, -4, -19, -248, -217, -220, -8, -221, -160, -239, -7, -241, -230, -243, -232, -223, -134, -135, -117, -116, -34, -98, -97, -120, -119, -33, -83, -82, -80, -79, -49, -48, -86, -85, 208, -123, -122, -76, -75, -58, -57, -67, -66, -104, -103, -95, -94, -101, -100, -70, -69, -107, -106, -73, -72, -64, -63, -137, -89, -88, -110, -109, -35, -161, -38, -163, -52, -51, -55, -54, -114, -113, -92, -91, -195, -36, -39, -165, -126, -125, -61, -60, -44, -45, -182, -26, -25, -23, -24, -27, -46, -186, -30, -31, -184, -150, -180, -22, -140, -194, -132, -131, -129, -128, -133, -115, -96, -118, -81, -78, -47, -84, -121, -74, -56, -65, -102, -183, -93, -99, -68, -105, -71, -62, -136, -138, -87, -187, -185, -108, -50, -53, -112, -181, -90, -37, -40, -139, -124, -42, -59, -28, -168, -21, -164, -130, -127, -77, -145, -143, -41, -149, -148, -167, -43, -169, -153, -151, -159, -111, -171, -170, -155, -157, -166, -147, -175, -174, -173, -172, -146, -144, -154, -152, -156, -158]), 'SQRT': ([0, 1, 6, 15, 18, 38, 47, 52, 70, 78, 87, 94, 100, 108, 121, 125, 129, 132, 136, 139, 141, 144, 148, 154, 157, 161, 163, 167, 172, 173, 174, 175, 176, 178, 181, 186, 189, 193, 196, 200, 203, 206, 207, 208, 209, 210, 211, 212, 213, 217, 227, 230, 233, 237, 244, 248, 251, 254, 265, 266, 272, 280, 281, 282, 290, 301, 311, 315, 316, 322, 325, 329, 331, 335, 345, 355, 398, 407, 415, 420, 421, 422, 423, 424, 426, 427, 433, 444, 451, 459, 460, 461, 462, 464, 466, 471, 475, 479, 482, 483, 488, 498, 499, 500, 511, 512, 513, 527, 528, 529, 530, 535, 536, 557, 562], [114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114]), 'ACOSH': ([0, 1, 6, 15, 18, 38, 47, 52, 70, 78, 87, 94, 100, 108, 121, 125, 129, 132, 136, 139, 141, 144, 148, 154, 157, 161, 163, 167, 172, 173, 174, 175, 176, 178, 181, 186, 189, 193, 196, 200, 203, 206, 207, 208, 209, 210, 211, 212, 213, 217, 227, 230, 233, 237, 244, 248, 251, 254, 265, 266, 272, 280, 281, 282, 290, 301, 311, 315, 316, 322, 325, 329, 331, 335, 345, 355, 398, 407, 415, 420, 421, 422, 423, 424, 426, 427, 433, 444, 451, 459, 460, 461, 462, 464, 466, 471, 475, 479, 482, 483, 488, 498, 499, 500, 511, 512, 513, 527, 528, 529, 530, 535, 536, 557, 562], [115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115, 115]), 'ALPHA': ([0, 1, 6, 15, 18, 38, 47, 52, 70, 78, 87, 94, 100, 108, 121, 125, 129, 132, 136, 139, 141, 144, 148, 154, 157, 161, 163, 167, 172, 173, 174, 175, 176, 178, 181, 186, 189, 193, 196, 200, 203, 206, 207, 208, 209, 210, 211, 212, 213, 217, 227, 230, 233, 237, 244, 248, 251, 254, 265, 266, 272, 280, 281, 282, 290, 301, 311, 315, 316, 322, 325, 329, 331, 335, 345, 355, 398, 407, 415, 420, 421, 422, 423, 424, 426, 427, 433, 444, 451, 459, 460, 461, 462, 464, 466, 471, 475, 479, 482, 483, 488, 498, 499, 500, 511, 512, 513, 527, 528, 529, 530, 535, 536, 557, 562], [116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116]), 'RBRACKET': ([338], [405]), 'MOD': ([2, 7, 8, 9, 11, 12, 13, 17, 21, 22, 23, 25, 26, 27, 28, 30, 31, 32, 33, 34, 35, 37, 39, 43, 45, 48, 49, 53, 54, 55, 63, 64, 65, 66, 68, 69, 72, 73, 74, 75, 76, 79, 80, 81, 82, 83, 85, 86, 88, 89, 90, 91, 92, 95, 97, 101, 103, 104, 105, 106, 107, 109, 110, 112, 113, 116, 117, 118, 120, 122, 124, 126, 127, 128, 130, 131, 133, 134, 135, 137, 140, 142, 143, 145, 147, 149, 153, 155, 156, 158, 159, 160, 162, 164, 165, 166, 177, 179, 180, 182, 185, 187, 188, 190, 192, 194, 195, 197, 198, 202, 204, 215, 218, 222, 223, 224, 225, 226, 228, 229, 231, 232, 234, 236, 238, 241, 242, 243, 245, 246, 249, 253, 255, 256, 264, 279, 283, 284, 285, 286, 287, 299, 302, 308, 309, 312, 317, 321, 324, 326, 328, 330, 332, 334, 336, 340, 342, 343, 344, 346, 354, 356, 358, 361, 362, 363, 364, 365, 366, 370, 371, 375, 376, 379, 380, 381, 382, 383, 384, 385, 387, 390, 391, 392, 393, 394, 395, 396, 399, 402, 404, 406, 418, 419, 428, 429, 430, 431, 432, 434, 443, 448, 450, 468, 474, 476, 477, 478, 481, 486, 487, 492, 496, 503, 504, 507, 510, 526, 537, 538, 539, 540, 541, 546, 547, 560, 561, 564, 565], [-218, -17, -242, -18, -216, -205, -6, -233, -245, -236, -14, -10, -13, -238, -247, -237, -210, -20, -207, -209, -29, -12, -228, -5, -202, 176, -234, -212, -235, -213, -215, -203, -204, -211, -222, -9, -162, -206, -244, -229, -208, -219, -214, -227, -226, -240, -231, -246, -16, -224, -225, -11, -15, -4, -19, -248, -217, -220, -8, -221, -160, -239, -7, -241, -230, -243, -232, -223, -134, -135, -117, -116, -34, -98, -97, -120, -119, -33, -83, -82, -80, -79, -49, -48, -86, -85, -123, -122, -76, -75, -58, -57, -67, -66, -104, -103, -95, -94, -101, -100, -70, -69, -107, -106, -73, -72, -64, -63, -137, -89, -88, -110, -109, -35, -161, -38, -163, -52, -51, -55, -54, -114, -113, -92, -91, -195, -36, -39, -165, -126, -125, -61, -60, -44, -45, -182, -26, -25, -23, -24, -27, -46, -186, 176, 176, -184, -150, -180, -22, -140, -194, -132, -131, -129, -128, -133, -115, -96, -118, -81, -78, -47, -84, -121, -74, -56, -65, -102, -183, -93, -99, -68, -105, -71, -62, -136, -138, -87, -187, -185, -108, -50, -53, -112, -181, -90, -37, -40, -139, -124, -42, -59, -28, -168, -21, -4, -164, -130, -127, 176, -77, -145, -143, -41, -149, -148, -167, -43, -169, -153, -151, -159, -111, -171, -170, -155, -157, -166, -147, -175, -174, -173, -172, -146, -144, -154, -152, -156, -158]), 'BETA_LOWER': ([0, 1, 6, 15, 18, 38, 47, 52, 70, 78, 87, 94, 100, 108, 121, 125, 129, 132, 136, 139, 141, 144, 148, 154, 157, 161, 163, 167, 172, 173, 174, 175, 176, 178, 181, 186, 189, 193, 196, 200, 203, 206, 207, 208, 209, 210, 211, 212, 213, 217, 227, 230, 233, 237, 244, 248, 251, 254, 265, 266, 272, 280, 281, 282, 290, 301, 311, 315, 316, 322, 325, 329, 331, 335, 345, 355, 398, 407, 415, 420, 421, 422, 423, 424, 426, 427, 433, 444, 451, 459, 460, 461, 462, 464, 466, 471, 475, 479, 482, 483, 488, 498, 499, 500, 511, 512, 513, 527, 528, 529, 530, 535, 536, 557, 562], [118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118])} _lr_action = {} for (_k, _v) in _lr_action_items.items(): for (_x, _y) in zip(_v[0], _v[1]): if not _x in _lr_action: _lr_action[_x] = {} _lr_action[_x][_k] = _y del _lr_action_items _lr_goto_items = {'DivisorFunction': ([0, 1, 6, 15, 18, 38, 47, 52, 70, 78, 87, 94, 100, 108, 121, 125, 129, 132, 136, 139, 141, 144, 148, 154, 157, 161, 163, 167, 172, 173, 174, 175, 176, 178, 181, 186, 189, 193, 196, 200, 203, 206, 207, 208, 209, 210, 211, 212, 213, 217, 227, 230, 233, 237, 244, 248, 251, 254, 265, 266, 272, 280, 281, 282, 290, 301, 311, 315, 316, 322, 325, 329, 331, 335, 345, 355, 398, 407, 415, 420, 421, 422, 423, 424, 426, 427, 433, 444, 451, 459, 460, 461, 462, 464, 466, 471, 475, 479, 482, 483, 488, 498, 499, 500, 511, 512, 513, 527, 528, 529, 530, 535, 536, 557, 562], [91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, 91]), 'DifferentialVariable': ([0, 1, 6, 15, 18, 38, 47, 52, 70, 78, 87, 94, 100, 108, 121, 125, 129, 132, 136, 139, 141, 144, 148, 154, 157, 161, 163, 167, 172, 173, 174, 175, 176, 178, 181, 186, 189, 193, 196, 200, 203, 206, 207, 208, 209, 210, 211, 212, 213, 217, 227, 230, 233, 237, 244, 248, 251, 254, 265, 266, 272, 280, 281, 282, 290, 301, 311, 315, 316, 322, 325, 329, 331, 335, 345, 355, 398, 407, 415, 420, 421, 422, 423, 424, 426, 427, 433, 444, 451, 459, 460, 461, 462, 464, 466, 471, 475, 479, 482, 483, 488, 498, 499, 500, 511, 512, 513, 527, 528, 529, 530, 535, 536, 557, 562], [92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92]), 'Matrix': ([0, 1, 6, 15, 18, 38, 47, 52, 67, 70, 78, 87, 94, 100, 108, 121, 125, 129, 132, 136, 139, 141, 144, 148, 154, 157, 161, 163, 167, 172, 173, 174, 175, 176, 178, 181, 186, 189, 193, 196, 199, 200, 203, 206, 207, 208, 209, 210, 211, 212, 213, 217, 227, 230, 233, 237, 244, 248, 251, 254, 265, 266, 272, 280, 281, 282, 290, 301, 311, 315, 316, 322, 325, 329, 331, 335, 345, 355, 398, 407, 415, 420, 421, 422, 423, 424, 426, 427, 433, 444, 451, 459, 460, 461, 462, 464, 466, 471, 475, 479, 482, 483, 488, 498, 499, 500, 511, 512, 513, 527, 528, 529, 530, 535, 536, 557, 562], [7, 7, 7, 7, 7, 7, 7, 7, 198, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 297, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7]), 'FractionalExpression': ([0, 1, 6, 15, 18, 38, 47, 52, 70, 78, 87, 94, 100, 108, 121, 125, 129, 132, 136, 139, 141, 144, 148, 154, 157, 161, 163, 167, 172, 173, 174, 175, 176, 178, 181, 186, 189, 193, 196, 200, 203, 206, 207, 208, 209, 210, 211, 212, 213, 217, 227, 230, 233, 237, 244, 248, 251, 254, 265, 266, 272, 280, 281, 282, 290, 301, 311, 315, 316, 322, 325, 329, 331, 335, 345, 355, 398, 407, 415, 420, 421, 422, 423, 424, 426, 427, 433, 444, 451, 459, 460, 461, 462, 464, 466, 471, 475, 479, 482, 483, 488, 498, 499, 500, 511, 512, 513, 527, 528, 529, 530, 535, 536, 557, 562], [32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32]), 'Factor': ([0, 1, 6, 15, 18, 38, 47, 52, 70, 78, 87, 94, 100, 108, 121, 125, 129, 132, 136, 139, 141, 144, 148, 154, 157, 161, 163, 167, 172, 173, 174, 175, 176, 178, 181, 186, 189, 193, 196, 200, 203, 206, 207, 208, 209, 210, 211, 212, 213, 217, 227, 230, 233, 237, 244, 248, 251, 254, 265, 266, 272, 280, 281, 282, 290, 301, 311, 315, 316, 322, 325, 329, 331, 335, 345, 355, 398, 407, 415, 420, 421, 422, 423, 424, 426, 427, 433, 444, 451, 459, 460, 461, 462, 464, 466, 471, 475, 479, 482, 483, 488, 498, 499, 500, 511, 512, 513, 527, 528, 529, 530, 535, 536, 557, 562], [35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 283, 284, 285, 286, 287, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35]), 'Derivative': ([0, 1, 6, 15, 18, 38, 47, 52, 70, 78, 87, 94, 100, 108, 121, 125, 129, 132, 136, 139, 141, 144, 148, 154, 157, 161, 163, 167, 172, 173, 174, 175, 176, 178, 181, 186, 189, 193, 196, 200, 203, 206, 207, 208, 209, 210, 211, 212, 213, 217, 227, 230, 233, 237, 244, 248, 251, 254, 265, 266, 272, 280, 281, 282, 290, 301, 311, 315, 316, 322, 325, 329, 331, 335, 345, 355, 398, 407, 415, 420, 421, 422, 423, 424, 426, 427, 433, 444, 451, 459, 460, 461, 462, 464, 466, 471, 475, 479, 482, 483, 488, 498, 499, 500, 511, 512, 513, 527, 528, 529, 530, 535, 536, 557, 562], [37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37]), 'Norm': ([0, 1, 6, 15, 18, 38, 47, 52, 70, 78, 87, 94, 100, 108, 121, 125, 129, 132, 136, 139, 141, 144, 148, 154, 157, 161, 163, 167, 172, 173, 174, 175, 176, 178, 181, 186, 189, 193, 196, 200, 203, 206, 207, 208, 209, 210, 211, 212, 213, 217, 227, 230, 233, 237, 244, 248, 251, 254, 265, 266, 272, 280, 281, 282, 290, 301, 311, 315, 316, 322, 325, 329, 331, 335, 345, 355, 398, 407, 415, 420, 421, 422, 423, 424, 426, 427, 433, 444, 451, 459, 460, 461, 462, 464, 466, 471, 475, 479, 482, 483, 488, 498, 499, 500, 511, 512, 513, 527, 528, 529, 530, 535, 536, 557, 562], [97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97]), 'Determinant': ([0, 1, 6, 15, 18, 38, 47, 52, 70, 78, 87, 94, 100, 108, 121, 125, 129, 132, 136, 139, 141, 144, 148, 154, 157, 161, 163, 167, 172, 173, 174, 175, 176, 178, 181, 186, 189, 193, 196, 200, 203, 206, 207, 208, 209, 210, 211, 212, 213, 217, 227, 230, 233, 237, 244, 248, 251, 254, 265, 266, 272, 280, 281, 282, 290, 301, 311, 315, 316, 322, 325, 329, 331, 335, 345, 355, 398, 407, 415, 420, 421, 422, 423, 424, 426, 427, 433, 444, 451, 459, 460, 461, 462, 464, 466, 471, 475, 479, 482, 483, 488, 498, 499, 500, 511, 512, 513, 527, 528, 529, 530, 535, 536, 557, 562], [9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9]), 'ExpressionsRows': ([47, 78, 87, 100], [168, 205, 214, 235]), 'Symbol': ([0, 1, 6, 15, 18, 38, 47, 52, 70, 78, 87, 94, 100, 108, 121, 125, 129, 132, 136, 139, 141, 144, 148, 154, 157, 161, 163, 167, 172, 173, 174, 175, 176, 178, 181, 186, 189, 193, 196, 200, 203, 206, 207, 208, 209, 210, 211, 212, 213, 217, 227, 230, 233, 237, 244, 248, 251, 254, 265, 266, 272, 280, 281, 282, 290, 301, 311, 315, 316, 322, 325, 329, 331, 335, 345, 355, 398, 407, 415, 420, 421, 422, 423, 424, 426, 427, 433, 444, 451, 459, 460, 461, 462, 464, 466, 471, 475, 479, 482, 483, 488, 498, 499, 500, 511, 512, 513, 527, 528, 529, 530, 535, 536, 557, 562], [69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69]), 'NapierNumber': ([0, 1, 6, 15, 18, 38, 47, 52, 70, 78, 87, 94, 100, 108, 121, 125, 129, 132, 136, 139, 141, 144, 148, 154, 157, 161, 163, 167, 172, 173, 174, 175, 176, 178, 181, 186, 189, 193, 196, 200, 203, 206, 207, 208, 209, 210, 211, 212, 213, 217, 227, 230, 233, 237, 244, 248, 251, 254, 265, 266, 272, 280, 281, 282, 290, 301, 311, 315, 316, 322, 325, 329, 331, 335, 345, 355, 398, 407, 415, 420, 421, 422, 423, 424, 426, 427, 433, 444, 451, 459, 460, 461, 462, 464, 466, 471, 475, 479, 482, 483, 488, 498, 499, 500, 511, 512, 513, 527, 528, 529, 530, 535, 536, 557, 562], [13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13]), 'ImaginaryNumber': ([0, 1, 6, 15, 18, 38, 47, 52, 70, 78, 87, 94, 100, 108, 121, 125, 129, 132, 136, 139, 141, 144, 148, 154, 157, 161, 163, 167, 172, 173, 174, 175, 176, 178, 181, 186, 189, 193, 196, 200, 203, 206, 207, 208, 209, 210, 211, 212, 213, 217, 227, 230, 233, 237, 244, 248, 251, 254, 265, 266, 272, 280, 281, 282, 290, 301, 311, 315, 316, 322, 325, 329, 331, 335, 345, 355, 398, 407, 415, 420, 421, 422, 423, 424, 426, 427, 433, 444, 451, 459, 460, 461, 462, 464, 466, 471, 475, 479, 482, 483, 488, 498, 499, 500, 511, 512, 513, 527, 528, 529, 530, 535, 536, 557, 562], [43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43]), 'ExpressionsRow': ([47, 78, 87, 100, 280, 301, 311, 322], [169, 169, 169, 169, 367, 367, 367, 367]), 'Term': ([0, 1, 6, 15, 18, 38, 47, 52, 70, 78, 87, 94, 100, 108, 121, 125, 129, 132, 136, 139, 141, 144, 148, 154, 157, 161, 163, 167, 178, 181, 186, 189, 193, 196, 200, 203, 206, 207, 208, 209, 210, 211, 212, 213, 217, 227, 230, 233, 237, 244, 248, 251, 254, 265, 266, 272, 280, 281, 282, 290, 301, 311, 315, 316, 322, 325, 329, 331, 335, 345, 355, 398, 407, 415, 420, 421, 422, 423, 424, 426, 427, 433, 444, 451, 459, 460, 461, 462, 464, 466, 471, 475, 479, 482, 483, 488, 498, 499, 500, 511, 512, 513, 527, 528, 529, 530, 535, 536, 557, 562], [48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 308, 309, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 434, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 309, 308, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48]), 'PrimeList': ([110], [245]), 'Constraint': ([0, 38, 272], [77, 150, 359]), 'Range': ([421], [446]), 'Limit': ([0, 1, 6, 15, 18, 38, 47, 52, 70, 78, 87, 94, 100, 108, 121, 125, 129, 132, 136, 139, 141, 144, 148, 154, 157, 161, 163, 167, 172, 173, 174, 175, 176, 178, 181, 186, 189, 193, 196, 200, 203, 206, 207, 208, 209, 210, 211, 212, 213, 217, 227, 230, 233, 237, 244, 248, 251, 254, 265, 266, 272, 280, 281, 282, 290, 301, 311, 315, 316, 322, 325, 329, 331, 335, 345, 355, 398, 407, 415, 420, 421, 422, 423, 424, 426, 427, 433, 444, 451, 459, 460, 461, 462, 464, 466, 471, 475, 479, 482, 483, 488, 498, 499, 500, 511, 512, 513, 527, 528, 529, 530, 535, 536, 557, 562], [23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23]), 'IndexingExpression': ([291, 294], [374, 378]), 'Expression': ([0, 1, 6, 15, 18, 38, 47, 52, 70, 78, 87, 94, 100, 108, 121, 125, 129, 132, 136, 139, 141, 144, 148, 154, 157, 161, 163, 167, 178, 181, 186, 189, 193, 196, 200, 203, 206, 207, 208, 209, 210, 213, 217, 227, 230, 233, 237, 244, 248, 251, 254, 265, 266, 272, 280, 281, 282, 290, 301, 311, 315, 316, 322, 325, 329, 331, 335, 345, 355, 398, 407, 415, 420, 421, 422, 423, 424, 426, 427, 433, 444, 451, 459, 462, 464, 466, 471, 475, 479, 482, 483, 488, 498, 499, 500, 511, 512, 513, 527, 528, 529, 530, 535, 536, 557, 562], [84, 119, 127, 134, 138, 151, 170, 183, 201, 170, 170, 221, 170, 239, 257, 259, 260, 262, 263, 267, 268, 269, 271, 262, 275, 276, 277, 278, 288, 289, 292, 293, 295, 296, 262, 300, 303, 304, 305, 306, 307, 310, 314, 318, 319, 320, 323, 262, 262, 337, 339, 348, 352, 151, 170, 368, 369, 372, 170, 170, 388, 389, 170, 397, 262, 262, 262, 408, 416, 239, 435, 442, 445, 447, 448, 449, 450, 452, 454, 456, 262, 473, 481, 484, 487, 490, 494, 497, 369, 503, 504, 507, 262, 127, 134, 523, 524, 525, 538, 539, 540, 541, 546, 547, 561, 564]), 'Constraints': ([38], [152]), 'IteratedExpression': ([0, 1, 6, 15, 18, 38, 47, 52, 70, 78, 87, 94, 100, 108, 121, 125, 129, 132, 136, 139, 141, 144, 148, 154, 157, 161, 163, 167, 172, 173, 174, 175, 176, 178, 181, 186, 189, 193, 196, 200, 203, 206, 207, 208, 209, 210, 211, 212, 213, 217, 227, 230, 233, 237, 244, 248, 251, 254, 265, 266, 272, 280, 281, 282, 290, 301, 311, 315, 316, 322, 325, 329, 331, 335, 345, 355, 398, 407, 415, 420, 421, 422, 423, 424, 426, 427, 433, 444, 451, 459, 460, 461, 462, 464, 466, 471, 475, 479, 482, 483, 488, 498, 499, 500, 511, 512, 513, 527, 528, 529, 530, 535, 536, 557, 562], [25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25]), 'Integral': ([0, 1, 6, 15, 18, 38, 47, 52, 70, 78, 87, 94, 100, 108, 121, 125, 129, 132, 136, 139, 141, 144, 148, 154, 157, 161, 163, 167, 172, 173, 174, 175, 176, 178, 181, 186, 189, 193, 196, 200, 203, 206, 207, 208, 209, 210, 211, 212, 213, 217, 227, 230, 233, 237, 244, 248, 251, 254, 265, 266, 272, 280, 281, 282, 290, 301, 311, 315, 316, 322, 325, 329, 331, 335, 345, 355, 398, 407, 415, 420, 421, 422, 423, 424, 426, 427, 433, 444, 451, 459, 460, 461, 462, 464, 466, 471, 475, 479, 482, 483, 488, 498, 499, 500, 511, 512, 513, 527, 528, 529, 530, 535, 536, 557, 562], [26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26]), 'ConstraintSystem': ([0], [56]), 'ChooseExpression': ([0, 1, 6, 15, 18, 38, 47, 52, 70, 78, 87, 94, 100, 108, 121, 125, 129, 132, 136, 139, 141, 144, 148, 154, 157, 161, 163, 167, 172, 173, 174, 175, 176, 178, 181, 186, 189, 193, 196, 200, 203, 206, 207, 208, 209, 210, 211, 212, 213, 217, 227, 230, 233, 237, 244, 248, 251, 254, 265, 266, 272, 280, 281, 282, 290, 301, 311, 315, 316, 322, 325, 329, 331, 335, 345, 355, 398, 407, 415, 420, 421, 422, 423, 424, 426, 427, 433, 444, 451, 459, 460, 461, 462, 464, 466, 471, 475, 479, 482, 483, 488, 498, 499, 500, 511, 512, 513, 527, 528, 529, 530, 535, 536, 557, 562], [88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88]), 'ExpressionList': ([132, 154, 200, 244, 248, 329, 331, 335, 444, 498], [261, 274, 298, 327, 333, 400, 401, 403, 469, 514]), 'MAIN': ([0], [29])} _lr_goto = {} for (_k, _v) in _lr_goto_items.items(): for (_x, _y) in zip(_v[0], _v[1]): if not _x in _lr_goto: _lr_goto[_x] = {} _lr_goto[_x][_k] = _y del _lr_goto_items _lr_productions = [("S' -> MAIN", "S'", 1, None, None, None), ('MAIN -> Expression', 'MAIN', 1, 'p_Main', 'parser.py', 49), ('MAIN -> Constraint', 'MAIN', 1, 'p_Main', 'parser.py', 50), ('MAIN -> ConstraintSystem', 'MAIN', 1, 'p_Main', 'parser.py', 51), ('Factor -> NUMBER', 'Factor', 1, 'p_Factor', 'parser.py', 55), ('Factor -> ImaginaryNumber', 'Factor', 1, 'p_Factor', 'parser.py', 56), ('Factor -> NapierNumber', 'Factor', 1, 'p_Factor', 'parser.py', 57), ('Factor -> ID', 'Factor', 1, 'p_Factor', 'parser.py', 58), ('Factor -> INFINITY', 'Factor', 1, 'p_Factor', 'parser.py', 59), ('Factor -> Symbol', 'Factor', 1, 'p_Factor', 'parser.py', 60), ('Factor -> IteratedExpression', 'Factor', 1, 'p_Factor', 'parser.py', 61), ('Factor -> DivisorFunction', 'Factor', 1, 'p_Factor', 'parser.py', 62), ('Factor -> Derivative', 'Factor', 1, 'p_Factor', 'parser.py', 63), ('Factor -> Integral', 'Factor', 1, 'p_Factor', 'parser.py', 64), ('Factor -> Limit', 'Factor', 1, 'p_Factor', 'parser.py', 65), ('Factor -> DifferentialVariable', 'Factor', 1, 'p_Factor', 'parser.py', 66), ('Factor -> ChooseExpression', 'Factor', 1, 'p_Factor', 'parser.py', 67), ('Factor -> Matrix', 'Factor', 1, 'p_Factor', 'parser.py', 68), ('Factor -> Determinant', 'Factor', 1, 'p_Factor', 'parser.py', 69), ('Factor -> Norm', 'Factor', 1, 'p_Factor', 'parser.py', 70), ('Factor -> FractionalExpression', 'Factor', 1, 'p_Factor', 'parser.py', 71), ('Factor -> ID CARET LBRACE Expression RBRACE', 'Factor', 5, 'p_Factor', 'parser.py', 72), ('Factor -> LPAREN Expression RPAREN', 'Factor', 3, 'p_Factor', 'parser.py', 73), ('Term -> Term TIMES Factor', 'Term', 3, 'p_Term', 'parser.py', 89), ('Term -> Term DOT Factor', 'Term', 3, 'p_Term', 'parser.py', 90), ('Term -> Term CROSS Factor', 'Term', 3, 'p_Term', 'parser.py', 91), ('Term -> Term DIVIDE Factor', 'Term', 3, 'p_Term', 'parser.py', 92), ('Term -> Term MOD Factor', 'Term', 3, 'p_Term', 'parser.py', 93), ('Term -> Term CARET LBRACE Expression RBRACE', 'Term', 5, 'p_Term', 'parser.py', 94), ('Term -> Factor', 'Term', 1, 'p_Term', 'parser.py', 95), ('Expression -> Expression PLUS Term', 'Expression', 3, 'p_Expression_binop', 'parser.py', 127), ('Expression -> Expression MINUS Term', 'Expression', 3, 'p_Expression_binop', 'parser.py', 128), ('Expression -> Term', 'Expression', 1, 'p_Expression_binop', 'parser.py', 129), ('Factor -> PLUS Expression', 'Factor', 2, 'p_UnaryExpressionOperatorBefore', 'parser.py', 145), ('Factor -> MINUS Expression', 'Factor', 2, 'p_UnaryExpressionOperatorBefore', 'parser.py', 146), ('Factor -> NUMBER FACTORIAL', 'Factor', 2, 'p_UnaryExpressionOperatorAfter', 'parser.py', 156), ('Factor -> ID FACTORIAL', 'Factor', 2, 'p_UnaryExpressionOperatorAfter', 'parser.py', 157), ('Factor -> LPAREN Expression RPAREN FACTORIAL', 'Factor', 4, 'p_UnaryExpressionOperatorAfter', 'parser.py', 158), ('Factor -> NUMBER PERCENT', 'Factor', 2, 'p_UnaryExpressionOperatorAfter', 'parser.py', 159), ('Factor -> ID PERCENT', 'Factor', 2, 'p_UnaryExpressionOperatorAfter', 'parser.py', 160), ('Factor -> LPAREN Expression RPAREN PERCENT', 'Factor', 4, 'p_UnaryExpressionOperatorAfter', 'parser.py', 161), ('FractionalExpression -> FRAC LBRACE Expression RBRACE LBRACE Expression RBRACE', 'FractionalExpression', 7, 'p_FractionalExpression', 'parser.py', 182), ('Factor -> SQRT LBRACE Expression RBRACE', 'Factor', 4, 'p_FunctionExpression', 'parser.py', 187), ('Factor -> SQRT LBRACKET NUMBER RBRACKET LBRACE Expression RBRACE', 'Factor', 7, 'p_FunctionExpression', 'parser.py', 189), ('Factor -> LFLOOR Expression RFLOOR', 'Factor', 3, 'p_FunctionExpression', 'parser.py', 191), ('Factor -> LCEIL Expression RCEIL', 'Factor', 3, 'p_FunctionExpression', 'parser.py', 193), ('Factor -> PIPE Expression PIPE', 'Factor', 3, 'p_FunctionExpression', 'parser.py', 195), ('Factor -> ASINH LPAREN Expression RPAREN', 'Factor', 4, 'p_FunctionExpression', 'parser.py', 197), ('Factor -> ASINH ID', 'Factor', 2, 'p_FunctionExpression', 'parser.py', 199), ('Factor -> ASINH NUMBER', 'Factor', 2, 'p_FunctionExpression', 'parser.py', 201), ('Factor -> SINH LPAREN Expression RPAREN', 'Factor', 4, 'p_FunctionExpression', 'parser.py', 203), ('Factor -> SINH ID', 'Factor', 2, 'p_FunctionExpression', 'parser.py', 205), ('Factor -> SINH NUMBER', 'Factor', 2, 'p_FunctionExpression', 'parser.py', 207), ('Factor -> ASIN LPAREN Expression RPAREN', 'Factor', 4, 'p_FunctionExpression', 'parser.py', 209), ('Factor -> ASIN ID', 'Factor', 2, 'p_FunctionExpression', 'parser.py', 211), ('Factor -> ASIN NUMBER', 'Factor', 2, 'p_FunctionExpression', 'parser.py', 213), ('Factor -> SIN LPAREN Expression RPAREN', 'Factor', 4, 'p_FunctionExpression', 'parser.py', 215), ('Factor -> SIN ID', 'Factor', 2, 'p_FunctionExpression', 'parser.py', 217), ('Factor -> SIN NUMBER', 'Factor', 2, 'p_FunctionExpression', 'parser.py', 219), ('Factor -> ACOSH LPAREN Expression RPAREN', 'Factor', 4, 'p_FunctionExpression', 'parser.py', 221), ('Factor -> ACOSH ID', 'Factor', 2, 'p_FunctionExpression', 'parser.py', 223), ('Factor -> ACOSH NUMBER', 'Factor', 2, 'p_FunctionExpression', 'parser.py', 225), ('Factor -> COSH LPAREN Expression RPAREN', 'Factor', 4, 'p_FunctionExpression', 'parser.py', 227), ('Factor -> COSH ID', 'Factor', 2, 'p_FunctionExpression', 'parser.py', 229), ('Factor -> COSH NUMBER', 'Factor', 2, 'p_FunctionExpression', 'parser.py', 231), ('Factor -> ACOS LPAREN Expression RPAREN', 'Factor', 4, 'p_FunctionExpression', 'parser.py', 233), ('Factor -> ACOS ID', 'Factor', 2, 'p_FunctionExpression', 'parser.py', 235), ('Factor -> ACOS NUMBER', 'Factor', 2, 'p_FunctionExpression', 'parser.py', 237), ('Factor -> COS LPAREN Expression RPAREN', 'Factor', 4, 'p_FunctionExpression', 'parser.py', 239), ('Factor -> COS ID', 'Factor', 2, 'p_FunctionExpression', 'parser.py', 241), ('Factor -> COS NUMBER', 'Factor', 2, 'p_FunctionExpression', 'parser.py', 243), ('Factor -> ATANH LPAREN Expression RPAREN', 'Factor', 4, 'p_FunctionExpression', 'parser.py', 245), ('Factor -> ATANH ID', 'Factor', 2, 'p_FunctionExpression', 'parser.py', 247), ('Factor -> ATANH NUMBER', 'Factor', 2, 'p_FunctionExpression', 'parser.py', 249), ('Factor -> TANH LPAREN Expression RPAREN', 'Factor', 4, 'p_FunctionExpression', 'parser.py', 251), ('Factor -> TANH ID', 'Factor', 2, 'p_FunctionExpression', 'parser.py', 253), ('Factor -> TANH NUMBER', 'Factor', 2, 'p_FunctionExpression', 'parser.py', 255), ('Factor -> ATAN LPAREN Expression COMMA Expression RPAREN', 'Factor', 6, 'p_FunctionExpression', 'parser.py', 257), ('Factor -> ATAN LPAREN Expression RPAREN', 'Factor', 4, 'p_FunctionExpression', 'parser.py', 258), ('Factor -> ATAN ID', 'Factor', 2, 'p_FunctionExpression', 'parser.py', 260), ('Factor -> ATAN NUMBER', 'Factor', 2, 'p_FunctionExpression', 'parser.py', 262), ('Factor -> TAN LPAREN Expression RPAREN', 'Factor', 4, 'p_FunctionExpression', 'parser.py', 264), ('Factor -> TAN ID', 'Factor', 2, 'p_FunctionExpression', 'parser.py', 266), ('Factor -> TAN NUMBER', 'Factor', 2, 'p_FunctionExpression', 'parser.py', 268), ('Factor -> ASEC LPAREN Expression RPAREN', 'Factor', 4, 'p_FunctionExpression', 'parser.py', 270), ('Factor -> ASEC ID', 'Factor', 2, 'p_FunctionExpression', 'parser.py', 272), ('Factor -> ASEC NUMBER', 'Factor', 2, 'p_FunctionExpression', 'parser.py', 274), ('Factor -> SEC LPAREN Expression RPAREN', 'Factor', 4, 'p_FunctionExpression', 'parser.py', 276), ('Factor -> SEC ID', 'Factor', 2, 'p_FunctionExpression', 'parser.py', 278), ('Factor -> SEC NUMBER', 'Factor', 2, 'p_FunctionExpression', 'parser.py', 280), ('Factor -> ACSC LPAREN Expression RPAREN', 'Factor', 4, 'p_FunctionExpression', 'parser.py', 282), ('Factor -> ACSC ID', 'Factor', 2, 'p_FunctionExpression', 'parser.py', 284), ('Factor -> ACSC NUMBER', 'Factor', 2, 'p_FunctionExpression', 'parser.py', 286), ('Factor -> CSC LPAREN Expression RPAREN', 'Factor', 4, 'p_FunctionExpression', 'parser.py', 288), ('Factor -> CSC ID', 'Factor', 2, 'p_FunctionExpression', 'parser.py', 290), ('Factor -> CSC NUMBER', 'Factor', 2, 'p_FunctionExpression', 'parser.py', 292), ('Factor -> ACOTH LPAREN Expression RPAREN', 'Factor', 4, 'p_FunctionExpression', 'parser.py', 294), ('Factor -> ACOTH ID', 'Factor', 2, 'p_FunctionExpression', 'parser.py', 296), ('Factor -> ACOTH NUMBER', 'Factor', 2, 'p_FunctionExpression', 'parser.py', 298), ('Factor -> COTH LPAREN Expression RPAREN', 'Factor', 4, 'p_FunctionExpression', 'parser.py', 300), ('Factor -> COTH ID', 'Factor', 2, 'p_FunctionExpression', 'parser.py', 302), ('Factor -> COTH NUMBER', 'Factor', 2, 'p_FunctionExpression', 'parser.py', 304), ('Factor -> ACOT LPAREN Expression RPAREN', 'Factor', 4, 'p_FunctionExpression', 'parser.py', 306), ('Factor -> ACOT ID', 'Factor', 2, 'p_FunctionExpression', 'parser.py', 308), ('Factor -> ACOT NUMBER', 'Factor', 2, 'p_FunctionExpression', 'parser.py', 310), ('Factor -> COT LPAREN Expression RPAREN', 'Factor', 4, 'p_FunctionExpression', 'parser.py', 312), ('Factor -> COT ID', 'Factor', 2, 'p_FunctionExpression', 'parser.py', 314), ('Factor -> COT NUMBER', 'Factor', 2, 'p_FunctionExpression', 'parser.py', 316), ('Factor -> LOG LPAREN Expression RPAREN', 'Factor', 4, 'p_FunctionExpression', 'parser.py', 318), ('Factor -> LOG ID', 'Factor', 2, 'p_FunctionExpression', 'parser.py', 320), ('Factor -> LOG NUMBER', 'Factor', 2, 'p_FunctionExpression', 'parser.py', 322), ('Factor -> LOG UNDERLINE LBRACE NUMBER RBRACE LPAREN Expression RPAREN', 'Factor', 8, 'p_FunctionExpression', 'parser.py', 324), ('Factor -> LN LPAREN Expression RPAREN', 'Factor', 4, 'p_FunctionExpression', 'parser.py', 326), ('Factor -> LN ID', 'Factor', 2, 'p_FunctionExpression', 'parser.py', 328), ('Factor -> LN NUMBER', 'Factor', 2, 'p_FunctionExpression', 'parser.py', 330), ('Factor -> EXP LPAREN Expression RPAREN', 'Factor', 4, 'p_FunctionExpression', 'parser.py', 332), ('Factor -> EXP ID', 'Factor', 2, 'p_FunctionExpression', 'parser.py', 334), ('Factor -> EXP NUMBER', 'Factor', 2, 'p_FunctionExpression', 'parser.py', 336), ('Factor -> GCD LPAREN ExpressionList RPAREN', 'Factor', 4, 'p_FunctionExpression', 'parser.py', 338), ('Factor -> GCD ID', 'Factor', 2, 'p_FunctionExpression', 'parser.py', 340), ('Factor -> GCD NUMBER', 'Factor', 2, 'p_FunctionExpression', 'parser.py', 342), ('Factor -> DEG LPAREN ExpressionList RPAREN', 'Factor', 4, 'p_FunctionExpression', 'parser.py', 344), ('Factor -> DEG ID', 'Factor', 2, 'p_FunctionExpression', 'parser.py', 346), ('Factor -> DEG NUMBER', 'Factor', 2, 'p_FunctionExpression', 'parser.py', 348), ('Factor -> GRADIENT LPAREN ExpressionList RPAREN', 'Factor', 4, 'p_FunctionExpression', 'parser.py', 350), ('Factor -> GRADIENT ID', 'Factor', 2, 'p_FunctionExpression', 'parser.py', 352), ('Factor -> GRADIENT NUMBER', 'Factor', 2, 'p_FunctionExpression', 'parser.py', 354), ('Factor -> GRADIENT DOT LPAREN ExpressionList RPAREN', 'Factor', 5, 'p_FunctionExpression', 'parser.py', 356), ('Factor -> GRADIENT DOT ID', 'Factor', 3, 'p_FunctionExpression', 'parser.py', 358), ('Factor -> GRADIENT DOT NUMBER', 'Factor', 3, 'p_FunctionExpression', 'parser.py', 360), ('Factor -> GRADIENT CROSS LPAREN ExpressionList RPAREN', 'Factor', 5, 'p_FunctionExpression', 'parser.py', 362), ('Factor -> GRADIENT CROSS ID', 'Factor', 3, 'p_FunctionExpression', 'parser.py', 364), ('Factor -> GRADIENT CROSS NUMBER', 'Factor', 3, 'p_FunctionExpression', 'parser.py', 366), ('Factor -> LAPLACIAN LPAREN Expression RPAREN', 'Factor', 4, 'p_FunctionExpression', 'parser.py', 368), ('Factor -> LAPLACIAN NUMBER', 'Factor', 2, 'p_FunctionExpression', 'parser.py', 370), ('Factor -> LAPLACIAN ID', 'Factor', 2, 'p_FunctionExpression', 'parser.py', 372), ('Factor -> DETERMINANT LPAREN Matrix RPAREN', 'Factor', 4, 'p_FunctionExpression', 'parser.py', 374), ('Factor -> DETERMINANT Matrix', 'Factor', 2, 'p_FunctionExpression', 'parser.py', 376), ('Factor -> Symbol LPAREN ExpressionList RPAREN', 'Factor', 4, 'p_FunctionExpression', 'parser.py', 378), ('Factor -> ID LPAREN ExpressionList RPAREN', 'Factor', 4, 'p_FunctionExpression', 'parser.py', 380), ('Factor -> ID LPAREN RPAREN', 'Factor', 3, 'p_FunctionExpression', 'parser.py', 382), ('Range -> Expression DOTS Expression', 'Range', 3, 'p_Range', 'parser.py', 527), ('IndexingExpression -> ID IN Range', 'IndexingExpression', 3, 'p_IndexingExpression', 'parser.py', 531), ('IteratedExpression -> SUM UNDERLINE LBRACE IndexingExpression RBRACE Expression', 'IteratedExpression', 6, 'p_IteratedExpression', 'parser.py', 535), ('IteratedExpression -> SUM UNDERLINE LBRACE ID EQ Expression RBRACE CARET LBRACE Expression RBRACE Expression', 'IteratedExpression', 12, 'p_IteratedExpression', 'parser.py', 536), ('IteratedExpression -> PROD UNDERLINE LBRACE IndexingExpression RBRACE Expression', 'IteratedExpression', 6, 'p_IteratedExpression', 'parser.py', 537), ('IteratedExpression -> PROD UNDERLINE LBRACE ID EQ Expression RBRACE CARET LBRACE Expression RBRACE Expression', 'IteratedExpression', 12, 'p_IteratedExpression', 'parser.py', 538), ('Integral -> INTEGRAL UNDERLINE LBRACE Expression RBRACE CARET LBRACE Expression RBRACE Expression DIFFERENTIAL', 'Integral', 11, 'p_Integral', 'parser.py', 555), ('Integral -> INTEGRAL UNDERLINE LBRACE Expression RBRACE Expression DIFFERENTIAL', 'Integral', 7, 'p_Integral', 'parser.py', 556), ('Integral -> INTEGRAL CARET LBRACE Expression RBRACE Expression DIFFERENTIAL', 'Integral', 7, 'p_Integral', 'parser.py', 557), ('Integral -> INTEGRAL Expression DIFFERENTIAL', 'Integral', 3, 'p_Integral', 'parser.py', 558), ('Derivative -> FRAC LBRACE D RBRACE LBRACE DIFFERENTIAL RBRACE Expression', 'Derivative', 8, 'p_Derivative1', 'parser.py', 575), ('Derivative -> FRAC LBRACE D CARET LBRACE NUMBER RBRACE RBRACE LBRACE DIFFERENTIAL CARET LBRACE NUMBER RBRACE RBRACE Expression', 'Derivative', 16, 'p_Derivative1', 'parser.py', 576), ('Derivative -> FRAC LBRACE D Expression RBRACE LBRACE DIFFERENTIAL RBRACE', 'Derivative', 8, 'p_Derivative2', 'parser.py', 585), ('Derivative -> FRAC LBRACE D CARET LBRACE NUMBER RBRACE Expression RBRACE LBRACE DIFFERENTIAL CARET LBRACE NUMBER RBRACE RBRACE', 'Derivative', 16, 'p_Derivative2', 'parser.py', 586), ('Derivative -> FRAC LBRACE PARTIAL RBRACE LBRACE PARTIAL ID RBRACE Expression', 'Derivative', 9, 'p_Derivative3', 'parser.py', 595), ('Derivative -> FRAC LBRACE PARTIAL CARET LBRACE NUMBER RBRACE RBRACE LBRACE PARTIAL ID CARET LBRACE NUMBER RBRACE RBRACE Expression', 'Derivative', 17, 'p_Derivative3', 'parser.py', 596), ('Derivative -> FRAC LBRACE PARTIAL Expression RBRACE LBRACE PARTIAL ID RBRACE', 'Derivative', 9, 'p_Derivative4', 'parser.py', 605), ('Derivative -> FRAC LBRACE PARTIAL CARET LBRACE NUMBER RBRACE Expression RBRACE LBRACE PARTIAL ID CARET LBRACE NUMBER RBRACE RBRACE', 'Derivative', 17, 'p_Derivative4', 'parser.py', 606), ('DivisorFunction -> SIGMA_LOWER UNDERLINE LBRACE NUMBER RBRACE LPAREN ExpressionList RPAREN', 'DivisorFunction', 8, 'p_DivisorFunction', 'parser.py', 615), ('ImaginaryNumber -> I', 'ImaginaryNumber', 1, 'p_ImaginaryNumber', 'parser.py', 620), ('ImaginaryNumber -> NUMBER I', 'ImaginaryNumber', 2, 'p_ImaginaryNumber', 'parser.py', 621), ('NapierNumber -> E', 'NapierNumber', 1, 'p_NapierNumber', 'parser.py', 628), ('NapierNumber -> NUMBER E', 'NapierNumber', 2, 'p_NapierNumber', 'parser.py', 629), ('DifferentialVariable -> ID PrimeList LPAREN ExpressionList RPAREN', 'DifferentialVariable', 5, 'p_DifferentialVariable1', 'parser.py', 636), ('DifferentialVariable -> ID PrimeList', 'DifferentialVariable', 2, 'p_DifferentialVariable1', 'parser.py', 637), ('DifferentialVariable -> ID CARET LBRACE LPAREN NUMBER RPAREN RBRACE LPAREN ExpressionList RPAREN', 'DifferentialVariable', 10, 'p_DifferentialVariable2', 'parser.py', 646), ('DifferentialVariable -> ID CARET LBRACE LPAREN NUMBER RPAREN RBRACE', 'DifferentialVariable', 7, 'p_DifferentialVariable2', 'parser.py', 647), ('ChooseExpression -> LBRACE Expression CHOOSE Expression RBRACE', 'ChooseExpression', 5, 'p_Choose', 'parser.py', 678), ('Limit -> LIMIT UNDERLINE LBRACE ID TO Expression RBRACE Expression', 'Limit', 8, 'p_LIMIT', 'parser.py', 682), ('Limit -> LIMIT UNDERLINE LBRACE ID TO Expression PLUS RBRACE Expression', 'Limit', 9, 'p_LIMIT', 'parser.py', 683), ('Limit -> LIMIT UNDERLINE LBRACE ID TO Expression MINUS RBRACE Expression', 'Limit', 9, 'p_LIMIT', 'parser.py', 684), ('Limit -> LIMIT UNDERLINE LBRACE ID TO Expression CARET LBRACE PLUS RBRACE RBRACE Expression', 'Limit', 12, 'p_LIMIT', 'parser.py', 685), ('Limit -> LIMIT UNDERLINE LBRACE ID TO Expression CARET LBRACE MINUS RBRACE RBRACE Expression', 'Limit', 12, 'p_LIMIT', 'parser.py', 686), ('Limit -> LIMIT UNDERLINE LBRACE ID TO Term CARET LBRACE PLUS RBRACE RBRACE Expression', 'Limit', 12, 'p_LIMIT', 'parser.py', 687), ('Limit -> LIMIT UNDERLINE LBRACE ID TO Term CARET LBRACE MINUS RBRACE RBRACE Expression', 'Limit', 12, 'p_LIMIT', 'parser.py', 688), ('ConstraintSystem -> BEGIN_CASE Constraints END_CASE', 'ConstraintSystem', 3, 'p_ConstraintSystem', 'parser.py', 714), ('ConstraintSystem -> BEGIN_CASE Constraints BACKSLASHES END_CASE', 'ConstraintSystem', 4, 'p_ConstraintSystem', 'parser.py', 715), ('Constraints -> Constraints BACKSLASHES Constraint', 'Constraints', 3, 'p_Constraints', 'parser.py', 719), ('Constraints -> Constraint', 'Constraints', 1, 'p_Constraints', 'parser.py', 720), ('Determinant -> BEGIN_VMATRIX ExpressionsRows END_VMATRIX', 'Determinant', 3, 'p_Determinant', 'parser.py', 730), ('Determinant -> BEGIN_VMATRIX ExpressionsRows BACKSLASHES END_VMATRIX', 'Determinant', 4, 'p_Determinant', 'parser.py', 731), ('Norm -> BEGIN_NMATRIX ExpressionsRows END_NMATRIX', 'Norm', 3, 'p_Norm', 'parser.py', 736), ('Norm -> BEGIN_NMATRIX ExpressionsRows BACKSLASHES END_NMATRIX', 'Norm', 4, 'p_Norm', 'parser.py', 737), ('Matrix -> BEGIN_BMATRIX ExpressionsRows END_BMATRIX', 'Matrix', 3, 'p_Matrix', 'parser.py', 742), ('Matrix -> BEGIN_BMATRIX ExpressionsRows BACKSLASHES END_BMATRIX', 'Matrix', 4, 'p_Matrix', 'parser.py', 743), ('Matrix -> BEGIN_PMATRIX ExpressionsRows END_PMATRIX', 'Matrix', 3, 'p_Matrix', 'parser.py', 745), ('Matrix -> BEGIN_PMATRIX ExpressionsRows BACKSLASHES END_PMATRIX', 'Matrix', 4, 'p_Matrix', 'parser.py', 746), ('ExpressionsRow -> ExpressionsRow AMPERSAND Expression', 'ExpressionsRow', 3, 'p_ExpressionsRow', 'parser.py', 751), ('ExpressionsRow -> Expression', 'ExpressionsRow', 1, 'p_ExpressionsRow', 'parser.py', 752), ('ExpressionsRows -> ExpressionsRows BACKSLASHES ExpressionsRow', 'ExpressionsRows', 3, 'p_ExpressionsRows', 'parser.py', 762), ('ExpressionsRows -> ExpressionsRow', 'ExpressionsRows', 1, 'p_ExpressionsRows', 'parser.py', 763), ('ExpressionList -> ExpressionList COMMA Expression', 'ExpressionList', 3, 'p_ExpessionList', 'parser.py', 773), ('ExpressionList -> Expression', 'ExpressionList', 1, 'p_ExpessionList', 'parser.py', 774), ('PrimeList -> PrimeList PRIME', 'PrimeList', 2, 'p_PrimeList', 'parser.py', 784), ('PrimeList -> PRIME', 'PrimeList', 1, 'p_PrimeList', 'parser.py', 785), ('Constraint -> Expression EQ Expression', 'Constraint', 3, 'p_Constraint', 'parser.py', 794), ('Constraint -> Expression NEQ Expression', 'Constraint', 3, 'p_Constraint', 'parser.py', 795), ('Constraint -> Expression LT Expression', 'Constraint', 3, 'p_Constraint', 'parser.py', 796), ('Constraint -> Expression LE Expression', 'Constraint', 3, 'p_Constraint', 'parser.py', 797), ('Constraint -> Expression GT Expression', 'Constraint', 3, 'p_Constraint', 'parser.py', 798), ('Constraint -> Expression GE Expression', 'Constraint', 3, 'p_Constraint', 'parser.py', 799), ('Symbol -> PI', 'Symbol', 1, 'p_Symbol', 'parser.py', 824), ('Symbol -> XI_LOWER', 'Symbol', 1, 'p_Symbol', 'parser.py', 825), ('Symbol -> CHI_LOWER', 'Symbol', 1, 'p_Symbol', 'parser.py', 826), ('Symbol -> PHI_LOWER', 'Symbol', 1, 'p_Symbol', 'parser.py', 827), ('Symbol -> PSI_LOWER', 'Symbol', 1, 'p_Symbol', 'parser.py', 828), ('Symbol -> SIGMA_LOWER', 'Symbol', 1, 'p_Symbol', 'parser.py', 829), ('Symbol -> ZETA_LOWER', 'Symbol', 1, 'p_Symbol', 'parser.py', 830), ('Symbol -> ETA_LOWER', 'Symbol', 1, 'p_Symbol', 'parser.py', 831), ('Symbol -> DELTA_LOWER', 'Symbol', 1, 'p_Symbol', 'parser.py', 832), ('Symbol -> THETA_LOWER', 'Symbol', 1, 'p_Symbol', 'parser.py', 833), ('Symbol -> LAMBDA_LOWER', 'Symbol', 1, 'p_Symbol', 'parser.py', 834), ('Symbol -> EPSILON_LOWER', 'Symbol', 1, 'p_Symbol', 'parser.py', 835), ('Symbol -> TAU_LOWER', 'Symbol', 1, 'p_Symbol', 'parser.py', 836), ('Symbol -> KAPPA_LOWER', 'Symbol', 1, 'p_Symbol', 'parser.py', 837), ('Symbol -> OMEGA_LOWER', 'Symbol', 1, 'p_Symbol', 'parser.py', 838), ('Symbol -> ALPHA_LOWER', 'Symbol', 1, 'p_Symbol', 'parser.py', 839), ('Symbol -> NU_LOWER', 'Symbol', 1, 'p_Symbol', 'parser.py', 840), ('Symbol -> RHO_LOWER', 'Symbol', 1, 'p_Symbol', 'parser.py', 841), ('Symbol -> OMICRON_LOWER', 'Symbol', 1, 'p_Symbol', 'parser.py', 842), ('Symbol -> UPSILON_LOWER', 'Symbol', 1, 'p_Symbol', 'parser.py', 843), ('Symbol -> IOTA_LOWER', 'Symbol', 1, 'p_Symbol', 'parser.py', 844), ('Symbol -> BETA_LOWER', 'Symbol', 1, 'p_Symbol', 'parser.py', 845), ('Symbol -> GAMMA_LOWER', 'Symbol', 1, 'p_Symbol', 'parser.py', 846), ('Symbol -> MU_LOWER', 'Symbol', 1, 'p_Symbol', 'parser.py', 847), ('Symbol -> PI_UPPER', 'Symbol', 1, 'p_Symbol', 'parser.py', 848), ('Symbol -> BETA', 'Symbol', 1, 'p_Symbol', 'parser.py', 849), ('Symbol -> GAMMA', 'Symbol', 1, 'p_Symbol', 'parser.py', 850), ('Symbol -> KAPPA', 'Symbol', 1, 'p_Symbol', 'parser.py', 851), ('Symbol -> OMICRON', 'Symbol', 1, 'p_Symbol', 'parser.py', 852), ('Symbol -> OMEGA', 'Symbol', 1, 'p_Symbol', 'parser.py', 853), ('Symbol -> LAMBDA', 'Symbol', 1, 'p_Symbol', 'parser.py', 854), ('Symbol -> IOTA', 'Symbol', 1, 'p_Symbol', 'parser.py', 855), ('Symbol -> PSI', 'Symbol', 1, 'p_Symbol', 'parser.py', 856), ('Symbol -> MU', 'Symbol', 1, 'p_Symbol', 'parser.py', 857), ('Symbol -> PHI', 'Symbol', 1, 'p_Symbol', 'parser.py', 858), ('Symbol -> SIGMA', 'Symbol', 1, 'p_Symbol', 'parser.py', 859), ('Symbol -> ETA', 'Symbol', 1, 'p_Symbol', 'parser.py', 860), ('Symbol -> ZETA', 'Symbol', 1, 'p_Symbol', 'parser.py', 861), ('Symbol -> THETA', 'Symbol', 1, 'p_Symbol', 'parser.py', 862), ('Symbol -> EPSILON', 'Symbol', 1, 'p_Symbol', 'parser.py', 863), ('Symbol -> TAU', 'Symbol', 1, 'p_Symbol', 'parser.py', 864), ('Symbol -> ALPHA', 'Symbol', 1, 'p_Symbol', 'parser.py', 865), ('Symbol -> XI', 'Symbol', 1, 'p_Symbol', 'parser.py', 866), ('Symbol -> CHI', 'Symbol', 1, 'p_Symbol', 'parser.py', 867), ('Symbol -> NU', 'Symbol', 1, 'p_Symbol', 'parser.py', 868), ('Symbol -> RHO', 'Symbol', 1, 'p_Symbol', 'parser.py', 869), ('Symbol -> UPSILON', 'Symbol', 1, 'p_Symbol', 'parser.py', 870)]
class EndPointParam: NO_VALUE = (None, ) # Simple tuple for testing with `is` def __init__(self, vtype=str, default=NO_VALUE, help_text=None, required=False): self.name = 'param' self.data_type = vtype self.default = default self.help_text = help_text self.required = required def clean(self, value): if value is EndPointParam.NO_VALUE or (value is None and self.required): value = self.default return value class ChoicesParam(EndPointParam): def __init__(self, choices, *args, **kwargs): super().__init__(*args, **kwargs) self.choices = choices def clean(self, value): value = super().clean(value) if value is not None and value not in self.choices: raise ValueError("Invalid Choice. Choices are {}".format( ', '.join(self.choices)) ) return value class IntegerParam(EndPointParam): def __init__(self, min=None, max=None, *args, **kwargs): super().__init__(*args, **kwargs) self.min = min self.max = max def clean(self, value): value = super().clean(value) if value is not EndPointParam.NO_VALUE: if self.min is not None and value < self.min: raise ValueError("Invalid Value. Minimum allowed value is {}".format( self.min )) if self.max is not None and value > self.max: raise ValueError("Invalid Value. Maximum allowed value is {}".format( self.min )) return value class EndpointMeta(type): def __new__(mcs, clsname, bases, clsdict): params = [] for name, val in clsdict.items(): if isinstance(val, EndPointParam): clsdict[name].name = name params.append(val) clsdict['params'] = tuple(params) clsobj = super().__new__(mcs, clsname, bases, clsdict) return clsobj class EndPoint(metaclass=EndpointMeta): params = () def __init__(self, uri, params=None): self.uri = uri self.simple_params = params def prepare(self, **kwargs): uri = self.uri.format(**kwargs) params = {} for param in self.params: value = param.clean(kwargs.get(param.name, EndPointParam.NO_VALUE)) if value is not EndPointParam.NO_VALUE: params[param.name] = value if isinstance(self.simple_params, list): for param in self.simple_params: value = kwargs.get(param, None) if value is not None: params[param] = value return uri, params def explain(self): return "URI: {uri}\n\nDescription: {doc}\n\nParams:\n{params}".format( uri=self.uri, doc=self.__doc__, params="\n".join( [ '{name}: {help_text}'.format( name=param.name, help_text=param.help_text ) for param in self.params ] ) )
class Endpointparam: no_value = (None,) def __init__(self, vtype=str, default=NO_VALUE, help_text=None, required=False): self.name = 'param' self.data_type = vtype self.default = default self.help_text = help_text self.required = required def clean(self, value): if value is EndPointParam.NO_VALUE or (value is None and self.required): value = self.default return value class Choicesparam(EndPointParam): def __init__(self, choices, *args, **kwargs): super().__init__(*args, **kwargs) self.choices = choices def clean(self, value): value = super().clean(value) if value is not None and value not in self.choices: raise value_error('Invalid Choice. Choices are {}'.format(', '.join(self.choices))) return value class Integerparam(EndPointParam): def __init__(self, min=None, max=None, *args, **kwargs): super().__init__(*args, **kwargs) self.min = min self.max = max def clean(self, value): value = super().clean(value) if value is not EndPointParam.NO_VALUE: if self.min is not None and value < self.min: raise value_error('Invalid Value. Minimum allowed value is {}'.format(self.min)) if self.max is not None and value > self.max: raise value_error('Invalid Value. Maximum allowed value is {}'.format(self.min)) return value class Endpointmeta(type): def __new__(mcs, clsname, bases, clsdict): params = [] for (name, val) in clsdict.items(): if isinstance(val, EndPointParam): clsdict[name].name = name params.append(val) clsdict['params'] = tuple(params) clsobj = super().__new__(mcs, clsname, bases, clsdict) return clsobj class Endpoint(metaclass=EndpointMeta): params = () def __init__(self, uri, params=None): self.uri = uri self.simple_params = params def prepare(self, **kwargs): uri = self.uri.format(**kwargs) params = {} for param in self.params: value = param.clean(kwargs.get(param.name, EndPointParam.NO_VALUE)) if value is not EndPointParam.NO_VALUE: params[param.name] = value if isinstance(self.simple_params, list): for param in self.simple_params: value = kwargs.get(param, None) if value is not None: params[param] = value return (uri, params) def explain(self): return 'URI: {uri}\n\nDescription: {doc}\n\nParams:\n{params}'.format(uri=self.uri, doc=self.__doc__, params='\n'.join(['{name}: {help_text}'.format(name=param.name, help_text=param.help_text) for param in self.params]))
async def test_index(test_cli): resp = await test_cli.get('/') assert resp.status == 200 data = await resp.text() assert '<title>squash</title>' in data
async def test_index(test_cli): resp = await test_cli.get('/') assert resp.status == 200 data = await resp.text() assert '<title>squash</title>' in data
if name: env = 1 else: env = 2
if name: env = 1 else: env = 2
n,k = map(int,input().split()) s = input() if n//2 >= k: for i in range(k-1): print("LEFT") for i in range(n-1): print("PRINT",s[i]) print("RIGHT") print("PRINT",s[n-1]) else: for i in range(n-k): print("RIGHT") for i in range(1,n): print("PRINT",s[-i]) print("LEFT") print("PRINT",s[0])
(n, k) = map(int, input().split()) s = input() if n // 2 >= k: for i in range(k - 1): print('LEFT') for i in range(n - 1): print('PRINT', s[i]) print('RIGHT') print('PRINT', s[n - 1]) else: for i in range(n - k): print('RIGHT') for i in range(1, n): print('PRINT', s[-i]) print('LEFT') print('PRINT', s[0])
def stringsRearrangement(inputArray): ''' Given an array of equal-length strings, check if it is possible to rearrange the strings in such a way that after the rearrangement the strings at consecutive positions would differ by exactly one character. ''' totalLen = len(inputArray) for i in range(totalLen): print("================================================") if analizeElement(inputArray[i], inputArray[:i] + inputArray[i + 1:], 1, totalLen): return True print("================================================") return False def analizeElement(item, array, step, totalLen): print("Now analizing '{}' with array {} in step {}".format(item, array, step)) if step == totalLen: return True for i in range(len(array)): if sum(1 for a, c in zip(item, array[i]) if a != c) == 1: if analizeElement(array[i], array[:i] + array[i + 1:], step + 1, totalLen): return True return False print(stringsRearrangement(["abc", "bef", "bcc", "bec", "bbc", "bdc"])) print(stringsRearrangement(["aba", "bbb", "bab"]))
def strings_rearrangement(inputArray): """ Given an array of equal-length strings, check if it is possible to rearrange the strings in such a way that after the rearrangement the strings at consecutive positions would differ by exactly one character. """ total_len = len(inputArray) for i in range(totalLen): print('================================================') if analize_element(inputArray[i], inputArray[:i] + inputArray[i + 1:], 1, totalLen): return True print('================================================') return False def analize_element(item, array, step, totalLen): print("Now analizing '{}' with array {} in step {}".format(item, array, step)) if step == totalLen: return True for i in range(len(array)): if sum((1 for (a, c) in zip(item, array[i]) if a != c)) == 1: if analize_element(array[i], array[:i] + array[i + 1:], step + 1, totalLen): return True return False print(strings_rearrangement(['abc', 'bef', 'bcc', 'bec', 'bbc', 'bdc'])) print(strings_rearrangement(['aba', 'bbb', 'bab']))
# https://projecteuler.net/problem=20 def reverse_str(s): return s[::-1] def sum_str(a, b): if len(b) > len(a): return sum_str(b, a) reverseA = reverse_str(a) reverseB = reverse_str(b) i = 0 add = 0 result = [] while i < len(a): o1 = int(reverseA[i]) o2 = 0 if i < len(b): o2 = int(reverseB[i]) r = (o1+o2+add)%10 add = (o1+o2+add)/10 result.append(str(r)) i = i + 1 if add > 0: result.append(str(add)) return reverse_str(''.join(result)) def str_x_n(s, n): if n == 0: return "" if n > 10: low = str_x_n(s, n%10) high = str_x_n(s, n/10) return sum_str(high+"0", low) reverse = reverse_str(s) add = 0 result = [] for c in reverse: m = int(c)*n + add add = m/10 r = m%10 result.append(str(r)) if add > 0: result.append(str(add)) return reverse_str(''.join(result)) def sum_str_digits(s): sum = 0 for c in s: sum = sum + int(c) return sum xret = "1" for i in range(2, 101): xret = str_x_n(xret, i) print(i, len(xret), xret) print(xret, sum_str_digits(xret))
def reverse_str(s): return s[::-1] def sum_str(a, b): if len(b) > len(a): return sum_str(b, a) reverse_a = reverse_str(a) reverse_b = reverse_str(b) i = 0 add = 0 result = [] while i < len(a): o1 = int(reverseA[i]) o2 = 0 if i < len(b): o2 = int(reverseB[i]) r = (o1 + o2 + add) % 10 add = (o1 + o2 + add) / 10 result.append(str(r)) i = i + 1 if add > 0: result.append(str(add)) return reverse_str(''.join(result)) def str_x_n(s, n): if n == 0: return '' if n > 10: low = str_x_n(s, n % 10) high = str_x_n(s, n / 10) return sum_str(high + '0', low) reverse = reverse_str(s) add = 0 result = [] for c in reverse: m = int(c) * n + add add = m / 10 r = m % 10 result.append(str(r)) if add > 0: result.append(str(add)) return reverse_str(''.join(result)) def sum_str_digits(s): sum = 0 for c in s: sum = sum + int(c) return sum xret = '1' for i in range(2, 101): xret = str_x_n(xret, i) print(i, len(xret), xret) print(xret, sum_str_digits(xret))
''' lec 3 ''' my_list = [1,2,3,4,5] print(my_list) my_nested_list = [1,2,3,my_list] print(my_nested_list) my_list [0] = 6 print(my_list) print(my_list[0]) print(my_list[1]) print(my_list[-1]) print(my_list) print(my_list[1:3]) print(my_list[:]) x,y = ['a', 'b'] print(x,y) print(my_list) my_list.append(7) print(my_list) my_list.remove(7) print(my_list) my_list.sort() print(my_list) my_list.reverse() print(my_list) print(my_list + [8,9]) my_list.extend( ['a', 'b']) print(my_list) print('a' in my_list) print('hello\tworld') print('hello\nworld') my_letter_list = ['a','a','b','b','c'] print(my_letter_list) print( set(my_letter_list)) my_unique_letters = set(my_letter_list) print(my_unique_letters)
""" lec 3 """ my_list = [1, 2, 3, 4, 5] print(my_list) my_nested_list = [1, 2, 3, my_list] print(my_nested_list) my_list[0] = 6 print(my_list) print(my_list[0]) print(my_list[1]) print(my_list[-1]) print(my_list) print(my_list[1:3]) print(my_list[:]) (x, y) = ['a', 'b'] print(x, y) print(my_list) my_list.append(7) print(my_list) my_list.remove(7) print(my_list) my_list.sort() print(my_list) my_list.reverse() print(my_list) print(my_list + [8, 9]) my_list.extend(['a', 'b']) print(my_list) print('a' in my_list) print('hello\tworld') print('hello\nworld') my_letter_list = ['a', 'a', 'b', 'b', 'c'] print(my_letter_list) print(set(my_letter_list)) my_unique_letters = set(my_letter_list) print(my_unique_letters)
class dummy_storage: def retrieve(self): return {} def persist(self, credentials): return None
class Dummy_Storage: def retrieve(self): return {} def persist(self, credentials): return None
# https://app.codesignal.com/interview-practice/task/5vcioHMkhGqkaQQYt/solutions # Singly-linked lists are already defined with this interface: # class ListNode(object): # def __init__(self, x): # self.value = x # self.next = None # def rearrangeLastN(head, n): if n < 1: return head l = 0 iterator = head while iterator: iterator = iterator.next l += 1 if l <= 1 or n >= l: return head reversing_elements = l - n i = 0 start = head while head: i += 1 if i == reversing_elements: new_head = head.next head.next = None head = new_head if head.next: head = head.next else: break head.next = start return new_head
def rearrange_last_n(head, n): if n < 1: return head l = 0 iterator = head while iterator: iterator = iterator.next l += 1 if l <= 1 or n >= l: return head reversing_elements = l - n i = 0 start = head while head: i += 1 if i == reversing_elements: new_head = head.next head.next = None head = new_head if head.next: head = head.next else: break head.next = start return new_head
x = int(input()) ans = 0 ans = (x//500)*1000 x = x % 500 ans += (x//5)*5 print(ans)
x = int(input()) ans = 0 ans = x // 500 * 1000 x = x % 500 ans += x // 5 * 5 print(ans)
# Definition for a binary tree node. # class TreeNode: # def __init__(self, x): # self.val = x # self.left = None # self.right = None class Solution: def dfs(self, root): stack = [] stack.append((root, 1)) ans = sys.maxsize while stack: curr, depth = stack.pop() if curr.right != None: stack.append((curr.right, depth + 1)) if curr.left != None: stack.append((curr.left, depth + 1)) if curr.left == None and curr.right == None: ans = min(depth, ans) return ans def minDepth(self, root): """ :type root: TreeNode :rtype: int """ if root: return self.dfs(root) else: return 0
class Solution: def dfs(self, root): stack = [] stack.append((root, 1)) ans = sys.maxsize while stack: (curr, depth) = stack.pop() if curr.right != None: stack.append((curr.right, depth + 1)) if curr.left != None: stack.append((curr.left, depth + 1)) if curr.left == None and curr.right == None: ans = min(depth, ans) return ans def min_depth(self, root): """ :type root: TreeNode :rtype: int """ if root: return self.dfs(root) else: return 0
class SubScript(): """Creates an instance of SubScript""" def __init__(self): self.NUM_0 = u'\u2080' self.NUM_1 = u'\u2081' self.NUM_2 = u'\u2082' self.NUM_3 = u'\u2083' self.NUM_4 = u'\u2084' self.NUM_5 = u'\u2085' self.NUM_6 = u'\u2086' self.NUM_7 = u'\u2087' self.NUM_8 = u'\u2088' self.NUM_9 = u'\u2089' self.PLUS = u'\u208a' self.MINUS = u'\u208b' self.EQUALS = u'\u208c' self.L_PAR = u'\u208d' self.R_PAR = u'\u208e' class SuperScript(): """Creates an instance of SuperScript""" def __init__(self): self.NUM_0 = u'\u2070' self.NUM_1 = u'\u00b9' self.NUM_2 = u'\u00b2' self.NUM_3 = u'\u00b3' self.NUM_4 = u'\u2074' self.NUM_5 = u'\u2075' self.NUM_6 = u'\u2076' self.NUM_7 = u'\u2077' self.NUM_8 = u'\u2078' self.NUM_9 = u'\u2079' self.PLUS = u'\u207a' self.MINUS = u'\u207b' self.EQUALS = u'\u207c' self.L_PAR = u'\u207d' self.R_PAR = u'\u207e'
class Subscript: """Creates an instance of SubScript""" def __init__(self): self.NUM_0 = u'₀' self.NUM_1 = u'₁' self.NUM_2 = u'₂' self.NUM_3 = u'₃' self.NUM_4 = u'₄' self.NUM_5 = u'₅' self.NUM_6 = u'₆' self.NUM_7 = u'₇' self.NUM_8 = u'₈' self.NUM_9 = u'₉' self.PLUS = u'₊' self.MINUS = u'₋' self.EQUALS = u'₌' self.L_PAR = u'₍' self.R_PAR = u'₎' class Superscript: """Creates an instance of SuperScript""" def __init__(self): self.NUM_0 = u'⁰' self.NUM_1 = u'¹' self.NUM_2 = u'²' self.NUM_3 = u'³' self.NUM_4 = u'⁴' self.NUM_5 = u'⁵' self.NUM_6 = u'⁶' self.NUM_7 = u'⁷' self.NUM_8 = u'⁸' self.NUM_9 = u'⁹' self.PLUS = u'⁺' self.MINUS = u'⁻' self.EQUALS = u'⁼' self.L_PAR = u'⁽' self.R_PAR = u'⁾'
student = { "name": "Mark", "student_id": 15163, "feedback": None } all_students = [ {"name": "Mark", "student_id": 15163}, {"name": "Katarina", "student_id": 63112}, {"name": "Jessica", "student_id": 30021} ] student["name"] == "Mark" student["last_name"] == KeyError student.get("last_name", "Unknown") == "Unknown" student.keys() == ["name", "student_id", "feedback"] student.values() == ["Mark", 15163, None] student["name"] = "James" del student["name"]
student = {'name': 'Mark', 'student_id': 15163, 'feedback': None} all_students = [{'name': 'Mark', 'student_id': 15163}, {'name': 'Katarina', 'student_id': 63112}, {'name': 'Jessica', 'student_id': 30021}] student['name'] == 'Mark' student['last_name'] == KeyError student.get('last_name', 'Unknown') == 'Unknown' student.keys() == ['name', 'student_id', 'feedback'] student.values() == ['Mark', 15163, None] student['name'] = 'James' del student['name']
og=list(input("Enter number ")) new=set(og) print("".join(og),"is a Unique Number") if len(new)==len(og) else print("".join(og),"is not a Unique Number")
og = list(input('Enter number ')) new = set(og) print(''.join(og), 'is a Unique Number') if len(new) == len(og) else print(''.join(og), 'is not a Unique Number')
n = int(input()) cont = 0 while cont < n: num = int(input()) if cont == 0: maior = num elif num > maior: maior = num cont += 1 print(maior)
n = int(input()) cont = 0 while cont < n: num = int(input()) if cont == 0: maior = num elif num > maior: maior = num cont += 1 print(maior)
class Solution: def climbStairs(self, n: int) -> int: if n==1: return 1 if n==2: return 2 l=[1,2] for i in range(2,n): l.append(l[i-1]+l[i-2]) return l.pop()
class Solution: def climb_stairs(self, n: int) -> int: if n == 1: return 1 if n == 2: return 2 l = [1, 2] for i in range(2, n): l.append(l[i - 1] + l[i - 2]) return l.pop()
class PipelineException(Exception): def __init__(self, msg=''): self.msg = msg super(PipelineException, self).__init__(msg)
class Pipelineexception(Exception): def __init__(self, msg=''): self.msg = msg super(PipelineException, self).__init__(msg)
b=[9,6,3,2,5,8,7,4,1,0] def selection_sort(b): for i in range((len(b))-1): min = b[i] for j in range(i + 1, len(b)): if b[j] < min: min = b[j] pos=j b[pos] = b[i] b[i]=min print(b) selection_sort(b) print() def cbse_selsort(b): for i in range(0,len(b)): min=i for j in range (i+1,len(b)): if b[j] < b[min]: min=j pos=b[min] b[min]=b[i] b[i]=pos print(b) b=[9,6,3,2,5,8,7,4,1,0] cbse_selsort(b)
b = [9, 6, 3, 2, 5, 8, 7, 4, 1, 0] def selection_sort(b): for i in range(len(b) - 1): min = b[i] for j in range(i + 1, len(b)): if b[j] < min: min = b[j] pos = j b[pos] = b[i] b[i] = min print(b) selection_sort(b) print() def cbse_selsort(b): for i in range(0, len(b)): min = i for j in range(i + 1, len(b)): if b[j] < b[min]: min = j pos = b[min] b[min] = b[i] b[i] = pos print(b) b = [9, 6, 3, 2, 5, 8, 7, 4, 1, 0] cbse_selsort(b)
def cipher(s): return ''.join((map(lambda c: chr(219-ord(c)) if 97 <= ord(c) <= 122 else c, s))) print(cipher('Anyone who has never made a mistake has never tried anything new.'))
def cipher(s): return ''.join(map(lambda c: chr(219 - ord(c)) if 97 <= ord(c) <= 122 else c, s)) print(cipher('Anyone who has never made a mistake has never tried anything new.'))
"""Task queue - deque example""" class TaskQueue: """Task queue using list""" def __init__(self): self._tasks = [] def push(self, task): self._tasks.insert(0, task) def pop(self): return self._tasks.pop() def __len__(self): return len(self._tasks) def test_queue(count=100): tq = TaskQueue() for i in range(count): tq.push(i) assert len(tq) == i + 1 for i in range(count): assert tq.pop() == i assert len(tq) == count - i - 1 if __name__ == '__main__': test_queue()
"""Task queue - deque example""" class Taskqueue: """Task queue using list""" def __init__(self): self._tasks = [] def push(self, task): self._tasks.insert(0, task) def pop(self): return self._tasks.pop() def __len__(self): return len(self._tasks) def test_queue(count=100): tq = task_queue() for i in range(count): tq.push(i) assert len(tq) == i + 1 for i in range(count): assert tq.pop() == i assert len(tq) == count - i - 1 if __name__ == '__main__': test_queue()
# BOJ 9465 n = 5 stickers = [[50, 10, 100, 20, 40], [30, 50, 70, 10, 60]] memo = [[0 for _ in range(n)] for _ in range(2)] memo[0][0] = stickers[0][0] memo[0][1] = stickers[0][1] def solve(n): for i in range(1, n): if i < 2: memo[0][i] = memo[1][i - 1] + stickers[0][i] memo[1][i] = memo[0][i - 1] + stickers[1][i] else: memo[0][i] = max(memo[1][i - 1], memo[0][i - 2]) + stickers[0][i] memo[1][i] = max(memo[0][i - 1], memo[1][i - 2]) + stickers[1][i] return max(memo[0][n - 1], memo[1][n - 1])
n = 5 stickers = [[50, 10, 100, 20, 40], [30, 50, 70, 10, 60]] memo = [[0 for _ in range(n)] for _ in range(2)] memo[0][0] = stickers[0][0] memo[0][1] = stickers[0][1] def solve(n): for i in range(1, n): if i < 2: memo[0][i] = memo[1][i - 1] + stickers[0][i] memo[1][i] = memo[0][i - 1] + stickers[1][i] else: memo[0][i] = max(memo[1][i - 1], memo[0][i - 2]) + stickers[0][i] memo[1][i] = max(memo[0][i - 1], memo[1][i - 2]) + stickers[1][i] return max(memo[0][n - 1], memo[1][n - 1])
class GenericMachine(): alphabet = set() trans_func = dict() start_state = str() final_states = set() def __init__(self, _alphabet, _trans_func, _start_state, _final_states): self.alphabet = _alphabet self.trans_func = _trans_func self.start_state = _start_state self.final_states = _final_states def __validate_string(self, _string): for char in _string: if char not in self.alphabet: return False return True def process_string(self, string): state = self.start_state for char in string: try: state = self.trans_func[state][char] except: return False return (state in self.final_states)
class Genericmachine: alphabet = set() trans_func = dict() start_state = str() final_states = set() def __init__(self, _alphabet, _trans_func, _start_state, _final_states): self.alphabet = _alphabet self.trans_func = _trans_func self.start_state = _start_state self.final_states = _final_states def __validate_string(self, _string): for char in _string: if char not in self.alphabet: return False return True def process_string(self, string): state = self.start_state for char in string: try: state = self.trans_func[state][char] except: return False return state in self.final_states
''' Python has built-in string validation methods for basic data. It can check if a string is composed of alphabetical characters, alphanumeric characters, digits, etc. str.isalnum() This method checks if all the characters of a string are alphanumeric (a-z, A-Z and 0-9). >>> print 'ab123'.isalnum() True >>> print 'ab123#'.isalnum() False str.isalpha() This method checks if all the characters of a string are alphabetical (a-z and A-Z). >>> print 'abcD'.isalpha() True >>> print 'abcd1'.isalpha() False str.isdigit() This method checks if all the characters of a string are digits (0-9). >>> print '1234'.isdigit() True >>> print '123edsd'.isdigit() False str.islower() This method checks if all the characters of a string are lowercase characters (a-z). >>> print 'abcd123#'.islower() True >>> print 'Abcd123#'.islower() False str.isupper() This method checks if all the characters of a string are uppercase characters (A-Z). >>> print 'ABCD123#'.isupper() True >>> print 'Abcd123#'.isupper() False Task You are given a string . Your task is to find out if the string contains: alphanumeric characters, alphabetical characters, digits, lowercase and uppercase characters. Input Format A single line containing a string . Constraints Output Format In the first line, print True if has any alphanumeric characters. Otherwise, print False. In the second line, print True if has any alphabetical characters. Otherwise, print False. In the third line, print True if has any digits. Otherwise, print False. In the fourth line, print True if has any lowercase characters. Otherwise, print False. In the fifth line, print True if has any uppercase characters. Otherwise, print False. Sample Input qA2 Sample Output True True True True True ''' if __name__ == '__main__': s = input() v=False for n in s: if n.isalnum(): v=True print(v) v=False for n in s: if n.isalpha(): v=True print(v) v=False for n in s: if n.isdigit(): v=True print(v) v=False for n in s: if n.islower(): v=True print(v) v=False for n in s: if n.isupper(): v=True print(v)
""" Python has built-in string validation methods for basic data. It can check if a string is composed of alphabetical characters, alphanumeric characters, digits, etc. str.isalnum() This method checks if all the characters of a string are alphanumeric (a-z, A-Z and 0-9). >>> print 'ab123'.isalnum() True >>> print 'ab123#'.isalnum() False str.isalpha() This method checks if all the characters of a string are alphabetical (a-z and A-Z). >>> print 'abcD'.isalpha() True >>> print 'abcd1'.isalpha() False str.isdigit() This method checks if all the characters of a string are digits (0-9). >>> print '1234'.isdigit() True >>> print '123edsd'.isdigit() False str.islower() This method checks if all the characters of a string are lowercase characters (a-z). >>> print 'abcd123#'.islower() True >>> print 'Abcd123#'.islower() False str.isupper() This method checks if all the characters of a string are uppercase characters (A-Z). >>> print 'ABCD123#'.isupper() True >>> print 'Abcd123#'.isupper() False Task You are given a string . Your task is to find out if the string contains: alphanumeric characters, alphabetical characters, digits, lowercase and uppercase characters. Input Format A single line containing a string . Constraints Output Format In the first line, print True if has any alphanumeric characters. Otherwise, print False. In the second line, print True if has any alphabetical characters. Otherwise, print False. In the third line, print True if has any digits. Otherwise, print False. In the fourth line, print True if has any lowercase characters. Otherwise, print False. In the fifth line, print True if has any uppercase characters. Otherwise, print False. Sample Input qA2 Sample Output True True True True True """ if __name__ == '__main__': s = input() v = False for n in s: if n.isalnum(): v = True print(v) v = False for n in s: if n.isalpha(): v = True print(v) v = False for n in s: if n.isdigit(): v = True print(v) v = False for n in s: if n.islower(): v = True print(v) v = False for n in s: if n.isupper(): v = True print(v)
# -*- encoding: utf-8 -*- class WebError(Exception): def __init__(self, code, message=''): Exception.__init__(self) self.code = code self.message = message def __str__(self): return self.message
class Weberror(Exception): def __init__(self, code, message=''): Exception.__init__(self) self.code = code self.message = message def __str__(self): return self.message
HELP_MESSAGE = """Hi there, I am a bot that shows the current free games on all the major game platforms out there. You will get automatically notified when new games become free to collect. If you would like to see the current free game please use the following command: /freegame """ BOT_TOKEN = '123'
help_message = 'Hi there, I am a bot that shows the current free games on all the major game platforms out there.\nYou will get automatically notified when new games become free to collect.\nIf you would like to see the current free game please use the following command: /freegame\n' bot_token = '123'
# EG7-09 get_value investigation 2 def get_value(prompt, value_min, value_max): return ride_number=get_value(prompt='Please enter the ride number you want:',value_min=1,value_max=5) print('You have selected ride:',ride_number)
def get_value(prompt, value_min, value_max): return ride_number = get_value(prompt='Please enter the ride number you want:', value_min=1, value_max=5) print('You have selected ride:', ride_number)
# https://www.codewars.com/kata/5266876b8f4bf2da9b000362/train/python def likes(names): counter=0 for name in names: counter+=1 if counter==0: return("no one likes this") elif counter==1: return(f"{names[0]} likes this") elif counter==2: return(f"{names[0]} and {names[1]} like this") elif counter==3: return(f"{names[0]}, {names[1]} and {names[2]} like this") elif counter>3: return(f"{names[0]}, {names[1]} and {counter-2} others like this") #names=input("Names: ") #print(likes(names))
def likes(names): counter = 0 for name in names: counter += 1 if counter == 0: return 'no one likes this' elif counter == 1: return f'{names[0]} likes this' elif counter == 2: return f'{names[0]} and {names[1]} like this' elif counter == 3: return f'{names[0]}, {names[1]} and {names[2]} like this' elif counter > 3: return f'{names[0]}, {names[1]} and {counter - 2} others like this'
# Created by MechAviv # Quest ID :: 20865 # The Path of a Thunder Breaker sm.setSpeakerID(1101007) if sm.sendAskYesNo("Yer sure about this? Remember, ye can't change yer mind, so ye'll want to pick carefully. Ye really want to join me as a Thunder Breaker?"): sm.setSpeakerID(1101007) sm.sendNext("Just like that, yer a Thunder Breaker! Now let me give ye some abilities.") sm.giveItem(1482014) sm.giveItem(1142066) # [HIRE_TUTOR] [00 ] sm.completeQuest(20865) sm.removeSkill(10000259) sm.setJob(1500) sm.resetStats() sm.addSP(4, True) # Unhandled Stat Changed [MHP] Packet: 00 00 00 08 00 00 00 00 00 00 58 01 00 00 FF 00 00 00 00 # Unhandled Stat Changed [MMP] Packet: 00 00 00 20 00 00 00 00 00 00 A3 00 00 00 FF 00 00 00 00 # Unhandled Stat Changed [HP] Packet: 00 00 00 04 00 00 00 00 00 00 58 01 00 00 FF 00 00 00 00 # Unhandled Stat Changed [MP] Packet: 00 00 00 10 00 00 00 00 00 00 A3 00 00 00 FF 00 00 00 00 sm.giveSkill(10001245, 1, 1) sm.giveSkill(10000246, 1, 1) # [INVENTORY_GROW] [01 1C ] # [INVENTORY_GROW] [02 1C ] # [INVENTORY_GROW] [03 1C ] # [INVENTORY_GROW] [04 1C ] sm.setSpeakerID(1101007) sm.sendSay("To become a stronger Thunder Breaker, ye have to distribute yer stats. Just open yer Stats Window (S) to do so. If yer unsure what stats to upgrade, try usin' the ol' #bAuto-Assign#k feature.") sm.setSpeakerID(1101007) sm.sendSay("A Thunder Breaker be needin' an awful lot of items, so I've expanded yer Etc slots.") sm.setSpeakerID(1101007) sm.sendSay("I've also given ye some #bSP#k. Just open yer #bSkill Menu#k to learn some new skills. There isn't much to learn and ye can't learn them all at once, and some of them require that ye learn other skills first.") sm.setSpeakerID(1101007) sm.sendSay("As an ol' Thunder Breaker, remember that if ye die, ye'll lose some EXP. So, don't go bargin' into fights without thinkin', ye hear?") sm.setSpeakerID(1101007) sm.sendSay("Now, set sail on yer adventure as a Cygnus Knight!") else: sm.setSpeakerID(1101007) sm.sendNext("Well, that's too bad! I would've loved to have ye on me crew.")
sm.setSpeakerID(1101007) if sm.sendAskYesNo("Yer sure about this? Remember, ye can't change yer mind, so ye'll want to pick carefully. Ye really want to join me as a Thunder Breaker?"): sm.setSpeakerID(1101007) sm.sendNext('Just like that, yer a Thunder Breaker! Now let me give ye some abilities.') sm.giveItem(1482014) sm.giveItem(1142066) sm.completeQuest(20865) sm.removeSkill(10000259) sm.setJob(1500) sm.resetStats() sm.addSP(4, True) sm.giveSkill(10001245, 1, 1) sm.giveSkill(10000246, 1, 1) sm.setSpeakerID(1101007) sm.sendSay("To become a stronger Thunder Breaker, ye have to distribute yer stats. Just open yer Stats Window (S) to do so. If yer unsure what stats to upgrade, try usin' the ol' #bAuto-Assign#k feature.") sm.setSpeakerID(1101007) sm.sendSay("A Thunder Breaker be needin' an awful lot of items, so I've expanded yer Etc slots.") sm.setSpeakerID(1101007) sm.sendSay("I've also given ye some #bSP#k. Just open yer #bSkill Menu#k to learn some new skills. There isn't much to learn and ye can't learn them all at once, and some of them require that ye learn other skills first.") sm.setSpeakerID(1101007) sm.sendSay("As an ol' Thunder Breaker, remember that if ye die, ye'll lose some EXP. So, don't go bargin' into fights without thinkin', ye hear?") sm.setSpeakerID(1101007) sm.sendSay('Now, set sail on yer adventure as a Cygnus Knight!') else: sm.setSpeakerID(1101007) sm.sendNext("Well, that's too bad! I would've loved to have ye on me crew.")
""" 1. get the user,pwd and current sold from the console 2. validate the user and password 3. Enable the login through an enter 4. Display the sold after the login 5. Retrieve an amount of cash 6. Display the password encrypted e.g. instead of 'abcd' show '****'. 7. Be aware that the nr of '*' should be equal with the length of the pwd """ # Define the expected results in terms of code expected_usr: str = "Paul" expected_pwd: str = "abcg" expected_sold: int = 10000 # Implement the test case usr = input("Please enter a valid username ") assert usr == expected_usr pwd = input("Please enter a valid password ") assert pwd == expected_pwd input("Press enter to login") print(f"Logged in successfully, your sold is {expected_sold}") cash = int(input("How much cash do you want?")) print(f"Your sold now is {expected_sold - cash} RON") show_pwd = len(pwd) print(f'The password for user {usr} is {show_pwd * "*"}, is {show_pwd} characters long', end='') print(f'The password for user {usr} is {show_pwd * "*"}, is {show_pwd} characters long')
""" 1. get the user,pwd and current sold from the console 2. validate the user and password 3. Enable the login through an enter 4. Display the sold after the login 5. Retrieve an amount of cash 6. Display the password encrypted e.g. instead of 'abcd' show '****'. 7. Be aware that the nr of '*' should be equal with the length of the pwd """ expected_usr: str = 'Paul' expected_pwd: str = 'abcg' expected_sold: int = 10000 usr = input('Please enter a valid username ') assert usr == expected_usr pwd = input('Please enter a valid password ') assert pwd == expected_pwd input('Press enter to login') print(f'Logged in successfully, your sold is {expected_sold}') cash = int(input('How much cash do you want?')) print(f'Your sold now is {expected_sold - cash} RON') show_pwd = len(pwd) print(f"The password for user {usr} is {show_pwd * '*'}, is {show_pwd} characters long", end='') print(f"The password for user {usr} is {show_pwd * '*'}, is {show_pwd} characters long")
""" Author: Trevor Stalnaker, Justin Pusztay File: fsm.py A class that models a finite state machine """ class FSM(): """ Models a generalized finite state machine """ def __init__(self, startState, states, transitions): self._state = startState self._startState = startState self._states = states self._transitions = transitions def changeState(self, action): """ Changes the state based on the action """ for rule in self._transitions: if rule.getStartState() == self._state and \ rule.getAction() == action: self._state = rule.getEndState() def getCurrentState(self): """ Returns the current state """ return self._state def getStates(self): """ Returns all the possible states. """ return self._states def getTransitions(self): """ Returns the transitions. """ return self._transitions def backToStart(self): """ Returns the FSM to the start state. """ self._state = self._startState class Rule(): """ Models a transition in a finite state machine """ def __init__(self, state1, action, state2): self._startState = state1 self._action = action self._endState = state2 def getStartState(self): """ Returns the start state. """ return self._startState def getAction(self): """ Returns the action """ return self._action def getEndState(self): """ Returns the end state """ return self._endState def __repr__(self): """ Returns a reprsentation of the rule. """ return "(" + str(self._startState) + "," + str(self._symbol) + \ "," + str(self._endState) + ")"
""" Author: Trevor Stalnaker, Justin Pusztay File: fsm.py A class that models a finite state machine """ class Fsm: """ Models a generalized finite state machine """ def __init__(self, startState, states, transitions): self._state = startState self._startState = startState self._states = states self._transitions = transitions def change_state(self, action): """ Changes the state based on the action """ for rule in self._transitions: if rule.getStartState() == self._state and rule.getAction() == action: self._state = rule.getEndState() def get_current_state(self): """ Returns the current state """ return self._state def get_states(self): """ Returns all the possible states. """ return self._states def get_transitions(self): """ Returns the transitions. """ return self._transitions def back_to_start(self): """ Returns the FSM to the start state. """ self._state = self._startState class Rule: """ Models a transition in a finite state machine """ def __init__(self, state1, action, state2): self._startState = state1 self._action = action self._endState = state2 def get_start_state(self): """ Returns the start state. """ return self._startState def get_action(self): """ Returns the action """ return self._action def get_end_state(self): """ Returns the end state """ return self._endState def __repr__(self): """ Returns a reprsentation of the rule. """ return '(' + str(self._startState) + ',' + str(self._symbol) + ',' + str(self._endState) + ')'
#!/usr/bin/env python # -*- coding: utf-8 -*- arr = [6,5,4,2,1,8,3] def qsort(l, r): global arr if l >= r: return first, last, key = l, r, arr[l] while first < last: while first < last and arr[last] >= key: last -= 1 arr[first] = arr[last] while first < last and arr[first] <= key: first += 1 arr[last] = arr[first] arr[first] = key print(arr) if first == l: return qsort(l, first) qsort(first+1, r) qsort(0, len(arr)-1) print(arr)
arr = [6, 5, 4, 2, 1, 8, 3] def qsort(l, r): global arr if l >= r: return (first, last, key) = (l, r, arr[l]) while first < last: while first < last and arr[last] >= key: last -= 1 arr[first] = arr[last] while first < last and arr[first] <= key: first += 1 arr[last] = arr[first] arr[first] = key print(arr) if first == l: return qsort(l, first) qsort(first + 1, r) qsort(0, len(arr) - 1) print(arr)