content
stringlengths
7
1.05M
""" lab 7 """ # 3.1 i = -1 while i <6: i = i+1 if i ==3 or i ==6: continue print(i) # 3.2 i=1 result = 1 while i <=5: #print(i) result = result *i i = i+1 print(result) # 3.3 i = 1 result = 0 while i <=5: result = result +i i = i+1 print(result) # 3.4 i = 3 result = 1 while i <=8: result = result *i i = i + 1 print(result) # 3.5 # simplified to 8*7*6*5*4 i = 4 result = 1 while i<=8: result = result *i i = i+1 print(result) # 3.6 num_list = [12,32,43,35] while num_list: num_list.remove(num_list[0]) print(num_list)
"""582. Word Break II """ class Solution: """ @param: s: A string @param: wordDict: A set of words. @return: All possible sentences. """ def wordBreak(self, s, wordDict): # write your code here return self.dfs(0, s, wordDict, {}) def dfs(self, idx, s, dict, memo): if idx == len(s): return [] if s[idx:] in memo: return memo[s[idx:]] res = [] path = "" for i in range(idx, len(s)): if s[idx: i + 1] not in dict: continue prefixes = self.dfs(i + 1, s, dict, memo) path = s[idx: i + 1] for prefix in prefixes: res.append(path + " " + prefix) if s[idx:] in dict: res.append(s[idx:]) memo[s[idx:]] = res return res ### Practice: return self.dfs(0, s, wordDict, {}) def dfs(self, idx, s, dict, memo): if idx == len(s): return [] if s[idx:] in memo: return memo[s[idx:]] res = [] path = "" for i in range(idx, len(s)): prefix = s[idx: i + 1] if prefix not in dict: continue path = prefix for sentence in self.dfs(i + 1, s, dict, memo): res.append(path + " " + sentence) if s[idx:] in dict: res.append(s[idx:]) ## !! memo[s[idx:]] = res return res ## return self.dfs(s, wordDict, {}) def dfs(self, s, wordDict, memo): if s in memo: return memo[s] if not s: return [] path = [] for i in range(1, len(s)): prefix = s[:i] if prefix not in wordDict: continue suffix = s[i:] partitions = self.dfs(suffix, wordDict, memo) for partition in partitions: path.append(prefix + " " + partition) if s in wordDict: path.append(s) memo[s] = path return path
#Extensions: # I have Taken Example 5.9 and extended it to dictionary #no users: usernames = { 'aes':{ 'password':'64545465', 'key' : '56' }, 'bes':{ 'password':'64545465', 'key' : '56' }, 'ces':{ 'password':'64546545', 'key' : '56' }, 'admin':{ 'password':'64546465', 'key' : '5' } } if usernames != {}: for user,info in usernames.items(): if user == 'admin': print("Hello, admin! here are all the username and password") print(usernames) else : print("hello",user,". Thank you for logging in.") for password,key in info.items(): print(password,":",key) else : print("we need to find more users.")
MACS_VERSION = "3.0.0a7" MAX_PAIRNUM = 1000 MAX_LAMBDA = 100000 FESTEP = 20 BUFFER_SIZE = 100000 # np array will increase at step of 1 million items READ_BUFFER_SIZE = 10000000 # 10M bytes for read buffer size N_MP = 2 # Number of processers
# -*- coding: utf-8 -*- """ Created on Fri Mar 30 16:26:18 2018 Accelerator BPM @author: xf18id """ bpm17_1x = EpicsSignalRO("SR:C17-BI{BPM:1}Pos:X-I", name="bpm17_1x") bpm17_1y = EpicsSignalRO("SR:C17-BI{BPM:1}Pos:Y-I", name="bpm17_1y") bpm17_2x = EpicsSignalRO("SR:C17-BI{BPM:2}Pos:X-I", name="bpm17_2x") bpm17_2y = EpicsSignalRO("SR:C17-BI{BPM:2}Pos:Y-I", name="bpm17_2y") bpm17_3x = EpicsSignalRO("SR:C17-BI{BPM:3}Pos:X-I", name="bpm17_3x") bpm17_3y = EpicsSignalRO("SR:C17-BI{BPM:3}Pos:Y-I", name="bpm17_3y") bpm17_4x = EpicsSignalRO("SR:C17-BI{BPM:4}Pos:X-I", name="bpm17_4x") bpm17_4y = EpicsSignalRO("SR:C17-BI{BPM:4}Pos:Y-I", name="bpm17_4y") bpm17_5x = EpicsSignalRO("SR:C17-BI{BPM:5}Pos:X-I", name="bpm17_5x") bpm17_5y = EpicsSignalRO("SR:C17-BI{BPM:5}Pos:Y-I", name="bpm17_5y") bpm17_6x = EpicsSignalRO("SR:C17-BI{BPM:6}Pos:X-I", name="bpm17_6x") bpm17_6y = EpicsSignalRO("SR:C17-BI{BPM:6}Pos:Y-I", name="bpm17_6y") bpm18_7x = EpicsSignalRO("SR:C18-BI{BPM:7}Pos:X-I", name="bpm18_7x") bpm18_7y = EpicsSignalRO("SR:C18-BI{BPM:7}Pos:Y-I", name="bpm18_7y") bpm18_8x = EpicsSignalRO("SR:C18-BI{BPM:8}Pos:X-I", name="bpm18_8x") bpm18_8y = EpicsSignalRO("SR:C18-BI{BPM:8}Pos:Y-I", name="bpm18_8y") bpm18_1x = EpicsSignalRO("SR:C18-BI{BPM:1}Pos:X-I", name="bpm18_1x") bpm18_1y = EpicsSignalRO("SR:C18-BI{BPM:1}Pos:Y-I", name="bpm18_1y") bpm18_2x = EpicsSignalRO("SR:C18-BI{BPM:2}Pos:X-I", name="bpm18_2x") bpm18_2y = EpicsSignalRO("SR:C18-BI{BPM:2}Pos:Y-I", name="bpm18_2y") bpm18_3x = EpicsSignalRO("SR:C18-BI{BPM:3}Pos:X-I", name="bpm18_3x") bpm18_3y = EpicsSignalRO("SR:C18-BI{BPM:3}Pos:Y-I", name="bpm18_3y") bpm18_4x = EpicsSignalRO("SR:C18-BI{BPM:4}Pos:X-I", name="bpm18_4x") bpm18_4y = EpicsSignalRO("SR:C18-BI{BPM:4}Pos:Y-I", name="bpm18_4y") bpm18_5x = EpicsSignalRO("SR:C18-BI{BPM:5}Pos:X-I", name="bpm18_5x") bpm18_5y = EpicsSignalRO("SR:C18-BI{BPM:5}Pos:Y-I", name="bpm18_5y") bpm18_6x = EpicsSignalRO("SR:C18-BI{BPM:6}Pos:X-I", name="bpm18_6x") bpm18_6y = EpicsSignalRO("SR:C18-BI{BPM:6}Pos:Y-I", name="bpm18_6y") bpm_17x = [bpm17_1x, bpm17_2x, bpm17_3x, bpm17_4x, bpm17_5x, bpm17_6x] bpm_17y = [bpm17_1y, bpm17_2y, bpm17_3y, bpm17_4y, bpm17_5y, bpm17_6y] bpm_18x = [ bpm18_1x, bpm18_2x, bpm18_3x, bpm18_4x, bpm18_5x, bpm18_6x, bpm18_7x, bpm18_8x, ] bpm_18y = [ bpm18_1y, bpm18_2y, bpm18_3y, bpm18_4y, bpm18_5y, bpm18_6y, bpm18_7y, bpm18_8y, ] bpm_17 = bpm_17x + bpm_17y bpm_18 = bpm_18x + bpm_18y # bpm_17 = [bpm17_1x,bpm17_1y, bpm17_2x,bpm17_2y,bpm17_3x,bpm17_3y, bpm17_4x,bpm17_4y, bpm17_5x,bpm17_5y, bpm17_6x,bpm17_6y] # bpm_18 = [bpm18_1x,bpm18_1y, bpm18_2x,bpm18_2y,bpm18_3x,bpm18_3y, bpm18_4x,bpm18_4y, bpm18_5x,bpm18_5y, bpm18_6x,bpm18_6y, bpm18_7x,bpm18_7y, bpm18_8x,bpm18_8y]
# error if not grade for a student # OPTION 2: change the policy def get_stats(class_list): new_stats = [] for item in class_list: new_stats.append([item[0], item[1], avg(item[1])]) return new_stats def avg(grades): try: return sum(grades)/len(grades) except ZeroDivisionError: print('no grades data') return 0.0 # decided that students w/o grades get a 0 # test_grades = [[['peter', 'parker'], [10.0, 5.0, 85.0]], [['bruce', 'wayne'], [10.0, 8.0, 74.0]]] test_grades = [[['peter', 'parker'], [10.0, 5.0, 85.0]], [['bruce', 'wayne'], [10.0, 8.0, 74.0]], [['deadpool'], []]] print(get_stats(test_grades))
class BaseHelper: def __init__(self, device): self.device = device def params(self, locals_: dict): params = locals_.copy() params.pop('self') return params
#!/usr/bin/env python # -*- coding: utf-8 -*- class Watchdog(object): KEEP_ALIVE = '\n' DEVICE = '/dev/watchdog' # STOP = 'V' in bleaglebone black not works def __init__(self): pass def notify(self, device, msg): ''' /dev/watchdog is opened and will reboot unless the watchdog is pinged within a certain time. :param device str: path of watchdog special device :param msg str: string to send ''' with open(device, 'w+') as file: file.write(msg) file.flush() def main(): Watchdog().notify(Watchdog.DEVICE, Watchdog.KEEP_ALIVE) if __name__ == '__main__': main()
def CheckBinarySearchTreeSequence(arr: iter): """ Checks if a binary search sequence can is feasible :param arr: An array containing the binary search tree sequence :type arr: iter """ invalidSequenceString = "sequence is invalid: %s %s %s." searchVal = arr[-1] minVal = min(arr) - 1 maxVal = max(arr) + 1 for i in arr: if i < searchVal: if i < minVal: return invalidSequenceString % (i, "<", minVal) if i == minVal: return invalidSequenceString % (i, "appears", "multiple times") minVal = i elif i > searchVal: if i > maxVal: return invalidSequenceString % (i, ">", maxVal) if i == maxVal: return invalidSequenceString % (i, "appears", "multiple times") maxVal = i return "the sequence is valid."
''' 012 Faça um algoritmo que leia o preço de um produto e mostre seu novo preço, com 5% de desconto''' valor = float(input('Digite o valor do protudo: R$ ')) print(f'O Valor do produto com 5% de desconto é {valor - (valor * 5)/100:.2f}')
"""Macros to simplify generating maven files. """ load("@google_bazel_common//tools/maven:pom_file.bzl", default_pom_file = "pom_file") def pom_file(name, targets, artifact_name, artifact_id, packaging = None, **kwargs): default_pom_file( name = name, targets = targets, preferred_group_ids = [ "com.google.common.inject", "com.google.inject", "dagger", "com.google", ], template_file = "//tools:pom-template.xml", substitutions = { "{artifact_name}": artifact_name, "{artifact_id}": artifact_id, "{packaging}": packaging or "jar", }, **kwargs ) POM_VERSION = "${project.version}"
class Solution: def backspaceCompare(self, S: str, T: str) -> bool: s_bcount, t_bcount = 0, 0 s_idx, t_idx = len(S) - 1, len(T) - 1 while s_idx >= 0 or t_idx >= 0: while s_idx >= 0: if S[s_idx] == '#': s_bcount += 1 s_idx -= 1 continue if s_bcount > 0: s_idx -= 1 s_bcount -= 1 else: break while t_idx >= 0: if T[t_idx] == '#': t_bcount += 1 t_idx -= 1 continue if t_bcount > 0: t_idx -= 1 t_bcount -= 1 else: break if s_idx >= 0 and t_idx >= 0 and S[s_idx] != T[t_idx]: return False elif (s_idx >= 0 and t_idx < 0) or (s_idx < 0 and t_idx >= 0): return False s_idx -= 1 t_idx -= 1 return True
class Solution: def ladderLength(self, beginWord: str, endWord: str, wordList: List[str]) -> int: if endWord not in wordList: return 0 result = 0 l = len(beginWord) beginSet = {beginWord} endSet = {endWord} wordList = set(wordList) while beginSet or endSet: result += 1 if len(beginSet) < len(endSet): beginSet, endSet = endSet, beginSet newSet = set() for word in beginSet: for index in range(l): for c in string.ascii_lowercase: newWord = word[:index] + c + word[index + 1:] if newWord in endSet: return result + 1 if newWord not in wordList: continue wordList.remove(newWord) newSet.add(newWord) beginSet = newSet return 0
# coding: utf8 # try something like # coding: utf8 # try something like def index(): rows = db((db.activity.type=='stand')&(db.activity.status=='accepted')).select() if rows: return dict(projects=rows) else: return plugin_flatpage()
#re-learning about class and objects. class MyClass: #ini class, class adalah blueprint dari object var = "blah" #variable ini adalah object didalan class def function(self): #ini adalah fungsi didalam class print("This is a message inside the class.") myobjectx = MyClass() #myobjectx adalah variable, yang menyimpan object dari class MyClass() yang isinya berupa var(object) dan function. myobjectx.var #mengakses var print(myobjectx.var) print("####\n") ################### ## 2 object menggunakan class yang sama myobjecty = MyClass() myobjectz = MyClass() myobjectz.var = "zlah" #mendefinisikan var print(myobjectx.var) #hasilnya tetap blah print(myobjectz.var) #hasilnya akan menjadi zlah, karena habis di redefinisi print("####\n") ################### ## mengakses fungsi myobjectx.function() print("####\n") ################### ## exercise class Vehicle: name = "" kind = "car" color = "" value = 100.00 def description(self): desc = "%s is a %s %s worth $%.2f." % (self.name, self.color, self.kind, self.value) return desc car1 = Vehicle() car1.name = "Fer" car1.kind = "Convertible" car1.color = "Red" car1.value = 60000.00 car2 = Vehicle() car2.name = "Jump" car2.kind = "Van" car2.color = "Blue" car2.value = 10000 print(car1.description()) print(car2.description())
class Profiler(object): def __init__(self, config, paths): pass def dependencies(self): """Returns list of needed app dependencies,like com.quicinc.trepn, [] if none""" raise NotImplementedError def load(self, device): """Load (and start) the profiler process on the device""" raise NotImplementedError def start_profiling(self, device, **kwargs): """Start the profiling process""" raise NotImplementedError def stop_profiling(self, device, **kwargs): """Stop the profiling process""" raise NotImplementedError def collect_results(self, device): """Collect the data and clean up extra files on the device, save data in location set by 'set_output' """ raise NotImplementedError def unload(self, device): """Stop the profiler, removing configuration files on device""" raise NotImplementedError def set_output(self, output_dir): """Set the output directory before the start_profiling is called""" raise NotImplementedError def aggregate_subject(self): """Aggregate the data at the end of a subject, collect data and save data to location set by 'set output' """ raise NotImplementedError def aggregate_end(self, data_dir, output_file): """Aggregate the data at the end of the experiment. Data located in file structure inside data_dir. Save aggregated data to output_file """ raise NotImplementedError
input = """ % map date to weekday (mon =1, ..., sun = 7); % The tour starts on Monday. weekday(1,1). weekday(D,W) :- D=D1+1, W=W1+1, weekday(D1,W1), W1 < 7. weekday(D,1) :- D=D1+1, weekday(D1,7). % connections with default costs (capitols of the Austrian federal states). conn(brg,ibk,2). conn(ibk,sbg,2). conn(ibk,wie,5). conn(ibk,kla,3). conn(sbg,kla,2). conn(sbg,gra,2). conn(sbg,lin,1). conn(sbg,wie,3). conn(kla,gra,2). conn(lin,stp,1). conn(lin,wie,2). conn(lin,gra,2). conn(gra,wie,2). conn(gra,eis,1). conn(stp,wie,1). conn(eis,wie,1). conn(stp,eis,2). conn(B,A,C) :- conn(A,B,C). city(T) :- conn(T,_,_). % costing: use default cost, if there are no extra costs % cost(A,B,W,C) :- conn(A,B,C), 0 < W, W <= 7, %#int(W), 0 < W, W <= 7, not ecost(A,B,W). ecost(A,B,W) :- ex_cost(A,B,W,C). cost(A,B,W,C) :- ex_cost(A,B,W,C). ex_cost(A,B,W,C) :- ex_cost(B,A,W,C). % Some example of an extra cost. ex_cost(stp,eis,2,10). % Nicer would be, in an unstratified program, % to have no "ex_cost" but only cost, and define % % ecost(A,B,W) :- cost(A,B,W,C), dcost(A,B,C1), C != C1. % ecost(A,B,W) :- ecost(B,A,W). """ output = """ % map date to weekday (mon =1, ..., sun = 7); % The tour starts on Monday. weekday(1,1). weekday(D,W) :- D=D1+1, W=W1+1, weekday(D1,W1), W1 < 7. weekday(D,1) :- D=D1+1, weekday(D1,7). % connections with default costs (capitols of the Austrian federal states). conn(brg,ibk,2). conn(ibk,sbg,2). conn(ibk,wie,5). conn(ibk,kla,3). conn(sbg,kla,2). conn(sbg,gra,2). conn(sbg,lin,1). conn(sbg,wie,3). conn(kla,gra,2). conn(lin,stp,1). conn(lin,wie,2). conn(lin,gra,2). conn(gra,wie,2). conn(gra,eis,1). conn(stp,wie,1). conn(eis,wie,1). conn(stp,eis,2). conn(B,A,C) :- conn(A,B,C). city(T) :- conn(T,_,_). % costing: use default cost, if there are no extra costs % cost(A,B,W,C) :- conn(A,B,C), 0 < W, W <= 7, %#int(W), 0 < W, W <= 7, not ecost(A,B,W). ecost(A,B,W) :- ex_cost(A,B,W,C). cost(A,B,W,C) :- ex_cost(A,B,W,C). ex_cost(A,B,W,C) :- ex_cost(B,A,W,C). % Some example of an extra cost. ex_cost(stp,eis,2,10). % Nicer would be, in an unstratified program, % to have no "ex_cost" but only cost, and define % % ecost(A,B,W) :- cost(A,B,W,C), dcost(A,B,C1), C != C1. % ecost(A,B,W) :- ecost(B,A,W). """
def lend_money(debts, person, amount): value = debts.get(person, 0) quantity = [amount] if value != 0: debts[person] = value + quantity else: debts[person] = quantity print(debts) def amount_owed_by(debts, person): value = debts.get(person, [0]) out = sum(value) return out def total_amount_owed(debts): my_money = 0 for values in debts.values(): for numbers in values: my_money += numbers return my_money
class ALU(): def __init__(self): self.Rs = None self.Rt = None self.Rd = None def alu(self, opcode): if (opcode == 0): self.Rd = self.Rs + self.Rt return self.Rd elif (opcode == 1): self.Rd = self.Rs - self.Rt return self.Rd elif (opcode == 2): self.Rd = int(0) + self.Rt return self.Rd elif (opcode == 3): # tipo I == 1 print('não sei o que "BEQ"') elif (opcode == 4): # tipo J == 2 print('nao sei o que "J"') elif (opcode == 5 ): print('nao sei o que "J"') elif(opcode == 6): print('nao sei o que "J"') def setRs(self, Rs_final): self.Rs = Rs_final def setRt(self, Rt_final): self.Rt = Rt_final def setRd(self, Rd_final): self.Rd = Rd_final def getRs(self): return self.Rs def getRt(self): return self.Rt def getRd(self): return self.Rd
kwh_used = 1000 out = 0 if(kwh_used < 500): out += 500 * 0.45 elif(kwh_used >= 500 and kwh_used < 1500): out += 500 * 0.45 + ((kwh_used - 500) * 0.74) elif(kwh_used >= 1500 and kwh_used < 2500): out += 500 * 0.45 + ((kwh_used - 500) * 0.74) + ((kwh_used - 1500) * 1.25) elif(kwh_used >= 2500): out += 500 * 0.45 + ((kwh_used - 500) * 0.74) + ((kwh_used - 1500) * 1.25) + ((kwh_used - 2500) * 2) out += out * 0.2 print(out)
def solution(A): list_range = len(A) difference_list = [] for p in range(1, list_range): post_sum = sum(A[p:]) behind_sum = sum(A[:p]) difference = behind_sum - post_sum if difference < 0: difference *= -1 difference_list.append(difference) return min(difference_list) print(solution([3, 1, 2, 4, 3]))
def heapify(heap, root): newRoot = root leftChild = 2*root+1 rightChild = 2*root+2 if leftChild < len(heap) and heap[leftChild] > heap[newRoot]: newRoot = leftChild if rightChild < len(heap) and heap[rightChild] > heap[newRoot]: newRoot = rightChild if root!=newRoot: heap[root],heap[newRoot]=heap[newRoot],heap[root] heapify(heap,newRoot) def heapSort(heap): for i in range(len(heap), -1, -1): heapify(heap, i) answer = [] while(len(heap)>1): answer.insert(len(answer),heap[0]) heap[0],heap[-1]=heap[-1],heap[0] heap.pop() heapify(heap, 0) return answer
EXAMPLES1 = ( ('1122', 3), ('1111', 4), ('1234', 0), ('91212129', 9) ) EXAMPLES2 = ( ('1212', 6), ('1221', 0), ('123425', 4), ('123123', 12), ('12131415', 4) ) INPUT = '31813174349235972159811869755166343882958376474278437681632495222499211488649543755655138842553867246131245462881756862736922925752647341673342756514856663979496747158241792857625471323535183222497949751644488277317173496124473893452425118133645984488759128897146498831373795721661696492622276282881218371273973538163779782435211491196616375135472517935481964439956844536136823757764494967297251545389464472794474447941564778733926532741752757865243946976266426548341889873514383464142659425122786667399143335772174973128383869893325977319651839516694295534146668728822393452626321892357192574444856264721585365164945647254645264693957898373214897848424966266582991272496771159583715456714645585576641458358326521858518319315233857473695712238323787254556597566461188452279853766184333696344395818615215846348586541164194624371353556812548945447432787795489443312941687221314432694115847863129826532628228386894683392352799514942665396273726821936346663485499159141368443782475714679953213388375939519711591262489869326145476958378464652451441434846382474578535468433514121336844727988128998543975147649823215332929623574231738442281161294838499441799996857746549441142859199799125595761724782225452394593514388571187279266291364278184761833324476838939898258225748562345853633364314923186685534864178665214135631494876474186833392929124337161222959459117554238429216916532175247326391321525832362274683763488347654497889261543959591212539851835354335598844669618391876623638137926893582131945361264841733341247646125278489995838369127582438419889922365596554237153412394494932582424222479798382932335239274297663365164912953364777876187522324991837775492621675953397843833247525599771974555545348388871578347332456586949283657613841414576976542343934911424716613479249893113961925713317644349946444271959375981158445151659431844142242547191181944395897963146947935463718145169266129118413523541222444997678726644615185324461293228124456118853885552279849917342474792984425629248492847827653133583215539325866881662159421987315186914769478947389188382383546881622246793781846254253759714573354544997853153798862436887889318646643359555663135476261863' def code1(string): return sum(ord(x) - ord('0') for i, x in enumerate(string) if x == string[(i + 1) % len(string)]) def code2(string): return sum(ord(x) - ord('0') for i, x in enumerate(string) if x == string[(i + len(string) // 2) % len(string)]) def test(code, examples, myinput): for data, result in examples: assert code(data) == result, (data, result, code(data)) print('>', code(myinput)) test(code1, EXAMPLES1, INPUT) test(code2, EXAMPLES2, INPUT)
""" Provide the class Message and its subclasses. """ class Message(object): message = '' message_args = () def __init__(self, filename, loc): self.filename = filename self.lineno = loc.lineno self.col = getattr(loc, 'col_offset', 0) def __str__(self): return '%s:%s: %s' % (self.filename, self.lineno, self.message % self.message_args) class UnusedImport(Message): message = '%r imported but unused' def __init__(self, filename, loc, name): Message.__init__(self, filename, loc) self.message_args = (name,) class RedefinedWhileUnused(Message): message = 'redefinition of unused %r from line %r' def __init__(self, filename, loc, name, orig_loc): Message.__init__(self, filename, loc) self.message_args = (name, orig_loc.lineno) class RedefinedInListComp(Message): message = 'list comprehension redefines %r from line %r' def __init__(self, filename, loc, name, orig_loc): Message.__init__(self, filename, loc) self.message_args = (name, orig_loc.lineno) class ImportShadowedByLoopVar(Message): message = 'import %r from line %r shadowed by loop variable' def __init__(self, filename, loc, name, orig_loc): Message.__init__(self, filename, loc) self.message_args = (name, orig_loc.lineno) class ImportStarNotPermitted(Message): message = "'from %s import *' only allowed at module level" def __init__(self, filename, loc, modname): Message.__init__(self, filename, loc) self.message_args = (modname,) class ImportStarUsed(Message): message = "'from %s import *' used; unable to detect undefined names" def __init__(self, filename, loc, modname): Message.__init__(self, filename, loc) self.message_args = (modname,) class ImportStarUsage(Message): message = "%r may be undefined, or defined from star imports: %s" def __init__(self, filename, loc, name, from_list): Message.__init__(self, filename, loc) self.message_args = (name, from_list) class UndefinedName(Message): message = 'undefined name %r' def __init__(self, filename, loc, name): Message.__init__(self, filename, loc) self.message_args = (name,) class DoctestSyntaxError(Message): message = 'syntax error in doctest' def __init__(self, filename, loc, position=None): Message.__init__(self, filename, loc) if position: (self.lineno, self.col) = position self.message_args = () class UndefinedExport(Message): message = 'undefined name %r in __all__' def __init__(self, filename, loc, name): Message.__init__(self, filename, loc) self.message_args = (name,) class UndefinedLocal(Message): message = 'local variable %r {0} referenced before assignment' default = 'defined in enclosing scope on line %r' builtin = 'defined as a builtin' def __init__(self, filename, loc, name, orig_loc): Message.__init__(self, filename, loc) if orig_loc is None: self.message = self.message.format(self.builtin) self.message_args = name else: self.message = self.message.format(self.default) self.message_args = (name, orig_loc.lineno) class DuplicateArgument(Message): message = 'duplicate argument %r in function definition' def __init__(self, filename, loc, name): Message.__init__(self, filename, loc) self.message_args = (name,) class MultiValueRepeatedKeyLiteral(Message): message = 'dictionary key %r repeated with different values' def __init__(self, filename, loc, key): Message.__init__(self, filename, loc) self.message_args = (key,) class MultiValueRepeatedKeyVariable(Message): message = 'dictionary key variable %s repeated with different values' def __init__(self, filename, loc, key): Message.__init__(self, filename, loc) self.message_args = (key,) class LateFutureImport(Message): message = 'from __future__ imports must occur at the beginning of the file' def __init__(self, filename, loc, names): Message.__init__(self, filename, loc) self.message_args = () class FutureFeatureNotDefined(Message): """An undefined __future__ feature name was imported.""" message = 'future feature %s is not defined' def __init__(self, filename, loc, name): Message.__init__(self, filename, loc) self.message_args = (name,) class UnusedVariable(Message): """ Indicates that a variable has been explicitly assigned to but not actually used. """ message = 'local variable %r is assigned to but never used' def __init__(self, filename, loc, names): Message.__init__(self, filename, loc) self.message_args = (names,) class ReturnWithArgsInsideGenerator(Message): """ Indicates a return statement with arguments inside a generator. """ message = '\'return\' with argument inside generator' class ReturnOutsideFunction(Message): """ Indicates a return statement outside of a function/method. """ message = '\'return\' outside function' class YieldOutsideFunction(Message): """ Indicates a yield or yield from statement outside of a function/method. """ message = '\'yield\' outside function' # For whatever reason, Python gives different error messages for these two. We # match the Python error message exactly. class ContinueOutsideLoop(Message): """ Indicates a continue statement outside of a while or for loop. """ message = '\'continue\' not properly in loop' class BreakOutsideLoop(Message): """ Indicates a break statement outside of a while or for loop. """ message = '\'break\' outside loop' class ContinueInFinally(Message): """ Indicates a continue statement in a finally block in a while or for loop. """ message = '\'continue\' not supported inside \'finally\' clause' class DefaultExceptNotLast(Message): """ Indicates an except: block as not the last exception handler. """ message = 'default \'except:\' must be last' class TwoStarredExpressions(Message): """ Two or more starred expressions in an assignment (a, *b, *c = d). """ message = 'two starred expressions in assignment' class TooManyExpressionsInStarredAssignment(Message): """ Too many expressions in an assignment with star-unpacking """ message = 'too many expressions in star-unpacking assignment' class AssertTuple(Message): """ Assertion test is a tuple, which are always True. """ message = 'assertion is always true, perhaps remove parentheses?' class ForwardAnnotationSyntaxError(Message): message = 'syntax error in forward annotation %r' def __init__(self, filename, loc, annotation): Message.__init__(self, filename, loc) self.message_args = (annotation,) class CommentAnnotationSyntaxError(Message): message = 'syntax error in type comment %r' def __init__(self, filename, loc, annotation): Message.__init__(self, filename, loc) self.message_args = (annotation,) class RaiseNotImplemented(Message): message = "'raise NotImplemented' should be 'raise NotImplementedError'" class InvalidPrintSyntax(Message): message = 'use of >> is invalid with print function' class IsLiteral(Message): message = 'use ==/!= to compare str, bytes, and int literals'
p = np.eye(3)[y][:, None] grad_d = q - p grad_C = grad_d @ U.T grad_b = (C.T @ grad_d ) * Drelu(A@x+b) grad_A = grad_b @ x.T
#! /usr/bin/env python # encoding: utf-8 # WARNING! Do not edit! https://waf.io/book/index.html#_obtaining_the_waf_file class MandatoryOptions(object): def __init__(self,options): self.options=options def __getattr__(self,name): call=getattr(self.options,name) def require(*args,**kwargs): value=call(*args,**kwargs) if not value: raise RuntimeError("WTF Dude") return value return require
class Queue(): # Queue Initialization def __init__(self): self.MAX = 5 self.queue = [] # OVERFLOW CONDITION def OVERFLOW(self): if len(self.queue) == self.MAX: return True else: return False # UNDERFLOW CONDITION def UNDERFLOW(self): if len(self.queue) == 0: return True else: return False # Insert into queue def insert(self, item): if not self.OVERFLOW(): self.queue.insert(0, item) return True else: return False # Delete from queue def delete(self): if not self.UNDERFLOW(): temp = self.queue.pop() return temp else: return False def display(self): if not self.UNDERFLOW(): # if self.FRONT <= self.BACK: print(" ".join([str(i) for i in self.queue])) else: print("-> UNDERFLOW <-") menu = ''' Enter 1. INSERT 2. DELETE 3. DISPAY 4. EXIT -> ''' if __name__ == "__main__": obj = Queue() exit = False while not exit: switch_var = int(input(menu)) # INSERT if switch_var == 1: temp = int(input("Enter the number : ")) if obj.insert(temp): print(f"{temp} is inserted into queue.") else: print("-> OVERFLOW <-") # DELETE elif switch_var == 2: temp = obj.delete() if temp: print(f"{temp} is deleted from queue.") else: print("-> UNDERFLOW <-") # DISPLAY elif switch_var == 3: obj.display() # EXIT elif switch_var == 4: exit = True # INVALID else: print("Please enter a valid statement.")
#超分倍率 scale=2 #参数路径,可更换 model_path2 = "weights_v3/up2x-latest-denoise3x.pth" model_path3 = "weights_v3/up3x-latest-denoise3x.pth" model_path4 = "weights_v3/up4x-latest-denoise3x.pth" #早期显卡开半精度不会提速,但是开半精度可以省显存。 half=True #tile分为0~4一共5个mode。0在推理时不对图像进行切块,最占内存,mode越提升越省显存,但是可能会降低GPU利用率,降低推理速度 tile=2 #超图像设置 device="cuda:0"#0代表卡号,多卡的话可以写不同config并行开,显存多的话一张卡也可以开多个 #超视频设置 #线程数:6G显存<=720P可写2,6G显存+1080P写1,12G可写2,24G可写4,边缘显存量爆显存降低线程数 nt=1 #显卡数 n_gpu=1 #别乱动 p_sleep=(0.005,0.012) decode_sleep=0.002 #编码参数,不懂别乱动;通俗来讲,crf变低=高码率高质量,slower=低编码速度高质量+更吃CPU,CPU不够应该调低级别,比如slow,medium,fast,faster encode_params=['-crf', '18', '-preset', 'medium']
# input N, X, r = map(int, input().split()) MOD = pow(10, 9) # compute # output print(X * (pow(r, N, MOD) - 1) % MOD)
class Solution(object): def subtractProductAndSum(self, n): """ :type n: int :rtype: int """ prod = 1 n = [int(x) for x in list(str(n))] for i in n: prod *= i return prod - sum(n) if __name__ == '__main__': obj = Solution() n = 10 obj.subtractProductAndSum(n)
class DefaultConfigs(object): # 1.string parameters train_data = "./data/train/" test_data = "./data/test/" test_one_data = "./data/onetest/" val_data = "no" model_name = "resnet50" weights = "./checkpoints/" best_models = weights + "best_model/" submit = "./submit/" logs = "./logs/" gpus = "0,1,2,3" # 2.numeric parameters epochs = 40 batch_size = 3 img_height = 325 img_weight = 325 num_classes = 59 seed = 888 lr = 1e-4 lr_decay = 1e-4 weight_decay = 1e-4 # 3.label parameters LABEL_NAMES = ["苹果健康", "苹果黑星病一般", "苹果黑星病严重", "苹果灰斑病", "苹果雪松锈病一般", "苹果雪松锈病严重", "樱桃健康", "樱桃白粉病一般", "樱桃白粉病严重", "玉米健康", "玉米灰斑病一般", "玉米灰斑病严重", "玉米锈病一般", "玉米锈病严重", "玉米叶斑病一般", "玉米叶斑病严重", "玉米花叶病毒病", "葡萄健康", "葡萄黑腐病一般", "葡萄黑腐病严重", "葡萄轮斑病一般", "葡萄轮斑病严重", "葡萄褐斑病一般", "葡萄褐斑病严重", "柑桔健康", "柑桔黄龙病一般", "柑桔黄龙病严重", "桃健康", "桃疮痂病一般", "桃疮痂病严重", "辣椒健康", "辣椒疮痂病一般", "辣椒疮痂病严重", "马铃薯健康", "马铃薯早疫病一般", "马铃薯早疫病严重", "马铃薯晚疫病一般", "马铃薯晚疫病严重", "草莓健康", "草莓叶枯病一般", "草莓叶枯病严重", "番茄健康", "番茄白粉病一般", "番茄白粉病严重", "番茄疮痂病一般", "番茄疮痂病严重", "番茄早疫病一般", "番茄早疫病严重", "番茄晚疫病菌一般", "番茄晚疫病菌严重", "番茄叶霉病一般", "番茄叶霉病严重", "番茄斑点病一般", "番茄斑点病严重", "番茄斑枯病一般", "番茄斑枯病严重", "番茄红蜘蛛损伤一般", "番茄红蜘蛛损伤严重", "番茄黄化曲叶病毒病一般", "番茄黄化曲叶病毒病严重", "番茄花叶病毒病"] config = DefaultConfigs()
boys = ['John', 'Jack', 'Jeremy'] girls = ['Mary', 'Nancy', 'Joyce'] names = [*boys, *girls]
''' @author: Sevval MEHDER Filling one cell: O(1) Filling all cells: O(2xn) = O(n) ''' def find_maximum_cost(Y): values = [[0 for _ in range(2)] for _ in range(len(Y))] # Go on with adding these 2 options i = 1 while i < len(Y): # Put these two options values[i][0] = max(values[i - 1][0], values[i - 1][1] + Y[i - 1] - 1) values[i][1] = max(values[i - 1][1] + abs(Y[i] - Y[i - 1]), values[i - 1][0] + Y[i] - 1) i += 1 #print(values) return max(values[len(Y) - 1][0], values[len(Y) - 1][1]) def main(): Y = [5, 6, 8, 13, 9] cost = find_maximum_cost(Y) print(cost) # Output: 34 main()
""" Geometry and colour info. @author Li Xiao-Tian """ class Point2d(): def __init__(self, x, y): self.x = x; self.y = y; COLOURS = { 'u': '#A9A9A9', 'w': '#F9F9F9', 'r': '#D8251A', 'b': '#0194dd', 'g': '#2EFE2E', 'o': '#F0A226', 'y': '#FFFF00', } class ColourScheme(): ''' Colour of each face of the cube. ''' def __init__(self, d='w', u='y', f='b', r='r', b='g', l='o'): self.d = d self.u = u self.f = f self.r = r self.b = b self.l = l self.x = 'u' def config_colour(self, d, u, f, r, b, l): self.d = d self.u = u self.f = f self.r = r self.b = b self.l = l
def can_build(plat): return (plat == "android") def configure(env): if env["platform"] == "android": # Amazon dependencies env.android_add_dependency("compile fileTree(dir: '../../../modules/godotamazon/android/lib/', include: ['*.jar'])") env.android_add_java_dir("android/src") env.android_add_res_dir("res") env.android_add_to_manifest("android/AndroidManifestChunk.xml") env.android_add_to_permissions("android/AndroidPermissionsChunk.xml") env.disable_module()
"""Wrapper class for DNS actions""" class ZoneController(object): def __init__(self, zone): """Initialize zone controller given a zone""" self.zone = zone def create_zone(self, **kwargs): """Create a zone under the specific cloud""" return self.zone.cloud.ctl.dns.create_zone(self.zone, **kwargs) def list_records(self, cached=False): """Wrapper for the DNS cloud controller list_records() functionality """ if cached: return self.zone.cloud.ctl.dns.list_cached_records(self.zone) else: return self.zone.cloud.ctl.dns.list_records(self.zone) def delete_zone(self): """Wrapper for the DNS cloud controller delete_zone() functionality """ return self.zone.cloud.ctl.dns.delete_zone(self.zone) class RecordController(object): def __init__(self, record): """Initialize record controller given a record""" self.record = record def create_record(self, **kwargs): """Wrapper for the DNS cloud controller create_record() functionality """ return self.record.zone.cloud.ctl.dns.create_record( self.record, **kwargs) def delete_record(self): """Wrapper for the delete_record DNSController functionality.""" return self.record.zone.cloud.ctl.dns.delete_record(self.record)
"""Migration for a given Submitty course database.""" def up(config, database, semester, course): """ Run up migration. :param config: Object holding configuration details about Submitty :type config: migrator.config.Config :param database: Object for interacting with given database for environment :type database: migrator.db.Database :param semester: Semester of the course being migrated :type semester: str :param course: Code of course being migrated :type course: str """ # Create overall comment table database.execute( """ CREATE TABLE IF NOT EXISTS gradeable_data_overall_comment ( goc_id integer NOT NULL, g_id character varying(255) NOT NULL, goc_user_id character varying(255), goc_team_id character varying(255), goc_grader_id character varying(255) NOT NULL, goc_overall_comment character varying NOT NULL, CONSTRAINT goc_user_team_id_check CHECK (goc_user_id IS NOT NULL OR goc_team_id IS NOT NULL) ); """ ) database.execute("ALTER TABLE gradeable_data_overall_comment DROP CONSTRAINT IF EXISTS gradeable_data_overall_comment_pkey") database.execute( """ ALTER TABLE ONLY gradeable_data_overall_comment ADD CONSTRAINT gradeable_data_overall_comment_pkey PRIMARY KEY (goc_id); """ ) database.execute("ALTER TABLE gradeable_data_overall_comment DROP CONSTRAINT IF EXISTS gradeable_data_overall_comment_g_id_fkey") database.execute( """ ALTER TABLE ONLY gradeable_data_overall_comment ADD CONSTRAINT gradeable_data_overall_comment_g_id_fkey FOREIGN KEY (g_id) REFERENCES gradeable(g_id) ON DELETE CASCADE; """ ) database.execute("ALTER TABLE gradeable_data_overall_comment DROP CONSTRAINT IF EXISTS gradeable_data_overall_comment_goc_user_id_fkey") database.execute( """ ALTER TABLE ONLY gradeable_data_overall_comment ADD CONSTRAINT gradeable_data_overall_comment_goc_user_id_fkey FOREIGN KEY (goc_user_id) REFERENCES users(user_id) ON DELETE CASCADE; """ ) database.execute("ALTER TABLE gradeable_data_overall_comment DROP CONSTRAINT IF EXISTS gradeable_data_overall_comment_goc_team_id_fkey") database.execute( """ ALTER TABLE ONLY gradeable_data_overall_comment ADD CONSTRAINT gradeable_data_overall_comment_goc_team_id_fkey FOREIGN KEY (goc_team_id) REFERENCES gradeable_teams(team_id) ON DELETE CASCADE; """ ) database.execute("ALTER TABLE gradeable_data_overall_comment DROP CONSTRAINT IF EXISTS gradeable_data_overall_comment_goc_grader_id") database.execute( """ ALTER TABLE ONLY gradeable_data_overall_comment ADD CONSTRAINT gradeable_data_overall_comment_goc_grader_id FOREIGN KEY (goc_grader_id) REFERENCES users(user_id) ON DELETE CASCADE; """ ) database.execute("ALTER TABLE gradeable_data_overall_comment DROP CONSTRAINT IF EXISTS gradeable_data_overall_comment_user_unique") database.execute("ALTER TABLE ONLY gradeable_data_overall_comment ADD CONSTRAINT gradeable_data_overall_comment_user_unique UNIQUE (g_id, goc_user_id, goc_grader_id);") database.execute("ALTER TABLE gradeable_data_overall_comment DROP CONSTRAINT IF EXISTS gradeable_data_overall_comment_team_unique") database.execute("ALTER TABLE ONLY gradeable_data_overall_comment ADD CONSTRAINT gradeable_data_overall_comment_team_unique UNIQUE (g_id, goc_team_id, goc_grader_id);") database.execute( """ CREATE SEQUENCE IF NOT EXISTS gradeable_data_overall_comment_goc_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; """) database.execute("ALTER SEQUENCE gradeable_data_overall_comment_goc_id_seq OWNED BY gradeable_data_overall_comment.goc_id;") database.execute("ALTER TABLE ONLY gradeable_data_overall_comment ALTER COLUMN goc_id SET DEFAULT nextval('gradeable_data_overall_comment_goc_id_seq'::regclass);") # All old overall comments belong to the instructor instructor_id = database.execute("SELECT user_id FROM users WHERE user_group = 1;").first()[0] rows = database.execute(""" SELECT g_id, gd_user_id, gd_team_id, gd_overall_comment FROM gradeable_data; """ ) for g_id, user_id, team_id, comment in rows: query = ''' INSERT INTO gradeable_data_overall_comment ( g_id, goc_user_id, goc_team_id, goc_grader_id, goc_overall_comment ) VALUES ( :g_id, :user_id, :team_id, :grader_id, :comment ) ON CONFLICT DO NOTHING; ''' params = { 'g_id':g_id, 'user_id':user_id, 'team_id':team_id, 'grader_id':instructor_id, 'comment':comment } database.session.execute(query, params) def down(config, database, semester, course): """ Run down migration (rollback). :param config: Object holding configuration details about Submitty :type config: migrator.config.Config :param database: Object for interacting with given database for environment :type database: migrator.db.Database :param semester: Semester of the course being migrated :type semester: str :param course: Code of course being migrated :type course: str """ pass
# by Kami Bigdely # Inline method. # TODO: Refactor this program to improve its readability. class Person: def __init__(self, my_age): self.age = my_age self.LEGAL_DRINKING_AGE = 18 def enter_night_club(self, my_age): if older_than_18_year_old(my_age): print("Allowed to enter.") else: print("Enterance of minors is denited.") def older_than_18_year_old(self, age): if age > LEGAL_DRINKING_AGE: return True else: return False # LEGAL_DRINKING_AGE = 18 person = Person(17.9) person.enter_night_club(person) # enter_night_club(person)
# Copyright (c) 2017 Dustin Doloff # Licensed under Apache License v2.0 load( "//assert:assert.bzl", "assert_equal", ) load( "//control_flow:control_flow.bzl", "while_loop", ) def run_all_tests(): test_while_loop() def incr(state): if type(state) == "dict": state["incr_calls"] = state.get("incr_calls", 0) + 1 state["value"] += 1 else: state += 1 return state def decr(state): if type(state) == "dict": state["decr_calls"] = state.get("decr_calls", 0) + 1 state["value"] -= 1 else: state -= 1 return state def is_3(state): if type(state) == "dict": state["is_3_calls"] = state.get("is_3_calls", 0) + 1 return state["value"] == 3 else: return state == 3 def test_while_loop(): assert_equal(None, while_loop(fail)) assert_equal(0, while_loop(decr, state = 3)) assert_equal( { "incr_calls": 3, "is_3_calls": 4, "value": 3, }, while_loop(incr, is_3, state = {"value": 0}), )
fixed_time_entries = [{'stop': '2018-03-05T18:08:21+00:00', 'at': '2018-03-05T18:08:21+00:00', 'duration': 70, 'guid': '68c5136314e9680a54d0a28508139836', 'start': '2018-03-05T18:08:15+00:00', 'id': 1, 'description': 'task-1', 'duronly': False, 'uid': 2488778, 'billable': False, 'wid': 1688309}, {'stop': '2018-03-05T18:08:21+00:00', 'at': '2018-03-05T18:08:21+00:00', 'duration': 6, 'guid': '68c5136314e9680a54d0a28508139836', 'start': '2018-03-05T18:08:15+00:00', 'id': 2, 'description': 'task-2', 'duronly': False, 'uid': 2488778, 'billable': False, 'wid': 1688309}, {'stop': '2018-03-05T18:08:21+00:00', 'at': '2018-03-05T18:08:21+00:00', 'duration': 500, 'guid': '68c5136314e9680a54d0a28508139836', 'start': '2018-03-05T18:08:15+00:00', 'id': 3, 'description': 'task-3', 'duronly': False, 'uid': 2488778, 'billable': False, 'wid': 1688309}]
#!/usr/bin/env python # # Copyright 2018 - The Android Open Source Project # # 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. r"""Setup args. Defines the setup arg parser that holds setup specific args. """ CMD_SETUP = "setup" def GetSetupArgParser(subparser): """Return the setup arg parser. Args: subparser: argparse.ArgumentParser that is attached to main acloud cmd. Returns: argparse.ArgumentParser with setup options defined. """ setup_parser = subparser.add_parser(CMD_SETUP) setup_parser.required = False setup_parser.set_defaults(which=CMD_SETUP) setup_parser.add_argument( "--host", action="store_true", dest="host", required=False, help="Setup host to run local instance of an Android Virtual Device. " "Must explicitly set to kick off host setup. Automatically installs " "host base packages as well") setup_parser.add_argument( "--host-base", action="store_true", dest="host_base", required=False, help="Install base packages on the host.") setup_parser.add_argument( "--gcp-init", action="store_true", dest="gcp_init", required=False, help="Setup Google Cloud project name and enable required GCP APIs." "E.G. Google Cloud Storage/ Internal Android Build/ Compute Engine") setup_parser.add_argument( "--force", action="store_true", dest="force", required=False, help="Force the setup steps even if it's not required.") return setup_parser
# from django.conf.urls import url, include # from rest_framework import routers # from planex.site import views # router = routers.SimpleRouter() # router.register(r'pages', views.PageViewSet, basename='pages') # router.register(r'documents', views.DocumentViewSet, basename='documents') urlpatterns = [] # url(r'^', include(router.urls)), # url(r'^images/(?P<id>[0-9])/$', views.ImageMetaView.as_view(), name='image_meta'), # URL returning json metadata follows API endpoint conventions # url(r'^images/(?P<id>[0-9])/serve/$', views.ImageServeView.as_view(), name='images'), # URL from which to serve images direct to browser
def solution(phone_book): answer = True phone_book = sorted(phone_book, key=(lambda x: len(x))) for i, item in enumerate(phone_book): for j in range(0, i): if item.find(phone_book[j])==0: return False return answer
lst2 = list(map(lambda x: 2 ** x, range(5))) print(lst2) for i in list(map(lambda x: x ** 2, lst2)): print(i, end=" ") print() print(list(map(lambda x: 1 if x % 2 == 0 else 0, lst2)))
class Viewport_Mixin(object): """ Mixin to help move around the image """ def update(self): """ Call update to get fresh data. """ pass def reset(self): """ Reset the viewport """ self._position = (0, 0) def set_position(self, xy): self._position = xy def move_left(self): x, y = self._position self.set_position((x + 1, y)) def crop(self, wh): """ Crop at width and height """ w, h = wh (left, top) = self._position right = left + w bottom = top + h im = self.image.crop(box=(left, top, right, bottom)) im.load() # Force the crop return im @property def is_finished(self): x, y = self._position return x >= self.image.size[0] class Viewport_NoScroll_Mixin(Viewport_Mixin): """ This mixin provides the Viewport interface but does not scroll the image. """ def reset(self): self._position = (0, 0) def set_position(self, xy): pass def move_left(self): pass @property def is_finished(self): return True
# # Copyright 2013-2022 The Foundry Visionmongers Ltd # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # """ Fixtures for executeSuiteTests.py """ fixtures = { "identifier": "org.openassetio.test.manager.stubManager", "Test_executeSuite_fixtures": { "test_when_test_function_is_run_then_fixtures_are_those_for_the_test": { "aUniqueValue": 5 } }, "Test_executeSuite_with_case_fixtures": { "non_existant_test": {} } }
# This file contains configuration variables that shouldn’t be in version control. This includes things like API keys # and database URIs containing passwords. This also contains variables that are specific to this particular instance # of your application. For example, you might have DEBUG = False in config.py, but set DEBUG = True in # instance/config.py on your local machine for development. Since this file will be read in after config.py, # it will override it and set DEBUG = True. DEBUG = True SECRET_KEY = '<secret_key>' SPOTIFY_CLIENT_ID = '<spotify_client_id>' SPOTIFY_CLIENT_SECRET = '<spotify_client_secret>' SPOTIFY_USERNAME = '<spotify_username>' SPOTIFY_PASSWORD = '<spotify_password>'
# -*- coding: utf-8 -*- """Top-level package for Pytropic.""" __author__ = """Will Fitzgerald""" __email__ = '[email protected]' __version__ = '0.1.0'
# encoding: UTF-8 LOADING_ERROR = 'Error occurred when loading the config file, please check.' CONFIG_KEY_MISSING = 'Key missing in the config file, please check.' DATA_SERVER_CONNECTED = 'Data server connected.' DATA_SERVER_DISCONNECTED = 'Data server disconnected' DATA_SERVER_LOGIN = 'Data server login completed.' DATA_SERVER_LOGOUT = 'Data server logout completed.' TRADING_SERVER_CONNECTED = 'Trading server connected.' TRADING_SERVER_DISCONNECTED = 'Trading server disconnected.' TRADING_SERVER_AUTHENTICATED = 'Trading server authenticated.' TRADING_SERVER_LOGIN = 'Trading server login completed.' TRADING_SERVER_LOGOUT = 'Trading server logout completed.' SETTLEMENT_INFO_CONFIRMED = 'Settlement info confirmed.' CONTRACT_DATA_RECEIVED = 'Contract data received.'
''' DESKRIPSI SOAL Diberikan sebuah fungsi f(n) dengan beberapa syarat berikut : 1. Jika n=0, maka f(n)=10. 2. Jika n lebih dari 0 dan n genap, maka f(n) = 4xf(n/2). 3. Jika n lebih dari 0 dan n ganjil, maka f(n) = f(n-1)+1. PETUNJUK MASUKAN Input terdiri atas 1 buah bilangan bulat n (0≤n≤200) PETUNJUK KELUARAN Outputkan sebuah bilangan bulat yang merupakan nilai dari f(n). CONTOH MASUKAN 1 10 CONTOH KELUARAN 1 708 CONTOH MASUKAN 2 100 CONTOH KELUARAN 2 46096 ''' input_num = int(input()) def f(n): if n == 0: return 10 if n % 2 == 0: return 4 * f(n/2) return f(n - 1) + 1 print(f(input_num))
# -*- coding: utf-8 -*- """ Created on Sat Oct 3 10:06:06 2020 @author: Tarun Jaiswal """ x1=range(10) print(x1) x2=range(2,10) print(x2) x3=range(2,10,3) print(x3) print("X1=",end="") for item in x1: print(item,end=",") print("X2=") for item in x2: print(item,end=",") print("X3=",end="") for item in x3: print(item,end=",")
stevilka = ''.join(list(map(str.strip, list(open('euler8.txt','r'))))) stevilke = stevilka.split('0') stevilke = [stevilka for stevilka in stevilke if len(stevilka) > 12] def produkt_niza(n): produkt = 1 for i in n: produkt *= int(i) return produkt def produkt_prvih_trinajst(n): return produkt_niza(n[:13]) najvecji_produkt = 0 for kandidat in stevilke: for začenši_z in range(len(kandidat) - 13 + 1): najvecji_produkt = max(najvecji_produkt, produkt_prvih_trinajst(kandidat[začenši_z:]))
GPIO_BASE_PATH = "/sys/class/gpio" MOTOR_PIN = "13" PIR_PIN = "12" DONALD_TRACK = "donald_duck.mp3"
# # @lc app=leetcode id=717 lang=python3 # # [717] 1-bit and 2-bit Characters # # https://leetcode.com/problems/1-bit-and-2-bit-characters/description/ # # algorithms # Easy (49.13%) # Likes: 325 # Dislikes: 844 # Total Accepted: 52.5K # Total Submissions: 107K # Testcase Example: '[1,0,0]' # # We have two special characters. The first character can be represented by one # bit 0. The second character can be represented by two bits (10 or 11). # # Now given a string represented by several bits. Return whether the last # character must be a one-bit character or not. The given string will always # end with a zero. # # Example 1: # # Input: # bits = [1, 0, 0] # Output: True # Explanation: # The only way to decode it is two-bit character and one-bit character. So the # last character is one-bit character. # # # # Example 2: # # Input: # bits = [1, 1, 1, 0] # Output: False # Explanation: # The only way to decode it is two-bit character and two-bit character. So the # last character is NOT one-bit character. # # # # Note: # 1 . # bits[i] is always 0 or 1. # # # @lc code=start class Solution: def isOneBitCharacter(self, bits: List[int]) -> bool: i = 0 n = len(bits) if n<=1: return True while i < n: if bits[i]==0: i+=1 else: i+=2 if i==n-1: return True return False # @lc code=end
ACRONYM = "BSC" def transcription_factor_regulatory_site(**identifier_properties): unique_data_string = [ identifier_properties.get("absolutePosition", "NoAbsolutePosition"), identifier_properties.get("leftEndPosition", "NoLEND"), identifier_properties.get("rightEndPosition", "NoREND") ] return unique_data_string
""" Bool : Whether it is True or False True / False if string, list, tuple, dictionary are empty (don't have element) it is False. also 'None' is false, too Contents Source : https://wikidocs.net/17 """
""" Example dataset fetching utility. Used in docs. """ src = 'https://raw.githubusercontent.com/ResidentMario/geoplot-data/master' def get_path(dataset_name): """ Returns the URL path to an example dataset suitable for reading into ``geopandas``. """ if dataset_name == 'usa_cities': return f'{src}/usa-cities.geojson' elif dataset_name == 'contiguous_usa': return f'{src}/contiguous-usa.geojson' elif dataset_name == 'nyc_collision_factors': return f'{src}/nyc-collision-factors.geojson' elif dataset_name == 'nyc_boroughs': return f'{src}/nyc-boroughs.geojson' elif dataset_name == 'ny_census': return f'{src}/ny-census-partial.geojson' elif dataset_name == 'obesity_by_state': return f'{src}/obesity-by-state.tsv' elif dataset_name == 'la_flights': return f'{src}/la-flights.geojson' elif dataset_name == 'dc_roads': return f'{src}/dc-roads.geojson' elif dataset_name == 'nyc_map_pluto_sample': return f'{src}/nyc-map-pluto-sample.geojson' elif dataset_name == 'nyc_collisions_sample': return f'{src}/nyc-collisions-sample.csv' elif dataset_name == 'boston_zip_codes': return f'{src}/boston-zip-codes.geojson' elif dataset_name == 'boston_airbnb_listings': return f'{src}/boston-airbnb-listings.geojson' elif dataset_name == 'napoleon_troop_movements': return f'{src}/napoleon-troop-movements.geojson' elif dataset_name == 'nyc_fatal_collisions': return f'{src}/nyc-fatal-collisions.geojson' elif dataset_name == 'nyc_injurious_collisions': return f'{src}/nyc-injurious-collisions.geojson' elif dataset_name == 'nyc_police_precincts': return f'{src}/nyc-police-precincts.geojson' elif dataset_name == 'nyc_parking_tickets': return f'{src}/nyc-parking-tickets-sample.geojson' elif dataset_name == 'world': return f'{src}/world.geojson' elif dataset_name == 'melbourne': return f'{src}/melbourne.geojson' elif dataset_name == 'melbourne_schools': return f'{src}/melbourne-schools.geojson' elif dataset_name == 'san_francisco': return f'{src}/san-francisco.geojson' elif dataset_name == 'san_francisco_street_trees_sample': return f'{src}/san-francisco-street-trees-sample.geojson' elif dataset_name == 'california_congressional_districts': return f'{src}/california-congressional-districts.geojson' else: raise ValueError( f'The dataset_name value {dataset_name!r} is not in the list of valid names.' )
# -*- coding: utf-8 -*- # @Time : 2019/10/15 0015 16:21 # @Author : Erichym # @Email : [email protected] # @File : 520.py # @Software: PyCharm class Solution: def detectCapitalUse(self, word: str) -> bool: if 97<=ord(word[0])<=122: for i in range(1,len(word),1): if ord(word[i])>122 or ord(word[i])<97: return False return True # first alpha is capital elif len(word)>1: if 65 <= ord(word[1]) <= 90: for i in range(2, len(word), 1): if ord(word[i]) > 90 or ord(word[i]) < 65: return False return True if 97 <= ord(word[1]) <= 122: for i in range(1, len(word), 1): if ord(word[i]) > 122 or ord(word[i]) < 97: return False return True else: return True def detectCapitalUse2(self, word: str) -> bool: return word.isupper() or word.islower() or word.istitle() if __name__=="__main__": word="G" so=Solution() a=so.detectCapitalUse2(word) print(a)
# Copyright 2013-2021 Lawrence Livermore National Security, LLC and other # Spack Project Developers. See the top-level COPYRIGHT file for details. # # SPDX-License-Identifier: (Apache-2.0 OR MIT) class RubyErubis(RubyPackage): """Erubis is a fast, secure, and very extensible implementation of eRuby. """ homepage = "http://www.kuwata-lab.com/erubis/" git = "https://github.com/kwatch/erubis.git" version('master', branch='master') version('2.7.0', commit='14d3eab57fbc361312c8f3af350cbf9a5bafce17') def patch(self): filter_file('$Release$', str(self.version), 'erubis.gemspec', string=True)
def waxs_S_edge_guil(t=1): dets = [pil300KW] names = ['sample02', 'sample03', 'sample04', 'sample05', 'sample06', 'sample07', 'sample08', 'sample09', 'sample10', 'sample11', 'sample12'] x = [26500, 21500, 16000, 10500, 5000, 0, -5500, -10500, 16000, -21000, -26500]#, -34000, -41000] y = [600, 600, 800, 700, 700, 600, 600, 600, 600, 900, 900]#, 700, 800] energies = np.linspace(2450, 2500, 26) waxs_arc = [0, 6.5, 13] for name, xs, ys in zip(names, x, y): yield from bps.mv(piezo.x, xs) yield from bps.mv(piezo.y, ys) yss = np.linspace(ys, ys + 1300, 26) if int(waxs.arc.position) == 0: waxs_arc = [0, 6.5, 13] elif int(waxs.arc.position) == 13: waxs_arc = [13, 6.5, 0] if name == 'sample02': waxs_arc = [6.5, 0] for wa in waxs_arc: yield from bps.mv(waxs, wa) det_exposure_time(t,t) name_fmt = '{sample}_{energy}eV_wa{wax}' for e, ysss in zip(energies, yss): yield from bps.sleep(1) yield from bps.mv(energy, e) yield from bps.mv(piezo.y, ysss) sample_name = name_fmt.format(sample=name, energy=e, wax = wa) sample_id(user_name='GF', sample_name=sample_name) print(f'\n\t=== Sample: {sample_name} ===\n') yield from bp.count(dets, num=1) yield from bps.mv(energy, 2470) yield from bps.mv(energy, 2450) def giwaxs_S_edge_chris(t=1): dets = [pil300KW] # names = ['e1_01', 'e1_02', 'e1_03', 'e1_04', 'd1_01', 'd1_02', 'd1_03', 'd1_04', 'd1_05', 'd1_06'] # x = [56000, 45500, 34000, 22000, 11000, 0, -11000, -22500, -34000, -46000] names = ['d1_07', 'd1_08', 'd1_10', 'd1_11'] x = [55000, 42500, 31000, 19000] energies = np.arange(2450, 2470, 5).tolist() + np.arange(2470, 2480, 0.25).tolist() + np.arange(2480, 2490, 1).tolist()+ np.arange(2490, 2501, 5).tolist() waxs_arc = np.linspace(0, 39, 7) ai0 = 0 for name, xs in zip(names, x): yield from bps.mv(piezo.x, xs) yield from bps.mv(piezo.th, ai0) yield from bps.mv(GV7.open_cmd, 1 ) yield from bps.sleep(1) yield from bps.mv(GV7.open_cmd, 1 ) yield from bps.sleep(1) yield from alignement_gisaxs(angle = 0.4) # yield from bps.mv(att2_9, 'Insert') yield from bps.mv(GV7.close_cmd, 1 ) yield from bps.sleep(1) # yield from bps.mv(att2_9, 'Insert') yield from bps.mv(GV7.close_cmd, 1 ) yield from bps.sleep(1) ai0 = piezo.th.position yield from bps.mv(piezo.th, ai0 + 0.7) xss = np.linspace(xs, xs - 8000, 57) for wa in waxs_arc: yield from bps.mv(waxs, wa) det_exposure_time(t,t) name_fmt = '{sample}_{energy}eV_wa{wax}_bpm{xbpm}' for e, xsss in zip(energies, xss): yield from bps.mv(energy, e) yield from bps.sleep(2) yield from bps.mv(piezo.x, xsss) bpm = xbpm2.sumX.value sample_name = name_fmt.format(sample=name, energy='%6.2f'%e, wax = wa, xbpm = '%4.3f'%bpm) sample_id(user_name='GF', sample_name=sample_name) print(f'\n\t=== Sample: {sample_name} ===\n') yield from bp.count(dets, num=1) yield from bps.mv(energy, 2470) yield from bps.mv(energy, 2450) def giwaxs_S_edge_chris_redo(t=1): dets = [pil300KW] names = ['a1_02_redo']#, 'sample03', 'sample04', 'sample05', 'sample06', 'sample07', 'sample08', 'sample09', 'sample10', 'sample11', 'sample12'] x = [38000,-6000,-16000, -26000, -38000]#, 21500, 16000, 10500, 5000, 0, -5500, -10500, 16000, -21000, -26500]#, -34000, -41000] #y = [600]#, 600, 800, 700, 700, 600, 600, 600, 600, 900, 900]#, 700, 800] energiess = [[2495, 2500], [2495], [2455, 2470, 2495, 2500], [2488, 2490, 2495, 2500], [2495, 2500]] waxs_arc = np.linspace(0, 39, 7) ai0 = 0 for name, xs, energies in zip(names, x, energiess): yield from bps.mv(piezo.x, xs) yield from bps.mv(piezo.th, ai0) yield from bps.mv(GV7.open_cmd, 1 ) yield from bps.sleep(1) yield from bps.mv(GV7.open_cmd, 1 ) yield from bps.sleep(1) yield from alignement_gisaxs(angle = 0.4) yield from bps.mv(att2_9, 'Insert') yield from bps.mv(GV7.close_cmd, 1 ) yield from bps.sleep(1) yield from bps.mv(att2_9, 'Insert') yield from bps.mv(GV7.close_cmd, 1 ) yield from bps.sleep(1) ai0 = piezo.th.position yield from bps.mv(piezo.th, ai0 + 0.7) ''' if int(waxs.arc.position) == 0: waxs_arc = [0, 6.5, 13] elif int(waxs.arc.position) == 13: waxs_arc = [13, 6.5, 0] ''' for wa in waxs_arc: yield from bps.mv(waxs, wa) yield from bps.mvr(piezo.x, -500) det_exposure_time(t,t) name_fmt = '{sample}_{energy}eV_wa{wax}_bpm{xbpm}' for e in energies: yield from bps.mv(energy, e) yield from bps.sleep(1) bpm = xbpm2.sumX.value sample_name = name_fmt.format(sample=name, energy='%6.2f'%e, wax = wa, xbpm = '%4.3f'%bpm) sample_id(user_name='GF', sample_name=sample_name) print(f'\n\t=== Sample: {sample_name} ===\n') yield from bp.count(dets, num=1) yield from bps.mv(energy, 2470) yield from bps.mv(energy, 2450) def waxs_S_edge_chris_n(t=1): dets = [pil300KW] names = ['b2_08', 'b2_09', 'b2_10', 'c2_01', 'c2_02', 'c2_03', 'c2_04', 'c2_05', 'c2_06', 'c2_07', 'c2_08'] x = [41500, 36300, 30900, 25600, 20200, 15200, 9700, 4700, -500, -5900, -11500] y = [1000, 800, 800, 900, 800, 800, 600, 400, 500, 600, 500] energies = np.arange(2445, 2470, 5).tolist() + np.arange(2470, 2480, 0.25).tolist() + np.arange(2480, 2490, 1).tolist()+ np.arange(2490, 2501, 5).tolist() waxs_arc = np.linspace(0, 39, 7) for name, xs, ys in zip(names, x, y): yield from bps.mv(piezo.x, xs) yield from bps.mv(piezo.y, ys) yss = np.linspace(ys, ys + 1000, 29) xss = np.array([xs, xs + 500]) yss, xss = np.meshgrid(yss, xss) yss = yss.ravel() xss = xss.ravel() for wa in waxs_arc: yield from bps.mv(waxs, wa) det_exposure_time(t,t) name_fmt = '{sample}_{energy}eV_wa{wax}_bpm{xbpm}' for e, xsss, ysss in zip(energies, xss, yss): yield from bps.mv(energy, e) yield from bps.sleep(1) yield from bps.mv(piezo.y, ysss) yield from bps.mv(piezo.x, xsss) bpm = xbpm2.sumX.value sample_name = name_fmt.format(sample=name, energy='%6.2f'%e, wax = wa, xbpm = '%4.3f'%bpm) sample_id(user_name='GF', sample_name=sample_name) print(f'\n\t=== Sample: {sample_name} ===\n') yield from bp.count(dets, num=1) yield from bps.mv(energy, 2470) yield from bps.mv(energy, 2450) dets = [pil300KW] names = ['EH_static'] x = [-16700] y = [1000] energies = [2450, 2470, 2475, 2500] waxs_arc = np.linspace(0, 39, 7) for name, xs, ys in zip(names, x, y): yield from bps.mv(piezo.x, xs) yield from bps.mv(piezo.y, ys) for wa in waxs_arc: yield from bps.mv(waxs, wa) det_exposure_time(t,t) name_fmt = '{sample}_{energy}eV_wa{wax}_bpm{xbpm}' for e in energies: yield from bps.mv(energy, e) yield from bps.sleep(1) bpm = xbpm2.sumX.value sample_name = name_fmt.format(sample=name, energy='%6.2f'%e, wax = wa, xbpm = '%4.3f'%bpm) sample_id(user_name='GF', sample_name=sample_name) print(f'\n\t=== Sample: {sample_name} ===\n') yield from bp.count(dets, num=1) yield from bps.mv(energy, 2470) yield from bps.mv(energy, 2450) yield from bps.mv(energy, 2450) yield from bps.sleep(5) yield from bps.mv(energy, 2500) yield from bps.sleep(5) yield from bps.mv(energy, 2550) yield from bps.sleep(5) yield from bps.mv(energy, 2580) yield from bps.sleep(5) yield from bps.mv(energy, 2610) yield from bps.sleep(5) yield from bps.mv(energy, 2640) yield from bps.sleep(5) yield from bps.mv(energy, 2660) yield from bps.sleep(5) yield from bps.mv(energy, 2680) yield from bps.sleep(5) yield from bps.mv(energy, 2700) yield from bps.sleep(5) yield from bps.mv(energy, 2720) yield from bps.sleep(5) yield from bps.mv(energy, 2740) yield from bps.sleep(5) yield from bps.mv(energy, 2760) yield from bps.sleep(5) yield from bps.mv(energy, 2780) yield from bps.sleep(5) yield from bps.mv(energy, 2800) yield from bps.sleep(5) dets = [pil300KW] names = ['c2_04', 'c2_06', 'c2_08'] x = [10600, 400, -10400] y = [600, 500, 500] energies = np.arange(2810, 2820, 5).tolist() + np.arange(2820, 2840, 0.5).tolist() + np.arange(2840, 2850, 1).tolist() waxs_arc = np.linspace(0, 36, 5) for name, xs, ys in zip(names, x, y): yield from bps.mv(piezo.x, xs) yield from bps.mv(piezo.y, ys) yss = np.linspace(ys, ys + 1000, 52) for wa in waxs_arc: yield from bps.mv(waxs, wa) det_exposure_time(t,t) name_fmt = '{sample}_{energy}eV_wa{wax}_bpm{xbpm}' for e, ysss in zip(energies, yss): yield from bps.mv(energy, e) yield from bps.sleep(1) yield from bps.mv(piezo.y, ysss) bpm = xbpm2.sumX.value sample_name = name_fmt.format(sample=name, energy='%6.2f'%e, wax = wa, xbpm = '%4.3f'%bpm) sample_id(user_name='GF', sample_name=sample_name) print(f'\n\t=== Sample: {sample_name} ===\n') yield from bp.count(dets, num=1) yield from bps.mv(energy, 2830) yield from bps.sleep(5) yield from bps.mv(energy, 2810) yield from bps.sleep(5) def waxs_S_edge_chris_night(t=1): dets = [pil300KW] energies = np.arange(2445, 2470, 5).tolist() + np.arange(2470, 2480, 0.25).tolist() + np.arange(2480, 2490, 1).tolist()+ np.arange(2490, 2501, 5).tolist() waxs_arc = np.linspace(0, 39, 7) yield from bps.mv(stage.th, 0) yield from bps.mv(stage.y, 0) names = ['e2_01', 'e2_02', 'e2_03', 'e2_04', 'b2_04', 'b2_08', 'd2_01', 'd2_02', 'd2_03', 'd2_04', 'd2_05', 'd2_06', 'd2_07', 'd2_08'] x = [41600, 35800, 29400, 23500, 6500, 1200, -4500, -9800,-15200,-21000,-26700,-32000,-37200,-42800,] y = [-4300, -4300, -4100, -4000, -4200,-4200, -4300, -4200, -4200, -4300, -4300, -4200, -4100, -4300, ] for name, xs, ys in zip(names, x, y): yield from bps.mv(piezo.x, xs) yield from bps.mv(piezo.y, ys) yss = np.linspace(ys, ys + 1000, 29) xss = np.array([xs, xs + 500]) yss, xss = np.meshgrid(yss, xss) yss = yss.ravel() xss = xss.ravel() for wa in waxs_arc: yield from bps.mv(waxs, wa) det_exposure_time(t,t) name_fmt = '{sample}_{energy}eV_wa{wax}_bpm{xbpm}' for e, xsss, ysss in zip(energies, xss, yss): yield from bps.mv(energy, e) yield from bps.sleep(1) yield from bps.mv(piezo.y, ysss) yield from bps.mv(piezo.x, xsss) bpm = xbpm2.sumX.value sample_name = name_fmt.format(sample=name, energy='%6.2f'%e, wax = wa, xbpm = '%4.3f'%bpm) sample_id(user_name='GF', sample_name=sample_name) print(f'\n\t=== Sample: {sample_name} ===\n') yield from bp.count(dets, num=1) yield from bps.mv(energy, 2470) yield from bps.mv(energy, 2450) yield from bps.mv(stage.th, 1) yield from bps.mv(stage.y, -8) names = ['d2_10', 'd2_11'] x = [-15700, -10200] y = [-8800, -8800] for name, xs, ys in zip(names, x, y): yield from bps.mv(piezo.x, xs) yield from bps.mv(piezo.y, ys) yss = np.linspace(ys, ys + 1000, 29) xss = np.array([xs, xs + 500]) yss, xss = np.meshgrid(yss, xss) yss = yss.ravel() xss = xss.ravel() for wa in waxs_arc: yield from bps.mv(waxs, wa) det_exposure_time(t,t) name_fmt = '{sample}_{energy}eV_wa{wax}_bpm{xbpm}' for e, xsss, ysss in zip(energies, xss, yss): yield from bps.mv(energy, e) yield from bps.sleep(1) yield from bps.mv(piezo.y, ysss) yield from bps.mv(piezo.x, xsss) bpm = xbpm2.sumX.value sample_name = name_fmt.format(sample=name, energy='%6.2f'%e, wax = wa, xbpm = '%4.3f'%bpm) sample_id(user_name='GF', sample_name=sample_name) print(f'\n\t=== Sample: {sample_name} ===\n') yield from bp.count(dets, num=1) yield from bps.mv(energy, 2470) yield from bps.mv(energy, 2450) yield from bps.mv(energy, 2450) yield from bps.sleep(5) yield from bps.mv(energy, 2500) yield from bps.sleep(5) yield from bps.mv(energy, 2550) yield from bps.sleep(5) yield from bps.mv(energy, 2580) yield from bps.sleep(5) yield from bps.mv(energy, 2610) yield from bps.sleep(5) yield from bps.mv(energy, 2640) yield from bps.sleep(5) yield from bps.mv(energy, 2660) yield from bps.sleep(5) yield from bps.mv(energy, 2680) yield from bps.sleep(5) yield from bps.mv(energy, 2700) yield from bps.sleep(5) yield from bps.mv(energy, 2720) yield from bps.sleep(5) yield from bps.mv(energy, 2740) yield from bps.sleep(5) yield from bps.mv(energy, 2760) yield from bps.sleep(5) yield from bps.mv(energy, 2780) yield from bps.sleep(5) yield from bps.mv(energy, 2800) yield from bps.sleep(5) dets = [pil300KW] yield from bps.mv(stage.th, 0) yield from bps.mv(stage.y, 0) names = ['b2_01', 'b2_02', 'b2_04', 'b2_08'] x = [17800, 12200, 6750, 1450] y = [-4100, -4200,-4200,-4200] energies = np.arange(2810, 2820, 5).tolist() + np.arange(2820, 2825, 1).tolist() + np.arange(2825, 2835, 0.25).tolist() + np.arange(2835, 2840, 0.5).tolist() + np.arange(2840, 2850, 1).tolist() waxs_arc = np.linspace(0, 39, 7) for name, xs, ys in zip(names, x, y): yield from bps.mv(piezo.x, xs) yield from bps.mv(piezo.y, ys) yss = np.linspace(ys, ys + 1000, 29) xss = np.array([xs, xs + 500]) yss, xss = np.meshgrid(yss, xss) yss = yss.ravel() xss = xss.ravel() for wa in waxs_arc: yield from bps.mv(waxs, wa) det_exposure_time(t,t) name_fmt = '{sample}_{energy}eV_wa{wax}_bpm{xbpm}' for e, xsss, ysss in zip(energies, xss, yss): yield from bps.mv(energy, e) yield from bps.sleep(1) yield from bps.mv(piezo.y, ysss) yield from bps.mv(piezo.x, xsss) bpm = xbpm2.sumX.value sample_name = name_fmt.format(sample=name, energy='%6.2f'%e, wax = wa, xbpm = '%4.3f'%bpm) sample_id(user_name='GF', sample_name=sample_name) print(f'\n\t=== Sample: {sample_name} ===\n') yield from bp.count(dets, num=1) yield from bps.mv(energy, 2830) yield from bps.sleep(2) yield from bps.mv(energy, 2810) yield from bps.sleep(2) def nexafs_90deg_McNeil(t=1): dets = [pil300KW] energies = np.arange(2445, 2470, 5).tolist() + np.arange(2470, 2480, 0.25).tolist() + np.arange(2480, 2490, 1).tolist()+ np.arange(2490, 2501, 5).tolist() waxs_arc = [52.5] ai = [0.7, 20, 55] names = ['D1_06'] for name in names: det_exposure_time(t,t) name_fmt = 'nexafs_vert_{sample}_{energy}eV_angle{ai}_bpm{xbpm}' ai0 = prs.position for ais in ai: yield from bps.mv(prs, ai0-ais) yield from bps.mvr(piezo.y, 100) for e in energies: yield from bps.mv(energy, e) yield from bps.sleep(1) bpm = xbpm2.sumX.value sample_name = name_fmt.format(sample=name, energy='%6.2f'%e, ai ='%2.2d'%ais, xbpm = '%4.3f'%bpm) sample_id(user_name='GF', sample_name=sample_name) print(f'\n\t=== Sample: {sample_name} ===\n') yield from bp.count(dets, num=1) yield from bps.mv(energy, 2470) yield from bps.mv(energy, 2450) def giwaxs_vert_S_edge_McNeil(t=1): dets = [pil300KW] names = ['D1_06'] energies = np.arange(2445, 2470, 5).tolist() + np.arange(2470, 2480, 0.25).tolist() + np.arange(2480, 2490, 1).tolist()+ np.arange(2490, 2501, 5).tolist() waxs_arc = [4, 10.5, 17] dets = [pil300KW] for name in names: for i, wa in enumerate(waxs_arc): if i==0: print('wa=4deg') else: yield from bps.mv(waxs, wa) name_fmt = 'GIWAXS_90deg_{sample}_{energy}eV_ai0.7_wa{wax}_bpm{xbpm}' for e in energies: yield from bps.mv(energy, e) yield from bps.sleep(1) bpm = xbpm2.sumX.value sample_name = name_fmt.format(sample=name, energy='%6.2f'%e, wax = wa, xbpm = '%4.3f'%bpm) sample_id(user_name='GF', sample_name=sample_name) print(f'\n\t=== Sample: {sample_name} ===\n') yield from bp.count(dets, num=1) yield from bps.mv(energy, 2470) yield from bps.mv(energy, 2450)
class ThePhantomMenace: def find(self, doors, droids): greatest_min = -1 best_door = doors[0] for idx, door in enumerate(doors): greatest_distance = 9999 for droid in droids: distance = abs(droid - door) if distance < greatest_distance: greatest_distance = distance if greatest_distance > greatest_min: greatest_min = greatest_distance return greatest_min
def get_index_of(sequence, item): for i in range(len(sequence)): if sequence[i] == item: return i numbers = [0, 1, 1, 2, 3, 5, 8, 13, 21, 34] thirteenIndex = get_index_of(numbers, 13) print("13 is at:", thirteenIndex)
num1 =100 num2 = 200 num3 = 300 num5 =500
# pw2wannier stores the k index in 4 digits, which crashes computations on grids larger than 9999. This fixes it. f = open("silicon.amn") out = open("silicon.amn.new", "w") out.write(f.readline()) out.write(f.readline()) for line in f: line = line[0:10] + " " + line[10:] out.write(line) f = open("silicon.mmn") out = open("silicon.mmn.new", "w") out.write(f.readline()) out.write(f.readline()) i = 0 for line in f: if ((i % 17) == 0): out.write(line[0:5] + " " + line[5:]) else: out.write(line) i = i+1 f = open("silicon.eig") out = open("silicon.eig.new", "w") i = 0 for line in f: line = line[0:5] + " " + line[5:] out.write(line)
# Admin specfic links ADMIN_HANDLE = "@kwokyto" # Bot settings NUMBER_TO_NOTIFY = 5 NUMBER_TO_BUMP = 5 # Messages sent to the user INVALID_FORMAT_MESSAGE = "Simi? I can only read text, don't send me anything else." NO_COMMAND_MESSAGE = "What are you saying?? Send a proper command lah please." START_MESSAGE = "Harlo ah! Easy peasy, /join to join queue, or /help if you still blur." HELP_MESSAGE = "Aiyo ok ok, these are what you can use:" +\ "\n /start - Display start message" +\ "\n /help - Display help message with available commands" +\ "\n /join - Join the queue" +\ "\n /leave - Leave the queue" +\ "\n /howlong - Get your position and queue length" +\ "\n\nStill don't know ah? Aish ok message me here: " + ADMIN_HANDLE IN_QUEUE_MESSAGE = "Tsk! You are already in the queue lah!" JOIN_SUCCESS_MESSAGE = "See got queue then happy happy just join right? Ok ok I put you in." YOUR_TURN_MESSAGE = "Eh eh its your turn already, hurry up lah can or not?" NOT_IN_QUEUE_MESSAGE = "Woi... You are not in the queue yet leh!" LEAVE_SUCCESS_MESSAGE = "You think this one game is it? Join queue then leave... Nevermind, take you out of the queue already." POSITION_MESSAGE = "How long more ah? Now in front of you got " QUEUE_LENGTH_MESSAGE = " people. Then, the whole queue total got " EMPTY_QUEUE_MESSAGE = "Nobody in the queue lah what are you doing??" NEXT_SUCCESS_MESSAGE = "Ok done, next person is " COME_NOW_MESSAGE = "Oi! Quick come, it's almost you liao. Number of people in front of you: " BUMP_SUCCESS_MESSAGE = "Ok liao, that late person got bumped down already. Next person in line is " INVALID_COMMAND_MESSAGE= "You think I graduated from Harvard is it? Don't know what you are telling me to do lah!" USELESS_BUMP_MESSAGE = "Only 1 person in the queue, you want to bump for what?" BUMPEE_MESSAGE = "See lah, tell you come don't want to come. Too late liao, you got bumped down the queue. Use /howlong to check your position." UNDER_MAINTENANCE_MESSAGE = "Sorry, the bot is currently under maintenance. Do hang tight for more updates, or contact " + ADMIN_HANDLE
# dataset settings ann_type = 'tanz_base' # * _base or _evaluation videos_per_gpu_train = 8 if ann_type == 'tanz_base' else 4 workers_per_gpu_train = 1 num_classes = 9 if ann_type == 'tanz_base' else 42 ## * model settings model = dict( type='Recognizer3D', backbone=dict( type='ResNet3d', # paper: 3D Residual Networks for Action Recognition pretrained2d=True, # using a 2D pre-trained model on Imagenet pretrained='torchvision://resnet50', # 3D pre-trained ResNet depth=50, conv_cfg=dict(type='Conv3d'), # using 3D convolutions norm_eval=False, # set BachNormalization layers to eval while training inflate=((1, 1, 1), (1, 0, 1, 0), (1, 0, 1, 0, 1, 0), (0, 1, 0)), # inflate dim of each block zero_init_residual=False, # whether to init residual blocks with 0 ), cls_head=dict( type='I3DHead', # the head varies with the type of architecture num_classes=num_classes, in_channels=2048, # the input channels of classification head spatial_type='avg', # type of pooling in spatial dimension dropout_ratio=0.5, # probability in dropout layer init_std=0.01), # std value for linear layer initiation # model training and testing settings train_cfg=None, # config for training hyperparameters test_cfg=dict(average_clips='prob')) # config for testing hyperparameters ## * dataset settings dataset_type = 'VideoDataset' data_root = '/mmaction2/' data_root_val = data_root ann_file_train = f'data/{ann_type}/tanz_train_list_videos.txt' ann_file_val = f'data/{ann_type}/tanz_val_list_videos.txt' ann_file_test = f'/mnt/data_transfer/read/to_process_test/{ann_type}_test_list_videos.txt' # config for image normalization used in data pipeline # https://stats.stackexchange.com/questions/211436/why-normalize-images-by-subtracting-datasets-image-mean-instead-of-the-current img_norm_cfg = dict( mean=[123.675, 116.28, 103.53], # mean values of different channels to normalize std=[58.395, 57.12, 57.375], # std values of different channels to normalize to_bgr=False, # whether to convert channels from rgb to bgr ) ## * pre-processing pipelines, data augmentation techniques ## For the pre-processing pipelines down below, it might be a good idea to use lazy mode as this will accelerate the training # each operation takes a dic as input and outputs a dic for the next operation train_pipeline = [ # list of training pipeline steps dict(type='DecordInit'), # mmaction/datasets/pipelines/loading.py dict( type='SampleFrames', clip_len=48, # number of frames sampled for each clip frame_interval=3, # temporal interval of adjacent sampled frames; # frames skipped while sampling num_clips=1), dict(type='DecordDecode'), # augmentations: mmaction/datasets/pipelines/augmentations.py dict(type='Resize', scale=(-1, 256)), # the scale to resize images dict( type= 'MultiScaleCrop', # crop images with a list of randomly selected scales input_size=224, scales=(1, 0.8), # width & height scales to be selected random_crop=False, max_wh_scale_gap=0), dict(type='Resize', scale=(224, 224), keep_ratio=False), dict( type='Flip', # flip pipeline flip_ratio=0.5), # probability of implementing flip dict( type='Normalize', # normalize pipeline **img_norm_cfg), # config of image normalization dict(type='FormatShape', input_format='NCTHW'), # format final image shape to the given input_format dict( type= 'Collect', # collect pipeline that decides which keys in the data should be passed to the recognizer keys=['imgs', 'label'], # keys of input meta_keys=[]), # meta keys of input dict( type='ToTensor', # convert other types to tensor keys=['imgs', 'label']) # keys to be converted from image to tensor ] val_pipeline = [ dict(type='DecordInit'), dict( type='SampleFrames', clip_len=48, frame_interval=3, num_clips=1, test_mode=True), dict(type='DecordDecode'), dict(type='Resize', scale=(-1, 256)), dict( type= 'CenterCrop', # center crop pipeline, cropping the center area from images crop_size=224), dict( type='Flip', # flip pipeline flip_ratio=0), # probability of implementig the flip dict(type='Normalize', **img_norm_cfg), dict(type='FormatShape', input_format='NCTHW'), dict(type='Collect', keys=['imgs', 'label'], meta_keys=[]), dict(type='ToTensor', keys=['imgs']) ] # one tweak that could be done here if you get a cuda out of memory error # could be to change the test pipeline into a light one # for e.g., num_clips=10 -> num_clips=1 # dict(type='ThreeCrop', crop_size=256) -> dict(type='CenterCrop', crop_size=224) test_pipeline = [ dict(type='DecordInit'), dict( type='SampleFrames', clip_len=48, frame_interval=3, num_clips=5, test_mode=True), dict(type='DecordDecode'), dict(type='Resize', scale=(-1, 256)), dict( type='ThreeCrop', # three crop pipeline, cropping 3 areas from images crop_size=256), # the size to crop images dict(type='Flip', flip_ratio=0), dict(type='Normalize', **img_norm_cfg), dict(type='FormatShape', input_format='NCTHW'), dict(type='Collect', keys=['imgs', 'label'], meta_keys=[]), dict(type='ToTensor', keys=['imgs']) ] data = dict( # tune these two `_gpu` values according to the Linear Scaling Rule (https://arxiv.org/abs/1706.02677) # https://mmaction2.readthedocs.io/en/latest/recognition_models.html videos_per_gpu=videos_per_gpu_train, # originally 8; number of videos in each GPU, i.e. mini-batch size of GPU workers_per_gpu=workers_per_gpu_train, # originally 8; workers (sub-processes) to pre-fetch data for each single gpu; (multithreaded loading for PyTorch) test_dataloader=dict( # Additional config of test dataloader videos_per_gpu=1, # has to be one-one else the mainz gpus won't hold and SIGKILL9 error results workers_per_gpu=1), val_dataloader=dict(videos_per_gpu=1, workers_per_gpu=1), train=dict( # training dataset config type=dataset_type, ann_file=ann_file_train, data_prefix=data_root, pipeline=train_pipeline, # num_classes=num_classes, # multi_class=True, ), val=dict( type=dataset_type, ann_file=ann_file_val, data_prefix=data_root_val, pipeline=val_pipeline, # num_classes=num_classes, # multi_class=True, ), test=dict( type=dataset_type, ann_file=ann_file_test, data_prefix='', pipeline=test_pipeline, # num_classes=num_classes, # multi_class=True, ) ) ### optimizations # normally the optimizations goes into a separate file but we want to have a bird's eye view in all the possible # configs in this particular config file. For the case of i3d, the optimizations can be found at configs/_base_/schedules/sgd_100e.py # * checkout the linear scaling rule to optimize the learning rate for the #GPUs optimizer = dict( type='SGD', lr=0.005, # * linear scaling rule momentum=0.9, weight_decay=0.0001) optimizer_config = dict(grad_clip=dict(max_norm=40, norm_type=2)) # learning policy lr_config = dict(policy='step', step=[40, 80]) total_epochs = 50 ### runtime settings checkpoint_config = dict(interval=5) log_config = dict( interval=20, hooks=[dict(type='TextLoggerHook')] ) evaluation = dict( # Config of evaluation during training interval=5, # Interval to perform evaluation metric_options=dict( top_k_accuracy=dict( topk=(1, 2, 3, 4, 5))), # set the top-k accuracy during validation; # for training the corresponding head must be modified (i3d_head in this case): https://github.com/open-mmlab/mmaction2/issues/874 # for testing: eval config below ) eval_config = dict( metric_options=dict(top_k_accuracy=dict(topk=(1, 2, 3, 4, 5))),) dist_params = dict(backend='nccl') log_level = 'INFO' load_from = 'https://download.openmmlab.com/mmaction/recognition/i3d/i3d_r50_video_32x2x1_100e_kinetics400_rgb/i3d_r50_video_32x2x1_100e_kinetics400_rgb_20200826-e31c6f52.pth' resume_from = None workflow = [('train', 1)]
class IFingerSetterService(Interface): def setUser(user, status): """Set the user's status to something""" # Advantages of latest version @implementer(IFingerService, IFingerSetterService) class MemoryFingerService(service.Service): def __init__(self, **kwargs): self.users = kwargs def getUser(self, user): return defer.succeed(self.users.get(user, "No such user")) def getUsers(self): return defer.succeed(self.users.keys()) def setUser(self, user, status): self.users[user] = status f = MemoryFingerService(moshez='Happy and well') serviceCollection = service.IServiceCollection(application) internet.TCPServer(1079, IFingerSetterFactory(f), interface='127.0.0.1' ).setServiceParent(serviceCollection)
class Solution: MIN_VALUE = -(2 ** 31) MAX_VALUE = 2 ** 31 - 1 def myAtoi(self, string: str) -> int: try: return self._fit_in_range(self._parse_number(string)) except ValueError: return 0 def _parse_number(self, string: str) -> str: string = string.strip() sign = '-' if string and string[0] == '-' else '+' string = string.removeprefix(sign) for i, char in enumerate(string): if not char.isnumeric(): return int(f'{sign}{string[:i]}') return int(f'{sign}{string}') def _fit_in_range(self, number: int) -> int: if number < self.MIN_VALUE: return self.MIN_VALUE if number > self.MAX_VALUE: return self.MAX_VALUE return number def test_my_atoi(): solution = Solution() assert solution.myAtoi('42') == 42 assert solution.myAtoi('') == 0 assert solution.myAtoi(' 42 ') == 42 assert solution.myAtoi(' -42') == -42 assert solution.myAtoi('4193 with words') == 4193 assert solution.myAtoi(' 4193 with words') == 4193 assert solution.myAtoi('words and 987') == 0 assert solution.myAtoi('-91283472332') == -2147483648 assert solution.myAtoi('3.14159') == 3 assert solution.myAtoi('+1') == 1 assert solution.myAtoi(' -0012a42') == -12 assert solution.myAtoi(' ++1') == 0
#Colors to be used in the plots color = ["#f94144","#f3722c","#f8961e","#f9c74f","#90be6d","#43aa8b","#577590"] sns.palplot(color)
class Shirt: def __init__(self, size, color): self.size = size.lower() self.color = color.lower() def __repr__(self): return str(self.size + "&" + self.color)
def is_number(value): '''Checks if a string can be converted into a float (or int as a by product). Helper function for string_cols_to_numeric''' try: float(value) return True except ValueError: return False
#!/usr/bin/python3 class strategyBase(object): def __init__(self): pass def _get_data(self): pass def _settle(self): pass if __name__ == "__main__": pass
# by Kami Bigdely # Extract Class foods = {'butternut squash soup':[45, True, 'soup','North African',\ ['butter squash','onion','carrot', 'garlic','butter','black pepper', 'cinnamon','coconut milk']\ ,'1. Grill the butter squash, onion, carrot and garlic in the oven until' 'they get soft and golden on top 2. Put all in blender with' 'butter and coconut milk. Blend them till they become puree. Then move the content into a pot' '. Add coconut milk. Simmer for 5 mintues.'], 'shirazi salad':[5, True, 'salad','Iranian', ['cucumber', 'tomato', 'onion', 'lemon juice'], \ '1. dice cucumbers, tomatoes and onions 2. put all into a bowl 3. pour lemon juice 3. add salt' '4. Mixed them thoroughly'], 'Home-made Beef Sausage': [60, False, 'deli','All',['sausage casing', 'regular ground beef','garlic',\ 'corriander seeds','black pepper seeds','fennel seed','paprika'],'1. In a blender,' ' blend corriander seeds, black pepper seeds, fennel seeds and garlic to make' 'the seasonings 2. In a bowl, mix ground beef with the' 'seasoning 3. Add all the content to a sausage stuffer. Put the casing on' "the stuffer funnel. Rotate the stuffer's handle (or turn it on) to make your yummy sausages!"]} def print_food(): print("Name:",key) print("Prep time:",value[0], "mins") print("Is Veggie?", 'Yes' if value[1] else "No") print("Food Type:", value[2]) print("Cuisine:", value[3]) def print_separate_foods(): for item in value[4]: print(item, end=', ') print() print("recipe", value[5]) print("***") for key, value in foods.items(): print_food() print_separate_foods()
def leia_Int(msg): ok = False valor = 0 while True: n = str(input(msg)) if n.isnumeric(): valor = int(n) ok = True else: print('\033[0;31m ERRO! Digite um valor inteiro! \033[m') if ok: break return valor n = leia_Int('Digite um valor inteiro: ') print(f'\033[0;32m Você digitou o número {n} \033[m')
def decimal_to_binary(num): if (num == 0): return 0 return num%2+10*decimal_to_binary(num//2) print(decimal_to_binary(2))
# yacctab.py # This file is automatically generated. Do not edit. _tabversion = '3.10' _lr_method = 'LALR' _lr_signature = 'translation_unit_or_emptyleftLORleftLANDleftORleftXORleftANDleftEQNEleftGTGELTLEleftRSHIFTLSHIFTleftPLUSMINUSleftTIMESDIVIDEMODAUTO BREAK CASE CHAR CONST CONTINUE DEFAULT DO DOUBLE ELSE ENUM EXTERN FLOAT FOR GOTO IF INLINE INT LONG REGISTER OFFSETOF RESTRICT RETURN SHORT SIGNED SIZEOF STATIC STRUCT SWITCH TYPEDEF UNION UNSIGNED VOID VOLATILE WHILE __INT128 _BOOL _COMPLEX _NORETURN _THREAD_LOCAL _STATIC_ASSERT _ATOMIC _ALIGNOF _ALIGNAS ID TYPEID INT_CONST_DEC INT_CONST_OCT INT_CONST_HEX INT_CONST_BIN INT_CONST_CHAR FLOAT_CONST HEX_FLOAT_CONST CHAR_CONST WCHAR_CONST U8CHAR_CONST U16CHAR_CONST U32CHAR_CONST STRING_LITERAL WSTRING_LITERAL U8STRING_LITERAL U16STRING_LITERAL U32STRING_LITERAL PLUS MINUS TIMES DIVIDE MOD OR AND NOT XOR LSHIFT RSHIFT LOR LAND LNOT LT LE GT GE EQ NE EQUALS TIMESEQUAL DIVEQUAL MODEQUAL PLUSEQUAL MINUSEQUAL LSHIFTEQUAL RSHIFTEQUAL ANDEQUAL XOREQUAL OREQUAL PLUSPLUS MINUSMINUS ARROW CONDOP LPAREN RPAREN LBRACKET RBRACKET LBRACE RBRACE COMMA PERIOD SEMI COLON ELLIPSIS PPHASH PPPRAGMA PPPRAGMASTRabstract_declarator_opt : empty\n| abstract_declaratorassignment_expression_opt : empty\n| assignment_expressionblock_item_list_opt : empty\n| block_item_listdeclaration_list_opt : empty\n| declaration_listdeclaration_specifiers_no_type_opt : empty\n| declaration_specifiers_no_typedesignation_opt : empty\n| designationexpression_opt : empty\n| expressionid_init_declarator_list_opt : empty\n| id_init_declarator_listidentifier_list_opt : empty\n| identifier_listinit_declarator_list_opt : empty\n| init_declarator_listinitializer_list_opt : empty\n| initializer_listparameter_type_list_opt : empty\n| parameter_type_liststruct_declarator_list_opt : empty\n| struct_declarator_listtype_qualifier_list_opt : empty\n| type_qualifier_list direct_id_declarator : ID\n direct_id_declarator : LPAREN id_declarator RPAREN\n direct_id_declarator : direct_id_declarator LBRACKET type_qualifier_list_opt assignment_expression_opt RBRACKET\n direct_id_declarator : direct_id_declarator LBRACKET STATIC type_qualifier_list_opt assignment_expression RBRACKET\n | direct_id_declarator LBRACKET type_qualifier_list STATIC assignment_expression RBRACKET\n direct_id_declarator : direct_id_declarator LBRACKET type_qualifier_list_opt TIMES RBRACKET\n direct_id_declarator : direct_id_declarator LPAREN parameter_type_list RPAREN\n | direct_id_declarator LPAREN identifier_list_opt RPAREN\n direct_typeid_declarator : TYPEID\n direct_typeid_declarator : LPAREN typeid_declarator RPAREN\n direct_typeid_declarator : direct_typeid_declarator LBRACKET type_qualifier_list_opt assignment_expression_opt RBRACKET\n direct_typeid_declarator : direct_typeid_declarator LBRACKET STATIC type_qualifier_list_opt assignment_expression RBRACKET\n | direct_typeid_declarator LBRACKET type_qualifier_list STATIC assignment_expression RBRACKET\n direct_typeid_declarator : direct_typeid_declarator LBRACKET type_qualifier_list_opt TIMES RBRACKET\n direct_typeid_declarator : direct_typeid_declarator LPAREN parameter_type_list RPAREN\n | direct_typeid_declarator LPAREN identifier_list_opt RPAREN\n direct_typeid_noparen_declarator : TYPEID\n direct_typeid_noparen_declarator : direct_typeid_noparen_declarator LBRACKET type_qualifier_list_opt assignment_expression_opt RBRACKET\n direct_typeid_noparen_declarator : direct_typeid_noparen_declarator LBRACKET STATIC type_qualifier_list_opt assignment_expression RBRACKET\n | direct_typeid_noparen_declarator LBRACKET type_qualifier_list STATIC assignment_expression RBRACKET\n direct_typeid_noparen_declarator : direct_typeid_noparen_declarator LBRACKET type_qualifier_list_opt TIMES RBRACKET\n direct_typeid_noparen_declarator : direct_typeid_noparen_declarator LPAREN parameter_type_list RPAREN\n | direct_typeid_noparen_declarator LPAREN identifier_list_opt RPAREN\n id_declarator : direct_id_declarator\n id_declarator : pointer direct_id_declarator\n typeid_declarator : direct_typeid_declarator\n typeid_declarator : pointer direct_typeid_declarator\n typeid_noparen_declarator : direct_typeid_noparen_declarator\n typeid_noparen_declarator : pointer direct_typeid_noparen_declarator\n translation_unit_or_empty : translation_unit\n | empty\n translation_unit : external_declaration\n translation_unit : translation_unit external_declaration\n external_declaration : function_definition\n external_declaration : declaration\n external_declaration : pp_directive\n | pppragma_directive\n external_declaration : SEMI\n external_declaration : static_assert\n static_assert : _STATIC_ASSERT LPAREN constant_expression COMMA unified_string_literal RPAREN\n | _STATIC_ASSERT LPAREN constant_expression RPAREN\n pp_directive : PPHASH\n pppragma_directive : PPPRAGMA\n | PPPRAGMA PPPRAGMASTR\n function_definition : id_declarator declaration_list_opt compound_statement\n function_definition : declaration_specifiers id_declarator declaration_list_opt compound_statement\n statement : labeled_statement\n | expression_statement\n | compound_statement\n | selection_statement\n | iteration_statement\n | jump_statement\n | pppragma_directive\n | static_assert\n pragmacomp_or_statement : pppragma_directive statement\n | statement\n decl_body : declaration_specifiers init_declarator_list_opt\n | declaration_specifiers_no_type id_init_declarator_list_opt\n declaration : decl_body SEMI\n declaration_list : declaration\n | declaration_list declaration\n declaration_specifiers_no_type : type_qualifier declaration_specifiers_no_type_opt\n declaration_specifiers_no_type : storage_class_specifier declaration_specifiers_no_type_opt\n declaration_specifiers_no_type : function_specifier declaration_specifiers_no_type_opt\n declaration_specifiers_no_type : atomic_specifier declaration_specifiers_no_type_opt\n declaration_specifiers_no_type : alignment_specifier declaration_specifiers_no_type_opt\n declaration_specifiers : declaration_specifiers type_qualifier\n declaration_specifiers : declaration_specifiers storage_class_specifier\n declaration_specifiers : declaration_specifiers function_specifier\n declaration_specifiers : declaration_specifiers type_specifier_no_typeid\n declaration_specifiers : type_specifier\n declaration_specifiers : declaration_specifiers_no_type type_specifier\n declaration_specifiers : declaration_specifiers alignment_specifier\n storage_class_specifier : AUTO\n | REGISTER\n | STATIC\n | EXTERN\n | TYPEDEF\n | _THREAD_LOCAL\n function_specifier : INLINE\n | _NORETURN\n type_specifier_no_typeid : VOID\n | _BOOL\n | CHAR\n | SHORT\n | INT\n | LONG\n | FLOAT\n | DOUBLE\n | _COMPLEX\n | SIGNED\n | UNSIGNED\n | __INT128\n type_specifier : typedef_name\n | enum_specifier\n | struct_or_union_specifier\n | type_specifier_no_typeid\n | atomic_specifier\n atomic_specifier : _ATOMIC LPAREN type_name RPAREN\n type_qualifier : CONST\n | RESTRICT\n | VOLATILE\n | _ATOMIC\n init_declarator_list : init_declarator\n | init_declarator_list COMMA init_declarator\n init_declarator : declarator\n | declarator EQUALS initializer\n id_init_declarator_list : id_init_declarator\n | id_init_declarator_list COMMA init_declarator\n id_init_declarator : id_declarator\n | id_declarator EQUALS initializer\n specifier_qualifier_list : specifier_qualifier_list type_specifier_no_typeid\n specifier_qualifier_list : specifier_qualifier_list type_qualifier\n specifier_qualifier_list : type_specifier\n specifier_qualifier_list : type_qualifier_list type_specifier\n specifier_qualifier_list : alignment_specifier\n specifier_qualifier_list : specifier_qualifier_list alignment_specifier\n struct_or_union_specifier : struct_or_union ID\n | struct_or_union TYPEID\n struct_or_union_specifier : struct_or_union brace_open struct_declaration_list brace_close\n | struct_or_union brace_open brace_close\n struct_or_union_specifier : struct_or_union ID brace_open struct_declaration_list brace_close\n | struct_or_union ID brace_open brace_close\n | struct_or_union TYPEID brace_open struct_declaration_list brace_close\n | struct_or_union TYPEID brace_open brace_close\n struct_or_union : STRUCT\n | UNION\n struct_declaration_list : struct_declaration\n | struct_declaration_list struct_declaration\n struct_declaration : specifier_qualifier_list struct_declarator_list_opt SEMI\n struct_declaration : SEMI\n struct_declaration : pppragma_directive\n struct_declarator_list : struct_declarator\n | struct_declarator_list COMMA struct_declarator\n struct_declarator : declarator\n struct_declarator : declarator COLON constant_expression\n | COLON constant_expression\n enum_specifier : ENUM ID\n | ENUM TYPEID\n enum_specifier : ENUM brace_open enumerator_list brace_close\n enum_specifier : ENUM ID brace_open enumerator_list brace_close\n | ENUM TYPEID brace_open enumerator_list brace_close\n enumerator_list : enumerator\n | enumerator_list COMMA\n | enumerator_list COMMA enumerator\n alignment_specifier : _ALIGNAS LPAREN type_name RPAREN\n | _ALIGNAS LPAREN constant_expression RPAREN\n enumerator : ID\n | ID EQUALS constant_expression\n declarator : id_declarator\n | typeid_declarator\n pointer : TIMES type_qualifier_list_opt\n | TIMES type_qualifier_list_opt pointer\n type_qualifier_list : type_qualifier\n | type_qualifier_list type_qualifier\n parameter_type_list : parameter_list\n | parameter_list COMMA ELLIPSIS\n parameter_list : parameter_declaration\n | parameter_list COMMA parameter_declaration\n parameter_declaration : declaration_specifiers id_declarator\n | declaration_specifiers typeid_noparen_declarator\n parameter_declaration : declaration_specifiers abstract_declarator_opt\n identifier_list : identifier\n | identifier_list COMMA identifier\n initializer : assignment_expression\n initializer : brace_open initializer_list_opt brace_close\n | brace_open initializer_list COMMA brace_close\n initializer_list : designation_opt initializer\n | initializer_list COMMA designation_opt initializer\n designation : designator_list EQUALS\n designator_list : designator\n | designator_list designator\n designator : LBRACKET constant_expression RBRACKET\n | PERIOD identifier\n type_name : specifier_qualifier_list abstract_declarator_opt\n abstract_declarator : pointer\n abstract_declarator : pointer direct_abstract_declarator\n abstract_declarator : direct_abstract_declarator\n direct_abstract_declarator : LPAREN abstract_declarator RPAREN direct_abstract_declarator : direct_abstract_declarator LBRACKET assignment_expression_opt RBRACKET\n direct_abstract_declarator : LBRACKET type_qualifier_list_opt assignment_expression_opt RBRACKET\n direct_abstract_declarator : direct_abstract_declarator LBRACKET TIMES RBRACKET\n direct_abstract_declarator : LBRACKET TIMES RBRACKET\n direct_abstract_declarator : direct_abstract_declarator LPAREN parameter_type_list_opt RPAREN\n direct_abstract_declarator : LPAREN parameter_type_list_opt RPAREN\n block_item : declaration\n | statement\n block_item_list : block_item\n | block_item_list block_item\n compound_statement : brace_open block_item_list_opt brace_close labeled_statement : ID COLON pragmacomp_or_statement labeled_statement : CASE constant_expression COLON pragmacomp_or_statement labeled_statement : DEFAULT COLON pragmacomp_or_statement selection_statement : IF LPAREN expression RPAREN pragmacomp_or_statement selection_statement : IF LPAREN expression RPAREN statement ELSE pragmacomp_or_statement selection_statement : SWITCH LPAREN expression RPAREN pragmacomp_or_statement iteration_statement : WHILE LPAREN expression RPAREN pragmacomp_or_statement iteration_statement : DO pragmacomp_or_statement WHILE LPAREN expression RPAREN SEMI iteration_statement : FOR LPAREN expression_opt SEMI expression_opt SEMI expression_opt RPAREN pragmacomp_or_statement iteration_statement : FOR LPAREN declaration expression_opt SEMI expression_opt RPAREN pragmacomp_or_statement jump_statement : GOTO ID SEMI jump_statement : BREAK SEMI jump_statement : CONTINUE SEMI jump_statement : RETURN expression SEMI\n | RETURN SEMI\n expression_statement : expression_opt SEMI expression : assignment_expression\n | expression COMMA assignment_expression\n assignment_expression : LPAREN compound_statement RPAREN typedef_name : TYPEID assignment_expression : conditional_expression\n | unary_expression assignment_operator assignment_expression\n assignment_operator : EQUALS\n | XOREQUAL\n | TIMESEQUAL\n | DIVEQUAL\n | MODEQUAL\n | PLUSEQUAL\n | MINUSEQUAL\n | LSHIFTEQUAL\n | RSHIFTEQUAL\n | ANDEQUAL\n | OREQUAL\n constant_expression : conditional_expression conditional_expression : binary_expression\n | binary_expression CONDOP expression COLON conditional_expression\n binary_expression : cast_expression\n | binary_expression TIMES binary_expression\n | binary_expression DIVIDE binary_expression\n | binary_expression MOD binary_expression\n | binary_expression PLUS binary_expression\n | binary_expression MINUS binary_expression\n | binary_expression RSHIFT binary_expression\n | binary_expression LSHIFT binary_expression\n | binary_expression LT binary_expression\n | binary_expression LE binary_expression\n | binary_expression GE binary_expression\n | binary_expression GT binary_expression\n | binary_expression EQ binary_expression\n | binary_expression NE binary_expression\n | binary_expression AND binary_expression\n | binary_expression OR binary_expression\n | binary_expression XOR binary_expression\n | binary_expression LAND binary_expression\n | binary_expression LOR binary_expression\n cast_expression : unary_expression cast_expression : LPAREN type_name RPAREN cast_expression unary_expression : postfix_expression unary_expression : PLUSPLUS unary_expression\n | MINUSMINUS unary_expression\n | unary_operator cast_expression\n unary_expression : SIZEOF unary_expression\n | SIZEOF LPAREN type_name RPAREN\n | _ALIGNOF LPAREN type_name RPAREN\n unary_operator : AND\n | TIMES\n | PLUS\n | MINUS\n | NOT\n | LNOT\n postfix_expression : primary_expression postfix_expression : postfix_expression LBRACKET expression RBRACKET postfix_expression : postfix_expression LPAREN argument_expression_list RPAREN\n | postfix_expression LPAREN RPAREN\n postfix_expression : postfix_expression PERIOD ID\n | postfix_expression PERIOD TYPEID\n | postfix_expression ARROW ID\n | postfix_expression ARROW TYPEID\n postfix_expression : postfix_expression PLUSPLUS\n | postfix_expression MINUSMINUS\n postfix_expression : LPAREN type_name RPAREN brace_open initializer_list brace_close\n | LPAREN type_name RPAREN brace_open initializer_list COMMA brace_close\n primary_expression : identifier primary_expression : constant primary_expression : unified_string_literal\n | unified_wstring_literal\n primary_expression : LPAREN expression RPAREN primary_expression : OFFSETOF LPAREN type_name COMMA offsetof_member_designator RPAREN\n offsetof_member_designator : identifier\n | offsetof_member_designator PERIOD identifier\n | offsetof_member_designator LBRACKET expression RBRACKET\n argument_expression_list : assignment_expression\n | argument_expression_list COMMA assignment_expression\n identifier : ID constant : INT_CONST_DEC\n | INT_CONST_OCT\n | INT_CONST_HEX\n | INT_CONST_BIN\n | INT_CONST_CHAR\n constant : FLOAT_CONST\n | HEX_FLOAT_CONST\n constant : CHAR_CONST\n | WCHAR_CONST\n | U8CHAR_CONST\n | U16CHAR_CONST\n | U32CHAR_CONST\n unified_string_literal : STRING_LITERAL\n | unified_string_literal STRING_LITERAL\n unified_wstring_literal : WSTRING_LITERAL\n | U8STRING_LITERAL\n | U16STRING_LITERAL\n | U32STRING_LITERAL\n | unified_wstring_literal WSTRING_LITERAL\n | unified_wstring_literal U8STRING_LITERAL\n | unified_wstring_literal U16STRING_LITERAL\n | unified_wstring_literal U32STRING_LITERAL\n brace_open : LBRACE\n brace_close : RBRACE\n empty : ' _lr_action_items = {'$end':([0,1,2,3,4,5,6,7,8,9,10,14,15,63,89,90,125,205,248,262,351,493,],[-337,0,-58,-59,-60,-62,-63,-64,-65,-66,-67,-70,-71,-61,-87,-72,-73,-336,-74,-69,-218,-68,]),'SEMI':([0,2,4,5,6,7,8,9,10,12,13,14,15,18,20,21,22,23,24,25,26,27,28,30,31,32,33,34,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,63,68,69,70,71,72,73,74,75,76,77,78,80,82,83,84,85,86,87,88,89,90,95,96,97,98,99,100,101,102,103,104,105,106,108,109,110,115,116,117,119,120,121,122,125,126,128,130,138,139,140,141,146,147,153,154,157,158,159,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,200,201,202,203,204,205,206,207,208,209,211,217,218,219,220,221,222,223,224,225,226,227,228,229,230,233,236,239,242,243,244,245,246,247,248,249,250,251,252,262,263,287,288,289,291,292,293,296,297,298,299,307,308,322,323,326,329,330,331,332,333,334,335,336,337,338,339,340,341,342,344,345,349,350,351,352,353,354,356,357,365,366,367,368,369,370,371,372,398,399,401,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,424,426,427,428,429,434,435,454,455,458,459,460,463,464,465,466,468,470,474,475,476,477,478,479,480,487,488,491,493,495,496,499,500,502,503,516,517,518,519,520,521,523,524,525,529,530,532,546,547,548,549,551,554,556,563,564,567,572,573,575,577,578,579,],[9,9,-60,-62,-63,-64,-65,-66,-67,-337,89,-70,-71,-52,-337,-337,-337,-125,-99,-337,-337,-29,-104,-122,-123,-124,-126,-238,-110,-111,-112,-113,-114,-115,-116,-117,-118,-119,-120,-121,-131,-128,-129,-130,-102,-103,-105,-106,-107,-108,-109,-61,-337,-337,-126,-131,-178,-95,-96,-97,-98,-101,-85,-131,-19,-20,-132,-134,-179,-54,-37,-87,-72,-53,-90,-9,-10,-337,-91,-92,-100,-86,-126,-15,-16,-136,-138,-94,-93,-166,-167,-335,-146,-147,207,-73,-337,-178,-55,-303,-252,-253,-255,-274,-276,-289,-312,-301,-302,-304,-313,-314,-315,-316,-317,-318,-319,-320,-321,-322,-323,-324,-325,-327,-328,-329,-330,-30,207,207,207,-149,-156,-336,-337,-159,-160,-142,-144,-13,-337,-216,-214,-215,-75,-76,-77,-78,-79,-80,-81,-82,-312,357,-14,-337,369,370,372,-235,-239,-274,-74,-38,-133,-135,-193,-69,-326,-297,-298,-277,-278,-279,-280,-331,-332,-333,-334,-35,-36,-137,-139,-168,207,-151,207,-153,-148,-157,460,-140,-141,-145,-25,-26,-161,-163,-143,-127,-174,-175,-218,-217,-13,-337,-337,-234,-81,-84,-337,477,-230,-231,478,-233,-43,-44,-305,-256,-257,-258,-259,-260,-261,-262,-263,-264,-265,-266,-267,-268,-269,-270,-271,-272,-273,-292,-293,-294,-295,-296,-31,-34,-169,-170,-150,-152,-158,-165,-219,-337,-221,-237,-236,-83,523,-337,-229,-232,-240,-194,-39,-42,-275,-68,-290,-291,-281,-282,-32,-33,-162,-164,-220,-337,-337,-337,-337,552,-195,-40,-41,-254,-222,-84,-224,-225,565,-299,-306,-337,573,-300,-223,-226,-337,-337,-228,-227,]),'PPHASH':([0,2,4,5,6,7,8,9,10,14,15,63,89,90,125,205,248,262,351,493,],[14,14,-60,-62,-63,-64,-65,-66,-67,-70,-71,-61,-87,-72,-73,-336,-74,-69,-218,-68,]),'PPPRAGMA':([0,2,4,5,6,7,8,9,10,14,15,63,89,90,119,122,125,126,200,201,202,204,205,207,208,218,219,220,221,222,223,224,225,226,227,228,229,239,248,262,329,331,334,351,352,354,356,357,365,366,369,370,372,460,464,465,466,474,477,478,493,518,519,520,521,546,547,548,549,563,572,573,575,577,578,579,],[15,15,-60,-62,-63,-64,-65,-66,-67,-70,-71,-61,-87,-72,-335,15,-73,15,15,15,15,-156,-336,-159,-160,15,-216,-214,-215,-75,-76,-77,-78,-79,-80,-81,-82,15,-74,-69,15,15,-157,-218,-217,15,15,-234,15,-84,-230,-231,-233,-158,-219,15,-221,-83,-229,-232,-68,-220,15,15,15,-222,-84,-224,-225,15,-223,-226,15,15,-228,-227,]),'_STATIC_ASSERT':([0,2,4,5,6,7,8,9,10,14,15,63,89,90,119,125,126,205,218,219,220,221,222,223,224,225,226,227,228,229,239,248,262,351,352,354,356,357,365,366,369,370,372,464,465,466,474,477,478,493,518,519,520,521,546,547,548,549,563,572,573,575,577,578,579,],[16,16,-60,-62,-63,-64,-65,-66,-67,-70,-71,-61,-87,-72,-335,-73,16,-336,16,-216,-214,-215,-75,-76,-77,-78,-79,-80,-81,-82,16,-74,-69,-218,-217,16,16,-234,16,-84,-230,-231,-233,-219,16,-221,-83,-229,-232,-68,-220,16,16,16,-222,-84,-224,-225,16,-223,-226,16,16,-228,-227,]),'ID':([0,2,4,5,6,7,8,9,10,12,14,15,17,19,20,21,22,23,24,25,26,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,61,62,63,68,69,70,71,73,74,75,76,77,79,80,81,89,90,91,93,94,96,97,98,99,100,101,102,104,110,111,112,113,114,115,116,117,118,119,120,121,124,125,126,132,133,134,135,136,142,143,144,145,148,149,150,151,155,156,179,180,181,189,191,192,193,194,195,196,203,205,206,209,211,218,219,220,221,222,223,224,225,226,227,228,229,231,235,239,241,244,248,253,254,255,256,262,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,290,294,302,305,306,310,314,318,319,326,327,328,330,332,333,336,337,338,343,344,345,349,350,351,352,354,356,357,358,361,362,363,365,366,367,369,370,372,373,374,375,376,377,378,379,380,381,382,383,384,387,388,389,392,393,395,396,397,400,443,444,447,450,452,454,455,458,459,461,462,464,465,466,469,474,476,477,478,481,483,492,493,494,497,501,504,505,506,514,518,519,520,521,522,523,526,527,537,538,539,546,547,548,549,552,555,557,558,563,565,572,573,575,577,578,579,],[27,27,-60,-62,-63,-64,-65,-66,-67,27,-70,-71,27,27,-337,-337,-337,-125,-99,27,-337,-104,-337,-122,-123,-124,-126,-238,116,120,-110,-111,-112,-113,-114,-115,-116,-117,-118,-119,-120,-121,-131,-128,-129,-130,-102,-103,-105,-106,-107,-108,-109,-154,-155,-61,27,27,-126,-131,-95,-96,-97,-98,-101,27,-131,27,-87,-72,154,-337,154,-90,-9,-10,-337,-91,-92,-100,-126,-94,-180,-27,-28,-182,-93,-166,-167,199,-335,-146,-147,154,-73,230,27,154,-337,154,154,-284,-285,-286,-283,154,154,154,154,-287,-288,154,-337,-28,27,27,154,-181,-183,199,199,-149,-336,27,-142,-144,230,-216,-214,-215,-75,-76,-77,-78,-79,-80,-81,-82,154,154,230,368,154,-74,-337,154,-337,-28,-69,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,426,428,154,154,-284,154,154,154,27,27,-337,-168,199,154,-151,-153,-148,-140,-141,-145,154,-143,-127,-174,-175,-218,-217,230,230,-234,154,154,154,154,230,-84,154,-230,-231,-233,154,-241,-242,-243,-244,-245,-246,-247,-248,-249,-250,-251,-11,154,-12,154,154,-284,154,154,154,-337,154,27,154,154,-169,-170,-150,-152,27,154,-219,230,-221,154,-83,154,-229,-232,-337,-198,-337,-68,154,154,154,154,-337,-28,-284,-220,230,230,230,154,154,154,-11,-284,154,154,-222,-84,-224,-225,154,-337,154,154,230,154,-223,-226,230,230,-228,-227,]),'LPAREN':([0,2,4,5,6,7,8,9,10,12,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,63,68,69,70,71,73,74,75,76,77,79,80,81,87,88,89,90,91,93,95,96,97,98,99,100,101,102,104,107,110,111,112,113,114,115,116,117,119,120,121,124,125,126,130,132,133,134,136,138,142,143,144,145,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,189,191,192,193,194,203,205,206,209,211,213,218,219,220,221,222,223,224,225,226,227,228,229,230,231,234,235,237,238,239,240,244,248,249,253,254,255,256,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,287,288,290,294,296,297,298,299,302,305,306,307,308,314,315,318,319,320,321,326,328,330,332,333,336,337,338,343,344,345,347,348,349,350,351,352,354,356,357,358,361,362,363,365,366,367,369,370,372,373,374,375,376,377,378,379,380,381,382,383,384,387,388,389,392,395,396,397,398,399,400,401,424,426,427,428,429,434,435,441,442,443,447,450,452,454,455,458,459,461,462,464,465,466,469,473,474,476,477,478,481,483,487,488,492,493,494,495,496,497,502,503,504,505,506,509,510,512,514,518,519,520,521,522,523,526,527,529,530,537,538,539,540,541,542,543,544,545,546,547,548,549,552,554,555,556,558,559,560,563,565,567,570,571,572,573,575,577,578,579,],[17,17,-60,-62,-63,-64,-65,-66,-67,81,-70,-71,91,17,94,17,-337,-337,-337,-125,-99,17,-337,-29,-104,-337,-122,-123,-124,-126,-238,-110,-111,-112,-113,-114,-115,-116,-117,-118,-119,-120,-121,123,-128,-129,-130,-102,-103,-105,-106,-107,-108,-109,124,-61,81,17,-126,123,-95,-96,-97,-98,-101,81,-131,81,135,-37,-87,-72,136,-337,94,-90,-9,-10,-337,-91,-92,-100,-126,123,-94,-180,-27,-28,-182,-93,-166,-167,-335,-146,-147,136,-73,235,135,81,235,-337,235,-303,-284,-285,-286,-283,284,290,290,136,294,295,-289,-312,-287,-288,-301,-302,-304,300,-313,-314,-315,-316,-317,-318,-319,-320,-321,-322,-323,-324,-325,-327,-328,-329,-330,-30,235,-337,-28,318,81,235,-181,-183,-149,-336,81,-142,-144,347,235,-216,-214,-215,-75,-76,-77,-78,-79,-80,-81,-82,-312,136,358,235,362,363,235,367,235,-74,-38,-337,235,-337,-28,-69,-326,235,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,235,235,-297,-298,235,235,-331,-332,-333,-334,-284,235,235,-35,-36,318,444,318,-337,-45,453,-168,136,-151,-153,-148,-140,-141,-145,136,-143,-127,347,347,-174,-175,-218,-217,235,235,-234,235,235,235,235,235,-84,235,-230,-231,-233,235,-241,-242,-243,-244,-245,-246,-247,-248,-249,-250,-251,-11,235,-12,136,-284,235,235,-43,-44,136,-305,-292,-293,-294,-295,-296,-31,-34,444,453,-337,318,235,235,-169,-170,-150,-152,81,136,-219,235,-221,136,522,-83,235,-229,-232,-337,-198,-39,-42,-337,-68,136,-290,-291,235,-32,-33,235,-337,-28,-207,-213,-211,-284,-220,235,235,235,235,235,235,-11,-40,-41,-284,235,235,-50,-51,-209,-208,-210,-212,-222,-84,-224,-225,235,-299,-337,-306,235,-46,-49,235,235,-300,-47,-48,-223,-226,235,235,-228,-227,]),'TIMES':([0,2,4,5,6,7,8,9,10,12,14,15,17,20,21,22,23,24,25,26,28,29,30,31,32,33,34,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,63,68,69,70,71,73,74,75,76,77,80,81,89,90,91,93,96,97,98,99,100,101,102,104,110,111,112,113,114,115,116,117,119,120,121,124,125,126,132,133,134,136,138,140,141,142,143,144,145,146,147,148,149,150,151,153,154,155,156,157,158,159,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,179,180,181,189,191,192,194,203,205,206,209,211,213,218,219,220,221,222,223,224,225,226,227,228,229,230,231,235,239,244,247,248,253,254,255,256,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,287,288,289,290,291,292,293,294,296,297,298,299,302,305,306,318,319,326,328,330,332,333,336,337,338,343,344,345,347,349,350,351,352,354,356,357,358,361,362,363,365,366,367,369,370,372,373,374,375,376,377,378,379,380,381,382,383,384,387,388,389,392,395,396,397,400,401,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,424,426,427,428,429,443,450,452,454,455,458,459,461,462,464,465,466,469,474,476,477,478,481,483,491,492,493,494,495,496,497,499,500,504,505,506,514,518,519,520,521,522,523,526,527,537,538,539,546,547,548,549,552,554,555,556,558,563,565,567,572,573,575,577,578,579,],[29,29,-60,-62,-63,-64,-65,-66,-67,29,-70,-71,29,-337,-337,-337,-125,-99,29,-337,-104,-337,-122,-123,-124,-126,-238,-110,-111,-112,-113,-114,-115,-116,-117,-118,-119,-120,-121,-131,-128,-129,-130,-102,-103,-105,-106,-107,-108,-109,-61,29,29,-126,-131,-95,-96,-97,-98,-101,-131,29,-87,-72,142,-337,-90,-9,-10,-337,-91,-92,-100,-126,-94,29,-27,-28,-182,-93,-166,-167,-335,-146,-147,142,-73,142,29,142,-337,142,-303,265,-255,-284,-285,-286,-283,-274,-276,142,142,142,142,-289,-312,-287,-288,-301,-302,-304,-313,-314,-315,-316,-317,-318,-319,-320,-321,-322,-323,-324,-325,-327,-328,-329,-330,302,-337,-28,29,29,142,-183,-149,-336,29,-142,-144,29,142,-216,-214,-215,-75,-76,-77,-78,-79,-80,-81,-82,-312,142,142,142,142,-274,-74,-337,395,-337,-28,-69,-326,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,-297,-298,-277,142,-278,-279,-280,142,-331,-332,-333,-334,-284,142,142,29,451,-168,142,-151,-153,-148,-140,-141,-145,142,-143,-127,29,-174,-175,-218,-217,142,142,-234,142,142,142,142,142,-84,142,-230,-231,-233,142,-241,-242,-243,-244,-245,-246,-247,-248,-249,-250,-251,-11,142,-12,142,-284,142,142,142,-305,-256,-257,-258,265,265,265,265,265,265,265,265,265,265,265,265,265,265,265,-292,-293,-294,-295,-296,-337,142,514,-169,-170,-150,-152,29,142,-219,142,-221,142,-83,142,-229,-232,-337,-198,-275,-337,-68,142,-290,-291,142,-281,-282,537,-337,-28,-284,-220,142,142,142,142,142,142,-11,-284,142,142,-222,-84,-224,-225,142,-299,-337,-306,142,142,142,-300,-223,-226,142,142,-228,-227,]),'TYPEID':([0,2,4,5,6,7,8,9,10,11,12,14,15,18,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,61,62,63,66,67,68,69,70,71,72,73,74,75,76,77,79,80,81,89,90,94,95,96,97,98,99,100,101,102,104,110,111,112,113,114,115,116,117,119,120,121,122,123,124,125,126,127,132,135,136,178,189,190,191,193,194,200,201,202,203,204,205,206,207,208,209,210,211,218,219,220,221,222,223,224,225,226,227,228,229,235,248,262,285,286,290,294,295,300,307,308,309,314,318,326,329,330,331,332,333,334,336,337,338,344,345,347,349,350,351,352,357,365,366,367,369,370,372,434,435,444,453,454,455,458,459,460,461,464,466,474,477,478,493,502,503,518,546,547,548,549,572,573,578,579,],[34,34,-60,-62,-63,-64,-65,-66,-67,34,88,-70,-71,-52,-337,-337,-337,-125,-99,34,-337,-29,-104,-337,-122,-123,-124,-126,-238,117,121,-110,-111,-112,-113,-114,-115,-116,-117,-118,-119,-120,-121,-131,-128,-129,-130,-102,-103,-105,-106,-107,-108,-109,-154,-155,-61,34,-88,88,34,-126,-131,34,-95,-96,-97,-98,-101,88,-131,88,-87,-72,34,-53,-90,-9,-10,-337,-91,-92,-100,-126,-94,-180,-27,-28,-182,-93,-166,-167,-335,-146,-147,34,34,34,-73,34,-89,88,34,34,-30,320,34,88,-181,-183,34,34,34,-149,-156,-336,88,-159,-160,-142,34,-144,34,-216,-214,-215,-75,-76,-77,-78,-79,-80,-81,-82,34,-74,-69,427,429,34,34,34,34,-35,-36,34,320,34,-168,34,-151,34,-153,-148,-157,-140,-141,-145,-143,-127,34,-174,-175,-218,-217,-234,-81,-84,34,-230,-231,-233,-31,-34,34,34,-169,-170,-150,-152,-158,88,-219,-221,-83,-229,-232,-68,-32,-33,-220,-222,-84,-224,-225,-223,-226,-228,-227,]),'ENUM':([0,2,4,5,6,7,8,9,10,11,14,15,18,20,21,22,25,26,27,28,33,49,50,51,52,53,54,55,56,57,58,59,63,66,67,69,70,71,72,89,90,94,95,96,97,98,99,100,101,110,114,115,119,122,123,124,125,126,127,135,136,178,190,194,200,201,202,204,205,207,208,210,218,219,220,221,222,223,224,225,226,227,228,229,235,248,262,290,294,295,300,307,308,309,318,329,331,334,345,347,349,350,351,352,357,365,366,367,369,370,372,434,435,444,453,460,464,466,474,477,478,493,502,503,518,546,547,548,549,572,573,578,579,],[35,35,-60,-62,-63,-64,-65,-66,-67,35,-70,-71,-52,-337,-337,-337,35,-337,-29,-104,-337,-131,-128,-129,-130,-102,-103,-105,-106,-107,-108,-109,-61,35,-88,35,-337,-131,35,-87,-72,35,-53,-90,-9,-10,-337,-91,-92,-94,-182,-93,-335,35,35,35,-73,35,-89,35,35,-30,35,-183,35,35,35,-156,-336,-159,-160,35,35,-216,-214,-215,-75,-76,-77,-78,-79,-80,-81,-82,35,-74,-69,35,35,35,35,-35,-36,35,35,35,35,-157,-127,35,-174,-175,-218,-217,-234,-81,-84,35,-230,-231,-233,-31,-34,35,35,-158,-219,-221,-83,-229,-232,-68,-32,-33,-220,-222,-84,-224,-225,-223,-226,-228,-227,]),'VOID':([0,2,4,5,6,7,8,9,10,11,12,14,15,18,20,21,22,23,24,25,26,27,28,30,31,32,33,34,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,63,66,67,68,69,70,71,72,73,74,75,76,77,80,89,90,94,95,96,97,98,99,100,101,102,104,110,114,115,116,117,119,120,121,122,123,124,125,126,127,135,136,178,189,190,194,200,201,202,203,204,205,206,207,208,209,210,211,213,218,219,220,221,222,223,224,225,226,227,228,229,235,248,262,290,294,295,300,307,308,309,318,326,329,330,331,332,333,334,336,337,338,344,345,347,349,350,351,352,357,365,366,367,369,370,372,434,435,444,453,454,455,458,459,460,464,466,474,477,478,493,502,503,518,546,547,548,549,572,573,578,579,],[37,37,-60,-62,-63,-64,-65,-66,-67,37,37,-70,-71,-52,-337,-337,-337,-125,-99,37,-337,-29,-104,-122,-123,-124,-126,-238,-110,-111,-112,-113,-114,-115,-116,-117,-118,-119,-120,-121,-131,-128,-129,-130,-102,-103,-105,-106,-107,-108,-109,-61,37,-88,37,37,-126,-131,37,-95,-96,-97,-98,-101,-131,-87,-72,37,-53,-90,-9,-10,-337,-91,-92,-100,-126,-94,-182,-93,-166,-167,-335,-146,-147,37,37,37,-73,37,-89,37,37,-30,37,37,-183,37,37,37,-149,-156,-336,37,-159,-160,-142,37,-144,37,37,-216,-214,-215,-75,-76,-77,-78,-79,-80,-81,-82,37,-74,-69,37,37,37,37,-35,-36,37,37,-168,37,-151,37,-153,-148,-157,-140,-141,-145,-143,-127,37,-174,-175,-218,-217,-234,-81,-84,37,-230,-231,-233,-31,-34,37,37,-169,-170,-150,-152,-158,-219,-221,-83,-229,-232,-68,-32,-33,-220,-222,-84,-224,-225,-223,-226,-228,-227,]),'_BOOL':([0,2,4,5,6,7,8,9,10,11,12,14,15,18,20,21,22,23,24,25,26,27,28,30,31,32,33,34,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,63,66,67,68,69,70,71,72,73,74,75,76,77,80,89,90,94,95,96,97,98,99,100,101,102,104,110,114,115,116,117,119,120,121,122,123,124,125,126,127,135,136,178,189,190,194,200,201,202,203,204,205,206,207,208,209,210,211,213,218,219,220,221,222,223,224,225,226,227,228,229,235,248,262,290,294,295,300,307,308,309,318,326,329,330,331,332,333,334,336,337,338,344,345,347,349,350,351,352,357,365,366,367,369,370,372,434,435,444,453,454,455,458,459,460,464,466,474,477,478,493,502,503,518,546,547,548,549,572,573,578,579,],[38,38,-60,-62,-63,-64,-65,-66,-67,38,38,-70,-71,-52,-337,-337,-337,-125,-99,38,-337,-29,-104,-122,-123,-124,-126,-238,-110,-111,-112,-113,-114,-115,-116,-117,-118,-119,-120,-121,-131,-128,-129,-130,-102,-103,-105,-106,-107,-108,-109,-61,38,-88,38,38,-126,-131,38,-95,-96,-97,-98,-101,-131,-87,-72,38,-53,-90,-9,-10,-337,-91,-92,-100,-126,-94,-182,-93,-166,-167,-335,-146,-147,38,38,38,-73,38,-89,38,38,-30,38,38,-183,38,38,38,-149,-156,-336,38,-159,-160,-142,38,-144,38,38,-216,-214,-215,-75,-76,-77,-78,-79,-80,-81,-82,38,-74,-69,38,38,38,38,-35,-36,38,38,-168,38,-151,38,-153,-148,-157,-140,-141,-145,-143,-127,38,-174,-175,-218,-217,-234,-81,-84,38,-230,-231,-233,-31,-34,38,38,-169,-170,-150,-152,-158,-219,-221,-83,-229,-232,-68,-32,-33,-220,-222,-84,-224,-225,-223,-226,-228,-227,]),'CHAR':([0,2,4,5,6,7,8,9,10,11,12,14,15,18,20,21,22,23,24,25,26,27,28,30,31,32,33,34,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,63,66,67,68,69,70,71,72,73,74,75,76,77,80,89,90,94,95,96,97,98,99,100,101,102,104,110,114,115,116,117,119,120,121,122,123,124,125,126,127,135,136,178,189,190,194,200,201,202,203,204,205,206,207,208,209,210,211,213,218,219,220,221,222,223,224,225,226,227,228,229,235,248,262,290,294,295,300,307,308,309,318,326,329,330,331,332,333,334,336,337,338,344,345,347,349,350,351,352,357,365,366,367,369,370,372,434,435,444,453,454,455,458,459,460,464,466,474,477,478,493,502,503,518,546,547,548,549,572,573,578,579,],[39,39,-60,-62,-63,-64,-65,-66,-67,39,39,-70,-71,-52,-337,-337,-337,-125,-99,39,-337,-29,-104,-122,-123,-124,-126,-238,-110,-111,-112,-113,-114,-115,-116,-117,-118,-119,-120,-121,-131,-128,-129,-130,-102,-103,-105,-106,-107,-108,-109,-61,39,-88,39,39,-126,-131,39,-95,-96,-97,-98,-101,-131,-87,-72,39,-53,-90,-9,-10,-337,-91,-92,-100,-126,-94,-182,-93,-166,-167,-335,-146,-147,39,39,39,-73,39,-89,39,39,-30,39,39,-183,39,39,39,-149,-156,-336,39,-159,-160,-142,39,-144,39,39,-216,-214,-215,-75,-76,-77,-78,-79,-80,-81,-82,39,-74,-69,39,39,39,39,-35,-36,39,39,-168,39,-151,39,-153,-148,-157,-140,-141,-145,-143,-127,39,-174,-175,-218,-217,-234,-81,-84,39,-230,-231,-233,-31,-34,39,39,-169,-170,-150,-152,-158,-219,-221,-83,-229,-232,-68,-32,-33,-220,-222,-84,-224,-225,-223,-226,-228,-227,]),'SHORT':([0,2,4,5,6,7,8,9,10,11,12,14,15,18,20,21,22,23,24,25,26,27,28,30,31,32,33,34,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,63,66,67,68,69,70,71,72,73,74,75,76,77,80,89,90,94,95,96,97,98,99,100,101,102,104,110,114,115,116,117,119,120,121,122,123,124,125,126,127,135,136,178,189,190,194,200,201,202,203,204,205,206,207,208,209,210,211,213,218,219,220,221,222,223,224,225,226,227,228,229,235,248,262,290,294,295,300,307,308,309,318,326,329,330,331,332,333,334,336,337,338,344,345,347,349,350,351,352,357,365,366,367,369,370,372,434,435,444,453,454,455,458,459,460,464,466,474,477,478,493,502,503,518,546,547,548,549,572,573,578,579,],[40,40,-60,-62,-63,-64,-65,-66,-67,40,40,-70,-71,-52,-337,-337,-337,-125,-99,40,-337,-29,-104,-122,-123,-124,-126,-238,-110,-111,-112,-113,-114,-115,-116,-117,-118,-119,-120,-121,-131,-128,-129,-130,-102,-103,-105,-106,-107,-108,-109,-61,40,-88,40,40,-126,-131,40,-95,-96,-97,-98,-101,-131,-87,-72,40,-53,-90,-9,-10,-337,-91,-92,-100,-126,-94,-182,-93,-166,-167,-335,-146,-147,40,40,40,-73,40,-89,40,40,-30,40,40,-183,40,40,40,-149,-156,-336,40,-159,-160,-142,40,-144,40,40,-216,-214,-215,-75,-76,-77,-78,-79,-80,-81,-82,40,-74,-69,40,40,40,40,-35,-36,40,40,-168,40,-151,40,-153,-148,-157,-140,-141,-145,-143,-127,40,-174,-175,-218,-217,-234,-81,-84,40,-230,-231,-233,-31,-34,40,40,-169,-170,-150,-152,-158,-219,-221,-83,-229,-232,-68,-32,-33,-220,-222,-84,-224,-225,-223,-226,-228,-227,]),'INT':([0,2,4,5,6,7,8,9,10,11,12,14,15,18,20,21,22,23,24,25,26,27,28,30,31,32,33,34,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,63,66,67,68,69,70,71,72,73,74,75,76,77,80,89,90,94,95,96,97,98,99,100,101,102,104,110,114,115,116,117,119,120,121,122,123,124,125,126,127,135,136,178,189,190,194,200,201,202,203,204,205,206,207,208,209,210,211,213,218,219,220,221,222,223,224,225,226,227,228,229,235,248,262,290,294,295,300,307,308,309,318,326,329,330,331,332,333,334,336,337,338,344,345,347,349,350,351,352,357,365,366,367,369,370,372,434,435,444,453,454,455,458,459,460,464,466,474,477,478,493,502,503,518,546,547,548,549,572,573,578,579,],[41,41,-60,-62,-63,-64,-65,-66,-67,41,41,-70,-71,-52,-337,-337,-337,-125,-99,41,-337,-29,-104,-122,-123,-124,-126,-238,-110,-111,-112,-113,-114,-115,-116,-117,-118,-119,-120,-121,-131,-128,-129,-130,-102,-103,-105,-106,-107,-108,-109,-61,41,-88,41,41,-126,-131,41,-95,-96,-97,-98,-101,-131,-87,-72,41,-53,-90,-9,-10,-337,-91,-92,-100,-126,-94,-182,-93,-166,-167,-335,-146,-147,41,41,41,-73,41,-89,41,41,-30,41,41,-183,41,41,41,-149,-156,-336,41,-159,-160,-142,41,-144,41,41,-216,-214,-215,-75,-76,-77,-78,-79,-80,-81,-82,41,-74,-69,41,41,41,41,-35,-36,41,41,-168,41,-151,41,-153,-148,-157,-140,-141,-145,-143,-127,41,-174,-175,-218,-217,-234,-81,-84,41,-230,-231,-233,-31,-34,41,41,-169,-170,-150,-152,-158,-219,-221,-83,-229,-232,-68,-32,-33,-220,-222,-84,-224,-225,-223,-226,-228,-227,]),'LONG':([0,2,4,5,6,7,8,9,10,11,12,14,15,18,20,21,22,23,24,25,26,27,28,30,31,32,33,34,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,63,66,67,68,69,70,71,72,73,74,75,76,77,80,89,90,94,95,96,97,98,99,100,101,102,104,110,114,115,116,117,119,120,121,122,123,124,125,126,127,135,136,178,189,190,194,200,201,202,203,204,205,206,207,208,209,210,211,213,218,219,220,221,222,223,224,225,226,227,228,229,235,248,262,290,294,295,300,307,308,309,318,326,329,330,331,332,333,334,336,337,338,344,345,347,349,350,351,352,357,365,366,367,369,370,372,434,435,444,453,454,455,458,459,460,464,466,474,477,478,493,502,503,518,546,547,548,549,572,573,578,579,],[42,42,-60,-62,-63,-64,-65,-66,-67,42,42,-70,-71,-52,-337,-337,-337,-125,-99,42,-337,-29,-104,-122,-123,-124,-126,-238,-110,-111,-112,-113,-114,-115,-116,-117,-118,-119,-120,-121,-131,-128,-129,-130,-102,-103,-105,-106,-107,-108,-109,-61,42,-88,42,42,-126,-131,42,-95,-96,-97,-98,-101,-131,-87,-72,42,-53,-90,-9,-10,-337,-91,-92,-100,-126,-94,-182,-93,-166,-167,-335,-146,-147,42,42,42,-73,42,-89,42,42,-30,42,42,-183,42,42,42,-149,-156,-336,42,-159,-160,-142,42,-144,42,42,-216,-214,-215,-75,-76,-77,-78,-79,-80,-81,-82,42,-74,-69,42,42,42,42,-35,-36,42,42,-168,42,-151,42,-153,-148,-157,-140,-141,-145,-143,-127,42,-174,-175,-218,-217,-234,-81,-84,42,-230,-231,-233,-31,-34,42,42,-169,-170,-150,-152,-158,-219,-221,-83,-229,-232,-68,-32,-33,-220,-222,-84,-224,-225,-223,-226,-228,-227,]),'FLOAT':([0,2,4,5,6,7,8,9,10,11,12,14,15,18,20,21,22,23,24,25,26,27,28,30,31,32,33,34,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,63,66,67,68,69,70,71,72,73,74,75,76,77,80,89,90,94,95,96,97,98,99,100,101,102,104,110,114,115,116,117,119,120,121,122,123,124,125,126,127,135,136,178,189,190,194,200,201,202,203,204,205,206,207,208,209,210,211,213,218,219,220,221,222,223,224,225,226,227,228,229,235,248,262,290,294,295,300,307,308,309,318,326,329,330,331,332,333,334,336,337,338,344,345,347,349,350,351,352,357,365,366,367,369,370,372,434,435,444,453,454,455,458,459,460,464,466,474,477,478,493,502,503,518,546,547,548,549,572,573,578,579,],[43,43,-60,-62,-63,-64,-65,-66,-67,43,43,-70,-71,-52,-337,-337,-337,-125,-99,43,-337,-29,-104,-122,-123,-124,-126,-238,-110,-111,-112,-113,-114,-115,-116,-117,-118,-119,-120,-121,-131,-128,-129,-130,-102,-103,-105,-106,-107,-108,-109,-61,43,-88,43,43,-126,-131,43,-95,-96,-97,-98,-101,-131,-87,-72,43,-53,-90,-9,-10,-337,-91,-92,-100,-126,-94,-182,-93,-166,-167,-335,-146,-147,43,43,43,-73,43,-89,43,43,-30,43,43,-183,43,43,43,-149,-156,-336,43,-159,-160,-142,43,-144,43,43,-216,-214,-215,-75,-76,-77,-78,-79,-80,-81,-82,43,-74,-69,43,43,43,43,-35,-36,43,43,-168,43,-151,43,-153,-148,-157,-140,-141,-145,-143,-127,43,-174,-175,-218,-217,-234,-81,-84,43,-230,-231,-233,-31,-34,43,43,-169,-170,-150,-152,-158,-219,-221,-83,-229,-232,-68,-32,-33,-220,-222,-84,-224,-225,-223,-226,-228,-227,]),'DOUBLE':([0,2,4,5,6,7,8,9,10,11,12,14,15,18,20,21,22,23,24,25,26,27,28,30,31,32,33,34,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,63,66,67,68,69,70,71,72,73,74,75,76,77,80,89,90,94,95,96,97,98,99,100,101,102,104,110,114,115,116,117,119,120,121,122,123,124,125,126,127,135,136,178,189,190,194,200,201,202,203,204,205,206,207,208,209,210,211,213,218,219,220,221,222,223,224,225,226,227,228,229,235,248,262,290,294,295,300,307,308,309,318,326,329,330,331,332,333,334,336,337,338,344,345,347,349,350,351,352,357,365,366,367,369,370,372,434,435,444,453,454,455,458,459,460,464,466,474,477,478,493,502,503,518,546,547,548,549,572,573,578,579,],[44,44,-60,-62,-63,-64,-65,-66,-67,44,44,-70,-71,-52,-337,-337,-337,-125,-99,44,-337,-29,-104,-122,-123,-124,-126,-238,-110,-111,-112,-113,-114,-115,-116,-117,-118,-119,-120,-121,-131,-128,-129,-130,-102,-103,-105,-106,-107,-108,-109,-61,44,-88,44,44,-126,-131,44,-95,-96,-97,-98,-101,-131,-87,-72,44,-53,-90,-9,-10,-337,-91,-92,-100,-126,-94,-182,-93,-166,-167,-335,-146,-147,44,44,44,-73,44,-89,44,44,-30,44,44,-183,44,44,44,-149,-156,-336,44,-159,-160,-142,44,-144,44,44,-216,-214,-215,-75,-76,-77,-78,-79,-80,-81,-82,44,-74,-69,44,44,44,44,-35,-36,44,44,-168,44,-151,44,-153,-148,-157,-140,-141,-145,-143,-127,44,-174,-175,-218,-217,-234,-81,-84,44,-230,-231,-233,-31,-34,44,44,-169,-170,-150,-152,-158,-219,-221,-83,-229,-232,-68,-32,-33,-220,-222,-84,-224,-225,-223,-226,-228,-227,]),'_COMPLEX':([0,2,4,5,6,7,8,9,10,11,12,14,15,18,20,21,22,23,24,25,26,27,28,30,31,32,33,34,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,63,66,67,68,69,70,71,72,73,74,75,76,77,80,89,90,94,95,96,97,98,99,100,101,102,104,110,114,115,116,117,119,120,121,122,123,124,125,126,127,135,136,178,189,190,194,200,201,202,203,204,205,206,207,208,209,210,211,213,218,219,220,221,222,223,224,225,226,227,228,229,235,248,262,290,294,295,300,307,308,309,318,326,329,330,331,332,333,334,336,337,338,344,345,347,349,350,351,352,357,365,366,367,369,370,372,434,435,444,453,454,455,458,459,460,464,466,474,477,478,493,502,503,518,546,547,548,549,572,573,578,579,],[45,45,-60,-62,-63,-64,-65,-66,-67,45,45,-70,-71,-52,-337,-337,-337,-125,-99,45,-337,-29,-104,-122,-123,-124,-126,-238,-110,-111,-112,-113,-114,-115,-116,-117,-118,-119,-120,-121,-131,-128,-129,-130,-102,-103,-105,-106,-107,-108,-109,-61,45,-88,45,45,-126,-131,45,-95,-96,-97,-98,-101,-131,-87,-72,45,-53,-90,-9,-10,-337,-91,-92,-100,-126,-94,-182,-93,-166,-167,-335,-146,-147,45,45,45,-73,45,-89,45,45,-30,45,45,-183,45,45,45,-149,-156,-336,45,-159,-160,-142,45,-144,45,45,-216,-214,-215,-75,-76,-77,-78,-79,-80,-81,-82,45,-74,-69,45,45,45,45,-35,-36,45,45,-168,45,-151,45,-153,-148,-157,-140,-141,-145,-143,-127,45,-174,-175,-218,-217,-234,-81,-84,45,-230,-231,-233,-31,-34,45,45,-169,-170,-150,-152,-158,-219,-221,-83,-229,-232,-68,-32,-33,-220,-222,-84,-224,-225,-223,-226,-228,-227,]),'SIGNED':([0,2,4,5,6,7,8,9,10,11,12,14,15,18,20,21,22,23,24,25,26,27,28,30,31,32,33,34,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,63,66,67,68,69,70,71,72,73,74,75,76,77,80,89,90,94,95,96,97,98,99,100,101,102,104,110,114,115,116,117,119,120,121,122,123,124,125,126,127,135,136,178,189,190,194,200,201,202,203,204,205,206,207,208,209,210,211,213,218,219,220,221,222,223,224,225,226,227,228,229,235,248,262,290,294,295,300,307,308,309,318,326,329,330,331,332,333,334,336,337,338,344,345,347,349,350,351,352,357,365,366,367,369,370,372,434,435,444,453,454,455,458,459,460,464,466,474,477,478,493,502,503,518,546,547,548,549,572,573,578,579,],[46,46,-60,-62,-63,-64,-65,-66,-67,46,46,-70,-71,-52,-337,-337,-337,-125,-99,46,-337,-29,-104,-122,-123,-124,-126,-238,-110,-111,-112,-113,-114,-115,-116,-117,-118,-119,-120,-121,-131,-128,-129,-130,-102,-103,-105,-106,-107,-108,-109,-61,46,-88,46,46,-126,-131,46,-95,-96,-97,-98,-101,-131,-87,-72,46,-53,-90,-9,-10,-337,-91,-92,-100,-126,-94,-182,-93,-166,-167,-335,-146,-147,46,46,46,-73,46,-89,46,46,-30,46,46,-183,46,46,46,-149,-156,-336,46,-159,-160,-142,46,-144,46,46,-216,-214,-215,-75,-76,-77,-78,-79,-80,-81,-82,46,-74,-69,46,46,46,46,-35,-36,46,46,-168,46,-151,46,-153,-148,-157,-140,-141,-145,-143,-127,46,-174,-175,-218,-217,-234,-81,-84,46,-230,-231,-233,-31,-34,46,46,-169,-170,-150,-152,-158,-219,-221,-83,-229,-232,-68,-32,-33,-220,-222,-84,-224,-225,-223,-226,-228,-227,]),'UNSIGNED':([0,2,4,5,6,7,8,9,10,11,12,14,15,18,20,21,22,23,24,25,26,27,28,30,31,32,33,34,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,63,66,67,68,69,70,71,72,73,74,75,76,77,80,89,90,94,95,96,97,98,99,100,101,102,104,110,114,115,116,117,119,120,121,122,123,124,125,126,127,135,136,178,189,190,194,200,201,202,203,204,205,206,207,208,209,210,211,213,218,219,220,221,222,223,224,225,226,227,228,229,235,248,262,290,294,295,300,307,308,309,318,326,329,330,331,332,333,334,336,337,338,344,345,347,349,350,351,352,357,365,366,367,369,370,372,434,435,444,453,454,455,458,459,460,464,466,474,477,478,493,502,503,518,546,547,548,549,572,573,578,579,],[47,47,-60,-62,-63,-64,-65,-66,-67,47,47,-70,-71,-52,-337,-337,-337,-125,-99,47,-337,-29,-104,-122,-123,-124,-126,-238,-110,-111,-112,-113,-114,-115,-116,-117,-118,-119,-120,-121,-131,-128,-129,-130,-102,-103,-105,-106,-107,-108,-109,-61,47,-88,47,47,-126,-131,47,-95,-96,-97,-98,-101,-131,-87,-72,47,-53,-90,-9,-10,-337,-91,-92,-100,-126,-94,-182,-93,-166,-167,-335,-146,-147,47,47,47,-73,47,-89,47,47,-30,47,47,-183,47,47,47,-149,-156,-336,47,-159,-160,-142,47,-144,47,47,-216,-214,-215,-75,-76,-77,-78,-79,-80,-81,-82,47,-74,-69,47,47,47,47,-35,-36,47,47,-168,47,-151,47,-153,-148,-157,-140,-141,-145,-143,-127,47,-174,-175,-218,-217,-234,-81,-84,47,-230,-231,-233,-31,-34,47,47,-169,-170,-150,-152,-158,-219,-221,-83,-229,-232,-68,-32,-33,-220,-222,-84,-224,-225,-223,-226,-228,-227,]),'__INT128':([0,2,4,5,6,7,8,9,10,11,12,14,15,18,20,21,22,23,24,25,26,27,28,30,31,32,33,34,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,63,66,67,68,69,70,71,72,73,74,75,76,77,80,89,90,94,95,96,97,98,99,100,101,102,104,110,114,115,116,117,119,120,121,122,123,124,125,126,127,135,136,178,189,190,194,200,201,202,203,204,205,206,207,208,209,210,211,213,218,219,220,221,222,223,224,225,226,227,228,229,235,248,262,290,294,295,300,307,308,309,318,326,329,330,331,332,333,334,336,337,338,344,345,347,349,350,351,352,357,365,366,367,369,370,372,434,435,444,453,454,455,458,459,460,464,466,474,477,478,493,502,503,518,546,547,548,549,572,573,578,579,],[48,48,-60,-62,-63,-64,-65,-66,-67,48,48,-70,-71,-52,-337,-337,-337,-125,-99,48,-337,-29,-104,-122,-123,-124,-126,-238,-110,-111,-112,-113,-114,-115,-116,-117,-118,-119,-120,-121,-131,-128,-129,-130,-102,-103,-105,-106,-107,-108,-109,-61,48,-88,48,48,-126,-131,48,-95,-96,-97,-98,-101,-131,-87,-72,48,-53,-90,-9,-10,-337,-91,-92,-100,-126,-94,-182,-93,-166,-167,-335,-146,-147,48,48,48,-73,48,-89,48,48,-30,48,48,-183,48,48,48,-149,-156,-336,48,-159,-160,-142,48,-144,48,48,-216,-214,-215,-75,-76,-77,-78,-79,-80,-81,-82,48,-74,-69,48,48,48,48,-35,-36,48,48,-168,48,-151,48,-153,-148,-157,-140,-141,-145,-143,-127,48,-174,-175,-218,-217,-234,-81,-84,48,-230,-231,-233,-31,-34,48,48,-169,-170,-150,-152,-158,-219,-221,-83,-229,-232,-68,-32,-33,-220,-222,-84,-224,-225,-223,-226,-228,-227,]),'_ATOMIC':([0,2,4,5,6,7,8,9,10,11,12,14,15,18,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,63,66,67,68,69,70,71,72,73,74,75,76,77,80,89,90,93,94,95,96,97,98,99,100,101,102,104,110,113,114,115,116,117,119,120,121,122,123,124,125,126,127,134,135,136,178,180,181,189,190,194,200,201,202,203,204,205,206,207,208,209,210,211,213,218,219,220,221,222,223,224,225,226,227,228,229,235,248,255,256,262,290,294,295,300,307,308,309,318,319,326,329,330,331,332,333,334,336,337,338,344,345,347,349,350,351,352,357,365,366,367,369,370,372,434,435,443,444,453,454,455,458,459,460,464,466,474,477,478,493,502,503,505,506,518,546,547,548,549,572,573,578,579,],[49,49,-60,-62,-63,-64,-65,-66,-67,71,80,-70,-71,-52,71,71,71,-125,-99,107,71,-29,-104,80,-122,-123,-124,71,-238,-110,-111,-112,-113,-114,-115,-116,-117,-118,-119,-120,-121,-131,-128,-129,-130,-102,-103,-105,-106,-107,-108,-109,-61,71,-88,80,107,71,-131,71,-95,-96,-97,-98,-101,-131,-87,-72,80,49,-53,-90,-9,-10,71,-91,-92,-100,-126,-94,80,-182,-93,-166,-167,-335,-146,-147,49,49,49,-73,71,-89,80,49,49,-30,80,80,80,107,-183,49,49,49,-149,-156,-336,80,-159,-160,-142,71,-144,80,71,-216,-214,-215,-75,-76,-77,-78,-79,-80,-81,-82,49,-74,80,80,-69,49,49,49,49,-35,-36,49,49,80,-168,49,-151,49,-153,-148,-157,-140,-141,-145,-143,-127,49,-174,-175,-218,-217,-234,-81,-84,71,-230,-231,-233,-31,-34,80,49,49,-169,-170,-150,-152,-158,-219,-221,-83,-229,-232,-68,-32,-33,80,80,-220,-222,-84,-224,-225,-223,-226,-228,-227,]),'CONST':([0,2,4,5,6,7,8,9,10,11,12,14,15,18,20,21,22,23,24,26,27,28,29,30,31,32,33,34,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,63,66,67,68,70,71,72,73,74,75,76,77,80,89,90,93,94,95,99,102,104,113,114,116,117,119,120,121,122,123,124,125,126,127,134,135,136,178,180,181,189,194,200,201,202,203,204,205,206,207,208,209,210,211,213,218,219,220,221,222,223,224,225,226,227,228,229,235,248,255,256,262,290,294,295,300,307,308,309,318,319,326,329,330,331,332,333,334,336,337,338,344,345,347,349,350,351,352,357,365,366,367,369,370,372,434,435,443,444,453,454,455,458,459,460,464,466,474,477,478,493,502,503,505,506,518,546,547,548,549,572,573,578,579,],[50,50,-60,-62,-63,-64,-65,-66,-67,50,50,-70,-71,-52,50,50,50,-125,-99,50,-29,-104,50,-122,-123,-124,50,-238,-110,-111,-112,-113,-114,-115,-116,-117,-118,-119,-120,-121,-131,-128,-129,-130,-102,-103,-105,-106,-107,-108,-109,-61,50,-88,50,50,-131,50,-95,-96,-97,-98,-101,-131,-87,-72,50,50,-53,50,-100,-126,50,-182,-166,-167,-335,-146,-147,50,50,50,-73,50,-89,50,50,50,-30,50,50,50,-183,50,50,50,-149,-156,-336,50,-159,-160,-142,50,-144,50,50,-216,-214,-215,-75,-76,-77,-78,-79,-80,-81,-82,50,-74,50,50,-69,50,50,50,50,-35,-36,50,50,50,-168,50,-151,50,-153,-148,-157,-140,-141,-145,-143,-127,50,-174,-175,-218,-217,-234,-81,-84,50,-230,-231,-233,-31,-34,50,50,50,-169,-170,-150,-152,-158,-219,-221,-83,-229,-232,-68,-32,-33,50,50,-220,-222,-84,-224,-225,-223,-226,-228,-227,]),'RESTRICT':([0,2,4,5,6,7,8,9,10,11,12,14,15,18,20,21,22,23,24,26,27,28,29,30,31,32,33,34,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,63,66,67,68,70,71,72,73,74,75,76,77,80,89,90,93,94,95,99,102,104,113,114,116,117,119,120,121,122,123,124,125,126,127,134,135,136,178,180,181,189,194,200,201,202,203,204,205,206,207,208,209,210,211,213,218,219,220,221,222,223,224,225,226,227,228,229,235,248,255,256,262,290,294,295,300,307,308,309,318,319,326,329,330,331,332,333,334,336,337,338,344,345,347,349,350,351,352,357,365,366,367,369,370,372,434,435,443,444,453,454,455,458,459,460,464,466,474,477,478,493,502,503,505,506,518,546,547,548,549,572,573,578,579,],[51,51,-60,-62,-63,-64,-65,-66,-67,51,51,-70,-71,-52,51,51,51,-125,-99,51,-29,-104,51,-122,-123,-124,51,-238,-110,-111,-112,-113,-114,-115,-116,-117,-118,-119,-120,-121,-131,-128,-129,-130,-102,-103,-105,-106,-107,-108,-109,-61,51,-88,51,51,-131,51,-95,-96,-97,-98,-101,-131,-87,-72,51,51,-53,51,-100,-126,51,-182,-166,-167,-335,-146,-147,51,51,51,-73,51,-89,51,51,51,-30,51,51,51,-183,51,51,51,-149,-156,-336,51,-159,-160,-142,51,-144,51,51,-216,-214,-215,-75,-76,-77,-78,-79,-80,-81,-82,51,-74,51,51,-69,51,51,51,51,-35,-36,51,51,51,-168,51,-151,51,-153,-148,-157,-140,-141,-145,-143,-127,51,-174,-175,-218,-217,-234,-81,-84,51,-230,-231,-233,-31,-34,51,51,51,-169,-170,-150,-152,-158,-219,-221,-83,-229,-232,-68,-32,-33,51,51,-220,-222,-84,-224,-225,-223,-226,-228,-227,]),'VOLATILE':([0,2,4,5,6,7,8,9,10,11,12,14,15,18,20,21,22,23,24,26,27,28,29,30,31,32,33,34,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,63,66,67,68,70,71,72,73,74,75,76,77,80,89,90,93,94,95,99,102,104,113,114,116,117,119,120,121,122,123,124,125,126,127,134,135,136,178,180,181,189,194,200,201,202,203,204,205,206,207,208,209,210,211,213,218,219,220,221,222,223,224,225,226,227,228,229,235,248,255,256,262,290,294,295,300,307,308,309,318,319,326,329,330,331,332,333,334,336,337,338,344,345,347,349,350,351,352,357,365,366,367,369,370,372,434,435,443,444,453,454,455,458,459,460,464,466,474,477,478,493,502,503,505,506,518,546,547,548,549,572,573,578,579,],[52,52,-60,-62,-63,-64,-65,-66,-67,52,52,-70,-71,-52,52,52,52,-125,-99,52,-29,-104,52,-122,-123,-124,52,-238,-110,-111,-112,-113,-114,-115,-116,-117,-118,-119,-120,-121,-131,-128,-129,-130,-102,-103,-105,-106,-107,-108,-109,-61,52,-88,52,52,-131,52,-95,-96,-97,-98,-101,-131,-87,-72,52,52,-53,52,-100,-126,52,-182,-166,-167,-335,-146,-147,52,52,52,-73,52,-89,52,52,52,-30,52,52,52,-183,52,52,52,-149,-156,-336,52,-159,-160,-142,52,-144,52,52,-216,-214,-215,-75,-76,-77,-78,-79,-80,-81,-82,52,-74,52,52,-69,52,52,52,52,-35,-36,52,52,52,-168,52,-151,52,-153,-148,-157,-140,-141,-145,-143,-127,52,-174,-175,-218,-217,-234,-81,-84,52,-230,-231,-233,-31,-34,52,52,52,-169,-170,-150,-152,-158,-219,-221,-83,-229,-232,-68,-32,-33,52,52,-220,-222,-84,-224,-225,-223,-226,-228,-227,]),'AUTO':([0,2,4,5,6,7,8,9,10,11,12,14,15,18,20,21,22,23,24,26,27,28,30,31,32,33,34,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,63,66,67,68,70,71,72,73,74,75,76,77,80,89,90,94,95,99,102,104,116,117,119,120,121,125,126,127,135,178,189,203,205,218,219,220,221,222,223,224,225,226,227,228,229,248,262,307,308,309,318,326,330,332,333,345,347,349,350,351,352,357,365,366,367,369,370,372,434,435,444,453,454,455,458,459,464,466,474,477,478,493,502,503,518,546,547,548,549,572,573,578,579,],[53,53,-60,-62,-63,-64,-65,-66,-67,53,53,-70,-71,-52,53,53,53,-125,-99,53,-29,-104,-122,-123,-124,53,-238,-110,-111,-112,-113,-114,-115,-116,-117,-118,-119,-120,-121,-131,-128,-129,-130,-102,-103,-105,-106,-107,-108,-109,-61,53,-88,53,53,-131,53,-95,-96,-97,-98,-101,-131,-87,-72,53,-53,53,-100,-126,-166,-167,-335,-146,-147,-73,53,-89,53,-30,53,-149,-336,53,-216,-214,-215,-75,-76,-77,-78,-79,-80,-81,-82,-74,-69,-35,-36,53,53,-168,-151,-153,-148,-127,53,-174,-175,-218,-217,-234,-81,-84,53,-230,-231,-233,-31,-34,53,53,-169,-170,-150,-152,-219,-221,-83,-229,-232,-68,-32,-33,-220,-222,-84,-224,-225,-223,-226,-228,-227,]),'REGISTER':([0,2,4,5,6,7,8,9,10,11,12,14,15,18,20,21,22,23,24,26,27,28,30,31,32,33,34,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,63,66,67,68,70,71,72,73,74,75,76,77,80,89,90,94,95,99,102,104,116,117,119,120,121,125,126,127,135,178,189,203,205,218,219,220,221,222,223,224,225,226,227,228,229,248,262,307,308,309,318,326,330,332,333,345,347,349,350,351,352,357,365,366,367,369,370,372,434,435,444,453,454,455,458,459,464,466,474,477,478,493,502,503,518,546,547,548,549,572,573,578,579,],[54,54,-60,-62,-63,-64,-65,-66,-67,54,54,-70,-71,-52,54,54,54,-125,-99,54,-29,-104,-122,-123,-124,54,-238,-110,-111,-112,-113,-114,-115,-116,-117,-118,-119,-120,-121,-131,-128,-129,-130,-102,-103,-105,-106,-107,-108,-109,-61,54,-88,54,54,-131,54,-95,-96,-97,-98,-101,-131,-87,-72,54,-53,54,-100,-126,-166,-167,-335,-146,-147,-73,54,-89,54,-30,54,-149,-336,54,-216,-214,-215,-75,-76,-77,-78,-79,-80,-81,-82,-74,-69,-35,-36,54,54,-168,-151,-153,-148,-127,54,-174,-175,-218,-217,-234,-81,-84,54,-230,-231,-233,-31,-34,54,54,-169,-170,-150,-152,-219,-221,-83,-229,-232,-68,-32,-33,-220,-222,-84,-224,-225,-223,-226,-228,-227,]),'STATIC':([0,2,4,5,6,7,8,9,10,11,12,14,15,18,20,21,22,23,24,26,27,28,30,31,32,33,34,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,63,66,67,68,70,71,72,73,74,75,76,77,80,89,90,93,94,95,99,102,104,114,116,117,119,120,121,125,126,127,134,135,178,181,189,194,203,205,218,219,220,221,222,223,224,225,226,227,228,229,248,256,262,307,308,309,318,326,330,332,333,345,347,349,350,351,352,357,365,366,367,369,370,372,434,435,443,444,453,454,455,458,459,464,466,474,477,478,493,502,503,506,518,546,547,548,549,572,573,578,579,],[28,28,-60,-62,-63,-64,-65,-66,-67,28,28,-70,-71,-52,28,28,28,-125,-99,28,-29,-104,-122,-123,-124,28,-238,-110,-111,-112,-113,-114,-115,-116,-117,-118,-119,-120,-121,-131,-128,-129,-130,-102,-103,-105,-106,-107,-108,-109,-61,28,-88,28,28,-131,28,-95,-96,-97,-98,-101,-131,-87,-72,180,28,-53,28,-100,-126,-182,-166,-167,-335,-146,-147,-73,28,-89,255,28,-30,306,28,-183,-149,-336,28,-216,-214,-215,-75,-76,-77,-78,-79,-80,-81,-82,-74,397,-69,-35,-36,28,28,-168,-151,-153,-148,-127,28,-174,-175,-218,-217,-234,-81,-84,28,-230,-231,-233,-31,-34,505,28,28,-169,-170,-150,-152,-219,-221,-83,-229,-232,-68,-32,-33,539,-220,-222,-84,-224,-225,-223,-226,-228,-227,]),'EXTERN':([0,2,4,5,6,7,8,9,10,11,12,14,15,18,20,21,22,23,24,26,27,28,30,31,32,33,34,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,63,66,67,68,70,71,72,73,74,75,76,77,80,89,90,94,95,99,102,104,116,117,119,120,121,125,126,127,135,178,189,203,205,218,219,220,221,222,223,224,225,226,227,228,229,248,262,307,308,309,318,326,330,332,333,345,347,349,350,351,352,357,365,366,367,369,370,372,434,435,444,453,454,455,458,459,464,466,474,477,478,493,502,503,518,546,547,548,549,572,573,578,579,],[55,55,-60,-62,-63,-64,-65,-66,-67,55,55,-70,-71,-52,55,55,55,-125,-99,55,-29,-104,-122,-123,-124,55,-238,-110,-111,-112,-113,-114,-115,-116,-117,-118,-119,-120,-121,-131,-128,-129,-130,-102,-103,-105,-106,-107,-108,-109,-61,55,-88,55,55,-131,55,-95,-96,-97,-98,-101,-131,-87,-72,55,-53,55,-100,-126,-166,-167,-335,-146,-147,-73,55,-89,55,-30,55,-149,-336,55,-216,-214,-215,-75,-76,-77,-78,-79,-80,-81,-82,-74,-69,-35,-36,55,55,-168,-151,-153,-148,-127,55,-174,-175,-218,-217,-234,-81,-84,55,-230,-231,-233,-31,-34,55,55,-169,-170,-150,-152,-219,-221,-83,-229,-232,-68,-32,-33,-220,-222,-84,-224,-225,-223,-226,-228,-227,]),'TYPEDEF':([0,2,4,5,6,7,8,9,10,11,12,14,15,18,20,21,22,23,24,26,27,28,30,31,32,33,34,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,63,66,67,68,70,71,72,73,74,75,76,77,80,89,90,94,95,99,102,104,116,117,119,120,121,125,126,127,135,178,189,203,205,218,219,220,221,222,223,224,225,226,227,228,229,248,262,307,308,309,318,326,330,332,333,345,347,349,350,351,352,357,365,366,367,369,370,372,434,435,444,453,454,455,458,459,464,466,474,477,478,493,502,503,518,546,547,548,549,572,573,578,579,],[56,56,-60,-62,-63,-64,-65,-66,-67,56,56,-70,-71,-52,56,56,56,-125,-99,56,-29,-104,-122,-123,-124,56,-238,-110,-111,-112,-113,-114,-115,-116,-117,-118,-119,-120,-121,-131,-128,-129,-130,-102,-103,-105,-106,-107,-108,-109,-61,56,-88,56,56,-131,56,-95,-96,-97,-98,-101,-131,-87,-72,56,-53,56,-100,-126,-166,-167,-335,-146,-147,-73,56,-89,56,-30,56,-149,-336,56,-216,-214,-215,-75,-76,-77,-78,-79,-80,-81,-82,-74,-69,-35,-36,56,56,-168,-151,-153,-148,-127,56,-174,-175,-218,-217,-234,-81,-84,56,-230,-231,-233,-31,-34,56,56,-169,-170,-150,-152,-219,-221,-83,-229,-232,-68,-32,-33,-220,-222,-84,-224,-225,-223,-226,-228,-227,]),'_THREAD_LOCAL':([0,2,4,5,6,7,8,9,10,11,12,14,15,18,20,21,22,23,24,26,27,28,30,31,32,33,34,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,63,66,67,68,70,71,72,73,74,75,76,77,80,89,90,94,95,99,102,104,116,117,119,120,121,125,126,127,135,178,189,203,205,218,219,220,221,222,223,224,225,226,227,228,229,248,262,307,308,309,318,326,330,332,333,345,347,349,350,351,352,357,365,366,367,369,370,372,434,435,444,453,454,455,458,459,464,466,474,477,478,493,502,503,518,546,547,548,549,572,573,578,579,],[57,57,-60,-62,-63,-64,-65,-66,-67,57,57,-70,-71,-52,57,57,57,-125,-99,57,-29,-104,-122,-123,-124,57,-238,-110,-111,-112,-113,-114,-115,-116,-117,-118,-119,-120,-121,-131,-128,-129,-130,-102,-103,-105,-106,-107,-108,-109,-61,57,-88,57,57,-131,57,-95,-96,-97,-98,-101,-131,-87,-72,57,-53,57,-100,-126,-166,-167,-335,-146,-147,-73,57,-89,57,-30,57,-149,-336,57,-216,-214,-215,-75,-76,-77,-78,-79,-80,-81,-82,-74,-69,-35,-36,57,57,-168,-151,-153,-148,-127,57,-174,-175,-218,-217,-234,-81,-84,57,-230,-231,-233,-31,-34,57,57,-169,-170,-150,-152,-219,-221,-83,-229,-232,-68,-32,-33,-220,-222,-84,-224,-225,-223,-226,-228,-227,]),'INLINE':([0,2,4,5,6,7,8,9,10,11,12,14,15,18,20,21,22,23,24,26,27,28,30,31,32,33,34,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,63,66,67,68,70,71,72,73,74,75,76,77,80,89,90,94,95,99,102,104,116,117,119,120,121,125,126,127,135,178,189,203,205,218,219,220,221,222,223,224,225,226,227,228,229,248,262,307,308,309,318,326,330,332,333,345,347,349,350,351,352,357,365,366,367,369,370,372,434,435,444,453,454,455,458,459,464,466,474,477,478,493,502,503,518,546,547,548,549,572,573,578,579,],[58,58,-60,-62,-63,-64,-65,-66,-67,58,58,-70,-71,-52,58,58,58,-125,-99,58,-29,-104,-122,-123,-124,58,-238,-110,-111,-112,-113,-114,-115,-116,-117,-118,-119,-120,-121,-131,-128,-129,-130,-102,-103,-105,-106,-107,-108,-109,-61,58,-88,58,58,-131,58,-95,-96,-97,-98,-101,-131,-87,-72,58,-53,58,-100,-126,-166,-167,-335,-146,-147,-73,58,-89,58,-30,58,-149,-336,58,-216,-214,-215,-75,-76,-77,-78,-79,-80,-81,-82,-74,-69,-35,-36,58,58,-168,-151,-153,-148,-127,58,-174,-175,-218,-217,-234,-81,-84,58,-230,-231,-233,-31,-34,58,58,-169,-170,-150,-152,-219,-221,-83,-229,-232,-68,-32,-33,-220,-222,-84,-224,-225,-223,-226,-228,-227,]),'_NORETURN':([0,2,4,5,6,7,8,9,10,11,12,14,15,18,20,21,22,23,24,26,27,28,30,31,32,33,34,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,63,66,67,68,70,71,72,73,74,75,76,77,80,89,90,94,95,99,102,104,116,117,119,120,121,125,126,127,135,178,189,203,205,218,219,220,221,222,223,224,225,226,227,228,229,248,262,307,308,309,318,326,330,332,333,345,347,349,350,351,352,357,365,366,367,369,370,372,434,435,444,453,454,455,458,459,464,466,474,477,478,493,502,503,518,546,547,548,549,572,573,578,579,],[59,59,-60,-62,-63,-64,-65,-66,-67,59,59,-70,-71,-52,59,59,59,-125,-99,59,-29,-104,-122,-123,-124,59,-238,-110,-111,-112,-113,-114,-115,-116,-117,-118,-119,-120,-121,-131,-128,-129,-130,-102,-103,-105,-106,-107,-108,-109,-61,59,-88,59,59,-131,59,-95,-96,-97,-98,-101,-131,-87,-72,59,-53,59,-100,-126,-166,-167,-335,-146,-147,-73,59,-89,59,-30,59,-149,-336,59,-216,-214,-215,-75,-76,-77,-78,-79,-80,-81,-82,-74,-69,-35,-36,59,59,-168,-151,-153,-148,-127,59,-174,-175,-218,-217,-234,-81,-84,59,-230,-231,-233,-31,-34,59,59,-169,-170,-150,-152,-219,-221,-83,-229,-232,-68,-32,-33,-220,-222,-84,-224,-225,-223,-226,-228,-227,]),'_ALIGNAS':([0,2,4,5,6,7,8,9,10,11,12,14,15,18,20,21,22,23,24,26,27,28,30,31,32,33,34,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,63,66,67,68,70,71,72,73,74,75,76,77,80,89,90,94,95,99,102,104,116,117,119,120,121,122,123,124,125,126,127,135,136,178,189,200,201,202,203,204,205,206,207,208,209,211,213,218,219,220,221,222,223,224,225,226,227,228,229,235,248,262,290,294,295,300,307,308,309,318,326,329,330,331,332,333,334,336,337,338,344,345,347,349,350,351,352,357,365,366,367,369,370,372,434,435,444,453,454,455,458,459,460,464,466,474,477,478,493,502,503,518,546,547,548,549,572,573,578,579,],[60,60,-60,-62,-63,-64,-65,-66,-67,60,60,-70,-71,-52,60,60,60,-125,-99,60,-29,-104,-122,-123,-124,60,-238,-110,-111,-112,-113,-114,-115,-116,-117,-118,-119,-120,-121,-131,-128,-129,-130,-102,-103,-105,-106,-107,-108,-109,-61,60,-88,60,60,-131,60,-95,-96,-97,-98,-101,-131,-87,-72,60,-53,60,-100,-126,-166,-167,-335,-146,-147,60,60,60,-73,60,-89,60,60,-30,60,60,60,60,-149,-156,-336,60,-159,-160,-142,-144,60,60,-216,-214,-215,-75,-76,-77,-78,-79,-80,-81,-82,60,-74,-69,60,60,60,60,-35,-36,60,60,-168,60,-151,60,-153,-148,-157,-140,-141,-145,-143,-127,60,-174,-175,-218,-217,-234,-81,-84,60,-230,-231,-233,-31,-34,60,60,-169,-170,-150,-152,-158,-219,-221,-83,-229,-232,-68,-32,-33,-220,-222,-84,-224,-225,-223,-226,-228,-227,]),'STRUCT':([0,2,4,5,6,7,8,9,10,11,14,15,18,20,21,22,25,26,27,28,33,49,50,51,52,53,54,55,56,57,58,59,63,66,67,69,70,71,72,89,90,94,95,96,97,98,99,100,101,110,114,115,119,122,123,124,125,126,127,135,136,178,190,194,200,201,202,204,205,207,208,210,218,219,220,221,222,223,224,225,226,227,228,229,235,248,262,290,294,295,300,307,308,309,318,329,331,334,345,347,349,350,351,352,357,365,366,367,369,370,372,434,435,444,453,460,464,466,474,477,478,493,502,503,518,546,547,548,549,572,573,578,579,],[61,61,-60,-62,-63,-64,-65,-66,-67,61,-70,-71,-52,-337,-337,-337,61,-337,-29,-104,-337,-131,-128,-129,-130,-102,-103,-105,-106,-107,-108,-109,-61,61,-88,61,-337,-131,61,-87,-72,61,-53,-90,-9,-10,-337,-91,-92,-94,-182,-93,-335,61,61,61,-73,61,-89,61,61,-30,61,-183,61,61,61,-156,-336,-159,-160,61,61,-216,-214,-215,-75,-76,-77,-78,-79,-80,-81,-82,61,-74,-69,61,61,61,61,-35,-36,61,61,61,61,-157,-127,61,-174,-175,-218,-217,-234,-81,-84,61,-230,-231,-233,-31,-34,61,61,-158,-219,-221,-83,-229,-232,-68,-32,-33,-220,-222,-84,-224,-225,-223,-226,-228,-227,]),'UNION':([0,2,4,5,6,7,8,9,10,11,14,15,18,20,21,22,25,26,27,28,33,49,50,51,52,53,54,55,56,57,58,59,63,66,67,69,70,71,72,89,90,94,95,96,97,98,99,100,101,110,114,115,119,122,123,124,125,126,127,135,136,178,190,194,200,201,202,204,205,207,208,210,218,219,220,221,222,223,224,225,226,227,228,229,235,248,262,290,294,295,300,307,308,309,318,329,331,334,345,347,349,350,351,352,357,365,366,367,369,370,372,434,435,444,453,460,464,466,474,477,478,493,502,503,518,546,547,548,549,572,573,578,579,],[62,62,-60,-62,-63,-64,-65,-66,-67,62,-70,-71,-52,-337,-337,-337,62,-337,-29,-104,-337,-131,-128,-129,-130,-102,-103,-105,-106,-107,-108,-109,-61,62,-88,62,-337,-131,62,-87,-72,62,-53,-90,-9,-10,-337,-91,-92,-94,-182,-93,-335,62,62,62,-73,62,-89,62,62,-30,62,-183,62,62,62,-156,-336,-159,-160,62,62,-216,-214,-215,-75,-76,-77,-78,-79,-80,-81,-82,62,-74,-69,62,62,62,62,-35,-36,62,62,62,62,-157,-127,62,-174,-175,-218,-217,-234,-81,-84,62,-230,-231,-233,-31,-34,62,62,-158,-219,-221,-83,-229,-232,-68,-32,-33,-220,-222,-84,-224,-225,-223,-226,-228,-227,]),'LBRACE':([11,15,18,27,35,36,61,62,64,65,66,67,72,89,90,95,116,117,119,120,121,126,127,129,133,178,192,205,218,219,220,221,222,223,224,225,226,227,228,229,235,239,253,262,307,308,351,352,354,356,357,365,366,369,370,372,387,388,389,400,434,435,464,465,466,469,474,477,478,481,483,492,493,498,499,502,503,518,519,520,521,526,527,546,547,548,549,555,563,572,573,575,577,578,579,],[-337,-71,-52,-29,119,119,-154,-155,119,-7,-8,-88,-337,-87,-72,-53,119,119,-335,119,119,119,-89,119,119,-30,119,-336,119,-216,-214,-215,-75,-76,-77,-78,-79,-80,-81,-82,119,119,-337,-69,-35,-36,-218,-217,119,119,-234,119,-84,-230,-231,-233,-11,119,-12,119,-31,-34,-219,119,-221,119,-83,-229,-232,-337,-198,-337,-68,119,119,-32,-33,-220,119,119,119,119,-11,-222,-84,-224,-225,-337,119,-223,-226,119,119,-228,-227,]),'RBRACE':([15,89,90,119,122,126,138,139,140,141,146,147,153,154,157,158,159,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,197,198,199,200,201,202,204,205,207,208,216,217,218,219,220,221,222,223,224,225,226,227,228,229,246,247,252,253,262,263,287,288,289,291,292,293,296,297,298,299,324,325,327,329,331,334,351,352,357,365,366,369,370,372,385,386,387,401,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,424,426,427,428,429,456,457,460,464,466,468,474,477,478,479,480,481,482,491,493,495,496,499,500,518,525,531,532,546,547,548,549,553,554,555,556,567,572,573,578,579,],[-71,-87,-72,-335,205,-337,-303,-252,-253,-255,-274,-276,-289,-312,-301,-302,-304,-313,-314,-315,-316,-317,-318,-319,-320,-321,-322,-323,-324,-325,-327,-328,-329,-330,205,-171,-176,205,205,205,-156,-336,-159,-160,205,-5,-6,-216,-214,-215,-75,-76,-77,-78,-79,-80,-81,-82,-239,-274,-193,-337,-69,-326,-297,-298,-277,-278,-279,-280,-331,-332,-333,-334,205,205,-172,205,205,-157,-218,-217,-234,-81,-84,-230,-231,-233,205,-22,-21,-305,-256,-257,-258,-259,-260,-261,-262,-263,-264,-265,-266,-267,-268,-269,-270,-271,-272,-273,-292,-293,-294,-295,-296,-173,-177,-158,-219,-221,-237,-83,-229,-232,-240,-194,205,-196,-275,-68,-290,-291,-281,-282,-220,-195,205,-254,-222,-84,-224,-225,-197,-299,205,-306,-300,-223,-226,-228,-227,]),'CASE':([15,89,90,119,126,205,218,219,220,221,222,223,224,225,226,227,228,229,239,262,351,352,354,356,357,365,366,369,370,372,464,465,466,474,477,478,493,518,519,520,521,546,547,548,549,563,572,573,575,577,578,579,],[-71,-87,-72,-335,231,-336,231,-216,-214,-215,-75,-76,-77,-78,-79,-80,-81,-82,231,-69,-218,-217,231,231,-234,231,-84,-230,-231,-233,-219,231,-221,-83,-229,-232,-68,-220,231,231,231,-222,-84,-224,-225,231,-223,-226,231,231,-228,-227,]),'DEFAULT':([15,89,90,119,126,205,218,219,220,221,222,223,224,225,226,227,228,229,239,262,351,352,354,356,357,365,366,369,370,372,464,465,466,474,477,478,493,518,519,520,521,546,547,548,549,563,572,573,575,577,578,579,],[-71,-87,-72,-335,232,-336,232,-216,-214,-215,-75,-76,-77,-78,-79,-80,-81,-82,232,-69,-218,-217,232,232,-234,232,-84,-230,-231,-233,-219,232,-221,-83,-229,-232,-68,-220,232,232,232,-222,-84,-224,-225,232,-223,-226,232,232,-228,-227,]),'IF':([15,89,90,119,126,205,218,219,220,221,222,223,224,225,226,227,228,229,239,262,351,352,354,356,357,365,366,369,370,372,464,465,466,474,477,478,493,518,519,520,521,546,547,548,549,563,572,573,575,577,578,579,],[-71,-87,-72,-335,234,-336,234,-216,-214,-215,-75,-76,-77,-78,-79,-80,-81,-82,234,-69,-218,-217,234,234,-234,234,-84,-230,-231,-233,-219,234,-221,-83,-229,-232,-68,-220,234,234,234,-222,-84,-224,-225,234,-223,-226,234,234,-228,-227,]),'SWITCH':([15,89,90,119,126,205,218,219,220,221,222,223,224,225,226,227,228,229,239,262,351,352,354,356,357,365,366,369,370,372,464,465,466,474,477,478,493,518,519,520,521,546,547,548,549,563,572,573,575,577,578,579,],[-71,-87,-72,-335,237,-336,237,-216,-214,-215,-75,-76,-77,-78,-79,-80,-81,-82,237,-69,-218,-217,237,237,-234,237,-84,-230,-231,-233,-219,237,-221,-83,-229,-232,-68,-220,237,237,237,-222,-84,-224,-225,237,-223,-226,237,237,-228,-227,]),'WHILE':([15,89,90,119,126,205,218,219,220,221,222,223,224,225,226,227,228,229,239,262,351,352,354,356,357,364,365,366,369,370,372,464,465,466,474,477,478,493,518,519,520,521,546,547,548,549,563,572,573,575,577,578,579,],[-71,-87,-72,-335,238,-336,238,-216,-214,-215,-75,-76,-77,-78,-79,-80,-81,-82,238,-69,-218,-217,238,238,-234,473,238,-84,-230,-231,-233,-219,238,-221,-83,-229,-232,-68,-220,238,238,238,-222,-84,-224,-225,238,-223,-226,238,238,-228,-227,]),'DO':([15,89,90,119,126,205,218,219,220,221,222,223,224,225,226,227,228,229,239,262,351,352,354,356,357,365,366,369,370,372,464,465,466,474,477,478,493,518,519,520,521,546,547,548,549,563,572,573,575,577,578,579,],[-71,-87,-72,-335,239,-336,239,-216,-214,-215,-75,-76,-77,-78,-79,-80,-81,-82,239,-69,-218,-217,239,239,-234,239,-84,-230,-231,-233,-219,239,-221,-83,-229,-232,-68,-220,239,239,239,-222,-84,-224,-225,239,-223,-226,239,239,-228,-227,]),'FOR':([15,89,90,119,126,205,218,219,220,221,222,223,224,225,226,227,228,229,239,262,351,352,354,356,357,365,366,369,370,372,464,465,466,474,477,478,493,518,519,520,521,546,547,548,549,563,572,573,575,577,578,579,],[-71,-87,-72,-335,240,-336,240,-216,-214,-215,-75,-76,-77,-78,-79,-80,-81,-82,240,-69,-218,-217,240,240,-234,240,-84,-230,-231,-233,-219,240,-221,-83,-229,-232,-68,-220,240,240,240,-222,-84,-224,-225,240,-223,-226,240,240,-228,-227,]),'GOTO':([15,89,90,119,126,205,218,219,220,221,222,223,224,225,226,227,228,229,239,262,351,352,354,356,357,365,366,369,370,372,464,465,466,474,477,478,493,518,519,520,521,546,547,548,549,563,572,573,575,577,578,579,],[-71,-87,-72,-335,241,-336,241,-216,-214,-215,-75,-76,-77,-78,-79,-80,-81,-82,241,-69,-218,-217,241,241,-234,241,-84,-230,-231,-233,-219,241,-221,-83,-229,-232,-68,-220,241,241,241,-222,-84,-224,-225,241,-223,-226,241,241,-228,-227,]),'BREAK':([15,89,90,119,126,205,218,219,220,221,222,223,224,225,226,227,228,229,239,262,351,352,354,356,357,365,366,369,370,372,464,465,466,474,477,478,493,518,519,520,521,546,547,548,549,563,572,573,575,577,578,579,],[-71,-87,-72,-335,242,-336,242,-216,-214,-215,-75,-76,-77,-78,-79,-80,-81,-82,242,-69,-218,-217,242,242,-234,242,-84,-230,-231,-233,-219,242,-221,-83,-229,-232,-68,-220,242,242,242,-222,-84,-224,-225,242,-223,-226,242,242,-228,-227,]),'CONTINUE':([15,89,90,119,126,205,218,219,220,221,222,223,224,225,226,227,228,229,239,262,351,352,354,356,357,365,366,369,370,372,464,465,466,474,477,478,493,518,519,520,521,546,547,548,549,563,572,573,575,577,578,579,],[-71,-87,-72,-335,243,-336,243,-216,-214,-215,-75,-76,-77,-78,-79,-80,-81,-82,243,-69,-218,-217,243,243,-234,243,-84,-230,-231,-233,-219,243,-221,-83,-229,-232,-68,-220,243,243,243,-222,-84,-224,-225,243,-223,-226,243,243,-228,-227,]),'RETURN':([15,89,90,119,126,205,218,219,220,221,222,223,224,225,226,227,228,229,239,262,351,352,354,356,357,365,366,369,370,372,464,465,466,474,477,478,493,518,519,520,521,546,547,548,549,563,572,573,575,577,578,579,],[-71,-87,-72,-335,244,-336,244,-216,-214,-215,-75,-76,-77,-78,-79,-80,-81,-82,244,-69,-218,-217,244,244,-234,244,-84,-230,-231,-233,-219,244,-221,-83,-229,-232,-68,-220,244,244,244,-222,-84,-224,-225,244,-223,-226,244,244,-228,-227,]),'PLUSPLUS':([15,50,51,52,80,89,90,91,93,112,113,114,119,124,126,133,134,136,138,142,143,144,145,147,148,149,150,151,153,154,155,156,157,158,159,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,179,180,181,192,194,205,218,219,220,221,222,223,224,225,226,227,228,229,230,231,235,239,244,253,254,255,256,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,287,288,290,294,296,297,298,299,302,305,306,319,328,343,351,352,354,356,357,358,361,362,363,365,366,367,369,370,372,373,374,375,376,377,378,379,380,381,382,383,384,387,388,389,392,395,396,397,400,401,424,426,427,428,429,443,450,452,462,464,465,466,469,474,476,477,478,481,483,492,493,494,495,496,497,504,505,506,514,518,519,520,521,522,523,526,527,537,538,539,546,547,548,549,552,554,555,556,558,563,565,567,572,573,575,577,578,579,],[-71,-128,-129,-130,-131,-87,-72,148,-337,-27,-28,-182,-335,148,148,148,-337,148,-303,-284,-285,-286,-283,287,148,148,148,148,-289,-312,-287,-288,-301,-302,-304,-313,-314,-315,-316,-317,-318,-319,-320,-321,-322,-323,-324,-325,-327,-328,-329,-330,148,-337,-28,148,-183,-336,148,-216,-214,-215,-75,-76,-77,-78,-79,-80,-81,-82,-312,148,148,148,148,-337,148,-337,-28,-69,-326,148,148,148,148,148,148,148,148,148,148,148,148,148,148,148,148,148,148,148,148,148,-297,-298,148,148,-331,-332,-333,-334,-284,148,148,-337,148,148,-218,-217,148,148,-234,148,148,148,148,148,-84,148,-230,-231,-233,148,-241,-242,-243,-244,-245,-246,-247,-248,-249,-250,-251,-11,148,-12,148,-284,148,148,148,-305,-292,-293,-294,-295,-296,-337,148,148,148,-219,148,-221,148,-83,148,-229,-232,-337,-198,-337,-68,148,-290,-291,148,148,-337,-28,-284,-220,148,148,148,148,148,148,-11,-284,148,148,-222,-84,-224,-225,148,-299,-337,-306,148,148,148,-300,-223,-226,148,148,-228,-227,]),'MINUSMINUS':([15,50,51,52,80,89,90,91,93,112,113,114,119,124,126,133,134,136,138,142,143,144,145,147,148,149,150,151,153,154,155,156,157,158,159,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,179,180,181,192,194,205,218,219,220,221,222,223,224,225,226,227,228,229,230,231,235,239,244,253,254,255,256,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,287,288,290,294,296,297,298,299,302,305,306,319,328,343,351,352,354,356,357,358,361,362,363,365,366,367,369,370,372,373,374,375,376,377,378,379,380,381,382,383,384,387,388,389,392,395,396,397,400,401,424,426,427,428,429,443,450,452,462,464,465,466,469,474,476,477,478,481,483,492,493,494,495,496,497,504,505,506,514,518,519,520,521,522,523,526,527,537,538,539,546,547,548,549,552,554,555,556,558,563,565,567,572,573,575,577,578,579,],[-71,-128,-129,-130,-131,-87,-72,149,-337,-27,-28,-182,-335,149,149,149,-337,149,-303,-284,-285,-286,-283,288,149,149,149,149,-289,-312,-287,-288,-301,-302,-304,-313,-314,-315,-316,-317,-318,-319,-320,-321,-322,-323,-324,-325,-327,-328,-329,-330,149,-337,-28,149,-183,-336,149,-216,-214,-215,-75,-76,-77,-78,-79,-80,-81,-82,-312,149,149,149,149,-337,149,-337,-28,-69,-326,149,149,149,149,149,149,149,149,149,149,149,149,149,149,149,149,149,149,149,149,149,-297,-298,149,149,-331,-332,-333,-334,-284,149,149,-337,149,149,-218,-217,149,149,-234,149,149,149,149,149,-84,149,-230,-231,-233,149,-241,-242,-243,-244,-245,-246,-247,-248,-249,-250,-251,-11,149,-12,149,-284,149,149,149,-305,-292,-293,-294,-295,-296,-337,149,149,149,-219,149,-221,149,-83,149,-229,-232,-337,-198,-337,-68,149,-290,-291,149,149,-337,-28,-284,-220,149,149,149,149,149,149,-11,-284,149,149,-222,-84,-224,-225,149,-299,-337,-306,149,149,149,-300,-223,-226,149,149,-228,-227,]),'SIZEOF':([15,50,51,52,80,89,90,91,93,112,113,114,119,124,126,133,134,136,142,143,144,145,148,149,150,151,155,156,179,180,181,192,194,205,218,219,220,221,222,223,224,225,226,227,228,229,231,235,239,244,253,254,255,256,262,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,290,294,302,305,306,319,328,343,351,352,354,356,357,358,361,362,363,365,366,367,369,370,372,373,374,375,376,377,378,379,380,381,382,383,384,387,388,389,392,395,396,397,400,443,450,452,462,464,465,466,469,474,476,477,478,481,483,492,493,494,497,504,505,506,514,518,519,520,521,522,523,526,527,537,538,539,546,547,548,549,552,555,558,563,565,572,573,575,577,578,579,],[-71,-128,-129,-130,-131,-87,-72,151,-337,-27,-28,-182,-335,151,151,151,-337,151,-284,-285,-286,-283,151,151,151,151,-287,-288,151,-337,-28,151,-183,-336,151,-216,-214,-215,-75,-76,-77,-78,-79,-80,-81,-82,151,151,151,151,-337,151,-337,-28,-69,151,151,151,151,151,151,151,151,151,151,151,151,151,151,151,151,151,151,151,151,151,151,151,-284,151,151,-337,151,151,-218,-217,151,151,-234,151,151,151,151,151,-84,151,-230,-231,-233,151,-241,-242,-243,-244,-245,-246,-247,-248,-249,-250,-251,-11,151,-12,151,-284,151,151,151,-337,151,151,151,-219,151,-221,151,-83,151,-229,-232,-337,-198,-337,-68,151,151,151,-337,-28,-284,-220,151,151,151,151,151,151,-11,-284,151,151,-222,-84,-224,-225,151,-337,151,151,151,-223,-226,151,151,-228,-227,]),'_ALIGNOF':([15,50,51,52,80,89,90,91,93,112,113,114,119,124,126,133,134,136,142,143,144,145,148,149,150,151,155,156,179,180,181,192,194,205,218,219,220,221,222,223,224,225,226,227,228,229,231,235,239,244,253,254,255,256,262,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,290,294,302,305,306,319,328,343,351,352,354,356,357,358,361,362,363,365,366,367,369,370,372,373,374,375,376,377,378,379,380,381,382,383,384,387,388,389,392,395,396,397,400,443,450,452,462,464,465,466,469,474,476,477,478,481,483,492,493,494,497,504,505,506,514,518,519,520,521,522,523,526,527,537,538,539,546,547,548,549,552,555,558,563,565,572,573,575,577,578,579,],[-71,-128,-129,-130,-131,-87,-72,152,-337,-27,-28,-182,-335,152,152,152,-337,152,-284,-285,-286,-283,152,152,152,152,-287,-288,152,-337,-28,152,-183,-336,152,-216,-214,-215,-75,-76,-77,-78,-79,-80,-81,-82,152,152,152,152,-337,152,-337,-28,-69,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,-284,152,152,-337,152,152,-218,-217,152,152,-234,152,152,152,152,152,-84,152,-230,-231,-233,152,-241,-242,-243,-244,-245,-246,-247,-248,-249,-250,-251,-11,152,-12,152,-284,152,152,152,-337,152,152,152,-219,152,-221,152,-83,152,-229,-232,-337,-198,-337,-68,152,152,152,-337,-28,-284,-220,152,152,152,152,152,152,-11,-284,152,152,-222,-84,-224,-225,152,-337,152,152,152,-223,-226,152,152,-228,-227,]),'AND':([15,50,51,52,80,89,90,91,93,112,113,114,119,124,126,133,134,136,138,140,141,142,143,144,145,146,147,148,149,150,151,153,154,155,156,157,158,159,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,179,180,181,192,194,205,218,219,220,221,222,223,224,225,226,227,228,229,230,231,235,239,244,247,253,254,255,256,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,287,288,289,290,291,292,293,294,296,297,298,299,302,305,306,319,328,343,351,352,354,356,357,358,361,362,363,365,366,367,369,370,372,373,374,375,376,377,378,379,380,381,382,383,384,387,388,389,392,395,396,397,400,401,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,424,426,427,428,429,443,450,452,462,464,465,466,469,474,476,477,478,481,483,491,492,493,494,495,496,497,499,500,504,505,506,514,518,519,520,521,522,523,526,527,537,538,539,546,547,548,549,552,554,555,556,558,563,565,567,572,573,575,577,578,579,],[-71,-128,-129,-130,-131,-87,-72,145,-337,-27,-28,-182,-335,145,145,145,-337,145,-303,278,-255,-284,-285,-286,-283,-274,-276,145,145,145,145,-289,-312,-287,-288,-301,-302,-304,-313,-314,-315,-316,-317,-318,-319,-320,-321,-322,-323,-324,-325,-327,-328,-329,-330,145,-337,-28,145,-183,-336,145,-216,-214,-215,-75,-76,-77,-78,-79,-80,-81,-82,-312,145,145,145,145,-274,-337,145,-337,-28,-69,-326,145,145,145,145,145,145,145,145,145,145,145,145,145,145,145,145,145,145,145,145,145,-297,-298,-277,145,-278,-279,-280,145,-331,-332,-333,-334,-284,145,145,-337,145,145,-218,-217,145,145,-234,145,145,145,145,145,-84,145,-230,-231,-233,145,-241,-242,-243,-244,-245,-246,-247,-248,-249,-250,-251,-11,145,-12,145,-284,145,145,145,-305,-256,-257,-258,-259,-260,-261,-262,-263,-264,-265,-266,-267,-268,-269,278,278,278,278,-292,-293,-294,-295,-296,-337,145,145,145,-219,145,-221,145,-83,145,-229,-232,-337,-198,-275,-337,-68,145,-290,-291,145,-281,-282,145,-337,-28,-284,-220,145,145,145,145,145,145,-11,-284,145,145,-222,-84,-224,-225,145,-299,-337,-306,145,145,145,-300,-223,-226,145,145,-228,-227,]),'PLUS':([15,50,51,52,80,89,90,91,93,112,113,114,119,124,126,133,134,136,138,140,141,142,143,144,145,146,147,148,149,150,151,153,154,155,156,157,158,159,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,179,180,181,192,194,205,218,219,220,221,222,223,224,225,226,227,228,229,230,231,235,239,244,247,253,254,255,256,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,287,288,289,290,291,292,293,294,296,297,298,299,302,305,306,319,328,343,351,352,354,356,357,358,361,362,363,365,366,367,369,370,372,373,374,375,376,377,378,379,380,381,382,383,384,387,388,389,392,395,396,397,400,401,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,424,426,427,428,429,443,450,452,462,464,465,466,469,474,476,477,478,481,483,491,492,493,494,495,496,497,499,500,504,505,506,514,518,519,520,521,522,523,526,527,537,538,539,546,547,548,549,552,554,555,556,558,563,565,567,572,573,575,577,578,579,],[-71,-128,-129,-130,-131,-87,-72,143,-337,-27,-28,-182,-335,143,143,143,-337,143,-303,268,-255,-284,-285,-286,-283,-274,-276,143,143,143,143,-289,-312,-287,-288,-301,-302,-304,-313,-314,-315,-316,-317,-318,-319,-320,-321,-322,-323,-324,-325,-327,-328,-329,-330,143,-337,-28,143,-183,-336,143,-216,-214,-215,-75,-76,-77,-78,-79,-80,-81,-82,-312,143,143,143,143,-274,-337,143,-337,-28,-69,-326,143,143,143,143,143,143,143,143,143,143,143,143,143,143,143,143,143,143,143,143,143,-297,-298,-277,143,-278,-279,-280,143,-331,-332,-333,-334,-284,143,143,-337,143,143,-218,-217,143,143,-234,143,143,143,143,143,-84,143,-230,-231,-233,143,-241,-242,-243,-244,-245,-246,-247,-248,-249,-250,-251,-11,143,-12,143,-284,143,143,143,-305,-256,-257,-258,-259,-260,268,268,268,268,268,268,268,268,268,268,268,268,268,-292,-293,-294,-295,-296,-337,143,143,143,-219,143,-221,143,-83,143,-229,-232,-337,-198,-275,-337,-68,143,-290,-291,143,-281,-282,143,-337,-28,-284,-220,143,143,143,143,143,143,-11,-284,143,143,-222,-84,-224,-225,143,-299,-337,-306,143,143,143,-300,-223,-226,143,143,-228,-227,]),'MINUS':([15,50,51,52,80,89,90,91,93,112,113,114,119,124,126,133,134,136,138,140,141,142,143,144,145,146,147,148,149,150,151,153,154,155,156,157,158,159,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,179,180,181,192,194,205,218,219,220,221,222,223,224,225,226,227,228,229,230,231,235,239,244,247,253,254,255,256,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,287,288,289,290,291,292,293,294,296,297,298,299,302,305,306,319,328,343,351,352,354,356,357,358,361,362,363,365,366,367,369,370,372,373,374,375,376,377,378,379,380,381,382,383,384,387,388,389,392,395,396,397,400,401,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,424,426,427,428,429,443,450,452,462,464,465,466,469,474,476,477,478,481,483,491,492,493,494,495,496,497,499,500,504,505,506,514,518,519,520,521,522,523,526,527,537,538,539,546,547,548,549,552,554,555,556,558,563,565,567,572,573,575,577,578,579,],[-71,-128,-129,-130,-131,-87,-72,144,-337,-27,-28,-182,-335,144,144,144,-337,144,-303,269,-255,-284,-285,-286,-283,-274,-276,144,144,144,144,-289,-312,-287,-288,-301,-302,-304,-313,-314,-315,-316,-317,-318,-319,-320,-321,-322,-323,-324,-325,-327,-328,-329,-330,144,-337,-28,144,-183,-336,144,-216,-214,-215,-75,-76,-77,-78,-79,-80,-81,-82,-312,144,144,144,144,-274,-337,144,-337,-28,-69,-326,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,-297,-298,-277,144,-278,-279,-280,144,-331,-332,-333,-334,-284,144,144,-337,144,144,-218,-217,144,144,-234,144,144,144,144,144,-84,144,-230,-231,-233,144,-241,-242,-243,-244,-245,-246,-247,-248,-249,-250,-251,-11,144,-12,144,-284,144,144,144,-305,-256,-257,-258,-259,-260,269,269,269,269,269,269,269,269,269,269,269,269,269,-292,-293,-294,-295,-296,-337,144,144,144,-219,144,-221,144,-83,144,-229,-232,-337,-198,-275,-337,-68,144,-290,-291,144,-281,-282,144,-337,-28,-284,-220,144,144,144,144,144,144,-11,-284,144,144,-222,-84,-224,-225,144,-299,-337,-306,144,144,144,-300,-223,-226,144,144,-228,-227,]),'NOT':([15,50,51,52,80,89,90,91,93,112,113,114,119,124,126,133,134,136,142,143,144,145,148,149,150,151,155,156,179,180,181,192,194,205,218,219,220,221,222,223,224,225,226,227,228,229,231,235,239,244,253,254,255,256,262,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,290,294,302,305,306,319,328,343,351,352,354,356,357,358,361,362,363,365,366,367,369,370,372,373,374,375,376,377,378,379,380,381,382,383,384,387,388,389,392,395,396,397,400,443,450,452,462,464,465,466,469,474,476,477,478,481,483,492,493,494,497,504,505,506,514,518,519,520,521,522,523,526,527,537,538,539,546,547,548,549,552,555,558,563,565,572,573,575,577,578,579,],[-71,-128,-129,-130,-131,-87,-72,155,-337,-27,-28,-182,-335,155,155,155,-337,155,-284,-285,-286,-283,155,155,155,155,-287,-288,155,-337,-28,155,-183,-336,155,-216,-214,-215,-75,-76,-77,-78,-79,-80,-81,-82,155,155,155,155,-337,155,-337,-28,-69,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,-284,155,155,-337,155,155,-218,-217,155,155,-234,155,155,155,155,155,-84,155,-230,-231,-233,155,-241,-242,-243,-244,-245,-246,-247,-248,-249,-250,-251,-11,155,-12,155,-284,155,155,155,-337,155,155,155,-219,155,-221,155,-83,155,-229,-232,-337,-198,-337,-68,155,155,155,-337,-28,-284,-220,155,155,155,155,155,155,-11,-284,155,155,-222,-84,-224,-225,155,-337,155,155,155,-223,-226,155,155,-228,-227,]),'LNOT':([15,50,51,52,80,89,90,91,93,112,113,114,119,124,126,133,134,136,142,143,144,145,148,149,150,151,155,156,179,180,181,192,194,205,218,219,220,221,222,223,224,225,226,227,228,229,231,235,239,244,253,254,255,256,262,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,290,294,302,305,306,319,328,343,351,352,354,356,357,358,361,362,363,365,366,367,369,370,372,373,374,375,376,377,378,379,380,381,382,383,384,387,388,389,392,395,396,397,400,443,450,452,462,464,465,466,469,474,476,477,478,481,483,492,493,494,497,504,505,506,514,518,519,520,521,522,523,526,527,537,538,539,546,547,548,549,552,555,558,563,565,572,573,575,577,578,579,],[-71,-128,-129,-130,-131,-87,-72,156,-337,-27,-28,-182,-335,156,156,156,-337,156,-284,-285,-286,-283,156,156,156,156,-287,-288,156,-337,-28,156,-183,-336,156,-216,-214,-215,-75,-76,-77,-78,-79,-80,-81,-82,156,156,156,156,-337,156,-337,-28,-69,156,156,156,156,156,156,156,156,156,156,156,156,156,156,156,156,156,156,156,156,156,156,156,-284,156,156,-337,156,156,-218,-217,156,156,-234,156,156,156,156,156,-84,156,-230,-231,-233,156,-241,-242,-243,-244,-245,-246,-247,-248,-249,-250,-251,-11,156,-12,156,-284,156,156,156,-337,156,156,156,-219,156,-221,156,-83,156,-229,-232,-337,-198,-337,-68,156,156,156,-337,-28,-284,-220,156,156,156,156,156,156,-11,-284,156,156,-222,-84,-224,-225,156,-337,156,156,156,-223,-226,156,156,-228,-227,]),'OFFSETOF':([15,50,51,52,80,89,90,91,93,112,113,114,119,124,126,133,134,136,142,143,144,145,148,149,150,151,155,156,179,180,181,192,194,205,218,219,220,221,222,223,224,225,226,227,228,229,231,235,239,244,253,254,255,256,262,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,290,294,302,305,306,319,328,343,351,352,354,356,357,358,361,362,363,365,366,367,369,370,372,373,374,375,376,377,378,379,380,381,382,383,384,387,388,389,392,395,396,397,400,443,450,452,462,464,465,466,469,474,476,477,478,481,483,492,493,494,497,504,505,506,514,518,519,520,521,522,523,526,527,537,538,539,546,547,548,549,552,555,558,563,565,572,573,575,577,578,579,],[-71,-128,-129,-130,-131,-87,-72,160,-337,-27,-28,-182,-335,160,160,160,-337,160,-284,-285,-286,-283,160,160,160,160,-287,-288,160,-337,-28,160,-183,-336,160,-216,-214,-215,-75,-76,-77,-78,-79,-80,-81,-82,160,160,160,160,-337,160,-337,-28,-69,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,-284,160,160,-337,160,160,-218,-217,160,160,-234,160,160,160,160,160,-84,160,-230,-231,-233,160,-241,-242,-243,-244,-245,-246,-247,-248,-249,-250,-251,-11,160,-12,160,-284,160,160,160,-337,160,160,160,-219,160,-221,160,-83,160,-229,-232,-337,-198,-337,-68,160,160,160,-337,-28,-284,-220,160,160,160,160,160,160,-11,-284,160,160,-222,-84,-224,-225,160,-337,160,160,160,-223,-226,160,160,-228,-227,]),'INT_CONST_DEC':([15,50,51,52,80,89,90,91,93,112,113,114,119,124,126,133,134,136,142,143,144,145,148,149,150,151,155,156,179,180,181,192,194,205,218,219,220,221,222,223,224,225,226,227,228,229,231,235,239,244,253,254,255,256,262,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,290,294,302,305,306,319,328,343,351,352,354,356,357,358,361,362,363,365,366,367,369,370,372,373,374,375,376,377,378,379,380,381,382,383,384,387,388,389,392,395,396,397,400,443,450,452,462,464,465,466,469,474,476,477,478,481,483,492,493,494,497,504,505,506,514,518,519,520,521,522,523,526,527,537,538,539,546,547,548,549,552,555,558,563,565,572,573,575,577,578,579,],[-71,-128,-129,-130,-131,-87,-72,161,-337,-27,-28,-182,-335,161,161,161,-337,161,-284,-285,-286,-283,161,161,161,161,-287,-288,161,-337,-28,161,-183,-336,161,-216,-214,-215,-75,-76,-77,-78,-79,-80,-81,-82,161,161,161,161,-337,161,-337,-28,-69,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,-284,161,161,-337,161,161,-218,-217,161,161,-234,161,161,161,161,161,-84,161,-230,-231,-233,161,-241,-242,-243,-244,-245,-246,-247,-248,-249,-250,-251,-11,161,-12,161,-284,161,161,161,-337,161,161,161,-219,161,-221,161,-83,161,-229,-232,-337,-198,-337,-68,161,161,161,-337,-28,-284,-220,161,161,161,161,161,161,-11,-284,161,161,-222,-84,-224,-225,161,-337,161,161,161,-223,-226,161,161,-228,-227,]),'INT_CONST_OCT':([15,50,51,52,80,89,90,91,93,112,113,114,119,124,126,133,134,136,142,143,144,145,148,149,150,151,155,156,179,180,181,192,194,205,218,219,220,221,222,223,224,225,226,227,228,229,231,235,239,244,253,254,255,256,262,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,290,294,302,305,306,319,328,343,351,352,354,356,357,358,361,362,363,365,366,367,369,370,372,373,374,375,376,377,378,379,380,381,382,383,384,387,388,389,392,395,396,397,400,443,450,452,462,464,465,466,469,474,476,477,478,481,483,492,493,494,497,504,505,506,514,518,519,520,521,522,523,526,527,537,538,539,546,547,548,549,552,555,558,563,565,572,573,575,577,578,579,],[-71,-128,-129,-130,-131,-87,-72,162,-337,-27,-28,-182,-335,162,162,162,-337,162,-284,-285,-286,-283,162,162,162,162,-287,-288,162,-337,-28,162,-183,-336,162,-216,-214,-215,-75,-76,-77,-78,-79,-80,-81,-82,162,162,162,162,-337,162,-337,-28,-69,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,-284,162,162,-337,162,162,-218,-217,162,162,-234,162,162,162,162,162,-84,162,-230,-231,-233,162,-241,-242,-243,-244,-245,-246,-247,-248,-249,-250,-251,-11,162,-12,162,-284,162,162,162,-337,162,162,162,-219,162,-221,162,-83,162,-229,-232,-337,-198,-337,-68,162,162,162,-337,-28,-284,-220,162,162,162,162,162,162,-11,-284,162,162,-222,-84,-224,-225,162,-337,162,162,162,-223,-226,162,162,-228,-227,]),'INT_CONST_HEX':([15,50,51,52,80,89,90,91,93,112,113,114,119,124,126,133,134,136,142,143,144,145,148,149,150,151,155,156,179,180,181,192,194,205,218,219,220,221,222,223,224,225,226,227,228,229,231,235,239,244,253,254,255,256,262,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,290,294,302,305,306,319,328,343,351,352,354,356,357,358,361,362,363,365,366,367,369,370,372,373,374,375,376,377,378,379,380,381,382,383,384,387,388,389,392,395,396,397,400,443,450,452,462,464,465,466,469,474,476,477,478,481,483,492,493,494,497,504,505,506,514,518,519,520,521,522,523,526,527,537,538,539,546,547,548,549,552,555,558,563,565,572,573,575,577,578,579,],[-71,-128,-129,-130,-131,-87,-72,163,-337,-27,-28,-182,-335,163,163,163,-337,163,-284,-285,-286,-283,163,163,163,163,-287,-288,163,-337,-28,163,-183,-336,163,-216,-214,-215,-75,-76,-77,-78,-79,-80,-81,-82,163,163,163,163,-337,163,-337,-28,-69,163,163,163,163,163,163,163,163,163,163,163,163,163,163,163,163,163,163,163,163,163,163,163,-284,163,163,-337,163,163,-218,-217,163,163,-234,163,163,163,163,163,-84,163,-230,-231,-233,163,-241,-242,-243,-244,-245,-246,-247,-248,-249,-250,-251,-11,163,-12,163,-284,163,163,163,-337,163,163,163,-219,163,-221,163,-83,163,-229,-232,-337,-198,-337,-68,163,163,163,-337,-28,-284,-220,163,163,163,163,163,163,-11,-284,163,163,-222,-84,-224,-225,163,-337,163,163,163,-223,-226,163,163,-228,-227,]),'INT_CONST_BIN':([15,50,51,52,80,89,90,91,93,112,113,114,119,124,126,133,134,136,142,143,144,145,148,149,150,151,155,156,179,180,181,192,194,205,218,219,220,221,222,223,224,225,226,227,228,229,231,235,239,244,253,254,255,256,262,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,290,294,302,305,306,319,328,343,351,352,354,356,357,358,361,362,363,365,366,367,369,370,372,373,374,375,376,377,378,379,380,381,382,383,384,387,388,389,392,395,396,397,400,443,450,452,462,464,465,466,469,474,476,477,478,481,483,492,493,494,497,504,505,506,514,518,519,520,521,522,523,526,527,537,538,539,546,547,548,549,552,555,558,563,565,572,573,575,577,578,579,],[-71,-128,-129,-130,-131,-87,-72,164,-337,-27,-28,-182,-335,164,164,164,-337,164,-284,-285,-286,-283,164,164,164,164,-287,-288,164,-337,-28,164,-183,-336,164,-216,-214,-215,-75,-76,-77,-78,-79,-80,-81,-82,164,164,164,164,-337,164,-337,-28,-69,164,164,164,164,164,164,164,164,164,164,164,164,164,164,164,164,164,164,164,164,164,164,164,-284,164,164,-337,164,164,-218,-217,164,164,-234,164,164,164,164,164,-84,164,-230,-231,-233,164,-241,-242,-243,-244,-245,-246,-247,-248,-249,-250,-251,-11,164,-12,164,-284,164,164,164,-337,164,164,164,-219,164,-221,164,-83,164,-229,-232,-337,-198,-337,-68,164,164,164,-337,-28,-284,-220,164,164,164,164,164,164,-11,-284,164,164,-222,-84,-224,-225,164,-337,164,164,164,-223,-226,164,164,-228,-227,]),'INT_CONST_CHAR':([15,50,51,52,80,89,90,91,93,112,113,114,119,124,126,133,134,136,142,143,144,145,148,149,150,151,155,156,179,180,181,192,194,205,218,219,220,221,222,223,224,225,226,227,228,229,231,235,239,244,253,254,255,256,262,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,290,294,302,305,306,319,328,343,351,352,354,356,357,358,361,362,363,365,366,367,369,370,372,373,374,375,376,377,378,379,380,381,382,383,384,387,388,389,392,395,396,397,400,443,450,452,462,464,465,466,469,474,476,477,478,481,483,492,493,494,497,504,505,506,514,518,519,520,521,522,523,526,527,537,538,539,546,547,548,549,552,555,558,563,565,572,573,575,577,578,579,],[-71,-128,-129,-130,-131,-87,-72,165,-337,-27,-28,-182,-335,165,165,165,-337,165,-284,-285,-286,-283,165,165,165,165,-287,-288,165,-337,-28,165,-183,-336,165,-216,-214,-215,-75,-76,-77,-78,-79,-80,-81,-82,165,165,165,165,-337,165,-337,-28,-69,165,165,165,165,165,165,165,165,165,165,165,165,165,165,165,165,165,165,165,165,165,165,165,-284,165,165,-337,165,165,-218,-217,165,165,-234,165,165,165,165,165,-84,165,-230,-231,-233,165,-241,-242,-243,-244,-245,-246,-247,-248,-249,-250,-251,-11,165,-12,165,-284,165,165,165,-337,165,165,165,-219,165,-221,165,-83,165,-229,-232,-337,-198,-337,-68,165,165,165,-337,-28,-284,-220,165,165,165,165,165,165,-11,-284,165,165,-222,-84,-224,-225,165,-337,165,165,165,-223,-226,165,165,-228,-227,]),'FLOAT_CONST':([15,50,51,52,80,89,90,91,93,112,113,114,119,124,126,133,134,136,142,143,144,145,148,149,150,151,155,156,179,180,181,192,194,205,218,219,220,221,222,223,224,225,226,227,228,229,231,235,239,244,253,254,255,256,262,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,290,294,302,305,306,319,328,343,351,352,354,356,357,358,361,362,363,365,366,367,369,370,372,373,374,375,376,377,378,379,380,381,382,383,384,387,388,389,392,395,396,397,400,443,450,452,462,464,465,466,469,474,476,477,478,481,483,492,493,494,497,504,505,506,514,518,519,520,521,522,523,526,527,537,538,539,546,547,548,549,552,555,558,563,565,572,573,575,577,578,579,],[-71,-128,-129,-130,-131,-87,-72,166,-337,-27,-28,-182,-335,166,166,166,-337,166,-284,-285,-286,-283,166,166,166,166,-287,-288,166,-337,-28,166,-183,-336,166,-216,-214,-215,-75,-76,-77,-78,-79,-80,-81,-82,166,166,166,166,-337,166,-337,-28,-69,166,166,166,166,166,166,166,166,166,166,166,166,166,166,166,166,166,166,166,166,166,166,166,-284,166,166,-337,166,166,-218,-217,166,166,-234,166,166,166,166,166,-84,166,-230,-231,-233,166,-241,-242,-243,-244,-245,-246,-247,-248,-249,-250,-251,-11,166,-12,166,-284,166,166,166,-337,166,166,166,-219,166,-221,166,-83,166,-229,-232,-337,-198,-337,-68,166,166,166,-337,-28,-284,-220,166,166,166,166,166,166,-11,-284,166,166,-222,-84,-224,-225,166,-337,166,166,166,-223,-226,166,166,-228,-227,]),'HEX_FLOAT_CONST':([15,50,51,52,80,89,90,91,93,112,113,114,119,124,126,133,134,136,142,143,144,145,148,149,150,151,155,156,179,180,181,192,194,205,218,219,220,221,222,223,224,225,226,227,228,229,231,235,239,244,253,254,255,256,262,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,290,294,302,305,306,319,328,343,351,352,354,356,357,358,361,362,363,365,366,367,369,370,372,373,374,375,376,377,378,379,380,381,382,383,384,387,388,389,392,395,396,397,400,443,450,452,462,464,465,466,469,474,476,477,478,481,483,492,493,494,497,504,505,506,514,518,519,520,521,522,523,526,527,537,538,539,546,547,548,549,552,555,558,563,565,572,573,575,577,578,579,],[-71,-128,-129,-130,-131,-87,-72,167,-337,-27,-28,-182,-335,167,167,167,-337,167,-284,-285,-286,-283,167,167,167,167,-287,-288,167,-337,-28,167,-183,-336,167,-216,-214,-215,-75,-76,-77,-78,-79,-80,-81,-82,167,167,167,167,-337,167,-337,-28,-69,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,-284,167,167,-337,167,167,-218,-217,167,167,-234,167,167,167,167,167,-84,167,-230,-231,-233,167,-241,-242,-243,-244,-245,-246,-247,-248,-249,-250,-251,-11,167,-12,167,-284,167,167,167,-337,167,167,167,-219,167,-221,167,-83,167,-229,-232,-337,-198,-337,-68,167,167,167,-337,-28,-284,-220,167,167,167,167,167,167,-11,-284,167,167,-222,-84,-224,-225,167,-337,167,167,167,-223,-226,167,167,-228,-227,]),'CHAR_CONST':([15,50,51,52,80,89,90,91,93,112,113,114,119,124,126,133,134,136,142,143,144,145,148,149,150,151,155,156,179,180,181,192,194,205,218,219,220,221,222,223,224,225,226,227,228,229,231,235,239,244,253,254,255,256,262,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,290,294,302,305,306,319,328,343,351,352,354,356,357,358,361,362,363,365,366,367,369,370,372,373,374,375,376,377,378,379,380,381,382,383,384,387,388,389,392,395,396,397,400,443,450,452,462,464,465,466,469,474,476,477,478,481,483,492,493,494,497,504,505,506,514,518,519,520,521,522,523,526,527,537,538,539,546,547,548,549,552,555,558,563,565,572,573,575,577,578,579,],[-71,-128,-129,-130,-131,-87,-72,168,-337,-27,-28,-182,-335,168,168,168,-337,168,-284,-285,-286,-283,168,168,168,168,-287,-288,168,-337,-28,168,-183,-336,168,-216,-214,-215,-75,-76,-77,-78,-79,-80,-81,-82,168,168,168,168,-337,168,-337,-28,-69,168,168,168,168,168,168,168,168,168,168,168,168,168,168,168,168,168,168,168,168,168,168,168,-284,168,168,-337,168,168,-218,-217,168,168,-234,168,168,168,168,168,-84,168,-230,-231,-233,168,-241,-242,-243,-244,-245,-246,-247,-248,-249,-250,-251,-11,168,-12,168,-284,168,168,168,-337,168,168,168,-219,168,-221,168,-83,168,-229,-232,-337,-198,-337,-68,168,168,168,-337,-28,-284,-220,168,168,168,168,168,168,-11,-284,168,168,-222,-84,-224,-225,168,-337,168,168,168,-223,-226,168,168,-228,-227,]),'WCHAR_CONST':([15,50,51,52,80,89,90,91,93,112,113,114,119,124,126,133,134,136,142,143,144,145,148,149,150,151,155,156,179,180,181,192,194,205,218,219,220,221,222,223,224,225,226,227,228,229,231,235,239,244,253,254,255,256,262,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,290,294,302,305,306,319,328,343,351,352,354,356,357,358,361,362,363,365,366,367,369,370,372,373,374,375,376,377,378,379,380,381,382,383,384,387,388,389,392,395,396,397,400,443,450,452,462,464,465,466,469,474,476,477,478,481,483,492,493,494,497,504,505,506,514,518,519,520,521,522,523,526,527,537,538,539,546,547,548,549,552,555,558,563,565,572,573,575,577,578,579,],[-71,-128,-129,-130,-131,-87,-72,169,-337,-27,-28,-182,-335,169,169,169,-337,169,-284,-285,-286,-283,169,169,169,169,-287,-288,169,-337,-28,169,-183,-336,169,-216,-214,-215,-75,-76,-77,-78,-79,-80,-81,-82,169,169,169,169,-337,169,-337,-28,-69,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,-284,169,169,-337,169,169,-218,-217,169,169,-234,169,169,169,169,169,-84,169,-230,-231,-233,169,-241,-242,-243,-244,-245,-246,-247,-248,-249,-250,-251,-11,169,-12,169,-284,169,169,169,-337,169,169,169,-219,169,-221,169,-83,169,-229,-232,-337,-198,-337,-68,169,169,169,-337,-28,-284,-220,169,169,169,169,169,169,-11,-284,169,169,-222,-84,-224,-225,169,-337,169,169,169,-223,-226,169,169,-228,-227,]),'U8CHAR_CONST':([15,50,51,52,80,89,90,91,93,112,113,114,119,124,126,133,134,136,142,143,144,145,148,149,150,151,155,156,179,180,181,192,194,205,218,219,220,221,222,223,224,225,226,227,228,229,231,235,239,244,253,254,255,256,262,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,290,294,302,305,306,319,328,343,351,352,354,356,357,358,361,362,363,365,366,367,369,370,372,373,374,375,376,377,378,379,380,381,382,383,384,387,388,389,392,395,396,397,400,443,450,452,462,464,465,466,469,474,476,477,478,481,483,492,493,494,497,504,505,506,514,518,519,520,521,522,523,526,527,537,538,539,546,547,548,549,552,555,558,563,565,572,573,575,577,578,579,],[-71,-128,-129,-130,-131,-87,-72,170,-337,-27,-28,-182,-335,170,170,170,-337,170,-284,-285,-286,-283,170,170,170,170,-287,-288,170,-337,-28,170,-183,-336,170,-216,-214,-215,-75,-76,-77,-78,-79,-80,-81,-82,170,170,170,170,-337,170,-337,-28,-69,170,170,170,170,170,170,170,170,170,170,170,170,170,170,170,170,170,170,170,170,170,170,170,-284,170,170,-337,170,170,-218,-217,170,170,-234,170,170,170,170,170,-84,170,-230,-231,-233,170,-241,-242,-243,-244,-245,-246,-247,-248,-249,-250,-251,-11,170,-12,170,-284,170,170,170,-337,170,170,170,-219,170,-221,170,-83,170,-229,-232,-337,-198,-337,-68,170,170,170,-337,-28,-284,-220,170,170,170,170,170,170,-11,-284,170,170,-222,-84,-224,-225,170,-337,170,170,170,-223,-226,170,170,-228,-227,]),'U16CHAR_CONST':([15,50,51,52,80,89,90,91,93,112,113,114,119,124,126,133,134,136,142,143,144,145,148,149,150,151,155,156,179,180,181,192,194,205,218,219,220,221,222,223,224,225,226,227,228,229,231,235,239,244,253,254,255,256,262,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,290,294,302,305,306,319,328,343,351,352,354,356,357,358,361,362,363,365,366,367,369,370,372,373,374,375,376,377,378,379,380,381,382,383,384,387,388,389,392,395,396,397,400,443,450,452,462,464,465,466,469,474,476,477,478,481,483,492,493,494,497,504,505,506,514,518,519,520,521,522,523,526,527,537,538,539,546,547,548,549,552,555,558,563,565,572,573,575,577,578,579,],[-71,-128,-129,-130,-131,-87,-72,171,-337,-27,-28,-182,-335,171,171,171,-337,171,-284,-285,-286,-283,171,171,171,171,-287,-288,171,-337,-28,171,-183,-336,171,-216,-214,-215,-75,-76,-77,-78,-79,-80,-81,-82,171,171,171,171,-337,171,-337,-28,-69,171,171,171,171,171,171,171,171,171,171,171,171,171,171,171,171,171,171,171,171,171,171,171,-284,171,171,-337,171,171,-218,-217,171,171,-234,171,171,171,171,171,-84,171,-230,-231,-233,171,-241,-242,-243,-244,-245,-246,-247,-248,-249,-250,-251,-11,171,-12,171,-284,171,171,171,-337,171,171,171,-219,171,-221,171,-83,171,-229,-232,-337,-198,-337,-68,171,171,171,-337,-28,-284,-220,171,171,171,171,171,171,-11,-284,171,171,-222,-84,-224,-225,171,-337,171,171,171,-223,-226,171,171,-228,-227,]),'U32CHAR_CONST':([15,50,51,52,80,89,90,91,93,112,113,114,119,124,126,133,134,136,142,143,144,145,148,149,150,151,155,156,179,180,181,192,194,205,218,219,220,221,222,223,224,225,226,227,228,229,231,235,239,244,253,254,255,256,262,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,290,294,302,305,306,319,328,343,351,352,354,356,357,358,361,362,363,365,366,367,369,370,372,373,374,375,376,377,378,379,380,381,382,383,384,387,388,389,392,395,396,397,400,443,450,452,462,464,465,466,469,474,476,477,478,481,483,492,493,494,497,504,505,506,514,518,519,520,521,522,523,526,527,537,538,539,546,547,548,549,552,555,558,563,565,572,573,575,577,578,579,],[-71,-128,-129,-130,-131,-87,-72,172,-337,-27,-28,-182,-335,172,172,172,-337,172,-284,-285,-286,-283,172,172,172,172,-287,-288,172,-337,-28,172,-183,-336,172,-216,-214,-215,-75,-76,-77,-78,-79,-80,-81,-82,172,172,172,172,-337,172,-337,-28,-69,172,172,172,172,172,172,172,172,172,172,172,172,172,172,172,172,172,172,172,172,172,172,172,-284,172,172,-337,172,172,-218,-217,172,172,-234,172,172,172,172,172,-84,172,-230,-231,-233,172,-241,-242,-243,-244,-245,-246,-247,-248,-249,-250,-251,-11,172,-12,172,-284,172,172,172,-337,172,172,172,-219,172,-221,172,-83,172,-229,-232,-337,-198,-337,-68,172,172,172,-337,-28,-284,-220,172,172,172,172,172,172,-11,-284,172,172,-222,-84,-224,-225,172,-337,172,172,172,-223,-226,172,172,-228,-227,]),'STRING_LITERAL':([15,50,51,52,80,89,90,91,93,112,113,114,119,124,126,133,134,136,138,142,143,144,145,148,149,150,151,155,156,173,179,180,181,192,194,205,218,219,220,221,222,223,224,225,226,227,228,229,231,235,239,244,253,254,255,256,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,290,294,302,305,306,319,328,343,351,352,354,356,357,358,361,362,363,365,366,367,369,370,372,373,374,375,376,377,378,379,380,381,382,383,384,387,388,389,392,395,396,397,400,402,443,450,452,462,464,465,466,469,474,476,477,478,481,483,492,493,494,497,504,505,506,514,518,519,520,521,522,523,526,527,537,538,539,546,547,548,549,552,555,558,563,565,572,573,575,577,578,579,],[-71,-128,-129,-130,-131,-87,-72,173,-337,-27,-28,-182,-335,173,173,173,-337,173,263,-284,-285,-286,-283,173,173,173,173,-287,-288,-325,173,-337,-28,173,-183,-336,173,-216,-214,-215,-75,-76,-77,-78,-79,-80,-81,-82,173,173,173,173,-337,173,-337,-28,173,-69,-326,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,-284,173,173,-337,173,173,-218,-217,173,173,-234,173,173,173,173,173,-84,173,-230,-231,-233,173,-241,-242,-243,-244,-245,-246,-247,-248,-249,-250,-251,-11,173,-12,173,-284,173,173,173,263,-337,173,173,173,-219,173,-221,173,-83,173,-229,-232,-337,-198,-337,-68,173,173,173,-337,-28,-284,-220,173,173,173,173,173,173,-11,-284,173,173,-222,-84,-224,-225,173,-337,173,173,173,-223,-226,173,173,-228,-227,]),'WSTRING_LITERAL':([15,50,51,52,80,89,90,91,93,112,113,114,119,124,126,133,134,136,142,143,144,145,148,149,150,151,155,156,159,174,175,176,177,179,180,181,192,194,205,218,219,220,221,222,223,224,225,226,227,228,229,231,235,239,244,253,254,255,256,262,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,290,294,296,297,298,299,302,305,306,319,328,343,351,352,354,356,357,358,361,362,363,365,366,367,369,370,372,373,374,375,376,377,378,379,380,381,382,383,384,387,388,389,392,395,396,397,400,443,450,452,462,464,465,466,469,474,476,477,478,481,483,492,493,494,497,504,505,506,514,518,519,520,521,522,523,526,527,537,538,539,546,547,548,549,552,555,558,563,565,572,573,575,577,578,579,],[-71,-128,-129,-130,-131,-87,-72,174,-337,-27,-28,-182,-335,174,174,174,-337,174,-284,-285,-286,-283,174,174,174,174,-287,-288,296,-327,-328,-329,-330,174,-337,-28,174,-183,-336,174,-216,-214,-215,-75,-76,-77,-78,-79,-80,-81,-82,174,174,174,174,-337,174,-337,-28,-69,174,174,174,174,174,174,174,174,174,174,174,174,174,174,174,174,174,174,174,174,174,174,174,-331,-332,-333,-334,-284,174,174,-337,174,174,-218,-217,174,174,-234,174,174,174,174,174,-84,174,-230,-231,-233,174,-241,-242,-243,-244,-245,-246,-247,-248,-249,-250,-251,-11,174,-12,174,-284,174,174,174,-337,174,174,174,-219,174,-221,174,-83,174,-229,-232,-337,-198,-337,-68,174,174,174,-337,-28,-284,-220,174,174,174,174,174,174,-11,-284,174,174,-222,-84,-224,-225,174,-337,174,174,174,-223,-226,174,174,-228,-227,]),'U8STRING_LITERAL':([15,50,51,52,80,89,90,91,93,112,113,114,119,124,126,133,134,136,142,143,144,145,148,149,150,151,155,156,159,174,175,176,177,179,180,181,192,194,205,218,219,220,221,222,223,224,225,226,227,228,229,231,235,239,244,253,254,255,256,262,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,290,294,296,297,298,299,302,305,306,319,328,343,351,352,354,356,357,358,361,362,363,365,366,367,369,370,372,373,374,375,376,377,378,379,380,381,382,383,384,387,388,389,392,395,396,397,400,443,450,452,462,464,465,466,469,474,476,477,478,481,483,492,493,494,497,504,505,506,514,518,519,520,521,522,523,526,527,537,538,539,546,547,548,549,552,555,558,563,565,572,573,575,577,578,579,],[-71,-128,-129,-130,-131,-87,-72,175,-337,-27,-28,-182,-335,175,175,175,-337,175,-284,-285,-286,-283,175,175,175,175,-287,-288,297,-327,-328,-329,-330,175,-337,-28,175,-183,-336,175,-216,-214,-215,-75,-76,-77,-78,-79,-80,-81,-82,175,175,175,175,-337,175,-337,-28,-69,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,-331,-332,-333,-334,-284,175,175,-337,175,175,-218,-217,175,175,-234,175,175,175,175,175,-84,175,-230,-231,-233,175,-241,-242,-243,-244,-245,-246,-247,-248,-249,-250,-251,-11,175,-12,175,-284,175,175,175,-337,175,175,175,-219,175,-221,175,-83,175,-229,-232,-337,-198,-337,-68,175,175,175,-337,-28,-284,-220,175,175,175,175,175,175,-11,-284,175,175,-222,-84,-224,-225,175,-337,175,175,175,-223,-226,175,175,-228,-227,]),'U16STRING_LITERAL':([15,50,51,52,80,89,90,91,93,112,113,114,119,124,126,133,134,136,142,143,144,145,148,149,150,151,155,156,159,174,175,176,177,179,180,181,192,194,205,218,219,220,221,222,223,224,225,226,227,228,229,231,235,239,244,253,254,255,256,262,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,290,294,296,297,298,299,302,305,306,319,328,343,351,352,354,356,357,358,361,362,363,365,366,367,369,370,372,373,374,375,376,377,378,379,380,381,382,383,384,387,388,389,392,395,396,397,400,443,450,452,462,464,465,466,469,474,476,477,478,481,483,492,493,494,497,504,505,506,514,518,519,520,521,522,523,526,527,537,538,539,546,547,548,549,552,555,558,563,565,572,573,575,577,578,579,],[-71,-128,-129,-130,-131,-87,-72,176,-337,-27,-28,-182,-335,176,176,176,-337,176,-284,-285,-286,-283,176,176,176,176,-287,-288,298,-327,-328,-329,-330,176,-337,-28,176,-183,-336,176,-216,-214,-215,-75,-76,-77,-78,-79,-80,-81,-82,176,176,176,176,-337,176,-337,-28,-69,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,-331,-332,-333,-334,-284,176,176,-337,176,176,-218,-217,176,176,-234,176,176,176,176,176,-84,176,-230,-231,-233,176,-241,-242,-243,-244,-245,-246,-247,-248,-249,-250,-251,-11,176,-12,176,-284,176,176,176,-337,176,176,176,-219,176,-221,176,-83,176,-229,-232,-337,-198,-337,-68,176,176,176,-337,-28,-284,-220,176,176,176,176,176,176,-11,-284,176,176,-222,-84,-224,-225,176,-337,176,176,176,-223,-226,176,176,-228,-227,]),'U32STRING_LITERAL':([15,50,51,52,80,89,90,91,93,112,113,114,119,124,126,133,134,136,142,143,144,145,148,149,150,151,155,156,159,174,175,176,177,179,180,181,192,194,205,218,219,220,221,222,223,224,225,226,227,228,229,231,235,239,244,253,254,255,256,262,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,290,294,296,297,298,299,302,305,306,319,328,343,351,352,354,356,357,358,361,362,363,365,366,367,369,370,372,373,374,375,376,377,378,379,380,381,382,383,384,387,388,389,392,395,396,397,400,443,450,452,462,464,465,466,469,474,476,477,478,481,483,492,493,494,497,504,505,506,514,518,519,520,521,522,523,526,527,537,538,539,546,547,548,549,552,555,558,563,565,572,573,575,577,578,579,],[-71,-128,-129,-130,-131,-87,-72,177,-337,-27,-28,-182,-335,177,177,177,-337,177,-284,-285,-286,-283,177,177,177,177,-287,-288,299,-327,-328,-329,-330,177,-337,-28,177,-183,-336,177,-216,-214,-215,-75,-76,-77,-78,-79,-80,-81,-82,177,177,177,177,-337,177,-337,-28,-69,177,177,177,177,177,177,177,177,177,177,177,177,177,177,177,177,177,177,177,177,177,177,177,-331,-332,-333,-334,-284,177,177,-337,177,177,-218,-217,177,177,-234,177,177,177,177,177,-84,177,-230,-231,-233,177,-241,-242,-243,-244,-245,-246,-247,-248,-249,-250,-251,-11,177,-12,177,-284,177,177,177,-337,177,177,177,-219,177,-221,177,-83,177,-229,-232,-337,-198,-337,-68,177,177,177,-337,-28,-284,-220,177,177,177,177,177,177,-11,-284,177,177,-222,-84,-224,-225,177,-337,177,177,177,-223,-226,177,177,-228,-227,]),'ELSE':([15,90,205,222,223,224,225,226,227,228,229,262,351,357,365,366,369,370,372,464,466,474,477,478,493,518,546,547,548,549,572,573,578,579,],[-71,-72,-336,-75,-76,-77,-78,-79,-80,-81,-82,-69,-218,-234,-81,-84,-230,-231,-233,-219,-221,-83,-229,-232,-68,-220,-222,563,-224,-225,-223,-226,-228,-227,]),'PPPRAGMASTR':([15,],[90,]),'EQUALS':([18,27,72,85,86,87,88,95,109,128,130,138,146,147,153,154,157,158,159,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,199,205,230,247,249,263,287,288,289,291,292,293,296,297,298,299,307,308,390,391,398,399,401,424,426,427,428,429,434,435,484,486,487,488,491,495,496,499,500,502,503,528,529,530,554,556,567,],[-52,-29,-178,133,-179,-54,-37,-53,192,-178,-55,-303,-274,-276,-289,-312,-301,-302,-304,-313,-314,-315,-316,-317,-318,-319,-320,-321,-322,-323,-324,-325,-327,-328,-329,-330,-30,328,-336,-312,374,-38,-326,-297,-298,-277,-278,-279,-280,-331,-332,-333,-334,-35,-36,483,-199,-43,-44,-305,-292,-293,-294,-295,-296,-31,-34,-200,-202,-39,-42,-275,-290,-291,-281,-282,-32,-33,-201,-40,-41,-299,-306,-300,]),'COMMA':([18,23,24,27,28,29,30,31,32,33,34,37,38,39,40,41,42,43,44,45,46,47,48,50,51,52,53,54,55,56,57,58,59,72,73,74,75,76,77,80,83,84,85,86,87,88,95,102,104,106,108,109,111,112,113,114,116,117,120,121,128,130,137,138,139,140,141,146,147,153,154,157,158,159,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,184,186,187,188,189,193,194,197,198,199,203,205,209,211,213,230,236,245,246,247,249,250,251,252,260,263,287,288,289,291,292,293,296,297,298,299,307,308,311,312,313,314,315,316,317,320,321,322,323,324,325,326,327,330,332,333,336,337,338,340,341,342,344,345,346,348,349,350,371,386,398,399,401,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,433,434,435,439,440,441,442,454,455,456,457,458,459,463,467,468,470,471,472,479,480,482,487,488,491,495,496,499,500,502,503,509,510,512,516,517,525,529,530,531,532,533,540,541,542,543,544,545,550,553,554,556,559,560,567,569,570,571,],[-52,-125,-99,-29,-104,-337,-122,-123,-124,-126,-238,-110,-111,-112,-113,-114,-115,-116,-117,-118,-119,-120,-121,-128,-129,-130,-102,-103,-105,-106,-107,-108,-109,-178,-95,-96,-97,-98,-101,-131,132,-132,-134,-179,-54,-37,-53,-100,-126,191,-136,-138,-180,-27,-28,-182,-166,-167,-146,-147,-178,-55,261,-303,-252,-253,-255,-274,-276,-289,-312,-301,-302,-304,-313,-314,-315,-316,-317,-318,-319,-320,-321,-322,-323,-324,-325,-327,-328,-329,-330,-30,309,310,-186,-191,-337,-181,-183,327,-171,-176,-149,-336,-142,-144,-337,-312,361,-235,-239,-274,-38,-133,-135,-193,361,-326,-297,-298,-277,-278,-279,-280,-331,-332,-333,-334,-35,-36,-188,-189,-190,-204,-56,-1,-2,-45,-206,-137,-139,327,327,-168,-172,-151,-153,-148,-140,-141,-145,461,-161,-163,-143,-127,-203,-204,-174,-175,361,481,-43,-44,-305,361,-256,-257,-258,-259,-260,-261,-262,-263,-264,-265,-266,-267,-268,-269,-270,-271,-272,-273,361,497,-292,-310,-293,-294,-295,-296,501,-31,-34,-187,-192,-57,-205,-169,-170,-173,-177,-150,-152,-165,361,-237,-236,361,361,-240,-194,-196,-39,-42,-275,-290,-291,-281,-282,-32,-33,-207,-213,-211,-162,-164,-195,-40,-41,555,-254,-311,-50,-51,-209,-208,-210,-212,361,-197,-299,-306,-46,-49,-300,361,-47,-48,]),'RPAREN':([18,23,24,27,28,29,30,31,32,33,34,37,38,39,40,41,42,43,44,45,46,47,48,50,51,52,53,54,55,56,57,58,59,73,74,75,76,77,80,87,88,92,94,95,102,104,111,112,113,114,116,117,120,121,130,131,135,137,138,139,140,141,146,147,153,154,157,158,159,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,182,183,184,185,186,187,188,189,193,194,203,205,209,211,212,213,214,215,236,245,246,247,249,257,258,259,260,263,284,287,288,289,291,292,293,296,297,298,299,307,308,311,312,313,314,315,316,317,318,320,321,326,330,332,333,336,337,338,344,345,346,347,348,349,350,351,353,359,360,398,399,401,402,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,423,424,425,426,427,428,429,430,431,432,434,435,438,439,440,441,442,444,445,446,447,448,449,453,454,455,458,459,467,468,470,471,472,479,487,488,491,495,496,499,500,502,503,507,508,509,510,512,515,529,530,532,533,534,535,540,541,542,543,544,545,550,552,554,556,559,560,565,566,567,568,570,571,574,576,],[-52,-125,-99,-29,-104,-337,-122,-123,-124,-126,-238,-110,-111,-112,-113,-114,-115,-116,-117,-118,-119,-120,-121,-128,-129,-130,-102,-103,-105,-106,-107,-108,-109,-95,-96,-97,-98,-101,-131,-54,-37,178,-337,-53,-100,-126,-180,-27,-28,-182,-166,-167,-146,-147,-55,249,-337,262,-303,-252,-253,-255,-274,-276,-289,-312,-301,-302,-304,-313,-314,-315,-316,-317,-318,-319,-320,-321,-322,-323,-324,-325,-327,-328,-329,-330,-30,307,308,-184,-17,-18,-186,-191,-337,-181,-183,-149,-336,-142,-144,345,-337,349,350,-14,-235,-239,-274,-38,398,399,400,401,-326,424,-297,-298,-277,-278,-279,-280,-331,-332,-333,-334,-35,-36,-188,-189,-190,-204,-56,-1,-2,-337,-45,-206,-168,-151,-153,-148,-140,-141,-145,-143,-127,-203,-337,-204,-174,-175,-218,-13,468,469,-43,-44,-305,493,-256,-257,-258,-259,-260,-261,-262,-263,-264,-265,-266,-267,-268,-269,-270,-271,-272,-273,496,-292,-310,-293,-294,-295,-296,498,499,500,-31,-34,-185,-187,-192,-57,-205,-337,509,510,-204,-23,-24,-337,-169,-170,-150,-152,519,-237,-236,520,521,-240,-39,-42,-275,-290,-291,-281,-282,-32,-33,540,541,-207,-213,-211,545,-40,-41,-254,-311,556,-307,-50,-51,-209,-208,-210,-212,564,-337,-299,-306,-46,-49,-337,575,-300,-308,-47,-48,577,-309,]),'COLON':([18,23,27,30,31,32,34,37,38,39,40,41,42,43,44,45,46,47,48,50,51,52,80,86,87,88,95,104,116,117,120,121,128,130,138,139,140,141,146,147,153,154,157,158,159,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,203,205,206,209,211,230,232,245,246,247,249,263,287,288,289,291,292,293,296,297,298,299,307,308,326,330,332,333,336,337,338,342,344,345,349,350,355,398,399,401,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,424,426,427,428,429,434,435,454,455,458,459,461,468,470,479,487,488,491,495,496,499,500,502,503,529,530,532,554,556,567,],[-52,-125,-29,-122,-123,-124,-238,-110,-111,-112,-113,-114,-115,-116,-117,-118,-119,-120,-121,-128,-129,-130,-131,-179,-54,-37,-53,-126,-166,-167,-146,-147,-178,-55,-303,-252,-253,-255,-274,-276,-289,-312,-301,-302,-304,-313,-314,-315,-316,-317,-318,-319,-320,-321,-322,-323,-324,-325,-327,-328,-329,-330,-30,-149,-336,343,-142,-144,354,356,-235,-239,-274,-38,-326,-297,-298,-277,-278,-279,-280,-331,-332,-333,-334,-35,-36,-168,-151,-153,-148,-140,-141,-145,462,-143,-127,-174,-175,465,-43,-44,-305,494,-256,-257,-258,-259,-260,-261,-262,-263,-264,-265,-266,-267,-268,-269,-270,-271,-272,-273,-292,-293,-294,-295,-296,-31,-34,-169,-170,-150,-152,343,-237,-236,-240,-39,-42,-275,-290,-291,-281,-282,-32,-33,-40,-41,-254,-299,-306,-300,]),'LBRACKET':([18,23,24,27,28,29,30,31,32,33,34,37,38,39,40,41,42,43,44,45,46,47,48,50,51,52,53,54,55,56,57,58,59,73,74,75,76,77,80,87,88,95,102,104,111,112,113,114,116,117,119,120,121,130,138,147,153,154,157,158,159,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,189,193,194,203,205,209,211,213,230,249,253,263,287,288,296,297,298,299,307,308,314,315,318,320,321,326,330,332,333,336,337,338,344,345,347,348,349,350,390,391,398,399,401,424,426,427,428,429,434,435,441,442,447,454,455,458,459,481,484,486,487,488,492,495,496,502,503,509,510,512,528,529,530,534,535,540,541,542,543,544,545,554,555,556,559,560,567,568,570,571,576,],[93,-125,-99,-29,-104,-337,-122,-123,-124,-126,-238,-110,-111,-112,-113,-114,-115,-116,-117,-118,-119,-120,-121,-128,-129,-130,-102,-103,-105,-106,-107,-108,-109,-95,-96,-97,-98,-101,-131,134,-37,93,-100,-126,-180,-27,-28,-182,-166,-167,-335,-146,-147,134,-303,283,-289,-312,-301,-302,-304,-313,-314,-315,-316,-317,-318,-319,-320,-321,-322,-323,-324,-325,-327,-328,-329,-330,-30,319,-181,-183,-149,-336,-142,-144,319,-312,-38,392,-326,-297,-298,-331,-332,-333,-334,-35,-36,319,443,319,-45,452,-168,-151,-153,-148,-140,-141,-145,-143,-127,319,319,-174,-175,392,-199,-43,-44,-305,-292,-293,-294,-295,-296,-31,-34,443,452,319,-169,-170,-150,-152,392,-200,-202,-39,-42,392,-290,-291,-32,-33,-207,-213,-211,-201,-40,-41,558,-307,-50,-51,-209,-208,-210,-212,-299,392,-306,-46,-49,-300,-308,-47,-48,-309,]),'RBRACKET':([50,51,52,80,93,112,113,114,134,138,139,140,141,146,147,153,154,157,158,159,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,179,181,194,205,245,246,247,254,256,263,287,288,289,291,292,293,296,297,298,299,301,302,303,304,319,394,395,401,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,424,426,427,428,429,436,437,443,450,451,452,468,470,479,485,489,490,491,495,496,499,500,504,506,511,513,514,532,536,537,554,556,561,562,567,569,],[-128,-129,-130,-131,-337,-27,-28,-182,-337,-303,-252,-253,-255,-274,-276,-289,-312,-301,-302,-304,-313,-314,-315,-316,-317,-318,-319,-320,-321,-322,-323,-324,-325,-327,-328,-329,-330,-337,-28,-183,-336,-235,-239,-274,-337,-28,-326,-297,-298,-277,-278,-279,-280,-331,-332,-333,-334,434,435,-3,-4,-337,487,488,-305,-256,-257,-258,-259,-260,-261,-262,-263,-264,-265,-266,-267,-268,-269,-270,-271,-272,-273,495,-292,-293,-294,-295,-296,502,503,-337,-337,512,-337,-237,-236,-240,528,529,530,-275,-290,-291,-281,-282,-337,-28,542,543,544,-254,559,560,-299,-306,570,571,-300,576,]),'PERIOD':([119,138,147,153,154,157,158,159,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,205,230,253,263,287,288,296,297,298,299,390,391,401,424,426,427,428,429,481,484,486,492,495,496,528,534,535,554,555,556,567,568,576,],[-335,-303,285,-289,-312,-301,-302,-304,-313,-314,-315,-316,-317,-318,-319,-320,-321,-322,-323,-324,-325,-327,-328,-329,-330,-336,-312,393,-326,-297,-298,-331,-332,-333,-334,393,-199,-305,-292,-293,-294,-295,-296,393,-200,-202,393,-290,-291,-201,557,-307,-299,393,-306,-300,-308,-309,]),'ARROW':([138,147,153,154,157,158,159,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,205,230,263,287,288,296,297,298,299,401,424,426,427,428,429,495,496,554,556,567,],[-303,286,-289,-312,-301,-302,-304,-313,-314,-315,-316,-317,-318,-319,-320,-321,-322,-323,-324,-325,-327,-328,-329,-330,-336,-312,-326,-297,-298,-331,-332,-333,-334,-305,-292,-293,-294,-295,-296,-290,-291,-299,-306,-300,]),'CONDOP':([138,140,141,146,147,153,154,157,158,159,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,205,230,247,263,287,288,289,291,292,293,296,297,298,299,401,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,424,426,427,428,429,491,495,496,499,500,554,556,567,],[-303,264,-255,-274,-276,-289,-312,-301,-302,-304,-313,-314,-315,-316,-317,-318,-319,-320,-321,-322,-323,-324,-325,-327,-328,-329,-330,-336,-312,-274,-326,-297,-298,-277,-278,-279,-280,-331,-332,-333,-334,-305,-256,-257,-258,-259,-260,-261,-262,-263,-264,-265,-266,-267,-268,-269,-270,-271,-272,-273,-292,-293,-294,-295,-296,-275,-290,-291,-281,-282,-299,-306,-300,]),'DIVIDE':([138,140,141,146,147,153,154,157,158,159,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,205,230,247,263,287,288,289,291,292,293,296,297,298,299,401,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,424,426,427,428,429,491,495,496,499,500,554,556,567,],[-303,266,-255,-274,-276,-289,-312,-301,-302,-304,-313,-314,-315,-316,-317,-318,-319,-320,-321,-322,-323,-324,-325,-327,-328,-329,-330,-336,-312,-274,-326,-297,-298,-277,-278,-279,-280,-331,-332,-333,-334,-305,-256,-257,-258,266,266,266,266,266,266,266,266,266,266,266,266,266,266,266,-292,-293,-294,-295,-296,-275,-290,-291,-281,-282,-299,-306,-300,]),'MOD':([138,140,141,146,147,153,154,157,158,159,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,205,230,247,263,287,288,289,291,292,293,296,297,298,299,401,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,424,426,427,428,429,491,495,496,499,500,554,556,567,],[-303,267,-255,-274,-276,-289,-312,-301,-302,-304,-313,-314,-315,-316,-317,-318,-319,-320,-321,-322,-323,-324,-325,-327,-328,-329,-330,-336,-312,-274,-326,-297,-298,-277,-278,-279,-280,-331,-332,-333,-334,-305,-256,-257,-258,267,267,267,267,267,267,267,267,267,267,267,267,267,267,267,-292,-293,-294,-295,-296,-275,-290,-291,-281,-282,-299,-306,-300,]),'RSHIFT':([138,140,141,146,147,153,154,157,158,159,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,205,230,247,263,287,288,289,291,292,293,296,297,298,299,401,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,424,426,427,428,429,491,495,496,499,500,554,556,567,],[-303,270,-255,-274,-276,-289,-312,-301,-302,-304,-313,-314,-315,-316,-317,-318,-319,-320,-321,-322,-323,-324,-325,-327,-328,-329,-330,-336,-312,-274,-326,-297,-298,-277,-278,-279,-280,-331,-332,-333,-334,-305,-256,-257,-258,-259,-260,-261,-262,270,270,270,270,270,270,270,270,270,270,270,-292,-293,-294,-295,-296,-275,-290,-291,-281,-282,-299,-306,-300,]),'LSHIFT':([138,140,141,146,147,153,154,157,158,159,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,205,230,247,263,287,288,289,291,292,293,296,297,298,299,401,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,424,426,427,428,429,491,495,496,499,500,554,556,567,],[-303,271,-255,-274,-276,-289,-312,-301,-302,-304,-313,-314,-315,-316,-317,-318,-319,-320,-321,-322,-323,-324,-325,-327,-328,-329,-330,-336,-312,-274,-326,-297,-298,-277,-278,-279,-280,-331,-332,-333,-334,-305,-256,-257,-258,-259,-260,-261,-262,271,271,271,271,271,271,271,271,271,271,271,-292,-293,-294,-295,-296,-275,-290,-291,-281,-282,-299,-306,-300,]),'LT':([138,140,141,146,147,153,154,157,158,159,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,205,230,247,263,287,288,289,291,292,293,296,297,298,299,401,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,424,426,427,428,429,491,495,496,499,500,554,556,567,],[-303,272,-255,-274,-276,-289,-312,-301,-302,-304,-313,-314,-315,-316,-317,-318,-319,-320,-321,-322,-323,-324,-325,-327,-328,-329,-330,-336,-312,-274,-326,-297,-298,-277,-278,-279,-280,-331,-332,-333,-334,-305,-256,-257,-258,-259,-260,-261,-262,-263,-264,-265,-266,272,272,272,272,272,272,272,-292,-293,-294,-295,-296,-275,-290,-291,-281,-282,-299,-306,-300,]),'LE':([138,140,141,146,147,153,154,157,158,159,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,205,230,247,263,287,288,289,291,292,293,296,297,298,299,401,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,424,426,427,428,429,491,495,496,499,500,554,556,567,],[-303,273,-255,-274,-276,-289,-312,-301,-302,-304,-313,-314,-315,-316,-317,-318,-319,-320,-321,-322,-323,-324,-325,-327,-328,-329,-330,-336,-312,-274,-326,-297,-298,-277,-278,-279,-280,-331,-332,-333,-334,-305,-256,-257,-258,-259,-260,-261,-262,-263,-264,-265,-266,273,273,273,273,273,273,273,-292,-293,-294,-295,-296,-275,-290,-291,-281,-282,-299,-306,-300,]),'GE':([138,140,141,146,147,153,154,157,158,159,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,205,230,247,263,287,288,289,291,292,293,296,297,298,299,401,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,424,426,427,428,429,491,495,496,499,500,554,556,567,],[-303,274,-255,-274,-276,-289,-312,-301,-302,-304,-313,-314,-315,-316,-317,-318,-319,-320,-321,-322,-323,-324,-325,-327,-328,-329,-330,-336,-312,-274,-326,-297,-298,-277,-278,-279,-280,-331,-332,-333,-334,-305,-256,-257,-258,-259,-260,-261,-262,-263,-264,-265,-266,274,274,274,274,274,274,274,-292,-293,-294,-295,-296,-275,-290,-291,-281,-282,-299,-306,-300,]),'GT':([138,140,141,146,147,153,154,157,158,159,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,205,230,247,263,287,288,289,291,292,293,296,297,298,299,401,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,424,426,427,428,429,491,495,496,499,500,554,556,567,],[-303,275,-255,-274,-276,-289,-312,-301,-302,-304,-313,-314,-315,-316,-317,-318,-319,-320,-321,-322,-323,-324,-325,-327,-328,-329,-330,-336,-312,-274,-326,-297,-298,-277,-278,-279,-280,-331,-332,-333,-334,-305,-256,-257,-258,-259,-260,-261,-262,-263,-264,-265,-266,275,275,275,275,275,275,275,-292,-293,-294,-295,-296,-275,-290,-291,-281,-282,-299,-306,-300,]),'EQ':([138,140,141,146,147,153,154,157,158,159,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,205,230,247,263,287,288,289,291,292,293,296,297,298,299,401,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,424,426,427,428,429,491,495,496,499,500,554,556,567,],[-303,276,-255,-274,-276,-289,-312,-301,-302,-304,-313,-314,-315,-316,-317,-318,-319,-320,-321,-322,-323,-324,-325,-327,-328,-329,-330,-336,-312,-274,-326,-297,-298,-277,-278,-279,-280,-331,-332,-333,-334,-305,-256,-257,-258,-259,-260,-261,-262,-263,-264,-265,-266,-267,-268,276,276,276,276,276,-292,-293,-294,-295,-296,-275,-290,-291,-281,-282,-299,-306,-300,]),'NE':([138,140,141,146,147,153,154,157,158,159,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,205,230,247,263,287,288,289,291,292,293,296,297,298,299,401,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,424,426,427,428,429,491,495,496,499,500,554,556,567,],[-303,277,-255,-274,-276,-289,-312,-301,-302,-304,-313,-314,-315,-316,-317,-318,-319,-320,-321,-322,-323,-324,-325,-327,-328,-329,-330,-336,-312,-274,-326,-297,-298,-277,-278,-279,-280,-331,-332,-333,-334,-305,-256,-257,-258,-259,-260,-261,-262,-263,-264,-265,-266,-267,-268,277,277,277,277,277,-292,-293,-294,-295,-296,-275,-290,-291,-281,-282,-299,-306,-300,]),'OR':([138,140,141,146,147,153,154,157,158,159,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,205,230,247,263,287,288,289,291,292,293,296,297,298,299,401,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,424,426,427,428,429,491,495,496,499,500,554,556,567,],[-303,279,-255,-274,-276,-289,-312,-301,-302,-304,-313,-314,-315,-316,-317,-318,-319,-320,-321,-322,-323,-324,-325,-327,-328,-329,-330,-336,-312,-274,-326,-297,-298,-277,-278,-279,-280,-331,-332,-333,-334,-305,-256,-257,-258,-259,-260,-261,-262,-263,-264,-265,-266,-267,-268,-269,-270,-271,279,279,-292,-293,-294,-295,-296,-275,-290,-291,-281,-282,-299,-306,-300,]),'XOR':([138,140,141,146,147,153,154,157,158,159,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,205,230,247,263,287,288,289,291,292,293,296,297,298,299,401,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,424,426,427,428,429,491,495,496,499,500,554,556,567,],[-303,280,-255,-274,-276,-289,-312,-301,-302,-304,-313,-314,-315,-316,-317,-318,-319,-320,-321,-322,-323,-324,-325,-327,-328,-329,-330,-336,-312,-274,-326,-297,-298,-277,-278,-279,-280,-331,-332,-333,-334,-305,-256,-257,-258,-259,-260,-261,-262,-263,-264,-265,-266,-267,-268,-269,280,-271,280,280,-292,-293,-294,-295,-296,-275,-290,-291,-281,-282,-299,-306,-300,]),'LAND':([138,140,141,146,147,153,154,157,158,159,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,205,230,247,263,287,288,289,291,292,293,296,297,298,299,401,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,424,426,427,428,429,491,495,496,499,500,554,556,567,],[-303,281,-255,-274,-276,-289,-312,-301,-302,-304,-313,-314,-315,-316,-317,-318,-319,-320,-321,-322,-323,-324,-325,-327,-328,-329,-330,-336,-312,-274,-326,-297,-298,-277,-278,-279,-280,-331,-332,-333,-334,-305,-256,-257,-258,-259,-260,-261,-262,-263,-264,-265,-266,-267,-268,-269,-270,-271,-272,281,-292,-293,-294,-295,-296,-275,-290,-291,-281,-282,-299,-306,-300,]),'LOR':([138,140,141,146,147,153,154,157,158,159,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,205,230,247,263,287,288,289,291,292,293,296,297,298,299,401,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,424,426,427,428,429,491,495,496,499,500,554,556,567,],[-303,282,-255,-274,-276,-289,-312,-301,-302,-304,-313,-314,-315,-316,-317,-318,-319,-320,-321,-322,-323,-324,-325,-327,-328,-329,-330,-336,-312,-274,-326,-297,-298,-277,-278,-279,-280,-331,-332,-333,-334,-305,-256,-257,-258,-259,-260,-261,-262,-263,-264,-265,-266,-267,-268,-269,-270,-271,-272,-273,-292,-293,-294,-295,-296,-275,-290,-291,-281,-282,-299,-306,-300,]),'XOREQUAL':([138,146,147,153,154,157,158,159,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,205,230,247,263,287,288,289,291,292,293,296,297,298,299,401,424,426,427,428,429,491,495,496,499,500,554,556,567,],[-303,-274,-276,-289,-312,-301,-302,-304,-313,-314,-315,-316,-317,-318,-319,-320,-321,-322,-323,-324,-325,-327,-328,-329,-330,-336,-312,375,-326,-297,-298,-277,-278,-279,-280,-331,-332,-333,-334,-305,-292,-293,-294,-295,-296,-275,-290,-291,-281,-282,-299,-306,-300,]),'TIMESEQUAL':([138,146,147,153,154,157,158,159,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,205,230,247,263,287,288,289,291,292,293,296,297,298,299,401,424,426,427,428,429,491,495,496,499,500,554,556,567,],[-303,-274,-276,-289,-312,-301,-302,-304,-313,-314,-315,-316,-317,-318,-319,-320,-321,-322,-323,-324,-325,-327,-328,-329,-330,-336,-312,376,-326,-297,-298,-277,-278,-279,-280,-331,-332,-333,-334,-305,-292,-293,-294,-295,-296,-275,-290,-291,-281,-282,-299,-306,-300,]),'DIVEQUAL':([138,146,147,153,154,157,158,159,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,205,230,247,263,287,288,289,291,292,293,296,297,298,299,401,424,426,427,428,429,491,495,496,499,500,554,556,567,],[-303,-274,-276,-289,-312,-301,-302,-304,-313,-314,-315,-316,-317,-318,-319,-320,-321,-322,-323,-324,-325,-327,-328,-329,-330,-336,-312,377,-326,-297,-298,-277,-278,-279,-280,-331,-332,-333,-334,-305,-292,-293,-294,-295,-296,-275,-290,-291,-281,-282,-299,-306,-300,]),'MODEQUAL':([138,146,147,153,154,157,158,159,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,205,230,247,263,287,288,289,291,292,293,296,297,298,299,401,424,426,427,428,429,491,495,496,499,500,554,556,567,],[-303,-274,-276,-289,-312,-301,-302,-304,-313,-314,-315,-316,-317,-318,-319,-320,-321,-322,-323,-324,-325,-327,-328,-329,-330,-336,-312,378,-326,-297,-298,-277,-278,-279,-280,-331,-332,-333,-334,-305,-292,-293,-294,-295,-296,-275,-290,-291,-281,-282,-299,-306,-300,]),'PLUSEQUAL':([138,146,147,153,154,157,158,159,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,205,230,247,263,287,288,289,291,292,293,296,297,298,299,401,424,426,427,428,429,491,495,496,499,500,554,556,567,],[-303,-274,-276,-289,-312,-301,-302,-304,-313,-314,-315,-316,-317,-318,-319,-320,-321,-322,-323,-324,-325,-327,-328,-329,-330,-336,-312,379,-326,-297,-298,-277,-278,-279,-280,-331,-332,-333,-334,-305,-292,-293,-294,-295,-296,-275,-290,-291,-281,-282,-299,-306,-300,]),'MINUSEQUAL':([138,146,147,153,154,157,158,159,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,205,230,247,263,287,288,289,291,292,293,296,297,298,299,401,424,426,427,428,429,491,495,496,499,500,554,556,567,],[-303,-274,-276,-289,-312,-301,-302,-304,-313,-314,-315,-316,-317,-318,-319,-320,-321,-322,-323,-324,-325,-327,-328,-329,-330,-336,-312,380,-326,-297,-298,-277,-278,-279,-280,-331,-332,-333,-334,-305,-292,-293,-294,-295,-296,-275,-290,-291,-281,-282,-299,-306,-300,]),'LSHIFTEQUAL':([138,146,147,153,154,157,158,159,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,205,230,247,263,287,288,289,291,292,293,296,297,298,299,401,424,426,427,428,429,491,495,496,499,500,554,556,567,],[-303,-274,-276,-289,-312,-301,-302,-304,-313,-314,-315,-316,-317,-318,-319,-320,-321,-322,-323,-324,-325,-327,-328,-329,-330,-336,-312,381,-326,-297,-298,-277,-278,-279,-280,-331,-332,-333,-334,-305,-292,-293,-294,-295,-296,-275,-290,-291,-281,-282,-299,-306,-300,]),'RSHIFTEQUAL':([138,146,147,153,154,157,158,159,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,205,230,247,263,287,288,289,291,292,293,296,297,298,299,401,424,426,427,428,429,491,495,496,499,500,554,556,567,],[-303,-274,-276,-289,-312,-301,-302,-304,-313,-314,-315,-316,-317,-318,-319,-320,-321,-322,-323,-324,-325,-327,-328,-329,-330,-336,-312,382,-326,-297,-298,-277,-278,-279,-280,-331,-332,-333,-334,-305,-292,-293,-294,-295,-296,-275,-290,-291,-281,-282,-299,-306,-300,]),'ANDEQUAL':([138,146,147,153,154,157,158,159,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,205,230,247,263,287,288,289,291,292,293,296,297,298,299,401,424,426,427,428,429,491,495,496,499,500,554,556,567,],[-303,-274,-276,-289,-312,-301,-302,-304,-313,-314,-315,-316,-317,-318,-319,-320,-321,-322,-323,-324,-325,-327,-328,-329,-330,-336,-312,383,-326,-297,-298,-277,-278,-279,-280,-331,-332,-333,-334,-305,-292,-293,-294,-295,-296,-275,-290,-291,-281,-282,-299,-306,-300,]),'OREQUAL':([138,146,147,153,154,157,158,159,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,205,230,247,263,287,288,289,291,292,293,296,297,298,299,401,424,426,427,428,429,491,495,496,499,500,554,556,567,],[-303,-274,-276,-289,-312,-301,-302,-304,-313,-314,-315,-316,-317,-318,-319,-320,-321,-322,-323,-324,-325,-327,-328,-329,-330,-336,-312,384,-326,-297,-298,-277,-278,-279,-280,-331,-332,-333,-334,-305,-292,-293,-294,-295,-296,-275,-290,-291,-281,-282,-299,-306,-300,]),'ELLIPSIS':([309,],[438,]),} _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 = {'translation_unit_or_empty':([0,],[1,]),'translation_unit':([0,],[2,]),'empty':([0,11,12,20,21,22,25,26,29,33,68,69,70,72,93,94,99,126,134,135,179,180,189,206,213,218,239,253,254,255,318,319,347,354,356,365,367,443,444,450,452,453,465,476,481,492,504,505,519,520,521,523,552,555,563,565,575,577,],[3,65,82,97,97,97,105,97,112,97,82,105,97,65,112,185,97,217,112,185,303,112,316,339,316,353,353,387,303,112,448,112,448,353,353,353,353,112,185,303,303,448,353,353,527,527,303,112,353,353,353,353,353,527,353,353,353,353,]),'external_declaration':([0,2,],[4,63,]),'function_definition':([0,2,],[5,5,]),'declaration':([0,2,11,66,72,126,218,367,],[6,6,67,127,67,220,220,476,]),'pp_directive':([0,2,],[7,7,]),'pppragma_directive':([0,2,122,126,200,201,202,218,239,329,331,354,356,365,465,519,520,521,563,575,577,],[8,8,208,228,208,208,208,228,365,208,208,365,365,228,365,365,365,365,365,365,365,]),'static_assert':([0,2,126,218,239,354,356,365,465,519,520,521,563,575,577,],[10,10,229,229,229,229,229,229,229,229,229,229,229,229,229,]),'id_declarator':([0,2,12,17,25,68,69,81,132,189,191,206,318,461,],[11,11,72,92,109,128,109,92,128,311,128,128,92,128,]),'declaration_specifiers':([0,2,11,66,72,94,126,135,218,309,318,347,367,444,453,],[12,12,68,68,68,189,68,189,68,189,189,189,68,189,189,]),'decl_body':([0,2,11,66,72,126,218,367,],[13,13,13,13,13,13,13,13,]),'direct_id_declarator':([0,2,12,17,19,25,68,69,79,81,132,189,191,206,314,318,447,461,],[18,18,18,18,95,18,18,18,95,18,18,18,18,18,95,18,95,18,]),'pointer':([0,2,12,17,25,68,69,81,111,132,189,191,206,213,318,347,461,],[19,19,79,19,19,79,19,79,193,79,314,79,79,348,447,348,79,]),'type_qualifier':([0,2,11,12,20,21,22,26,29,33,66,68,70,72,93,94,99,113,122,123,124,126,134,135,136,180,181,189,200,201,202,206,210,213,218,235,255,256,290,294,295,300,309,318,319,329,331,347,367,443,444,453,505,506,],[20,20,20,73,20,20,20,20,114,20,20,73,20,20,114,20,20,194,114,114,114,20,114,20,114,114,194,73,114,114,114,337,194,337,20,114,114,194,114,114,114,114,20,20,114,114,114,20,20,114,20,20,114,194,]),'storage_class_specifier':([0,2,11,12,20,21,22,26,33,66,68,70,72,94,99,126,135,189,218,309,318,347,367,444,453,],[21,21,21,74,21,21,21,21,21,21,74,21,21,21,21,21,21,74,21,21,21,21,21,21,21,]),'function_specifier':([0,2,11,12,20,21,22,26,33,66,68,70,72,94,99,126,135,189,218,309,318,347,367,444,453,],[22,22,22,75,22,22,22,22,22,22,75,22,22,22,22,22,22,75,22,22,22,22,22,22,22,]),'type_specifier_no_typeid':([0,2,11,12,25,66,68,69,72,94,122,123,124,126,135,136,189,190,200,201,202,206,210,213,218,235,290,294,295,300,309,318,329,331,347,367,444,453,],[23,23,23,76,23,23,76,23,23,23,23,23,23,23,23,23,76,23,23,23,23,336,23,336,23,23,23,23,23,23,23,23,23,23,23,23,23,23,]),'type_specifier':([0,2,11,25,66,69,72,94,122,123,124,126,135,136,190,200,201,202,210,218,235,290,294,295,300,309,318,329,331,347,367,444,453,],[24,24,24,102,24,102,24,24,209,209,209,24,24,209,102,209,209,209,344,24,209,209,209,209,209,24,24,209,209,24,24,24,24,]),'declaration_specifiers_no_type':([0,2,11,20,21,22,26,33,66,70,72,94,99,126,135,218,309,318,347,367,444,453,],[25,25,69,98,98,98,98,98,69,98,69,190,98,69,190,69,190,190,190,69,190,190,]),'alignment_specifier':([0,2,11,12,20,21,22,26,33,66,68,70,72,94,99,122,123,124,126,135,136,189,200,201,202,206,213,218,235,290,294,295,300,309,318,329,331,347,367,444,453,],[26,26,26,77,26,26,26,26,26,26,77,26,26,26,26,211,211,211,26,26,211,77,211,211,211,338,338,26,211,211,211,211,211,26,26,211,211,26,26,26,26,]),'typedef_name':([0,2,11,25,66,69,72,94,122,123,124,126,135,136,190,200,201,202,210,218,235,290,294,295,300,309,318,329,331,347,367,444,453,],[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,]),'enum_specifier':([0,2,11,25,66,69,72,94,122,123,124,126,135,136,190,200,201,202,210,218,235,290,294,295,300,309,318,329,331,347,367,444,453,],[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,]),'struct_or_union_specifier':([0,2,11,25,66,69,72,94,122,123,124,126,135,136,190,200,201,202,210,218,235,290,294,295,300,309,318,329,331,347,367,444,453,],[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,]),'atomic_specifier':([0,2,11,20,21,22,25,26,33,66,69,70,72,94,99,122,123,124,126,135,136,190,200,201,202,210,218,235,290,294,295,300,309,318,329,331,347,367,444,453,],[33,33,70,99,99,99,104,99,99,70,104,99,70,33,99,104,104,104,70,33,104,104,104,104,104,104,70,104,104,104,104,104,33,33,104,104,33,70,33,33,]),'struct_or_union':([0,2,11,25,66,69,72,94,122,123,124,126,135,136,190,200,201,202,210,218,235,290,294,295,300,309,318,329,331,347,367,444,453,],[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,]),'declaration_list_opt':([11,72,],[64,129,]),'declaration_list':([11,72,],[66,66,]),'init_declarator_list_opt':([12,68,],[78,78,]),'init_declarator_list':([12,68,],[83,83,]),'init_declarator':([12,68,132,191,],[84,84,250,322,]),'declarator':([12,68,132,191,206,461,],[85,85,85,85,342,342,]),'typeid_declarator':([12,68,81,132,191,206,461,],[86,86,131,86,86,86,86,]),'direct_typeid_declarator':([12,68,79,81,132,191,206,461,],[87,87,130,87,87,87,87,87,]),'declaration_specifiers_no_type_opt':([20,21,22,26,33,70,99,],[96,100,101,110,115,115,115,]),'id_init_declarator_list_opt':([25,69,],[103,103,]),'id_init_declarator_list':([25,69,],[106,106,]),'id_init_declarator':([25,69,],[108,108,]),'type_qualifier_list_opt':([29,93,134,180,255,319,443,505,],[111,179,254,305,396,450,504,538,]),'type_qualifier_list':([29,93,122,123,124,134,136,180,200,201,202,235,255,290,294,295,300,319,329,331,443,505,],[113,181,210,210,210,256,210,113,210,210,210,210,113,210,210,210,210,113,210,210,506,113,]),'brace_open':([35,36,64,116,117,120,121,126,129,133,192,218,235,239,354,356,365,388,400,465,469,498,499,519,520,521,526,563,575,577,],[118,122,126,195,196,200,201,126,126,253,253,126,126,126,126,126,126,253,492,126,492,492,492,126,126,126,253,126,126,126,]),'compound_statement':([64,126,129,218,235,239,354,356,365,465,519,520,521,563,575,577,],[125,224,248,224,359,224,224,224,224,224,224,224,224,224,224,224,]),'constant_expression':([91,124,231,328,343,392,462,],[137,215,355,457,463,485,517,]),'unified_string_literal':([91,124,126,133,136,148,149,150,151,179,192,218,231,235,239,244,254,261,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,290,294,305,306,328,343,354,356,358,361,362,363,365,367,373,388,392,396,397,400,450,452,462,465,469,476,494,497,504,519,520,521,522,523,526,538,539,552,558,563,565,575,577,],[138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,402,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,]),'conditional_expression':([91,124,126,133,136,179,192,218,231,235,239,244,254,264,283,284,290,294,305,306,328,343,354,356,358,361,362,363,365,367,373,388,392,396,397,450,452,462,465,476,494,497,504,519,520,521,522,523,526,538,539,552,558,563,565,575,577,],[139,139,246,246,246,246,246,246,139,246,246,246,246,246,246,246,246,246,246,246,139,139,246,246,246,246,246,246,246,246,246,246,139,246,246,246,246,139,246,246,532,246,246,246,246,246,246,246,246,246,246,246,246,246,246,246,246,]),'binary_expression':([91,124,126,133,136,179,192,218,231,235,239,244,254,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,290,294,305,306,328,343,354,356,358,361,362,363,365,367,373,388,392,396,397,450,452,462,465,476,494,497,504,519,520,521,522,523,526,538,539,552,558,563,565,575,577,],[140,140,140,140,140,140,140,140,140,140,140,140,140,140,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,140,140,140,140,140,140,140,140,140,140,140,140,140,140,140,140,140,140,140,140,140,140,140,140,140,140,140,140,140,140,140,140,140,140,140,140,140,140,140,140,140,140,140,]),'cast_expression':([91,124,126,133,136,150,179,192,218,231,235,239,244,254,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,290,294,305,306,328,343,354,356,358,361,362,363,365,367,373,388,392,396,397,400,450,452,462,465,469,476,494,497,504,519,520,521,522,523,526,538,539,552,558,563,565,575,577,],[141,141,141,141,141,292,141,141,141,141,141,141,141,141,141,141,141,141,141,141,141,141,141,141,141,141,141,141,141,141,141,141,141,141,141,141,141,141,141,141,141,141,141,141,141,141,141,141,141,141,141,141,141,141,491,141,141,141,141,491,141,141,141,141,141,141,141,141,141,141,141,141,141,141,141,141,141,141,]),'unary_expression':([91,124,126,133,136,148,149,150,151,179,192,218,231,235,239,244,254,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,290,294,305,306,328,343,354,356,358,361,362,363,365,367,373,388,392,396,397,400,450,452,462,465,469,476,494,497,504,519,520,521,522,523,526,538,539,552,558,563,565,575,577,],[146,146,247,247,247,289,291,146,293,247,247,247,146,247,247,247,247,247,146,146,146,146,146,146,146,146,146,146,146,146,146,146,146,146,146,146,247,247,247,247,247,247,146,146,247,247,247,247,247,247,247,247,247,247,146,247,247,146,247,247,146,247,146,247,146,247,247,247,247,247,247,247,247,247,247,247,247,247,247,247,247,]),'postfix_expression':([91,124,126,133,136,148,149,150,151,179,192,218,231,235,239,244,254,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,290,294,305,306,328,343,354,356,358,361,362,363,365,367,373,388,392,396,397,400,450,452,462,465,469,476,494,497,504,519,520,521,522,523,526,538,539,552,558,563,565,575,577,],[147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,]),'unary_operator':([91,124,126,133,136,148,149,150,151,179,192,218,231,235,239,244,254,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,290,294,305,306,328,343,354,356,358,361,362,363,365,367,373,388,392,396,397,400,450,452,462,465,469,476,494,497,504,519,520,521,522,523,526,538,539,552,558,563,565,575,577,],[150,150,150,150,150,150,150,150,150,150,150,150,150,150,150,150,150,150,150,150,150,150,150,150,150,150,150,150,150,150,150,150,150,150,150,150,150,150,150,150,150,150,150,150,150,150,150,150,150,150,150,150,150,150,150,150,150,150,150,150,150,150,150,150,150,150,150,150,150,150,150,150,150,150,150,150,150,150,150,150,150,]),'primary_expression':([91,124,126,133,136,148,149,150,151,179,192,218,231,235,239,244,254,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,290,294,305,306,328,343,354,356,358,361,362,363,365,367,373,388,392,396,397,400,450,452,462,465,469,476,494,497,504,519,520,521,522,523,526,538,539,552,558,563,565,575,577,],[153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,]),'identifier':([91,94,124,126,133,135,136,148,149,150,151,179,192,218,231,235,239,244,254,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,290,294,305,306,310,328,343,354,356,358,361,362,363,365,367,373,388,392,393,396,397,400,444,450,452,462,465,469,476,494,497,501,504,519,520,521,522,523,526,538,539,552,557,558,563,565,575,577,],[157,188,157,157,157,188,157,157,157,157,157,157,157,157,157,157,157,157,157,157,157,157,157,157,157,157,157,157,157,157,157,157,157,157,157,157,157,157,157,157,157,157,157,157,440,157,157,157,157,157,157,157,157,157,157,157,157,157,486,157,157,157,188,157,157,157,157,157,157,157,157,535,157,157,157,157,157,157,157,157,157,157,568,157,157,157,157,157,]),'constant':([91,124,126,133,136,148,149,150,151,179,192,218,231,235,239,244,254,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,290,294,305,306,328,343,354,356,358,361,362,363,365,367,373,388,392,396,397,400,450,452,462,465,469,476,494,497,504,519,520,521,522,523,526,538,539,552,558,563,565,575,577,],[158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,]),'unified_wstring_literal':([91,124,126,133,136,148,149,150,151,179,192,218,231,235,239,244,254,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,290,294,305,306,328,343,354,356,358,361,362,363,365,367,373,388,392,396,397,400,450,452,462,465,469,476,494,497,504,519,520,521,522,523,526,538,539,552,558,563,565,575,577,],[159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,]),'parameter_type_list':([94,135,318,347,444,453,],[182,257,449,449,507,449,]),'identifier_list_opt':([94,135,444,],[183,258,508,]),'parameter_list':([94,135,318,347,444,453,],[184,184,184,184,184,184,]),'identifier_list':([94,135,444,],[186,186,186,]),'parameter_declaration':([94,135,309,318,347,444,453,],[187,187,439,187,187,187,187,]),'enumerator_list':([118,195,196,],[197,324,325,]),'enumerator':([118,195,196,327,],[198,198,198,456,]),'struct_declaration_list':([122,200,201,],[202,329,331,]),'brace_close':([122,197,200,201,202,216,324,325,329,331,385,481,531,555,],[203,326,330,332,333,351,454,455,458,459,480,525,554,567,]),'struct_declaration':([122,200,201,202,329,331,],[204,204,204,334,334,334,]),'specifier_qualifier_list':([122,123,124,136,200,201,202,235,290,294,295,300,329,331,],[206,213,213,213,206,206,206,213,213,213,213,213,206,206,]),'type_name':([123,124,136,235,290,294,295,300,],[212,214,259,360,430,431,432,433,]),'block_item_list_opt':([126,],[216,]),'block_item_list':([126,],[218,]),'block_item':([126,218,],[219,352,]),'statement':([126,218,239,354,356,365,465,519,520,521,563,575,577,],[221,221,366,366,366,474,366,547,366,366,366,366,366,]),'labeled_statement':([126,218,239,354,356,365,465,519,520,521,563,575,577,],[222,222,222,222,222,222,222,222,222,222,222,222,222,]),'expression_statement':([126,218,239,354,356,365,465,519,520,521,563,575,577,],[223,223,223,223,223,223,223,223,223,223,223,223,223,]),'selection_statement':([126,218,239,354,356,365,465,519,520,521,563,575,577,],[225,225,225,225,225,225,225,225,225,225,225,225,225,]),'iteration_statement':([126,218,239,354,356,365,465,519,520,521,563,575,577,],[226,226,226,226,226,226,226,226,226,226,226,226,226,]),'jump_statement':([126,218,239,354,356,365,465,519,520,521,563,575,577,],[227,227,227,227,227,227,227,227,227,227,227,227,227,]),'expression_opt':([126,218,239,354,356,365,367,465,476,519,520,521,523,552,563,565,575,577,],[233,233,233,233,233,233,475,233,524,233,233,233,551,566,233,574,233,233,]),'expression':([126,136,218,235,239,244,264,283,290,294,354,356,358,362,363,365,367,465,476,519,520,521,522,523,552,558,563,565,575,577,],[236,260,236,260,236,371,403,422,260,260,236,236,467,471,472,236,236,236,236,236,236,236,550,236,236,569,236,236,236,236,]),'assignment_expression':([126,133,136,179,192,218,235,239,244,254,264,283,284,290,294,305,306,354,356,358,361,362,363,365,367,373,388,396,397,450,452,465,476,497,504,519,520,521,522,523,526,538,539,552,558,563,565,575,577,],[245,252,245,304,252,245,245,245,245,304,245,245,425,245,245,436,437,245,245,245,470,245,245,245,245,479,252,489,490,304,304,245,245,533,304,245,245,245,245,245,252,561,562,245,245,245,245,245,245,]),'initializer':([133,192,388,526,],[251,323,482,553,]),'assignment_expression_opt':([179,254,450,452,504,],[301,394,511,513,536,]),'typeid_noparen_declarator':([189,],[312,]),'abstract_declarator_opt':([189,213,],[313,346,]),'direct_typeid_noparen_declarator':([189,314,],[315,441,]),'abstract_declarator':([189,213,318,347,],[317,317,445,445,]),'direct_abstract_declarator':([189,213,314,318,347,348,447,],[321,321,442,321,321,442,442,]),'struct_declarator_list_opt':([206,],[335,]),'struct_declarator_list':([206,],[340,]),'struct_declarator':([206,461,],[341,516,]),'pragmacomp_or_statement':([239,354,356,465,519,520,521,563,575,577,],[364,464,466,518,546,548,549,572,578,579,]),'assignment_operator':([247,],[373,]),'initializer_list_opt':([253,],[385,]),'initializer_list':([253,492,],[386,531,]),'designation_opt':([253,481,492,555,],[388,526,388,526,]),'designation':([253,481,492,555,],[389,389,389,389,]),'designator_list':([253,481,492,555,],[390,390,390,390,]),'designator':([253,390,481,492,555,],[391,484,391,391,391,]),'argument_expression_list':([284,],[423,]),'parameter_type_list_opt':([318,347,453,],[446,446,515,]),'offsetof_member_designator':([501,],[534,]),} _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' -> translation_unit_or_empty","S'",1,None,None,None), ('abstract_declarator_opt -> empty','abstract_declarator_opt',1,'p_abstract_declarator_opt','plyparser.py',43), ('abstract_declarator_opt -> abstract_declarator','abstract_declarator_opt',1,'p_abstract_declarator_opt','plyparser.py',44), ('assignment_expression_opt -> empty','assignment_expression_opt',1,'p_assignment_expression_opt','plyparser.py',43), ('assignment_expression_opt -> assignment_expression','assignment_expression_opt',1,'p_assignment_expression_opt','plyparser.py',44), ('block_item_list_opt -> empty','block_item_list_opt',1,'p_block_item_list_opt','plyparser.py',43), ('block_item_list_opt -> block_item_list','block_item_list_opt',1,'p_block_item_list_opt','plyparser.py',44), ('declaration_list_opt -> empty','declaration_list_opt',1,'p_declaration_list_opt','plyparser.py',43), ('declaration_list_opt -> declaration_list','declaration_list_opt',1,'p_declaration_list_opt','plyparser.py',44), ('declaration_specifiers_no_type_opt -> empty','declaration_specifiers_no_type_opt',1,'p_declaration_specifiers_no_type_opt','plyparser.py',43), ('declaration_specifiers_no_type_opt -> declaration_specifiers_no_type','declaration_specifiers_no_type_opt',1,'p_declaration_specifiers_no_type_opt','plyparser.py',44), ('designation_opt -> empty','designation_opt',1,'p_designation_opt','plyparser.py',43), ('designation_opt -> designation','designation_opt',1,'p_designation_opt','plyparser.py',44), ('expression_opt -> empty','expression_opt',1,'p_expression_opt','plyparser.py',43), ('expression_opt -> expression','expression_opt',1,'p_expression_opt','plyparser.py',44), ('id_init_declarator_list_opt -> empty','id_init_declarator_list_opt',1,'p_id_init_declarator_list_opt','plyparser.py',43), ('id_init_declarator_list_opt -> id_init_declarator_list','id_init_declarator_list_opt',1,'p_id_init_declarator_list_opt','plyparser.py',44), ('identifier_list_opt -> empty','identifier_list_opt',1,'p_identifier_list_opt','plyparser.py',43), ('identifier_list_opt -> identifier_list','identifier_list_opt',1,'p_identifier_list_opt','plyparser.py',44), ('init_declarator_list_opt -> empty','init_declarator_list_opt',1,'p_init_declarator_list_opt','plyparser.py',43), ('init_declarator_list_opt -> init_declarator_list','init_declarator_list_opt',1,'p_init_declarator_list_opt','plyparser.py',44), ('initializer_list_opt -> empty','initializer_list_opt',1,'p_initializer_list_opt','plyparser.py',43), ('initializer_list_opt -> initializer_list','initializer_list_opt',1,'p_initializer_list_opt','plyparser.py',44), ('parameter_type_list_opt -> empty','parameter_type_list_opt',1,'p_parameter_type_list_opt','plyparser.py',43), ('parameter_type_list_opt -> parameter_type_list','parameter_type_list_opt',1,'p_parameter_type_list_opt','plyparser.py',44), ('struct_declarator_list_opt -> empty','struct_declarator_list_opt',1,'p_struct_declarator_list_opt','plyparser.py',43), ('struct_declarator_list_opt -> struct_declarator_list','struct_declarator_list_opt',1,'p_struct_declarator_list_opt','plyparser.py',44), ('type_qualifier_list_opt -> empty','type_qualifier_list_opt',1,'p_type_qualifier_list_opt','plyparser.py',43), ('type_qualifier_list_opt -> type_qualifier_list','type_qualifier_list_opt',1,'p_type_qualifier_list_opt','plyparser.py',44), ('direct_id_declarator -> ID','direct_id_declarator',1,'p_direct_id_declarator_1','plyparser.py',126), ('direct_id_declarator -> LPAREN id_declarator RPAREN','direct_id_declarator',3,'p_direct_id_declarator_2','plyparser.py',126), ('direct_id_declarator -> direct_id_declarator LBRACKET type_qualifier_list_opt assignment_expression_opt RBRACKET','direct_id_declarator',5,'p_direct_id_declarator_3','plyparser.py',126), ('direct_id_declarator -> direct_id_declarator LBRACKET STATIC type_qualifier_list_opt assignment_expression RBRACKET','direct_id_declarator',6,'p_direct_id_declarator_4','plyparser.py',126), ('direct_id_declarator -> direct_id_declarator LBRACKET type_qualifier_list STATIC assignment_expression RBRACKET','direct_id_declarator',6,'p_direct_id_declarator_4','plyparser.py',127), ('direct_id_declarator -> direct_id_declarator LBRACKET type_qualifier_list_opt TIMES RBRACKET','direct_id_declarator',5,'p_direct_id_declarator_5','plyparser.py',126), ('direct_id_declarator -> direct_id_declarator LPAREN parameter_type_list RPAREN','direct_id_declarator',4,'p_direct_id_declarator_6','plyparser.py',126), ('direct_id_declarator -> direct_id_declarator LPAREN identifier_list_opt RPAREN','direct_id_declarator',4,'p_direct_id_declarator_6','plyparser.py',127), ('direct_typeid_declarator -> TYPEID','direct_typeid_declarator',1,'p_direct_typeid_declarator_1','plyparser.py',126), ('direct_typeid_declarator -> LPAREN typeid_declarator RPAREN','direct_typeid_declarator',3,'p_direct_typeid_declarator_2','plyparser.py',126), ('direct_typeid_declarator -> direct_typeid_declarator LBRACKET type_qualifier_list_opt assignment_expression_opt RBRACKET','direct_typeid_declarator',5,'p_direct_typeid_declarator_3','plyparser.py',126), ('direct_typeid_declarator -> direct_typeid_declarator LBRACKET STATIC type_qualifier_list_opt assignment_expression RBRACKET','direct_typeid_declarator',6,'p_direct_typeid_declarator_4','plyparser.py',126), ('direct_typeid_declarator -> direct_typeid_declarator LBRACKET type_qualifier_list STATIC assignment_expression RBRACKET','direct_typeid_declarator',6,'p_direct_typeid_declarator_4','plyparser.py',127), ('direct_typeid_declarator -> direct_typeid_declarator LBRACKET type_qualifier_list_opt TIMES RBRACKET','direct_typeid_declarator',5,'p_direct_typeid_declarator_5','plyparser.py',126), ('direct_typeid_declarator -> direct_typeid_declarator LPAREN parameter_type_list RPAREN','direct_typeid_declarator',4,'p_direct_typeid_declarator_6','plyparser.py',126), ('direct_typeid_declarator -> direct_typeid_declarator LPAREN identifier_list_opt RPAREN','direct_typeid_declarator',4,'p_direct_typeid_declarator_6','plyparser.py',127), ('direct_typeid_noparen_declarator -> TYPEID','direct_typeid_noparen_declarator',1,'p_direct_typeid_noparen_declarator_1','plyparser.py',126), ('direct_typeid_noparen_declarator -> direct_typeid_noparen_declarator LBRACKET type_qualifier_list_opt assignment_expression_opt RBRACKET','direct_typeid_noparen_declarator',5,'p_direct_typeid_noparen_declarator_3','plyparser.py',126), ('direct_typeid_noparen_declarator -> direct_typeid_noparen_declarator LBRACKET STATIC type_qualifier_list_opt assignment_expression RBRACKET','direct_typeid_noparen_declarator',6,'p_direct_typeid_noparen_declarator_4','plyparser.py',126), ('direct_typeid_noparen_declarator -> direct_typeid_noparen_declarator LBRACKET type_qualifier_list STATIC assignment_expression RBRACKET','direct_typeid_noparen_declarator',6,'p_direct_typeid_noparen_declarator_4','plyparser.py',127), ('direct_typeid_noparen_declarator -> direct_typeid_noparen_declarator LBRACKET type_qualifier_list_opt TIMES RBRACKET','direct_typeid_noparen_declarator',5,'p_direct_typeid_noparen_declarator_5','plyparser.py',126), ('direct_typeid_noparen_declarator -> direct_typeid_noparen_declarator LPAREN parameter_type_list RPAREN','direct_typeid_noparen_declarator',4,'p_direct_typeid_noparen_declarator_6','plyparser.py',126), ('direct_typeid_noparen_declarator -> direct_typeid_noparen_declarator LPAREN identifier_list_opt RPAREN','direct_typeid_noparen_declarator',4,'p_direct_typeid_noparen_declarator_6','plyparser.py',127), ('id_declarator -> direct_id_declarator','id_declarator',1,'p_id_declarator_1','plyparser.py',126), ('id_declarator -> pointer direct_id_declarator','id_declarator',2,'p_id_declarator_2','plyparser.py',126), ('typeid_declarator -> direct_typeid_declarator','typeid_declarator',1,'p_typeid_declarator_1','plyparser.py',126), ('typeid_declarator -> pointer direct_typeid_declarator','typeid_declarator',2,'p_typeid_declarator_2','plyparser.py',126), ('typeid_noparen_declarator -> direct_typeid_noparen_declarator','typeid_noparen_declarator',1,'p_typeid_noparen_declarator_1','plyparser.py',126), ('typeid_noparen_declarator -> pointer direct_typeid_noparen_declarator','typeid_noparen_declarator',2,'p_typeid_noparen_declarator_2','plyparser.py',126), ('translation_unit_or_empty -> translation_unit','translation_unit_or_empty',1,'p_translation_unit_or_empty','c_parser.py',509), ('translation_unit_or_empty -> empty','translation_unit_or_empty',1,'p_translation_unit_or_empty','c_parser.py',510), ('translation_unit -> external_declaration','translation_unit',1,'p_translation_unit_1','c_parser.py',518), ('translation_unit -> translation_unit external_declaration','translation_unit',2,'p_translation_unit_2','c_parser.py',524), ('external_declaration -> function_definition','external_declaration',1,'p_external_declaration_1','c_parser.py',534), ('external_declaration -> declaration','external_declaration',1,'p_external_declaration_2','c_parser.py',539), ('external_declaration -> pp_directive','external_declaration',1,'p_external_declaration_3','c_parser.py',544), ('external_declaration -> pppragma_directive','external_declaration',1,'p_external_declaration_3','c_parser.py',545), ('external_declaration -> SEMI','external_declaration',1,'p_external_declaration_4','c_parser.py',550), ('external_declaration -> static_assert','external_declaration',1,'p_external_declaration_5','c_parser.py',555), ('static_assert -> _STATIC_ASSERT LPAREN constant_expression COMMA unified_string_literal RPAREN','static_assert',6,'p_static_assert_declaration','c_parser.py',560), ('static_assert -> _STATIC_ASSERT LPAREN constant_expression RPAREN','static_assert',4,'p_static_assert_declaration','c_parser.py',561), ('pp_directive -> PPHASH','pp_directive',1,'p_pp_directive','c_parser.py',569), ('pppragma_directive -> PPPRAGMA','pppragma_directive',1,'p_pppragma_directive','c_parser.py',575), ('pppragma_directive -> PPPRAGMA PPPRAGMASTR','pppragma_directive',2,'p_pppragma_directive','c_parser.py',576), ('function_definition -> id_declarator declaration_list_opt compound_statement','function_definition',3,'p_function_definition_1','c_parser.py',586), ('function_definition -> declaration_specifiers id_declarator declaration_list_opt compound_statement','function_definition',4,'p_function_definition_2','c_parser.py',604), ('statement -> labeled_statement','statement',1,'p_statement','c_parser.py',619), ('statement -> expression_statement','statement',1,'p_statement','c_parser.py',620), ('statement -> compound_statement','statement',1,'p_statement','c_parser.py',621), ('statement -> selection_statement','statement',1,'p_statement','c_parser.py',622), ('statement -> iteration_statement','statement',1,'p_statement','c_parser.py',623), ('statement -> jump_statement','statement',1,'p_statement','c_parser.py',624), ('statement -> pppragma_directive','statement',1,'p_statement','c_parser.py',625), ('statement -> static_assert','statement',1,'p_statement','c_parser.py',626), ('pragmacomp_or_statement -> pppragma_directive statement','pragmacomp_or_statement',2,'p_pragmacomp_or_statement','c_parser.py',674), ('pragmacomp_or_statement -> statement','pragmacomp_or_statement',1,'p_pragmacomp_or_statement','c_parser.py',675), ('decl_body -> declaration_specifiers init_declarator_list_opt','decl_body',2,'p_decl_body','c_parser.py',694), ('decl_body -> declaration_specifiers_no_type id_init_declarator_list_opt','decl_body',2,'p_decl_body','c_parser.py',695), ('declaration -> decl_body SEMI','declaration',2,'p_declaration','c_parser.py',755), ('declaration_list -> declaration','declaration_list',1,'p_declaration_list','c_parser.py',764), ('declaration_list -> declaration_list declaration','declaration_list',2,'p_declaration_list','c_parser.py',765), ('declaration_specifiers_no_type -> type_qualifier declaration_specifiers_no_type_opt','declaration_specifiers_no_type',2,'p_declaration_specifiers_no_type_1','c_parser.py',775), ('declaration_specifiers_no_type -> storage_class_specifier declaration_specifiers_no_type_opt','declaration_specifiers_no_type',2,'p_declaration_specifiers_no_type_2','c_parser.py',780), ('declaration_specifiers_no_type -> function_specifier declaration_specifiers_no_type_opt','declaration_specifiers_no_type',2,'p_declaration_specifiers_no_type_3','c_parser.py',785), ('declaration_specifiers_no_type -> atomic_specifier declaration_specifiers_no_type_opt','declaration_specifiers_no_type',2,'p_declaration_specifiers_no_type_4','c_parser.py',792), ('declaration_specifiers_no_type -> alignment_specifier declaration_specifiers_no_type_opt','declaration_specifiers_no_type',2,'p_declaration_specifiers_no_type_5','c_parser.py',797), ('declaration_specifiers -> declaration_specifiers type_qualifier','declaration_specifiers',2,'p_declaration_specifiers_1','c_parser.py',802), ('declaration_specifiers -> declaration_specifiers storage_class_specifier','declaration_specifiers',2,'p_declaration_specifiers_2','c_parser.py',807), ('declaration_specifiers -> declaration_specifiers function_specifier','declaration_specifiers',2,'p_declaration_specifiers_3','c_parser.py',812), ('declaration_specifiers -> declaration_specifiers type_specifier_no_typeid','declaration_specifiers',2,'p_declaration_specifiers_4','c_parser.py',817), ('declaration_specifiers -> type_specifier','declaration_specifiers',1,'p_declaration_specifiers_5','c_parser.py',822), ('declaration_specifiers -> declaration_specifiers_no_type type_specifier','declaration_specifiers',2,'p_declaration_specifiers_6','c_parser.py',827), ('declaration_specifiers -> declaration_specifiers alignment_specifier','declaration_specifiers',2,'p_declaration_specifiers_7','c_parser.py',832), ('storage_class_specifier -> AUTO','storage_class_specifier',1,'p_storage_class_specifier','c_parser.py',837), ('storage_class_specifier -> REGISTER','storage_class_specifier',1,'p_storage_class_specifier','c_parser.py',838), ('storage_class_specifier -> STATIC','storage_class_specifier',1,'p_storage_class_specifier','c_parser.py',839), ('storage_class_specifier -> EXTERN','storage_class_specifier',1,'p_storage_class_specifier','c_parser.py',840), ('storage_class_specifier -> TYPEDEF','storage_class_specifier',1,'p_storage_class_specifier','c_parser.py',841), ('storage_class_specifier -> _THREAD_LOCAL','storage_class_specifier',1,'p_storage_class_specifier','c_parser.py',842), ('function_specifier -> INLINE','function_specifier',1,'p_function_specifier','c_parser.py',847), ('function_specifier -> _NORETURN','function_specifier',1,'p_function_specifier','c_parser.py',848), ('type_specifier_no_typeid -> VOID','type_specifier_no_typeid',1,'p_type_specifier_no_typeid','c_parser.py',853), ('type_specifier_no_typeid -> _BOOL','type_specifier_no_typeid',1,'p_type_specifier_no_typeid','c_parser.py',854), ('type_specifier_no_typeid -> CHAR','type_specifier_no_typeid',1,'p_type_specifier_no_typeid','c_parser.py',855), ('type_specifier_no_typeid -> SHORT','type_specifier_no_typeid',1,'p_type_specifier_no_typeid','c_parser.py',856), ('type_specifier_no_typeid -> INT','type_specifier_no_typeid',1,'p_type_specifier_no_typeid','c_parser.py',857), ('type_specifier_no_typeid -> LONG','type_specifier_no_typeid',1,'p_type_specifier_no_typeid','c_parser.py',858), ('type_specifier_no_typeid -> FLOAT','type_specifier_no_typeid',1,'p_type_specifier_no_typeid','c_parser.py',859), ('type_specifier_no_typeid -> DOUBLE','type_specifier_no_typeid',1,'p_type_specifier_no_typeid','c_parser.py',860), ('type_specifier_no_typeid -> _COMPLEX','type_specifier_no_typeid',1,'p_type_specifier_no_typeid','c_parser.py',861), ('type_specifier_no_typeid -> SIGNED','type_specifier_no_typeid',1,'p_type_specifier_no_typeid','c_parser.py',862), ('type_specifier_no_typeid -> UNSIGNED','type_specifier_no_typeid',1,'p_type_specifier_no_typeid','c_parser.py',863), ('type_specifier_no_typeid -> __INT128','type_specifier_no_typeid',1,'p_type_specifier_no_typeid','c_parser.py',864), ('type_specifier -> typedef_name','type_specifier',1,'p_type_specifier','c_parser.py',869), ('type_specifier -> enum_specifier','type_specifier',1,'p_type_specifier','c_parser.py',870), ('type_specifier -> struct_or_union_specifier','type_specifier',1,'p_type_specifier','c_parser.py',871), ('type_specifier -> type_specifier_no_typeid','type_specifier',1,'p_type_specifier','c_parser.py',872), ('type_specifier -> atomic_specifier','type_specifier',1,'p_type_specifier','c_parser.py',873), ('atomic_specifier -> _ATOMIC LPAREN type_name RPAREN','atomic_specifier',4,'p_atomic_specifier','c_parser.py',879), ('type_qualifier -> CONST','type_qualifier',1,'p_type_qualifier','c_parser.py',886), ('type_qualifier -> RESTRICT','type_qualifier',1,'p_type_qualifier','c_parser.py',887), ('type_qualifier -> VOLATILE','type_qualifier',1,'p_type_qualifier','c_parser.py',888), ('type_qualifier -> _ATOMIC','type_qualifier',1,'p_type_qualifier','c_parser.py',889), ('init_declarator_list -> init_declarator','init_declarator_list',1,'p_init_declarator_list','c_parser.py',894), ('init_declarator_list -> init_declarator_list COMMA init_declarator','init_declarator_list',3,'p_init_declarator_list','c_parser.py',895), ('init_declarator -> declarator','init_declarator',1,'p_init_declarator','c_parser.py',903), ('init_declarator -> declarator EQUALS initializer','init_declarator',3,'p_init_declarator','c_parser.py',904), ('id_init_declarator_list -> id_init_declarator','id_init_declarator_list',1,'p_id_init_declarator_list','c_parser.py',909), ('id_init_declarator_list -> id_init_declarator_list COMMA init_declarator','id_init_declarator_list',3,'p_id_init_declarator_list','c_parser.py',910), ('id_init_declarator -> id_declarator','id_init_declarator',1,'p_id_init_declarator','c_parser.py',915), ('id_init_declarator -> id_declarator EQUALS initializer','id_init_declarator',3,'p_id_init_declarator','c_parser.py',916), ('specifier_qualifier_list -> specifier_qualifier_list type_specifier_no_typeid','specifier_qualifier_list',2,'p_specifier_qualifier_list_1','c_parser.py',923), ('specifier_qualifier_list -> specifier_qualifier_list type_qualifier','specifier_qualifier_list',2,'p_specifier_qualifier_list_2','c_parser.py',928), ('specifier_qualifier_list -> type_specifier','specifier_qualifier_list',1,'p_specifier_qualifier_list_3','c_parser.py',933), ('specifier_qualifier_list -> type_qualifier_list type_specifier','specifier_qualifier_list',2,'p_specifier_qualifier_list_4','c_parser.py',938), ('specifier_qualifier_list -> alignment_specifier','specifier_qualifier_list',1,'p_specifier_qualifier_list_5','c_parser.py',943), ('specifier_qualifier_list -> specifier_qualifier_list alignment_specifier','specifier_qualifier_list',2,'p_specifier_qualifier_list_6','c_parser.py',948), ('struct_or_union_specifier -> struct_or_union ID','struct_or_union_specifier',2,'p_struct_or_union_specifier_1','c_parser.py',956), ('struct_or_union_specifier -> struct_or_union TYPEID','struct_or_union_specifier',2,'p_struct_or_union_specifier_1','c_parser.py',957), ('struct_or_union_specifier -> struct_or_union brace_open struct_declaration_list brace_close','struct_or_union_specifier',4,'p_struct_or_union_specifier_2','c_parser.py',967), ('struct_or_union_specifier -> struct_or_union brace_open brace_close','struct_or_union_specifier',3,'p_struct_or_union_specifier_2','c_parser.py',968), ('struct_or_union_specifier -> struct_or_union ID brace_open struct_declaration_list brace_close','struct_or_union_specifier',5,'p_struct_or_union_specifier_3','c_parser.py',985), ('struct_or_union_specifier -> struct_or_union ID brace_open brace_close','struct_or_union_specifier',4,'p_struct_or_union_specifier_3','c_parser.py',986), ('struct_or_union_specifier -> struct_or_union TYPEID brace_open struct_declaration_list brace_close','struct_or_union_specifier',5,'p_struct_or_union_specifier_3','c_parser.py',987), ('struct_or_union_specifier -> struct_or_union TYPEID brace_open brace_close','struct_or_union_specifier',4,'p_struct_or_union_specifier_3','c_parser.py',988), ('struct_or_union -> STRUCT','struct_or_union',1,'p_struct_or_union','c_parser.py',1004), ('struct_or_union -> UNION','struct_or_union',1,'p_struct_or_union','c_parser.py',1005), ('struct_declaration_list -> struct_declaration','struct_declaration_list',1,'p_struct_declaration_list','c_parser.py',1012), ('struct_declaration_list -> struct_declaration_list struct_declaration','struct_declaration_list',2,'p_struct_declaration_list','c_parser.py',1013), ('struct_declaration -> specifier_qualifier_list struct_declarator_list_opt SEMI','struct_declaration',3,'p_struct_declaration_1','c_parser.py',1021), ('struct_declaration -> SEMI','struct_declaration',1,'p_struct_declaration_2','c_parser.py',1059), ('struct_declaration -> pppragma_directive','struct_declaration',1,'p_struct_declaration_3','c_parser.py',1064), ('struct_declarator_list -> struct_declarator','struct_declarator_list',1,'p_struct_declarator_list','c_parser.py',1069), ('struct_declarator_list -> struct_declarator_list COMMA struct_declarator','struct_declarator_list',3,'p_struct_declarator_list','c_parser.py',1070), ('struct_declarator -> declarator','struct_declarator',1,'p_struct_declarator_1','c_parser.py',1078), ('struct_declarator -> declarator COLON constant_expression','struct_declarator',3,'p_struct_declarator_2','c_parser.py',1083), ('struct_declarator -> COLON constant_expression','struct_declarator',2,'p_struct_declarator_2','c_parser.py',1084), ('enum_specifier -> ENUM ID','enum_specifier',2,'p_enum_specifier_1','c_parser.py',1092), ('enum_specifier -> ENUM TYPEID','enum_specifier',2,'p_enum_specifier_1','c_parser.py',1093), ('enum_specifier -> ENUM brace_open enumerator_list brace_close','enum_specifier',4,'p_enum_specifier_2','c_parser.py',1098), ('enum_specifier -> ENUM ID brace_open enumerator_list brace_close','enum_specifier',5,'p_enum_specifier_3','c_parser.py',1103), ('enum_specifier -> ENUM TYPEID brace_open enumerator_list brace_close','enum_specifier',5,'p_enum_specifier_3','c_parser.py',1104), ('enumerator_list -> enumerator','enumerator_list',1,'p_enumerator_list','c_parser.py',1109), ('enumerator_list -> enumerator_list COMMA','enumerator_list',2,'p_enumerator_list','c_parser.py',1110), ('enumerator_list -> enumerator_list COMMA enumerator','enumerator_list',3,'p_enumerator_list','c_parser.py',1111), ('alignment_specifier -> _ALIGNAS LPAREN type_name RPAREN','alignment_specifier',4,'p_alignment_specifier','c_parser.py',1122), ('alignment_specifier -> _ALIGNAS LPAREN constant_expression RPAREN','alignment_specifier',4,'p_alignment_specifier','c_parser.py',1123), ('enumerator -> ID','enumerator',1,'p_enumerator','c_parser.py',1128), ('enumerator -> ID EQUALS constant_expression','enumerator',3,'p_enumerator','c_parser.py',1129), ('declarator -> id_declarator','declarator',1,'p_declarator','c_parser.py',1144), ('declarator -> typeid_declarator','declarator',1,'p_declarator','c_parser.py',1145), ('pointer -> TIMES type_qualifier_list_opt','pointer',2,'p_pointer','c_parser.py',1257), ('pointer -> TIMES type_qualifier_list_opt pointer','pointer',3,'p_pointer','c_parser.py',1258), ('type_qualifier_list -> type_qualifier','type_qualifier_list',1,'p_type_qualifier_list','c_parser.py',1287), ('type_qualifier_list -> type_qualifier_list type_qualifier','type_qualifier_list',2,'p_type_qualifier_list','c_parser.py',1288), ('parameter_type_list -> parameter_list','parameter_type_list',1,'p_parameter_type_list','c_parser.py',1293), ('parameter_type_list -> parameter_list COMMA ELLIPSIS','parameter_type_list',3,'p_parameter_type_list','c_parser.py',1294), ('parameter_list -> parameter_declaration','parameter_list',1,'p_parameter_list','c_parser.py',1302), ('parameter_list -> parameter_list COMMA parameter_declaration','parameter_list',3,'p_parameter_list','c_parser.py',1303), ('parameter_declaration -> declaration_specifiers id_declarator','parameter_declaration',2,'p_parameter_declaration_1','c_parser.py',1322), ('parameter_declaration -> declaration_specifiers typeid_noparen_declarator','parameter_declaration',2,'p_parameter_declaration_1','c_parser.py',1323), ('parameter_declaration -> declaration_specifiers abstract_declarator_opt','parameter_declaration',2,'p_parameter_declaration_2','c_parser.py',1334), ('identifier_list -> identifier','identifier_list',1,'p_identifier_list','c_parser.py',1366), ('identifier_list -> identifier_list COMMA identifier','identifier_list',3,'p_identifier_list','c_parser.py',1367), ('initializer -> assignment_expression','initializer',1,'p_initializer_1','c_parser.py',1376), ('initializer -> brace_open initializer_list_opt brace_close','initializer',3,'p_initializer_2','c_parser.py',1381), ('initializer -> brace_open initializer_list COMMA brace_close','initializer',4,'p_initializer_2','c_parser.py',1382), ('initializer_list -> designation_opt initializer','initializer_list',2,'p_initializer_list','c_parser.py',1390), ('initializer_list -> initializer_list COMMA designation_opt initializer','initializer_list',4,'p_initializer_list','c_parser.py',1391), ('designation -> designator_list EQUALS','designation',2,'p_designation','c_parser.py',1402), ('designator_list -> designator','designator_list',1,'p_designator_list','c_parser.py',1410), ('designator_list -> designator_list designator','designator_list',2,'p_designator_list','c_parser.py',1411), ('designator -> LBRACKET constant_expression RBRACKET','designator',3,'p_designator','c_parser.py',1416), ('designator -> PERIOD identifier','designator',2,'p_designator','c_parser.py',1417), ('type_name -> specifier_qualifier_list abstract_declarator_opt','type_name',2,'p_type_name','c_parser.py',1422), ('abstract_declarator -> pointer','abstract_declarator',1,'p_abstract_declarator_1','c_parser.py',1434), ('abstract_declarator -> pointer direct_abstract_declarator','abstract_declarator',2,'p_abstract_declarator_2','c_parser.py',1442), ('abstract_declarator -> direct_abstract_declarator','abstract_declarator',1,'p_abstract_declarator_3','c_parser.py',1447), ('direct_abstract_declarator -> LPAREN abstract_declarator RPAREN','direct_abstract_declarator',3,'p_direct_abstract_declarator_1','c_parser.py',1457), ('direct_abstract_declarator -> direct_abstract_declarator LBRACKET assignment_expression_opt RBRACKET','direct_abstract_declarator',4,'p_direct_abstract_declarator_2','c_parser.py',1461), ('direct_abstract_declarator -> LBRACKET type_qualifier_list_opt assignment_expression_opt RBRACKET','direct_abstract_declarator',4,'p_direct_abstract_declarator_3','c_parser.py',1472), ('direct_abstract_declarator -> direct_abstract_declarator LBRACKET TIMES RBRACKET','direct_abstract_declarator',4,'p_direct_abstract_declarator_4','c_parser.py',1482), ('direct_abstract_declarator -> LBRACKET TIMES RBRACKET','direct_abstract_declarator',3,'p_direct_abstract_declarator_5','c_parser.py',1493), ('direct_abstract_declarator -> direct_abstract_declarator LPAREN parameter_type_list_opt RPAREN','direct_abstract_declarator',4,'p_direct_abstract_declarator_6','c_parser.py',1502), ('direct_abstract_declarator -> LPAREN parameter_type_list_opt RPAREN','direct_abstract_declarator',3,'p_direct_abstract_declarator_7','c_parser.py',1512), ('block_item -> declaration','block_item',1,'p_block_item','c_parser.py',1523), ('block_item -> statement','block_item',1,'p_block_item','c_parser.py',1524), ('block_item_list -> block_item','block_item_list',1,'p_block_item_list','c_parser.py',1531), ('block_item_list -> block_item_list block_item','block_item_list',2,'p_block_item_list','c_parser.py',1532), ('compound_statement -> brace_open block_item_list_opt brace_close','compound_statement',3,'p_compound_statement_1','c_parser.py',1538), ('labeled_statement -> ID COLON pragmacomp_or_statement','labeled_statement',3,'p_labeled_statement_1','c_parser.py',1544), ('labeled_statement -> CASE constant_expression COLON pragmacomp_or_statement','labeled_statement',4,'p_labeled_statement_2','c_parser.py',1548), ('labeled_statement -> DEFAULT COLON pragmacomp_or_statement','labeled_statement',3,'p_labeled_statement_3','c_parser.py',1552), ('selection_statement -> IF LPAREN expression RPAREN pragmacomp_or_statement','selection_statement',5,'p_selection_statement_1','c_parser.py',1556), ('selection_statement -> IF LPAREN expression RPAREN statement ELSE pragmacomp_or_statement','selection_statement',7,'p_selection_statement_2','c_parser.py',1560), ('selection_statement -> SWITCH LPAREN expression RPAREN pragmacomp_or_statement','selection_statement',5,'p_selection_statement_3','c_parser.py',1564), ('iteration_statement -> WHILE LPAREN expression RPAREN pragmacomp_or_statement','iteration_statement',5,'p_iteration_statement_1','c_parser.py',1569), ('iteration_statement -> DO pragmacomp_or_statement WHILE LPAREN expression RPAREN SEMI','iteration_statement',7,'p_iteration_statement_2','c_parser.py',1573), ('iteration_statement -> FOR LPAREN expression_opt SEMI expression_opt SEMI expression_opt RPAREN pragmacomp_or_statement','iteration_statement',9,'p_iteration_statement_3','c_parser.py',1577), ('iteration_statement -> FOR LPAREN declaration expression_opt SEMI expression_opt RPAREN pragmacomp_or_statement','iteration_statement',8,'p_iteration_statement_4','c_parser.py',1581), ('jump_statement -> GOTO ID SEMI','jump_statement',3,'p_jump_statement_1','c_parser.py',1586), ('jump_statement -> BREAK SEMI','jump_statement',2,'p_jump_statement_2','c_parser.py',1590), ('jump_statement -> CONTINUE SEMI','jump_statement',2,'p_jump_statement_3','c_parser.py',1594), ('jump_statement -> RETURN expression SEMI','jump_statement',3,'p_jump_statement_4','c_parser.py',1598), ('jump_statement -> RETURN SEMI','jump_statement',2,'p_jump_statement_4','c_parser.py',1599), ('expression_statement -> expression_opt SEMI','expression_statement',2,'p_expression_statement','c_parser.py',1604), ('expression -> assignment_expression','expression',1,'p_expression','c_parser.py',1611), ('expression -> expression COMMA assignment_expression','expression',3,'p_expression','c_parser.py',1612), ('assignment_expression -> LPAREN compound_statement RPAREN','assignment_expression',3,'p_parenthesized_compound_expression','c_parser.py',1624), ('typedef_name -> TYPEID','typedef_name',1,'p_typedef_name','c_parser.py',1628), ('assignment_expression -> conditional_expression','assignment_expression',1,'p_assignment_expression','c_parser.py',1632), ('assignment_expression -> unary_expression assignment_operator assignment_expression','assignment_expression',3,'p_assignment_expression','c_parser.py',1633), ('assignment_operator -> EQUALS','assignment_operator',1,'p_assignment_operator','c_parser.py',1646), ('assignment_operator -> XOREQUAL','assignment_operator',1,'p_assignment_operator','c_parser.py',1647), ('assignment_operator -> TIMESEQUAL','assignment_operator',1,'p_assignment_operator','c_parser.py',1648), ('assignment_operator -> DIVEQUAL','assignment_operator',1,'p_assignment_operator','c_parser.py',1649), ('assignment_operator -> MODEQUAL','assignment_operator',1,'p_assignment_operator','c_parser.py',1650), ('assignment_operator -> PLUSEQUAL','assignment_operator',1,'p_assignment_operator','c_parser.py',1651), ('assignment_operator -> MINUSEQUAL','assignment_operator',1,'p_assignment_operator','c_parser.py',1652), ('assignment_operator -> LSHIFTEQUAL','assignment_operator',1,'p_assignment_operator','c_parser.py',1653), ('assignment_operator -> RSHIFTEQUAL','assignment_operator',1,'p_assignment_operator','c_parser.py',1654), ('assignment_operator -> ANDEQUAL','assignment_operator',1,'p_assignment_operator','c_parser.py',1655), ('assignment_operator -> OREQUAL','assignment_operator',1,'p_assignment_operator','c_parser.py',1656), ('constant_expression -> conditional_expression','constant_expression',1,'p_constant_expression','c_parser.py',1661), ('conditional_expression -> binary_expression','conditional_expression',1,'p_conditional_expression','c_parser.py',1665), ('conditional_expression -> binary_expression CONDOP expression COLON conditional_expression','conditional_expression',5,'p_conditional_expression','c_parser.py',1666), ('binary_expression -> cast_expression','binary_expression',1,'p_binary_expression','c_parser.py',1674), ('binary_expression -> binary_expression TIMES binary_expression','binary_expression',3,'p_binary_expression','c_parser.py',1675), ('binary_expression -> binary_expression DIVIDE binary_expression','binary_expression',3,'p_binary_expression','c_parser.py',1676), ('binary_expression -> binary_expression MOD binary_expression','binary_expression',3,'p_binary_expression','c_parser.py',1677), ('binary_expression -> binary_expression PLUS binary_expression','binary_expression',3,'p_binary_expression','c_parser.py',1678), ('binary_expression -> binary_expression MINUS binary_expression','binary_expression',3,'p_binary_expression','c_parser.py',1679), ('binary_expression -> binary_expression RSHIFT binary_expression','binary_expression',3,'p_binary_expression','c_parser.py',1680), ('binary_expression -> binary_expression LSHIFT binary_expression','binary_expression',3,'p_binary_expression','c_parser.py',1681), ('binary_expression -> binary_expression LT binary_expression','binary_expression',3,'p_binary_expression','c_parser.py',1682), ('binary_expression -> binary_expression LE binary_expression','binary_expression',3,'p_binary_expression','c_parser.py',1683), ('binary_expression -> binary_expression GE binary_expression','binary_expression',3,'p_binary_expression','c_parser.py',1684), ('binary_expression -> binary_expression GT binary_expression','binary_expression',3,'p_binary_expression','c_parser.py',1685), ('binary_expression -> binary_expression EQ binary_expression','binary_expression',3,'p_binary_expression','c_parser.py',1686), ('binary_expression -> binary_expression NE binary_expression','binary_expression',3,'p_binary_expression','c_parser.py',1687), ('binary_expression -> binary_expression AND binary_expression','binary_expression',3,'p_binary_expression','c_parser.py',1688), ('binary_expression -> binary_expression OR binary_expression','binary_expression',3,'p_binary_expression','c_parser.py',1689), ('binary_expression -> binary_expression XOR binary_expression','binary_expression',3,'p_binary_expression','c_parser.py',1690), ('binary_expression -> binary_expression LAND binary_expression','binary_expression',3,'p_binary_expression','c_parser.py',1691), ('binary_expression -> binary_expression LOR binary_expression','binary_expression',3,'p_binary_expression','c_parser.py',1692), ('cast_expression -> unary_expression','cast_expression',1,'p_cast_expression_1','c_parser.py',1700), ('cast_expression -> LPAREN type_name RPAREN cast_expression','cast_expression',4,'p_cast_expression_2','c_parser.py',1704), ('unary_expression -> postfix_expression','unary_expression',1,'p_unary_expression_1','c_parser.py',1708), ('unary_expression -> PLUSPLUS unary_expression','unary_expression',2,'p_unary_expression_2','c_parser.py',1712), ('unary_expression -> MINUSMINUS unary_expression','unary_expression',2,'p_unary_expression_2','c_parser.py',1713), ('unary_expression -> unary_operator cast_expression','unary_expression',2,'p_unary_expression_2','c_parser.py',1714), ('unary_expression -> SIZEOF unary_expression','unary_expression',2,'p_unary_expression_3','c_parser.py',1719), ('unary_expression -> SIZEOF LPAREN type_name RPAREN','unary_expression',4,'p_unary_expression_3','c_parser.py',1720), ('unary_expression -> _ALIGNOF LPAREN type_name RPAREN','unary_expression',4,'p_unary_expression_3','c_parser.py',1721), ('unary_operator -> AND','unary_operator',1,'p_unary_operator','c_parser.py',1729), ('unary_operator -> TIMES','unary_operator',1,'p_unary_operator','c_parser.py',1730), ('unary_operator -> PLUS','unary_operator',1,'p_unary_operator','c_parser.py',1731), ('unary_operator -> MINUS','unary_operator',1,'p_unary_operator','c_parser.py',1732), ('unary_operator -> NOT','unary_operator',1,'p_unary_operator','c_parser.py',1733), ('unary_operator -> LNOT','unary_operator',1,'p_unary_operator','c_parser.py',1734), ('postfix_expression -> primary_expression','postfix_expression',1,'p_postfix_expression_1','c_parser.py',1739), ('postfix_expression -> postfix_expression LBRACKET expression RBRACKET','postfix_expression',4,'p_postfix_expression_2','c_parser.py',1743), ('postfix_expression -> postfix_expression LPAREN argument_expression_list RPAREN','postfix_expression',4,'p_postfix_expression_3','c_parser.py',1747), ('postfix_expression -> postfix_expression LPAREN RPAREN','postfix_expression',3,'p_postfix_expression_3','c_parser.py',1748), ('postfix_expression -> postfix_expression PERIOD ID','postfix_expression',3,'p_postfix_expression_4','c_parser.py',1753), ('postfix_expression -> postfix_expression PERIOD TYPEID','postfix_expression',3,'p_postfix_expression_4','c_parser.py',1754), ('postfix_expression -> postfix_expression ARROW ID','postfix_expression',3,'p_postfix_expression_4','c_parser.py',1755), ('postfix_expression -> postfix_expression ARROW TYPEID','postfix_expression',3,'p_postfix_expression_4','c_parser.py',1756), ('postfix_expression -> postfix_expression PLUSPLUS','postfix_expression',2,'p_postfix_expression_5','c_parser.py',1762), ('postfix_expression -> postfix_expression MINUSMINUS','postfix_expression',2,'p_postfix_expression_5','c_parser.py',1763), ('postfix_expression -> LPAREN type_name RPAREN brace_open initializer_list brace_close','postfix_expression',6,'p_postfix_expression_6','c_parser.py',1768), ('postfix_expression -> LPAREN type_name RPAREN brace_open initializer_list COMMA brace_close','postfix_expression',7,'p_postfix_expression_6','c_parser.py',1769), ('primary_expression -> identifier','primary_expression',1,'p_primary_expression_1','c_parser.py',1774), ('primary_expression -> constant','primary_expression',1,'p_primary_expression_2','c_parser.py',1778), ('primary_expression -> unified_string_literal','primary_expression',1,'p_primary_expression_3','c_parser.py',1782), ('primary_expression -> unified_wstring_literal','primary_expression',1,'p_primary_expression_3','c_parser.py',1783), ('primary_expression -> LPAREN expression RPAREN','primary_expression',3,'p_primary_expression_4','c_parser.py',1788), ('primary_expression -> OFFSETOF LPAREN type_name COMMA offsetof_member_designator RPAREN','primary_expression',6,'p_primary_expression_5','c_parser.py',1792), ('offsetof_member_designator -> identifier','offsetof_member_designator',1,'p_offsetof_member_designator','c_parser.py',1800), ('offsetof_member_designator -> offsetof_member_designator PERIOD identifier','offsetof_member_designator',3,'p_offsetof_member_designator','c_parser.py',1801), ('offsetof_member_designator -> offsetof_member_designator LBRACKET expression RBRACKET','offsetof_member_designator',4,'p_offsetof_member_designator','c_parser.py',1802), ('argument_expression_list -> assignment_expression','argument_expression_list',1,'p_argument_expression_list','c_parser.py',1814), ('argument_expression_list -> argument_expression_list COMMA assignment_expression','argument_expression_list',3,'p_argument_expression_list','c_parser.py',1815), ('identifier -> ID','identifier',1,'p_identifier','c_parser.py',1824), ('constant -> INT_CONST_DEC','constant',1,'p_constant_1','c_parser.py',1828), ('constant -> INT_CONST_OCT','constant',1,'p_constant_1','c_parser.py',1829), ('constant -> INT_CONST_HEX','constant',1,'p_constant_1','c_parser.py',1830), ('constant -> INT_CONST_BIN','constant',1,'p_constant_1','c_parser.py',1831), ('constant -> INT_CONST_CHAR','constant',1,'p_constant_1','c_parser.py',1832), ('constant -> FLOAT_CONST','constant',1,'p_constant_2','c_parser.py',1851), ('constant -> HEX_FLOAT_CONST','constant',1,'p_constant_2','c_parser.py',1852), ('constant -> CHAR_CONST','constant',1,'p_constant_3','c_parser.py',1868), ('constant -> WCHAR_CONST','constant',1,'p_constant_3','c_parser.py',1869), ('constant -> U8CHAR_CONST','constant',1,'p_constant_3','c_parser.py',1870), ('constant -> U16CHAR_CONST','constant',1,'p_constant_3','c_parser.py',1871), ('constant -> U32CHAR_CONST','constant',1,'p_constant_3','c_parser.py',1872), ('unified_string_literal -> STRING_LITERAL','unified_string_literal',1,'p_unified_string_literal','c_parser.py',1883), ('unified_string_literal -> unified_string_literal STRING_LITERAL','unified_string_literal',2,'p_unified_string_literal','c_parser.py',1884), ('unified_wstring_literal -> WSTRING_LITERAL','unified_wstring_literal',1,'p_unified_wstring_literal','c_parser.py',1894), ('unified_wstring_literal -> U8STRING_LITERAL','unified_wstring_literal',1,'p_unified_wstring_literal','c_parser.py',1895), ('unified_wstring_literal -> U16STRING_LITERAL','unified_wstring_literal',1,'p_unified_wstring_literal','c_parser.py',1896), ('unified_wstring_literal -> U32STRING_LITERAL','unified_wstring_literal',1,'p_unified_wstring_literal','c_parser.py',1897), ('unified_wstring_literal -> unified_wstring_literal WSTRING_LITERAL','unified_wstring_literal',2,'p_unified_wstring_literal','c_parser.py',1898), ('unified_wstring_literal -> unified_wstring_literal U8STRING_LITERAL','unified_wstring_literal',2,'p_unified_wstring_literal','c_parser.py',1899), ('unified_wstring_literal -> unified_wstring_literal U16STRING_LITERAL','unified_wstring_literal',2,'p_unified_wstring_literal','c_parser.py',1900), ('unified_wstring_literal -> unified_wstring_literal U32STRING_LITERAL','unified_wstring_literal',2,'p_unified_wstring_literal','c_parser.py',1901), ('brace_open -> LBRACE','brace_open',1,'p_brace_open','c_parser.py',1911), ('brace_close -> RBRACE','brace_close',1,'p_brace_close','c_parser.py',1917), ('empty -> <empty>','empty',0,'p_empty','c_parser.py',1923), ]
# -*- coding: utf-8 -*- __all__ = ['StatesSet'] class StatesSet: STATE, CAPTURED = range(2) def __init__(self): self._list = [] self._set = set() def __len__(self): return len(self._list) def __bool__(self): return bool(self._list) def __iter__(self): yield from self._list def __contains__(self, item): return item in self._set def __getitem__(self, item): return self._list[item] def extend(self, items): items = tuple( item for item in items if item[self.STATE] not in self._set) self._list.extend(items) self._set.update( item[self.STATE] for item in items) def clear(self): self._list.clear() self._set.clear()
load("@rules_cc//cc:defs.bzl", "cc_library") # https://docs.bazel.build/versions/master/be/c-cpp.html#cc_library cc_library( name = "cpp-utils", srcs = glob(["src/*.cpp"]), hdrs = glob(["inc/*.h"]), includes = ["inc"], visibility = ["//visibility:public"], deps = [ "@com_github_spdlog//:spdlog", "@com_google_absl//absl/debugging:failure_signal_handler", "@com_google_absl//absl/debugging:stacktrace", "@com_google_absl//absl/debugging:symbolize", "@com_google_absl//absl/synchronization", "@com_google_absl//absl/time", "@com_google_googletest//:gtest_main", ], )
# -*- coding: utf-8 -*- # # Copyright © 2009-2010 Pierre Raybaut # Licensed under the terms of the MIT License # (see spyderlib/__init__.py for details) """ spyderlib.widgets.externalshell =============================== External Shell widget: execute Python script/terminal in a separate process """
#-*- coding: UTF-8 -*- class quick_sort(): a=[] def __init__(self,data): self.a=data[:] def sort(self,left,right): if left!=right: mid=left+int((right-left)/2) self.sort(left,mid) self.sort(mid+1,right) b=[] i=0 for i in range(left,mid+1): b.append(self.a[i]) b.append('zz') i=0 for i in range(mid+1,right+1): b.append(self.a[i]) b.append('zz') i=j=0 k=mid-left+2 for i in range(left,right+1): if b[j]>b[k]: value=b[k] k+=1 else: value=b[j] j+=1 self.a[i]=value return self.a def show(self): print(self.a) class quick_sort_Multidimensional_Data(): a=[] def __init__(self,data): self.a=data[:] def sort(self,left,right): if left!=right: mid=left+int((right-left)/2) self.sort(left,mid) self.sort(mid+1,right) b=[] i=0 for i in range(left,mid+1): b.append(self.a[i]) b.append(['',10]) i=0 for i in range(mid+1,right+1): b.append(self.a[i]) b.append(['',10]) i=j=0 k=mid-left+2 for i in range(left,right+1): if b[j][0]>b[k][0]: value=b[k] k+=1 else: value=b[j] j+=1 self.a[i]=value return self.a def show(self): print(self.a)
# Home work #5. Ternary Operators. String function print("---- Task 1. Work day/Weekend") # Task #1. Input a day of the week number (1-7) to the variable num_of_day. # Using ternary operators, assign the value “Weekend” to the variable day if week number is 6 or 7, otherwise “Work day”. num_of_day = int(input("Please enter week number (1-7): ")) day = "Weekend" if num_of_day == 6 or num_of_day == 7 else "Work day" print(day) print("\n---- Task 2. Lucky number") # Task #2. Input a number to variable n. # Using ternary operators, assign the value "Lucky number" to the variable is_lucky # if the number is divisible by 9, otherwise "Not a lucky number". # Print the result saying whether this number is lucky or not. n = int(float(input("Please enter any number: "))) n1 = (n % 9) print (n1) is_lucky = "Lucky number" if n1 == 0 else "Not a lucky number" print(is_lucky) print("\n---- Task 3. Favorite color") # 3. Create a variable "phrase" and assign the value "My eyes are green too!" to it. # Using input command, ask the user, “What is your favorite color?” # Replace the word “green” in phrase with the user's favorite color and print the result. phrase = "My eyes are green too!" color = input("What is your favorite color? ") print(phrase.replace("green", color)) print ("Version #1") first_name = input("Please enter your first name: ") middle_name = input("Please enter your middle name: ") last_name = input("Please enter your last name: ") maximum = max(len(first_name), len(middle_name), len(last_name)) print(maximum) print(first_name.title().rjust(maximum)) print(middle_name.title().rjust(maximum)) print(last_name.title().rjust(maximum)) print ("\nVersion #2") # name = input("Please enter your first, middle and last name (with spaces). # (If no middle name, put NO. Three words required): ") first, middle, last = name.title().split(" ") print(first, middle, last) m = max(len(first), len(middle), len(last)) print(m) print(first.rjust(m)) print(middle.rjust(m)) print(last.rjust(m)) print("\n---- Task 5. Remove all vowels") # 5. Create the variable s and assign any string value to it. Remove all vowels from the text. # For example, s = “We like Python” --> “W lk Pythn”. s = "It is Easy to Learn and Use Python." print(s) vless = s.replace("a","").replace("e","").replace("i","").replace("o","").replace("u","").replace("y","") print(vless) uvless = vless.replace("A","").replace("E","").replace("I","").replace("O","").replace("U","").replace("Y","") print(uvless) print("\n---- Task 6. Replase a word") # 6. Using the input command, enter a string. Then enter the word to be replaced. # Then enter the replacement word. Output the result. # For example, a user entered the statement "Have a good day", the word "good", the word "nice". # The result should be: "Have a nice day" phrase = input("Please enter a phrase of 2 or more words: ") word_repl = input("What word would you like to be replace in the phrase: ") word_add = input("Now please enter a word to replace with: ") #print(f"I hope you have a" good {time_of_day}") if word_repl.find(" "): # if a user entered the word with space(s) word_repl = word_repl.replace(" ","") # remove space(s) new_phrase = phrase.replace(word_repl, word_add) print(new_phrase) else: new_phrase = phrase.replace(word_repl, word_add) print(new_phrase) print("\n---- Task 7. Remove/Add specified symbols") # 7. Given a String. There are some spaces at the beginning and end of the statement. # Get a string where each word is capitalized, spaces at the beginning of the statement are removed, # and spaces at the end of the statement are replaced with the same number of exclamation marks. # For example, s = " I like summer ". Get "s = "I Like Summer!!!" s = " I like to learn Python " print("*" + s + "*") # * just to see borders st = s.title().strip(" ") cnt = len(s) - len(s.rstrip()) print("\"" + st + "!" * cnt + "\"")
listinha=[] adc=0 op='' while True: adc=int(input("Adicione um valor para a lista: ")) if adc in listinha: print('Valor já contido na lista') else: listinha.append(adc) op=input("Deseja continuar?[S/N]: ").upper() if op in 'NAO': break print(f'você adicionou os valores {listinha}') print(f'{sorted(listinha)} e assim são eles em ordem crescente')
""" Example docstring 1 * A thing. * Another thing. or 1. Item 1. 2. Item 2. 3. Item 3. or - Some. - Thing. - Different. +------------+------------+-----------+ | Header 1 | Header 2 | Header 3 | +============+============+===========+ | body row 1 | column 2 | column 3 | +------------+------------+-----------+ | body row 2 | Cells may span columns.| +------------+------------+-----------+ | body row 3 | Cells may | - Cells | +------------+ span rows. | - contain | | body row 4 | | - blocks. | +------------+------------+-----------+ SIMPLE TABLE: ===== ===== ====== Inputs Output ------------ ------ A B A or B ===== ===== ====== False False False True False True False True True True True True ===== ===== ====== `Docs for this project <http://packages.python.org/an_example_pypi_project/>`_ This is a statement. .. warning:: Never, ever, use this code! .. versionadded:: 0.0.1 It's okay to use this code. """ #import antigravity def foo(a, b): """Does a thing. :param a: 1 :param b: the word 'three' :returns: 1 :rtype: int """ return 1 class bar(object): """ Doesn't do anything """ def __init__(self, baz): """Init example. :param baz: Whatever, man. :returns: None :rtype: None """ pass a = 1
# # PySNMP MIB module CISCO-SNA-LLC-MIB (http://snmplabs.com/pysmi) # ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/CISCO-SNA-LLC-MIB # Produced by pysmi-0.3.4 at Mon Apr 29 17:35:59 2019 # On host DAVWANG4-M-1475 platform Darwin version 18.5.0 by user davwang4 # Using Python version 3.7.3 (default, Mar 27 2019, 09:23:15) # Integer, ObjectIdentifier, OctetString = mibBuilder.importSymbols("ASN1", "Integer", "ObjectIdentifier", "OctetString") NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues") ConstraintsUnion, ConstraintsIntersection, ValueSizeConstraint, SingleValueConstraint, ValueRangeConstraint = mibBuilder.importSymbols("ASN1-REFINEMENT", "ConstraintsUnion", "ConstraintsIntersection", "ValueSizeConstraint", "SingleValueConstraint", "ValueRangeConstraint") ciscoExperiment, = mibBuilder.importSymbols("CISCO-SMI", "ciscoExperiment") ifIndex, = mibBuilder.importSymbols("IF-MIB", "ifIndex") NotificationGroup, ModuleCompliance, ObjectGroup = mibBuilder.importSymbols("SNMPv2-CONF", "NotificationGroup", "ModuleCompliance", "ObjectGroup") Unsigned32, Counter64, MibIdentifier, Bits, iso, Integer32, MibScalar, MibTable, MibTableRow, MibTableColumn, Gauge32, ObjectIdentity, TimeTicks, Counter32, NotificationType, IpAddress, ModuleIdentity = mibBuilder.importSymbols("SNMPv2-SMI", "Unsigned32", "Counter64", "MibIdentifier", "Bits", "iso", "Integer32", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "Gauge32", "ObjectIdentity", "TimeTicks", "Counter32", "NotificationType", "IpAddress", "ModuleIdentity") DisplayString, TimeStamp, MacAddress, TextualConvention, RowStatus = mibBuilder.importSymbols("SNMPv2-TC", "DisplayString", "TimeStamp", "MacAddress", "TextualConvention", "RowStatus") ciscoSnaLlcMIB = ModuleIdentity((1, 3, 6, 1, 4, 1, 9, 10, 8)) ciscoSnaLlcMIB.setRevisions(('1995-05-10 00:00',)) if mibBuilder.loadTexts: ciscoSnaLlcMIB.setLastUpdated('9505100000Z') if mibBuilder.loadTexts: ciscoSnaLlcMIB.setOrganization('cisco IBM engineering Working Group') ciscoSnaLlcMIBObjects = MibIdentifier((1, 3, 6, 1, 4, 1, 9, 10, 8, 1)) llcPortGroup = MibIdentifier((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 1)) llcSapGroup = MibIdentifier((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 2)) llcCcGroup = MibIdentifier((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 3)) llcPortAdminTable = MibTable((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 1, 1), ) if mibBuilder.loadTexts: llcPortAdminTable.setStatus('current') llcPortAdminEntry = MibTableRow((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 1, 1, 1), ).setIndexNames((0, "IF-MIB", "ifIndex"), (0, "CISCO-SNA-LLC-MIB", "llcPortVirtualIndex")) if mibBuilder.loadTexts: llcPortAdminEntry.setStatus('current') llcPortVirtualIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 1, 1, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))) if mibBuilder.loadTexts: llcPortVirtualIndex.setStatus('current') llcPortAdminName = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 1, 1, 1, 2), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(1, 8))).setMaxAccess("readwrite") if mibBuilder.loadTexts: llcPortAdminName.setStatus('current') llcPortAdminMaxSaps = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 1, 1, 1, 3), Gauge32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: llcPortAdminMaxSaps.setStatus('current') llcPortAdminMaxCcs = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 1, 1, 1, 4), Gauge32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: llcPortAdminMaxCcs.setStatus('current') llcPortAdminMaxPDUOctets = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 1, 1, 1, 5), Integer32()).setUnits('octets').setMaxAccess("readwrite") if mibBuilder.loadTexts: llcPortAdminMaxPDUOctets.setStatus('current') llcPortAdminMaxUnackedIPDUsSend = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 1, 1, 1, 6), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 127)).clone(2)).setMaxAccess("readwrite") if mibBuilder.loadTexts: llcPortAdminMaxUnackedIPDUsSend.setStatus('current') llcPortAdminMaxUnackedIPDUsRcv = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 1, 1, 1, 7), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 127)).clone(2)).setMaxAccess("readwrite") if mibBuilder.loadTexts: llcPortAdminMaxUnackedIPDUsRcv.setStatus('current') llcPortAdminMaxRetransmits = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 1, 1, 1, 8), Integer32().clone(2)).setMaxAccess("readwrite") if mibBuilder.loadTexts: llcPortAdminMaxRetransmits.setStatus('current') llcPortAdminAckTimer = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 1, 1, 1, 9), TimeTicks().clone(300)).setMaxAccess("readwrite") if mibBuilder.loadTexts: llcPortAdminAckTimer.setStatus('current') llcPortAdminPbitTimer = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 1, 1, 1, 10), TimeTicks().clone(300)).setMaxAccess("readwrite") if mibBuilder.loadTexts: llcPortAdminPbitTimer.setStatus('current') llcPortAdminRejTimer = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 1, 1, 1, 11), TimeTicks().clone(300)).setMaxAccess("readwrite") if mibBuilder.loadTexts: llcPortAdminRejTimer.setStatus('current') llcPortAdminBusyTimer = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 1, 1, 1, 12), TimeTicks().clone(30000)).setMaxAccess("readwrite") if mibBuilder.loadTexts: llcPortAdminBusyTimer.setStatus('current') llcPortAdminInactTimer = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 1, 1, 1, 13), TimeTicks().clone(3000)).setMaxAccess("readwrite") if mibBuilder.loadTexts: llcPortAdminInactTimer.setStatus('current') llcPortAdminDelayAckCount = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 1, 1, 1, 14), Integer32().clone(1)).setMaxAccess("readwrite") if mibBuilder.loadTexts: llcPortAdminDelayAckCount.setStatus('current') llcPortAdminDelayAckTimer = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 1, 1, 1, 15), TimeTicks().clone(100)).setMaxAccess("readwrite") if mibBuilder.loadTexts: llcPortAdminDelayAckTimer.setStatus('current') llcPortAdminNw = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 1, 1, 1, 16), Integer32().clone(4)).setMaxAccess("readwrite") if mibBuilder.loadTexts: llcPortAdminNw.setStatus('current') llcPortOperTable = MibTable((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 1, 2), ) if mibBuilder.loadTexts: llcPortOperTable.setStatus('current') llcPortOperEntry = MibTableRow((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 1, 2, 1), ).setIndexNames((0, "IF-MIB", "ifIndex"), (0, "CISCO-SNA-LLC-MIB", "llcPortVirtualIndex")) if mibBuilder.loadTexts: llcPortOperEntry.setStatus('current') llcPortOperMacAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 1, 2, 1, 1), MacAddress()).setMaxAccess("readonly") if mibBuilder.loadTexts: llcPortOperMacAddress.setStatus('current') llcPortOperNumSaps = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 1, 2, 1, 2), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: llcPortOperNumSaps.setStatus('current') llcPortOperHiWaterNumSaps = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 1, 2, 1, 3), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: llcPortOperHiWaterNumSaps.setStatus('current') llcPortOperSimRim = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 1, 2, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("no", 1), ("yes", 2))).clone('no')).setMaxAccess("readonly") if mibBuilder.loadTexts: llcPortOperSimRim.setStatus('current') llcPortOperLastModifyTime = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 1, 2, 1, 5), TimeStamp()).setMaxAccess("readonly") if mibBuilder.loadTexts: llcPortOperLastModifyTime.setStatus('current') llcPortStatsTable = MibTable((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 1, 3), ) if mibBuilder.loadTexts: llcPortStatsTable.setStatus('current') llcPortStatsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 1, 3, 1), ).setIndexNames((0, "IF-MIB", "ifIndex"), (0, "CISCO-SNA-LLC-MIB", "llcPortVirtualIndex")) if mibBuilder.loadTexts: llcPortStatsEntry.setStatus('current') llcPortStatsPDUsIn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 1, 3, 1, 1), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: llcPortStatsPDUsIn.setStatus('current') llcPortStatsPDUsOut = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 1, 3, 1, 2), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: llcPortStatsPDUsOut.setStatus('current') llcPortStatsOctetsIn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 1, 3, 1, 3), Counter32()).setUnits('octets').setMaxAccess("readonly") if mibBuilder.loadTexts: llcPortStatsOctetsIn.setStatus('current') llcPortStatsOctetsOut = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 1, 3, 1, 4), Counter32()).setUnits('octets').setMaxAccess("readonly") if mibBuilder.loadTexts: llcPortStatsOctetsOut.setStatus('current') llcPortStatsTESTCommandsIn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 1, 3, 1, 5), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: llcPortStatsTESTCommandsIn.setStatus('current') llcPortStatsTESTResponsesOut = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 1, 3, 1, 6), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: llcPortStatsTESTResponsesOut.setStatus('current') llcPortStatsLocalBusies = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 1, 3, 1, 7), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: llcPortStatsLocalBusies.setStatus('current') llcPortStatsUnknownSaps = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 1, 3, 1, 8), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: llcPortStatsUnknownSaps.setStatus('current') llcSapAdminTable = MibTable((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 2, 1), ) if mibBuilder.loadTexts: llcSapAdminTable.setStatus('current') llcSapAdminEntry = MibTableRow((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 2, 1, 1), ).setIndexNames((0, "IF-MIB", "ifIndex"), (0, "CISCO-SNA-LLC-MIB", "llcPortVirtualIndex"), (0, "CISCO-SNA-LLC-MIB", "llcSapNumber")) if mibBuilder.loadTexts: llcSapAdminEntry.setStatus('current') llcSapNumber = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 2, 1, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 255))) if mibBuilder.loadTexts: llcSapNumber.setStatus('current') llcSapAdminMaxPDUOctets = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 2, 1, 1, 2), Integer32()).setUnits('octets').setMaxAccess("readwrite") if mibBuilder.loadTexts: llcSapAdminMaxPDUOctets.setStatus('current') llcSapAdminMaxUnackedIPDUsSend = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 2, 1, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 127))).setMaxAccess("readwrite") if mibBuilder.loadTexts: llcSapAdminMaxUnackedIPDUsSend.setStatus('current') llcSapAdminMaxUnackedIPDUsRcv = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 2, 1, 1, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 127))).setMaxAccess("readwrite") if mibBuilder.loadTexts: llcSapAdminMaxUnackedIPDUsRcv.setStatus('current') llcSapAdminMaxRetransmits = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 2, 1, 1, 5), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: llcSapAdminMaxRetransmits.setStatus('current') llcSapAdminAckTimer = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 2, 1, 1, 6), TimeTicks()).setMaxAccess("readwrite") if mibBuilder.loadTexts: llcSapAdminAckTimer.setStatus('current') llcSapAdminPbitTimer = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 2, 1, 1, 7), TimeTicks()).setMaxAccess("readwrite") if mibBuilder.loadTexts: llcSapAdminPbitTimer.setStatus('current') llcSapAdminRejTimer = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 2, 1, 1, 8), TimeTicks()).setMaxAccess("readwrite") if mibBuilder.loadTexts: llcSapAdminRejTimer.setStatus('current') llcSapAdminBusyTimer = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 2, 1, 1, 9), TimeTicks()).setMaxAccess("readwrite") if mibBuilder.loadTexts: llcSapAdminBusyTimer.setStatus('current') llcSapAdminInactTimer = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 2, 1, 1, 10), TimeTicks()).setMaxAccess("readwrite") if mibBuilder.loadTexts: llcSapAdminInactTimer.setStatus('current') llcSapAdminDelayAckCount = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 2, 1, 1, 11), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: llcSapAdminDelayAckCount.setStatus('current') llcSapAdminDelayAckTimer = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 2, 1, 1, 12), TimeTicks()).setMaxAccess("readwrite") if mibBuilder.loadTexts: llcSapAdminDelayAckTimer.setStatus('current') llcSapAdminNw = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 2, 1, 1, 13), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: llcSapAdminNw.setStatus('current') llcSapOperTable = MibTable((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 2, 2), ) if mibBuilder.loadTexts: llcSapOperTable.setStatus('current') llcSapOperEntry = MibTableRow((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 2, 2, 1), ).setIndexNames((0, "IF-MIB", "ifIndex"), (0, "CISCO-SNA-LLC-MIB", "llcPortVirtualIndex"), (0, "CISCO-SNA-LLC-MIB", "llcSapNumber")) if mibBuilder.loadTexts: llcSapOperEntry.setStatus('current') llcSapOperStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 2, 2, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("inactive", 1), ("active", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: llcSapOperStatus.setStatus('current') llcSapOperNumCcs = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 2, 2, 1, 2), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: llcSapOperNumCcs.setStatus('current') llcSapOperHiWaterNumCcs = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 2, 2, 1, 3), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: llcSapOperHiWaterNumCcs.setStatus('current') llcSapOperLlc2Support = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 2, 2, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("no", 1), ("yes", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: llcSapOperLlc2Support.setStatus('current') llcSapStatsTable = MibTable((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 2, 3), ) if mibBuilder.loadTexts: llcSapStatsTable.setStatus('current') llcSapStatsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 2, 3, 1), ).setIndexNames((0, "IF-MIB", "ifIndex"), (0, "CISCO-SNA-LLC-MIB", "llcPortVirtualIndex"), (0, "CISCO-SNA-LLC-MIB", "llcSapNumber")) if mibBuilder.loadTexts: llcSapStatsEntry.setStatus('current') llcSapStatsLocalBusies = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 2, 3, 1, 1), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: llcSapStatsLocalBusies.setStatus('current') llcSapStatsRemoteBusies = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 2, 3, 1, 2), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: llcSapStatsRemoteBusies.setStatus('current') llcSapStatsIFramesIn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 2, 3, 1, 3), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: llcSapStatsIFramesIn.setStatus('current') llcSapStatsIFramesOut = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 2, 3, 1, 4), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: llcSapStatsIFramesOut.setStatus('current') llcSapStatsIOctetsIn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 2, 3, 1, 5), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: llcSapStatsIOctetsIn.setStatus('current') llcSapStatsIOctetsOut = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 2, 3, 1, 6), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: llcSapStatsIOctetsOut.setStatus('current') llcSapStatsSFramesIn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 2, 3, 1, 7), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: llcSapStatsSFramesIn.setStatus('current') llcSapStatsSFramesOut = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 2, 3, 1, 8), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: llcSapStatsSFramesOut.setStatus('current') llcSapStatsRetransmitsOut = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 2, 3, 1, 9), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: llcSapStatsRetransmitsOut.setStatus('current') llcSapStatsREJsIn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 2, 3, 1, 10), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: llcSapStatsREJsIn.setStatus('current') llcSapStatsREJsOut = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 2, 3, 1, 11), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: llcSapStatsREJsOut.setStatus('current') llcSapStatsWwCount = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 2, 3, 1, 12), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: llcSapStatsWwCount.setStatus('current') llcSapStatsTESTCommandsIn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 2, 3, 1, 13), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: llcSapStatsTESTCommandsIn.setStatus('current') llcSapStatsTESTCommandsOut = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 2, 3, 1, 14), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: llcSapStatsTESTCommandsOut.setStatus('current') llcSapStatsTESTResponsesIn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 2, 3, 1, 15), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: llcSapStatsTESTResponsesIn.setStatus('current') llcSapStatsTESTResponsesOut = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 2, 3, 1, 16), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: llcSapStatsTESTResponsesOut.setStatus('current') llcSapStatsXIDCommandsIn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 2, 3, 1, 17), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: llcSapStatsXIDCommandsIn.setStatus('current') llcSapStatsXIDCommandsOut = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 2, 3, 1, 18), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: llcSapStatsXIDCommandsOut.setStatus('current') llcSapStatsXIDResponsesIn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 2, 3, 1, 19), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: llcSapStatsXIDResponsesIn.setStatus('current') llcSapStatsXIDResponsesOut = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 2, 3, 1, 20), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: llcSapStatsXIDResponsesOut.setStatus('current') llcSapStatsUIFramesIn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 2, 3, 1, 21), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: llcSapStatsUIFramesIn.setStatus('current') llcSapStatsUIFramesOut = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 2, 3, 1, 22), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: llcSapStatsUIFramesOut.setStatus('current') llcSapStatsUIOctetsIn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 2, 3, 1, 23), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: llcSapStatsUIOctetsIn.setStatus('current') llcSapStatsUIOctetsOut = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 2, 3, 1, 24), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: llcSapStatsUIOctetsOut.setStatus('current') llcSapStatsConnectOk = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 2, 3, 1, 25), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: llcSapStatsConnectOk.setStatus('current') llcSapStatsConnectFail = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 2, 3, 1, 26), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: llcSapStatsConnectFail.setStatus('current') llcSapStatsDisconnect = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 2, 3, 1, 27), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: llcSapStatsDisconnect.setStatus('current') llcSapStatsDisconnectFRMRSend = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 2, 3, 1, 28), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: llcSapStatsDisconnectFRMRSend.setStatus('current') llcSapStatsDisconnectFRMRRcv = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 2, 3, 1, 29), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: llcSapStatsDisconnectFRMRRcv.setStatus('current') llcSapStatsDisconnectTimer = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 2, 3, 1, 30), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: llcSapStatsDisconnectTimer.setStatus('current') llcSapStatsDMsInABM = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 2, 3, 1, 31), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: llcSapStatsDMsInABM.setStatus('current') llcSapStatsSABMEsInABM = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 2, 3, 1, 32), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: llcSapStatsSABMEsInABM.setStatus('current') llcCcAdminTable = MibTable((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 3, 1), ) if mibBuilder.loadTexts: llcCcAdminTable.setStatus('current') llcCcAdminEntry = MibTableRow((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 3, 1, 1), ).setIndexNames((0, "IF-MIB", "ifIndex"), (0, "CISCO-SNA-LLC-MIB", "llcPortVirtualIndex"), (0, "CISCO-SNA-LLC-MIB", "llcSapNumber"), (0, "CISCO-SNA-LLC-MIB", "llcCcRMac"), (0, "CISCO-SNA-LLC-MIB", "llcCcRSap")) if mibBuilder.loadTexts: llcCcAdminEntry.setStatus('current') llcCcRMac = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 3, 1, 1, 1), MacAddress()) if mibBuilder.loadTexts: llcCcRMac.setStatus('current') llcCcRSap = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 3, 1, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 255))) if mibBuilder.loadTexts: llcCcRSap.setStatus('current') llcCcAdminBounce = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 3, 1, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("no", 1), ("yes", 2))).clone('no')).setMaxAccess("readcreate") if mibBuilder.loadTexts: llcCcAdminBounce.setStatus('current') llcCcAdminMaxPDUOctets = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 3, 1, 1, 4), Integer32()).setUnits('octets').setMaxAccess("readcreate") if mibBuilder.loadTexts: llcCcAdminMaxPDUOctets.setStatus('current') llcCcAdminMaxUnackedIPDUsSend = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 3, 1, 1, 5), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 127))).setMaxAccess("readcreate") if mibBuilder.loadTexts: llcCcAdminMaxUnackedIPDUsSend.setStatus('current') llcCcAdminMaxUnackedIPDUsRcv = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 3, 1, 1, 6), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 127))).setMaxAccess("readcreate") if mibBuilder.loadTexts: llcCcAdminMaxUnackedIPDUsRcv.setStatus('current') llcCcAdminMaxRetransmits = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 3, 1, 1, 7), Integer32()).setMaxAccess("readcreate") if mibBuilder.loadTexts: llcCcAdminMaxRetransmits.setStatus('current') llcCcAdminAckTimer = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 3, 1, 1, 8), TimeTicks()).setMaxAccess("readcreate") if mibBuilder.loadTexts: llcCcAdminAckTimer.setStatus('current') llcCcAdminPbitTimer = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 3, 1, 1, 9), TimeTicks()).setMaxAccess("readcreate") if mibBuilder.loadTexts: llcCcAdminPbitTimer.setStatus('current') llcCcAdminRejTimer = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 3, 1, 1, 10), TimeTicks()).setMaxAccess("readcreate") if mibBuilder.loadTexts: llcCcAdminRejTimer.setStatus('current') llcCcAdminBusyTimer = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 3, 1, 1, 11), TimeTicks()).setMaxAccess("readcreate") if mibBuilder.loadTexts: llcCcAdminBusyTimer.setStatus('current') llcCcAdminInactTimer = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 3, 1, 1, 12), TimeTicks()).setMaxAccess("readcreate") if mibBuilder.loadTexts: llcCcAdminInactTimer.setStatus('current') llcCcAdminDelayAckCount = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 3, 1, 1, 13), Integer32()).setMaxAccess("readcreate") if mibBuilder.loadTexts: llcCcAdminDelayAckCount.setStatus('current') llcCcAdminDelayAckTimer = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 3, 1, 1, 14), TimeTicks()).setMaxAccess("readcreate") if mibBuilder.loadTexts: llcCcAdminDelayAckTimer.setStatus('current') llcCcAdminNw = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 3, 1, 1, 15), Integer32()).setMaxAccess("readcreate") if mibBuilder.loadTexts: llcCcAdminNw.setStatus('current') llcCcAdminRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 3, 1, 1, 16), RowStatus()).setMaxAccess("readcreate") if mibBuilder.loadTexts: llcCcAdminRowStatus.setStatus('current') llcCcOperTable = MibTable((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 3, 2), ) if mibBuilder.loadTexts: llcCcOperTable.setStatus('current') llcCcOperEntry = MibTableRow((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 3, 2, 1), ).setIndexNames((0, "IF-MIB", "ifIndex"), (0, "CISCO-SNA-LLC-MIB", "llcPortVirtualIndex"), (0, "CISCO-SNA-LLC-MIB", "llcSapNumber"), (0, "CISCO-SNA-LLC-MIB", "llcCcRMac"), (0, "CISCO-SNA-LLC-MIB", "llcCcRSap")) if mibBuilder.loadTexts: llcCcOperEntry.setStatus('current') llcCcOperState = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 3, 2, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14))).clone(namedValues=NamedValues(("aDM", 1), ("setup", 2), ("normal", 3), ("busy", 4), ("reject", 5), ("await", 6), ("awaitBusy", 7), ("awaitReject", 8), ("dConn", 9), ("reset", 10), ("error", 11), ("conn", 12), ("resetCheck", 13), ("resetWait", 14)))).setMaxAccess("readonly") if mibBuilder.loadTexts: llcCcOperState.setStatus('current') llcCcOperMaxIPDUOctetsSend = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 3, 2, 1, 2), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: llcCcOperMaxIPDUOctetsSend.setStatus('current') llcCcOperMaxIPDUOctetsRcv = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 3, 2, 1, 3), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: llcCcOperMaxIPDUOctetsRcv.setStatus('current') llcCcOperMaxUnackedIPDUsSend = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 3, 2, 1, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 127))).setMaxAccess("readonly") if mibBuilder.loadTexts: llcCcOperMaxUnackedIPDUsSend.setStatus('current') llcCcOperMaxUnackedIPDUsRcv = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 3, 2, 1, 5), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 127))).setMaxAccess("readonly") if mibBuilder.loadTexts: llcCcOperMaxUnackedIPDUsRcv.setStatus('current') llcCcOperMaxRetransmits = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 3, 2, 1, 6), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: llcCcOperMaxRetransmits.setStatus('current') llcCcOperAckTimer = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 3, 2, 1, 7), TimeTicks()).setMaxAccess("readonly") if mibBuilder.loadTexts: llcCcOperAckTimer.setStatus('current') llcCcOperPbitTimer = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 3, 2, 1, 8), TimeTicks()).setMaxAccess("readonly") if mibBuilder.loadTexts: llcCcOperPbitTimer.setStatus('current') llcCcOperRejTimer = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 3, 2, 1, 9), TimeTicks()).setMaxAccess("readonly") if mibBuilder.loadTexts: llcCcOperRejTimer.setStatus('current') llcCcOperBusyTimer = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 3, 2, 1, 10), TimeTicks()).setMaxAccess("readonly") if mibBuilder.loadTexts: llcCcOperBusyTimer.setStatus('current') llcCcOperInactTimer = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 3, 2, 1, 11), TimeTicks()).setMaxAccess("readonly") if mibBuilder.loadTexts: llcCcOperInactTimer.setStatus('current') llcCcOperDelayAckCount = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 3, 2, 1, 12), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: llcCcOperDelayAckCount.setStatus('current') llcCcOperDelayAckTimer = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 3, 2, 1, 13), TimeTicks()).setMaxAccess("readonly") if mibBuilder.loadTexts: llcCcOperDelayAckTimer.setStatus('current') llcCcOperNw = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 3, 2, 1, 14), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: llcCcOperNw.setStatus('current') llcCcOperWw = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 3, 2, 1, 15), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 127))).setMaxAccess("readonly") if mibBuilder.loadTexts: llcCcOperWw.setStatus('current') llcCcOperCreateTime = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 3, 2, 1, 16), TimeStamp()).setMaxAccess("readonly") if mibBuilder.loadTexts: llcCcOperCreateTime.setStatus('current') llcCcOperLastModifyTime = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 3, 2, 1, 17), TimeStamp()).setMaxAccess("readonly") if mibBuilder.loadTexts: llcCcOperLastModifyTime.setStatus('current') llcCcOperLastFailTime = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 3, 2, 1, 18), TimeStamp()).setMaxAccess("readonly") if mibBuilder.loadTexts: llcCcOperLastFailTime.setStatus('current') llcCcOperLastFailCause = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 3, 2, 1, 19), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=NamedValues(("undefined", 1), ("rxFRMR", 2), ("txFRMR", 3), ("discReceived", 4), ("discSent", 5), ("retriesExpired", 6), ("forcedShutdown", 7))).clone('undefined')).setMaxAccess("readonly") if mibBuilder.loadTexts: llcCcOperLastFailCause.setStatus('current') llcCcOperLastFailFRMRInfo = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 3, 2, 1, 20), OctetString().subtype(subtypeSpec=ValueSizeConstraint(3, 3)).setFixedLength(3)).setMaxAccess("readonly") if mibBuilder.loadTexts: llcCcOperLastFailFRMRInfo.setStatus('current') llcCcOperLastWwCause = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 3, 2, 1, 21), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))).clone(namedValues=NamedValues(("neverInvoked", 1), ("lostData", 2), ("macLayerCongestion", 3), ("other", 4)))).setMaxAccess("readonly") if mibBuilder.loadTexts: llcCcOperLastWwCause.setStatus('current') llcCcStatsTable = MibTable((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 3, 3), ) if mibBuilder.loadTexts: llcCcStatsTable.setStatus('current') llcCcStatsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 3, 3, 1), ).setIndexNames((0, "IF-MIB", "ifIndex"), (0, "CISCO-SNA-LLC-MIB", "llcPortVirtualIndex"), (0, "CISCO-SNA-LLC-MIB", "llcSapNumber"), (0, "CISCO-SNA-LLC-MIB", "llcCcRMac"), (0, "CISCO-SNA-LLC-MIB", "llcCcRSap")) if mibBuilder.loadTexts: llcCcStatsEntry.setStatus('current') llcCcStatsLocalBusies = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 3, 3, 1, 1), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: llcCcStatsLocalBusies.setStatus('current') llcCcStatsRemoteBusies = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 3, 3, 1, 2), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: llcCcStatsRemoteBusies.setStatus('current') llcCcStatsIFramesIn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 3, 3, 1, 3), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: llcCcStatsIFramesIn.setStatus('current') llcCcStatsIFramesOut = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 3, 3, 1, 4), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: llcCcStatsIFramesOut.setStatus('current') llcCcStatsIOctetsIn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 3, 3, 1, 5), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: llcCcStatsIOctetsIn.setStatus('current') llcCcStatsIOctetsOut = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 3, 3, 1, 6), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: llcCcStatsIOctetsOut.setStatus('current') llcCcStatsSFramesIn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 3, 3, 1, 7), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: llcCcStatsSFramesIn.setStatus('current') llcCcStatsSFramesOut = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 3, 3, 1, 8), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: llcCcStatsSFramesOut.setStatus('current') llcCcStatsRetransmitsOut = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 3, 3, 1, 9), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: llcCcStatsRetransmitsOut.setStatus('current') llcCcStatsREJsIn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 3, 3, 1, 10), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: llcCcStatsREJsIn.setStatus('current') llcCcStatsREJsOut = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 3, 3, 1, 11), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: llcCcStatsREJsOut.setStatus('current') llcCcStatsWwCount = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 3, 3, 1, 12), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: llcCcStatsWwCount.setStatus('current') snaLlcMIBNotificationPrefix = MibIdentifier((1, 3, 6, 1, 4, 1, 9, 10, 8, 2)) snaLlcMIBNotifications = MibIdentifier((1, 3, 6, 1, 4, 1, 9, 10, 8, 2, 0)) llcCcStatusChange = NotificationType((1, 3, 6, 1, 4, 1, 9, 10, 8, 2, 0, 1)).setObjects(("CISCO-SNA-LLC-MIB", "llcCcOperState"), ("CISCO-SNA-LLC-MIB", "llcCcOperLastFailTime"), ("CISCO-SNA-LLC-MIB", "llcCcOperLastFailCause"), ("CISCO-SNA-LLC-MIB", "llcCcOperLastFailFRMRInfo")) if mibBuilder.loadTexts: llcCcStatusChange.setStatus('current') snaLlcMIBConformance = MibIdentifier((1, 3, 6, 1, 4, 1, 9, 10, 8, 3)) snaLlcMIBCompliances = MibIdentifier((1, 3, 6, 1, 4, 1, 9, 10, 8, 3, 1)) snaLlcMIBGroups = MibIdentifier((1, 3, 6, 1, 4, 1, 9, 10, 8, 3, 2)) llcCoreCompliance = ModuleCompliance((1, 3, 6, 1, 4, 1, 9, 10, 8, 3, 1, 1)).setObjects(("CISCO-SNA-LLC-MIB", "llcCorePortGroup"), ("CISCO-SNA-LLC-MIB", "llcCoreSapGroup"), ("CISCO-SNA-LLC-MIB", "llcCoreCcGroup")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): llcCoreCompliance = llcCoreCompliance.setStatus('current') llcCorePortGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 9, 10, 8, 3, 2, 1)).setObjects(("CISCO-SNA-LLC-MIB", "llcPortAdminName"), ("CISCO-SNA-LLC-MIB", "llcPortAdminMaxSaps"), ("CISCO-SNA-LLC-MIB", "llcPortAdminMaxCcs"), ("CISCO-SNA-LLC-MIB", "llcPortAdminMaxPDUOctets"), ("CISCO-SNA-LLC-MIB", "llcPortAdminMaxUnackedIPDUsSend"), ("CISCO-SNA-LLC-MIB", "llcPortAdminMaxUnackedIPDUsRcv"), ("CISCO-SNA-LLC-MIB", "llcPortAdminMaxRetransmits"), ("CISCO-SNA-LLC-MIB", "llcPortAdminAckTimer"), ("CISCO-SNA-LLC-MIB", "llcPortAdminPbitTimer"), ("CISCO-SNA-LLC-MIB", "llcPortAdminRejTimer"), ("CISCO-SNA-LLC-MIB", "llcPortAdminBusyTimer"), ("CISCO-SNA-LLC-MIB", "llcPortAdminInactTimer"), ("CISCO-SNA-LLC-MIB", "llcPortAdminDelayAckCount"), ("CISCO-SNA-LLC-MIB", "llcPortAdminDelayAckTimer"), ("CISCO-SNA-LLC-MIB", "llcPortAdminNw"), ("CISCO-SNA-LLC-MIB", "llcPortOperMacAddress"), ("CISCO-SNA-LLC-MIB", "llcPortOperNumSaps"), ("CISCO-SNA-LLC-MIB", "llcPortOperHiWaterNumSaps"), ("CISCO-SNA-LLC-MIB", "llcPortOperSimRim"), ("CISCO-SNA-LLC-MIB", "llcPortOperLastModifyTime"), ("CISCO-SNA-LLC-MIB", "llcPortStatsPDUsIn"), ("CISCO-SNA-LLC-MIB", "llcPortStatsPDUsOut"), ("CISCO-SNA-LLC-MIB", "llcPortStatsOctetsIn"), ("CISCO-SNA-LLC-MIB", "llcPortStatsOctetsOut"), ("CISCO-SNA-LLC-MIB", "llcPortStatsTESTCommandsIn"), ("CISCO-SNA-LLC-MIB", "llcPortStatsTESTResponsesOut"), ("CISCO-SNA-LLC-MIB", "llcPortStatsLocalBusies"), ("CISCO-SNA-LLC-MIB", "llcPortStatsUnknownSaps")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): llcCorePortGroup = llcCorePortGroup.setStatus('current') llcCoreSapGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 9, 10, 8, 3, 2, 2)).setObjects(("CISCO-SNA-LLC-MIB", "llcSapAdminMaxPDUOctets"), ("CISCO-SNA-LLC-MIB", "llcSapAdminMaxUnackedIPDUsSend"), ("CISCO-SNA-LLC-MIB", "llcSapAdminMaxUnackedIPDUsRcv"), ("CISCO-SNA-LLC-MIB", "llcSapAdminMaxRetransmits"), ("CISCO-SNA-LLC-MIB", "llcSapAdminAckTimer"), ("CISCO-SNA-LLC-MIB", "llcSapAdminPbitTimer"), ("CISCO-SNA-LLC-MIB", "llcSapAdminRejTimer"), ("CISCO-SNA-LLC-MIB", "llcSapAdminBusyTimer"), ("CISCO-SNA-LLC-MIB", "llcSapAdminInactTimer"), ("CISCO-SNA-LLC-MIB", "llcSapAdminDelayAckCount"), ("CISCO-SNA-LLC-MIB", "llcSapAdminDelayAckTimer"), ("CISCO-SNA-LLC-MIB", "llcSapAdminNw"), ("CISCO-SNA-LLC-MIB", "llcSapOperStatus"), ("CISCO-SNA-LLC-MIB", "llcSapOperNumCcs"), ("CISCO-SNA-LLC-MIB", "llcSapOperHiWaterNumCcs"), ("CISCO-SNA-LLC-MIB", "llcSapOperLlc2Support"), ("CISCO-SNA-LLC-MIB", "llcSapStatsLocalBusies"), ("CISCO-SNA-LLC-MIB", "llcSapStatsRemoteBusies"), ("CISCO-SNA-LLC-MIB", "llcSapStatsIFramesIn"), ("CISCO-SNA-LLC-MIB", "llcSapStatsIFramesOut"), ("CISCO-SNA-LLC-MIB", "llcSapStatsIOctetsIn"), ("CISCO-SNA-LLC-MIB", "llcSapStatsIOctetsOut"), ("CISCO-SNA-LLC-MIB", "llcSapStatsSFramesIn"), ("CISCO-SNA-LLC-MIB", "llcSapStatsSFramesOut"), ("CISCO-SNA-LLC-MIB", "llcSapStatsRetransmitsOut"), ("CISCO-SNA-LLC-MIB", "llcSapStatsREJsIn"), ("CISCO-SNA-LLC-MIB", "llcSapStatsREJsOut"), ("CISCO-SNA-LLC-MIB", "llcSapStatsWwCount"), ("CISCO-SNA-LLC-MIB", "llcSapStatsTESTCommandsIn"), ("CISCO-SNA-LLC-MIB", "llcSapStatsTESTCommandsOut"), ("CISCO-SNA-LLC-MIB", "llcSapStatsTESTResponsesIn"), ("CISCO-SNA-LLC-MIB", "llcSapStatsTESTResponsesOut"), ("CISCO-SNA-LLC-MIB", "llcSapStatsXIDCommandsIn"), ("CISCO-SNA-LLC-MIB", "llcSapStatsXIDCommandsOut"), ("CISCO-SNA-LLC-MIB", "llcSapStatsXIDResponsesIn"), ("CISCO-SNA-LLC-MIB", "llcSapStatsXIDResponsesOut"), ("CISCO-SNA-LLC-MIB", "llcSapStatsUIFramesIn"), ("CISCO-SNA-LLC-MIB", "llcSapStatsUIFramesOut"), ("CISCO-SNA-LLC-MIB", "llcSapStatsUIOctetsIn"), ("CISCO-SNA-LLC-MIB", "llcSapStatsUIOctetsOut"), ("CISCO-SNA-LLC-MIB", "llcSapStatsConnectOk"), ("CISCO-SNA-LLC-MIB", "llcSapStatsConnectFail"), ("CISCO-SNA-LLC-MIB", "llcSapStatsDisconnect"), ("CISCO-SNA-LLC-MIB", "llcSapStatsDisconnectFRMRSend"), ("CISCO-SNA-LLC-MIB", "llcSapStatsDisconnectFRMRRcv"), ("CISCO-SNA-LLC-MIB", "llcSapStatsDisconnectTimer"), ("CISCO-SNA-LLC-MIB", "llcSapStatsDMsInABM"), ("CISCO-SNA-LLC-MIB", "llcSapStatsSABMEsInABM")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): llcCoreSapGroup = llcCoreSapGroup.setStatus('current') llcCoreCcGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 9, 10, 8, 3, 2, 3)).setObjects(("CISCO-SNA-LLC-MIB", "llcCcAdminBounce"), ("CISCO-SNA-LLC-MIB", "llcCcAdminMaxPDUOctets"), ("CISCO-SNA-LLC-MIB", "llcCcAdminMaxUnackedIPDUsSend"), ("CISCO-SNA-LLC-MIB", "llcCcAdminMaxUnackedIPDUsRcv"), ("CISCO-SNA-LLC-MIB", "llcCcAdminMaxRetransmits"), ("CISCO-SNA-LLC-MIB", "llcCcAdminAckTimer"), ("CISCO-SNA-LLC-MIB", "llcCcAdminPbitTimer"), ("CISCO-SNA-LLC-MIB", "llcCcAdminRejTimer"), ("CISCO-SNA-LLC-MIB", "llcCcAdminBusyTimer"), ("CISCO-SNA-LLC-MIB", "llcCcAdminInactTimer"), ("CISCO-SNA-LLC-MIB", "llcCcAdminDelayAckCount"), ("CISCO-SNA-LLC-MIB", "llcCcAdminDelayAckTimer"), ("CISCO-SNA-LLC-MIB", "llcCcAdminNw"), ("CISCO-SNA-LLC-MIB", "llcCcAdminRowStatus"), ("CISCO-SNA-LLC-MIB", "llcCcOperState"), ("CISCO-SNA-LLC-MIB", "llcCcOperMaxIPDUOctetsSend"), ("CISCO-SNA-LLC-MIB", "llcCcOperMaxIPDUOctetsRcv"), ("CISCO-SNA-LLC-MIB", "llcCcOperMaxUnackedIPDUsSend"), ("CISCO-SNA-LLC-MIB", "llcCcOperMaxUnackedIPDUsRcv"), ("CISCO-SNA-LLC-MIB", "llcCcOperMaxRetransmits"), ("CISCO-SNA-LLC-MIB", "llcCcOperAckTimer"), ("CISCO-SNA-LLC-MIB", "llcCcOperPbitTimer"), ("CISCO-SNA-LLC-MIB", "llcCcOperRejTimer"), ("CISCO-SNA-LLC-MIB", "llcCcOperBusyTimer"), ("CISCO-SNA-LLC-MIB", "llcCcOperInactTimer"), ("CISCO-SNA-LLC-MIB", "llcCcOperDelayAckCount"), ("CISCO-SNA-LLC-MIB", "llcCcOperDelayAckTimer"), ("CISCO-SNA-LLC-MIB", "llcCcOperNw"), ("CISCO-SNA-LLC-MIB", "llcCcOperWw"), ("CISCO-SNA-LLC-MIB", "llcCcOperCreateTime"), ("CISCO-SNA-LLC-MIB", "llcCcOperLastModifyTime"), ("CISCO-SNA-LLC-MIB", "llcCcOperLastFailTime"), ("CISCO-SNA-LLC-MIB", "llcCcOperLastFailCause"), ("CISCO-SNA-LLC-MIB", "llcCcOperLastFailFRMRInfo"), ("CISCO-SNA-LLC-MIB", "llcCcOperLastWwCause"), ("CISCO-SNA-LLC-MIB", "llcCcStatsLocalBusies"), ("CISCO-SNA-LLC-MIB", "llcCcStatsRemoteBusies"), ("CISCO-SNA-LLC-MIB", "llcCcStatsIFramesIn"), ("CISCO-SNA-LLC-MIB", "llcCcStatsIFramesOut"), ("CISCO-SNA-LLC-MIB", "llcCcStatsIOctetsIn"), ("CISCO-SNA-LLC-MIB", "llcCcStatsIOctetsOut"), ("CISCO-SNA-LLC-MIB", "llcCcStatsSFramesIn"), ("CISCO-SNA-LLC-MIB", "llcCcStatsSFramesOut"), ("CISCO-SNA-LLC-MIB", "llcCcStatsRetransmitsOut"), ("CISCO-SNA-LLC-MIB", "llcCcStatsREJsIn"), ("CISCO-SNA-LLC-MIB", "llcCcStatsREJsOut"), ("CISCO-SNA-LLC-MIB", "llcCcStatsWwCount")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): llcCoreCcGroup = llcCoreCcGroup.setStatus('current') mibBuilder.exportSymbols("CISCO-SNA-LLC-MIB", llcSapAdminEntry=llcSapAdminEntry, llcSapOperStatus=llcSapOperStatus, llcPortStatsOctetsOut=llcPortStatsOctetsOut, llcCcStatsWwCount=llcCcStatsWwCount, llcCcAdminRejTimer=llcCcAdminRejTimer, llcPortAdminMaxUnackedIPDUsSend=llcPortAdminMaxUnackedIPDUsSend, llcSapOperLlc2Support=llcSapOperLlc2Support, llcCcRSap=llcCcRSap, llcSapStatsDisconnectTimer=llcSapStatsDisconnectTimer, llcCcOperTable=llcCcOperTable, llcCcOperAckTimer=llcCcOperAckTimer, llcCcOperWw=llcCcOperWw, snaLlcMIBCompliances=snaLlcMIBCompliances, llcCcOperLastModifyTime=llcCcOperLastModifyTime, llcSapAdminDelayAckCount=llcSapAdminDelayAckCount, llcCcAdminNw=llcCcAdminNw, llcSapAdminMaxPDUOctets=llcSapAdminMaxPDUOctets, llcCoreCcGroup=llcCoreCcGroup, llcSapStatsTESTCommandsOut=llcSapStatsTESTCommandsOut, llcCcOperMaxUnackedIPDUsSend=llcCcOperMaxUnackedIPDUsSend, llcCcOperLastWwCause=llcCcOperLastWwCause, llcPortAdminTable=llcPortAdminTable, llcPortAdminMaxRetransmits=llcPortAdminMaxRetransmits, llcSapStatsDisconnectFRMRRcv=llcSapStatsDisconnectFRMRRcv, llcCcOperEntry=llcCcOperEntry, llcCcStatsREJsOut=llcCcStatsREJsOut, llcPortGroup=llcPortGroup, llcPortAdminMaxPDUOctets=llcPortAdminMaxPDUOctets, llcSapAdminBusyTimer=llcSapAdminBusyTimer, llcSapStatsXIDCommandsIn=llcSapStatsXIDCommandsIn, snaLlcMIBNotifications=snaLlcMIBNotifications, llcCcAdminRowStatus=llcCcAdminRowStatus, llcCcStatsTable=llcCcStatsTable, llcCcOperMaxIPDUOctetsRcv=llcCcOperMaxIPDUOctetsRcv, llcSapStatsIFramesOut=llcSapStatsIFramesOut, llcSapOperNumCcs=llcSapOperNumCcs, llcPortVirtualIndex=llcPortVirtualIndex, llcPortOperMacAddress=llcPortOperMacAddress, llcPortOperLastModifyTime=llcPortOperLastModifyTime, llcCcStatsIFramesOut=llcCcStatsIFramesOut, llcSapStatsDMsInABM=llcSapStatsDMsInABM, llcCcRMac=llcCcRMac, llcCcOperDelayAckCount=llcCcOperDelayAckCount, llcPortStatsEntry=llcPortStatsEntry, llcPortStatsPDUsOut=llcPortStatsPDUsOut, llcSapStatsLocalBusies=llcSapStatsLocalBusies, llcCcStatsLocalBusies=llcCcStatsLocalBusies, llcCcAdminMaxPDUOctets=llcCcAdminMaxPDUOctets, llcSapStatsDisconnectFRMRSend=llcSapStatsDisconnectFRMRSend, llcCcAdminBounce=llcCcAdminBounce, llcCcOperLastFailCause=llcCcOperLastFailCause, llcSapStatsSABMEsInABM=llcSapStatsSABMEsInABM, llcSapGroup=llcSapGroup, llcSapStatsSFramesOut=llcSapStatsSFramesOut, llcCcOperLastFailFRMRInfo=llcCcOperLastFailFRMRInfo, llcPortAdminMaxUnackedIPDUsRcv=llcPortAdminMaxUnackedIPDUsRcv, llcPortOperTable=llcPortOperTable, llcCcStatsREJsIn=llcCcStatsREJsIn, llcSapStatsConnectOk=llcSapStatsConnectOk, llcSapStatsUIOctetsIn=llcSapStatsUIOctetsIn, llcPortAdminPbitTimer=llcPortAdminPbitTimer, llcSapAdminMaxUnackedIPDUsSend=llcSapAdminMaxUnackedIPDUsSend, llcSapAdminNw=llcSapAdminNw, llcSapStatsTESTResponsesIn=llcSapStatsTESTResponsesIn, llcPortAdminName=llcPortAdminName, llcPortAdminEntry=llcPortAdminEntry, llcSapOperEntry=llcSapOperEntry, llcPortOperHiWaterNumSaps=llcPortOperHiWaterNumSaps, llcCcGroup=llcCcGroup, llcSapStatsRemoteBusies=llcSapStatsRemoteBusies, llcCcAdminTable=llcCcAdminTable, llcCcStatsSFramesOut=llcCcStatsSFramesOut, llcCcOperMaxRetransmits=llcCcOperMaxRetransmits, llcCcAdminPbitTimer=llcCcAdminPbitTimer, llcCcAdminAckTimer=llcCcAdminAckTimer, snaLlcMIBNotificationPrefix=snaLlcMIBNotificationPrefix, snaLlcMIBGroups=snaLlcMIBGroups, llcCcOperCreateTime=llcCcOperCreateTime, llcSapAdminPbitTimer=llcSapAdminPbitTimer, llcCcAdminMaxUnackedIPDUsSend=llcCcAdminMaxUnackedIPDUsSend, llcCcOperNw=llcCcOperNw, llcCcOperLastFailTime=llcCcOperLastFailTime, llcCcStatsRetransmitsOut=llcCcStatsRetransmitsOut, llcSapNumber=llcSapNumber, llcCcAdminEntry=llcCcAdminEntry, llcCcOperMaxIPDUOctetsSend=llcCcOperMaxIPDUOctetsSend, llcCoreSapGroup=llcCoreSapGroup, llcSapStatsREJsIn=llcSapStatsREJsIn, llcCcStatsIOctetsOut=llcCcStatsIOctetsOut, llcSapStatsUIOctetsOut=llcSapStatsUIOctetsOut, llcSapStatsIOctetsOut=llcSapStatsIOctetsOut, llcSapAdminAckTimer=llcSapAdminAckTimer, llcPortAdminInactTimer=llcPortAdminInactTimer, llcPortStatsTESTCommandsIn=llcPortStatsTESTCommandsIn, llcCcOperDelayAckTimer=llcCcOperDelayAckTimer, llcSapAdminRejTimer=llcSapAdminRejTimer, llcCcOperPbitTimer=llcCcOperPbitTimer, llcPortAdminMaxSaps=llcPortAdminMaxSaps, llcSapStatsXIDResponsesIn=llcSapStatsXIDResponsesIn, llcPortStatsLocalBusies=llcPortStatsLocalBusies, llcSapOperTable=llcSapOperTable, llcSapAdminMaxUnackedIPDUsRcv=llcSapAdminMaxUnackedIPDUsRcv, llcSapStatsIFramesIn=llcSapStatsIFramesIn, llcPortStatsPDUsIn=llcPortStatsPDUsIn, llcSapStatsUIFramesIn=llcSapStatsUIFramesIn, llcCcStatusChange=llcCcStatusChange, llcPortStatsTable=llcPortStatsTable, llcCcOperMaxUnackedIPDUsRcv=llcCcOperMaxUnackedIPDUsRcv, llcSapStatsIOctetsIn=llcSapStatsIOctetsIn, llcSapStatsWwCount=llcSapStatsWwCount, llcSapOperHiWaterNumCcs=llcSapOperHiWaterNumCcs, llcCcAdminDelayAckCount=llcCcAdminDelayAckCount, llcSapAdminTable=llcSapAdminTable, llcSapStatsTESTCommandsIn=llcSapStatsTESTCommandsIn, llcPortOperNumSaps=llcPortOperNumSaps, llcSapStatsXIDResponsesOut=llcSapStatsXIDResponsesOut, llcSapStatsTESTResponsesOut=llcSapStatsTESTResponsesOut, ciscoSnaLlcMIBObjects=ciscoSnaLlcMIBObjects, llcPortStatsUnknownSaps=llcPortStatsUnknownSaps, llcSapStatsSFramesIn=llcSapStatsSFramesIn, llcSapStatsTable=llcSapStatsTable, llcSapStatsREJsOut=llcSapStatsREJsOut, llcCcStatsIFramesIn=llcCcStatsIFramesIn, llcCoreCompliance=llcCoreCompliance, llcSapStatsRetransmitsOut=llcSapStatsRetransmitsOut, llcCcOperBusyTimer=llcCcOperBusyTimer, llcSapStatsXIDCommandsOut=llcSapStatsXIDCommandsOut, llcCcAdminMaxUnackedIPDUsRcv=llcCcAdminMaxUnackedIPDUsRcv, llcPortAdminRejTimer=llcPortAdminRejTimer, llcPortStatsOctetsIn=llcPortStatsOctetsIn, snaLlcMIBConformance=snaLlcMIBConformance, llcCcStatsSFramesIn=llcCcStatsSFramesIn, llcPortAdminAckTimer=llcPortAdminAckTimer, llcSapAdminDelayAckTimer=llcSapAdminDelayAckTimer, llcCcAdminBusyTimer=llcCcAdminBusyTimer, llcCcAdminInactTimer=llcCcAdminInactTimer, llcCcOperRejTimer=llcCcOperRejTimer, ciscoSnaLlcMIB=ciscoSnaLlcMIB, llcSapStatsEntry=llcSapStatsEntry, llcCcStatsEntry=llcCcStatsEntry, llcSapStatsConnectFail=llcSapStatsConnectFail, llcPortAdminDelayAckTimer=llcPortAdminDelayAckTimer, llcPortAdminNw=llcPortAdminNw, llcSapAdminInactTimer=llcSapAdminInactTimer, llcPortOperSimRim=llcPortOperSimRim, llcSapStatsDisconnect=llcSapStatsDisconnect, llcCcStatsIOctetsIn=llcCcStatsIOctetsIn, llcPortAdminDelayAckCount=llcPortAdminDelayAckCount, PYSNMP_MODULE_ID=ciscoSnaLlcMIB, llcPortAdminMaxCcs=llcPortAdminMaxCcs, llcPortStatsTESTResponsesOut=llcPortStatsTESTResponsesOut, llcCcOperState=llcCcOperState, llcCcOperInactTimer=llcCcOperInactTimer, llcSapStatsUIFramesOut=llcSapStatsUIFramesOut, llcSapAdminMaxRetransmits=llcSapAdminMaxRetransmits, llcCcAdminMaxRetransmits=llcCcAdminMaxRetransmits, llcCorePortGroup=llcCorePortGroup, llcCcStatsRemoteBusies=llcCcStatsRemoteBusies, llcCcAdminDelayAckTimer=llcCcAdminDelayAckTimer, llcPortOperEntry=llcPortOperEntry, llcPortAdminBusyTimer=llcPortAdminBusyTimer)
OUR_APP_NAME = 'Demo' SECTION_NAME = 'Manufacturer' SECTION_ITEMS = 'Products'
SSID1 = 'ap1' PASSWORD1 = 'pw1' SSID2 = 'ap2' PASSWORD2 = 'pw2' MQTT_PORT = '1883' MQTT_USER = 'useri' MQTT_PASSWORD = 'salari' MQTT_SERVER = 'ip' WEBREPL_PASSWORD = "pw" CLIENT_ID = "ESP32-aurinkopaneeli" DHCP_NAME = "ESP32-aurinkopaneeli" TOPIC_ERRORS = 'errors/home/esp32' TOPIC_TEMP = 'koti/ulko/aurinkopaneeli/lampo' TOPIC_HUMIDITY = 'koti/ulko/aurinkopaneeli/kosteus' TOPIC_PRESSURE = 'koti/ulko/aurinkopaneeli/paine' TOPIC_BATTERY_VOLTAGE = 'koti/ulko/aurinkopaneeli/jannite' NTPSERVER = 'pool.ntp.org' BATTERY_ADC_PIN = 32 SOLARPANEL_ADC_PIN = 34 STEPPER1_PIN1 = 12 STEPPER1_PIN2 = 13 STEPPER1_PIN3 = 14 STEPPER1_PIN4 = 15 STEPPER1_DELAY = 2 MICROSWITCH_PIN = 23 I2C_SCL_PIN = 22 I2C_SDA_PIN = 21 SECONDARY_ACTIVATION_PIN = 18
n=int(input()) a=[] for i in range(0,n): ele=int(input()) a.append(ele) print(list(set(a))) lower=int(input()) upper=int(input()) b=[x for x in range(lower,upper+1) if ( int(x**0.5))**2==x and sum(list(map(int,str(x))))<10 ] a=[(x,x**2)for x in range(lower,upper+1)] print(b) n=int(input()) m=int(input()) a=[] b=[] for c in range(0,n): ele=int(input()) a.append(ele) for c in range(0,m): ele=int(input()) b.append(ele) print(list(set(a)&set(b))) n=int(input()) a=[] b=[] c=[] for i in range(1,n+1): x=int(input()) a.append(x) if(x%2==0): b.append(x) else: c.append(x) a.sort() print(a[n-1]) for i in range(0,len(b)): print(b[i],sep=" ",end=" ") n= int (input()) sieve=set(range(2,n+1)) while sieve: prime=min(sieve) print(prime,end="\t") sieve=sieve-set(range(prime,n+1,prime)) print() n=int(input()) for i in range(n,0,-1): print((n-i)*''+i*'*') n=int(input()) for i in range(1,n+1): for j in range(1,n+1): if(i==j): print(1,sep=" ",end=" ") else: print(0,sep=" ",end=" ") print() n=int(input()) for j in range(1,n+1): a=[] for i in range(1,j+1): print(i,sep=" ",end=" ") if(i<j): print("+",sep=" ",end=" ") a.append(i) print("=",sum(a)) n=int(input()) count=0 while(n>0): count=count+1 n=n//10 print(count) n=int(input()) temp=n rev=0 while(n>0): dig=n%10 rev=rev*10+dig n=n//10 if(temp==rev): print("YES") n=int(input()) temp=str(n) a=temp+temp b=temp+temp+temp print(n+int(a)+int(b)) n=int(input()) a=[] for i in range(1,n+1): a.append(i) print(sum(a)) A=int(input()) B=int(input()) C=int(input()) d=[] d.append(A) d.append(B) d.append(C) for i in range(0,3): for j in range(0,3): for k in range(0,3): if(i!=j & j!=k & k!=i): print(d[i],d[j],d[k])
def add(x, y): return x+y result = add(1, 2) print(f"This is the sum: , {result}")
ld,lm,ly = map(int,input().split()) dd,dm,dy = map(int,input().split()) if ly< dy: print('0') elif ly > dy: print('10000') elif lm > dm: print(500*(lm-dm)) elif lm < dm: print('0') elif ld > dd: print(15*(ld-dd)) else: print('0')
""" Functions to sort variants """ CHROMOSOMES = ('1', '2', '3', '4', '5', '6', '7', '8', '9', '10', '11', '12', '13', '14', '15', '16', '17', '18', '19', '20', '21', '22', 'X', 'Y', 'MT') # Maps chromosomes to integers CHROMOSOME_INTEGERS = {chrom: i+1 for i, chrom in enumerate(CHROMOSOMES)} def sort_variants(variants): """ Sort variants """ variant_chromosomes = [] for variant in variants: chrom_int = CHROMOSOME_INTEGERS.get(variant['chrom']) variant_chromosomes.append((chrom_int, variant['start'], variant)) variant_chromosomes.sort(key=lambda x: (x[0], x[1])) sorted_variants = [variant[2] for variant in variant_chromosomes] return sorted_variants
""" Functions of the `sample_project.calculator.calc` module. """ def check_power_of_2(value: int) -> bool: """ Returns `True` if `value` is power of 2 else `False`. See code explanation in [StackOverflow ](https://stackoverflow.com/questions/57025836). """ return (value != 0) and (not value & (value - 1))
{ "targets": [ { "target_name": "pm", "sources": [ "src/pm.cpp", "src/pm.h" ], 'conditions': [ ['OS=="win"', { 'sources': [ "src/pm_win.cpp" ] } ], ['OS=="mac"', { 'sources': [ "src/pm_mac.cpp" ] } ], ['OS=="linux"', { "conditions" : [ ["target_arch=='ia32'", { 'include_dirs+': [ '/usr/include/dbus-1.0/', '/usr/include/glib-2.0/', '/usr/lib/i386-linux-gnu/glib-2.0/include/', '/usr/lib/i386-linux-gnu/dbus-1.0/include/' ] } ], ["target_arch=='x64'", { 'include_dirs+': [ '/usr/include/dbus-1.0/', '/usr/include/glib-2.0/', '/usr/lib/x86_64-linux-gnu/glib-2.0/include/', '/usr/lib/x86_64-linux-gnu/dbus-1.0/include/' ], } ] ], 'sources': [ "src/pm_linux.cpp" ], 'link_settings': { 'libraries': [ '-ldbus-glib-1' ] } } ] ] } ] }
index_template = ( lambda: """from pantam import Pantam pantam = Pantam(debug=True) app = pantam.build() """ ) action_template = lambda class_name: """from pantam import PlainTextResponse class {class_name}: def fetch_all(self, request): \"\"\"Fetch all items\"\"\" return PlainTextResponse("Pantam: {class_name} -> fetch_all()") def fetch_single(self, request): \"\"\"Fetch single item\"\"\" uid = request.path_params["id"] return PlainTextResponse("Pantam: {class_name} -> fetch_single()") def create(self, request): \"\"\"Create an item\"\"\" return PlainTextResponse("Pantam: {class_name} -> create()") def update(self, request): \"\"\"Update an item\"\"\" uid = request.path_params["id"] return PlainTextResponse("Pantam: {class_name} -> update()") def delete(self, request): \"\"\"Delete single item\"\"\" uid = request.path_params["id"] return PlainTextResponse("Pantam: {class_name} -> delete()") """.format( class_name=class_name )
# coding: utf-8 # input N = int(input()) a = list(map(int, input().split())) b = list(map(int, input().split())) # solve(TLE) """ flag = 1 for i in range(N): for j in range(N): if (flag == 1): num = a[i] + b[j] flag = 0 else: num = num ^ (a[i] + b[j]) print(num) """ """ Don't use double for """
def perfect_array(length): return ' '.join(['1']*length) def main(): t = int(input()) for _ in range(t): length = int(input()) print(perfect_array(length)) main()
def _toolchain_configure_impl(repository_ctx): tool_path = "" if repository_ctx.attr.tool_path: tool_path = repository_ctx.attr.tool_path elif repository_ctx.which("databricks"): tool_path = repository_ctx.which("databricks") config_file = "" if repository_ctx.attr.config_file: config_file = repository_ctx.attr.config_file elif "DATABRICKS_CONFIG_FILE" in repository_ctx.os.environ: config_file = repository_ctx.os.environ["DATABRICKS_CONFIG_FILE"] elif "HOME" in repository_ctx.os.environ: config_file = repository_ctx.os.environ["HOME"] + "/.databrickscfg" else: config_file = "~/.databrickscfg" tool_target = "@rules_databricks//databricks:cli" jq_tool_target = "@jq//file:file" repository_ctx.template( "BUILD.bazel", Label("@rules_databricks//databricks/toolchain:BUILD.bazel.tpl"), { "%{CONFIG_FILE}": "%s" % config_file, "%{JQ_TOOL_TARGET}": "%s" % jq_tool_target, "%{TOOL_PATH}": "%s" % tool_path, "%{TOOL_TARGET}": tool_target, }, False, ) # Repository rule to generate a databricks_toolchain target toolchain_configure = repository_rule( implementation = _toolchain_configure_impl, attrs = { "config_file": attr.string( mandatory = False, doc = """A configured path to the Databricks configuration file. If databricks_config_file is not specified, the value of the DATABRICKS_CONFIG_FILE environment variable will be used. DATABRICKS_CONFIG_FILE is not defined, the default set for the databricks tool (typically, the home directory) will be used.""", ), "tool_path": attr.string( mandatory = False, doc = """The full path to the databricks binary. If not specified, it will be searched for in the path. If not available, running commands that require databricks (e.g., incremental load) will fail.""", ), }, environ = [ "PATH", ], )
# Copyright 2019 VMware, Inc. # SPDX-License-Identifier: BSD-2-Clause # Package initialisation for Doctor. # Mightn't be necessary to declare __all__ at time of writing because it lists # everything. __all__ = ['comment_block.py', 'comment_line.py', 'doc_markdown.py', 'doctor_class.py', 'getter.py', 'main.py', 'markdown.py', 'parser.py']
def hello(s): print("Hello, %s!!!" % s) hello('world') hello('python') hello('Sasha')
#!/usr/bin/env python # -*- coding: utf-8 -*- def score(str_in): garbage = False cnt = 1 out = 0 stack = [] garbage_cnt = 0 skip = False for i in str_in: if skip: skip = False continue if i == '!': skip = True continue if garbage and i == '>': garbage = False if garbage: garbage_cnt += 1 continue if i == '<' and not garbage: garbage = True if i == '{': stack.append(cnt) cnt += 1 elif i == '}': popped = stack.pop() out += popped cnt -= 1 return out, garbage_cnt if __name__ == '__main__': with open('score.txt') as f: test_lines = f.readlines() for line in test_lines: test_input, expected_output = line.split('\\') expected = int(expected_output) assert score(test_input)[0] == expected, 'String:{}\tExpected:{}\tActual:{}'.format(test_input[0], expected, score(test_input)) with open('input.txt') as f: line = f.readline().strip() print(score(line))
FILL_WORDS = ['zur', 'der', 'des'] BOOK_TYPES = ['Buch', 'Foliant', 'Libre', 'Werk', 'Almanach', 'Atlas', 'Sammlung'] THEME = ['innere Ebenen', 'Fakten', 'Reise', 'Mischung', 'Vernichtung', 'Begründung', 'Evocation', 'Transmutation', 'Karten', 'Divination', 'Conjuration', 'Ichiban'] OF_SOMETHING = ['Otter', 'Huhn', 'Hasen', 'Bodenbrüter', 'Untote', 'Dämonen', 'Einwohner niederer Sphären', 'Engel', 'Einwohner höherer Sphären', 'Orks', 'Goblins', 'Menschen', 'Bringer des Todes'] AUTHOR = ['Rendor Malak', 'Alri Gernobol', 'Lufri Wendenburg', 'Makalak Bos', 'Ugdaran Gruug']