content stringlengths 7 1.05M | fixed_cases stringlengths 1 1.28M |
|---|---|
"""
Implement an algorithm to find the kth to last element of a singly linked list.
1->3->5->7->9->0
"""
class Node:
def __init__(self, data, next_elem=None):
self.data = data
self.next_elem = next_elem
data = Node(1, Node(3, Node(5, Node(7, Node(9, Node(0))))))
curr = data
while curr is not None:
print(curr.data, end=', ')
curr = curr.next_elem
print()
def get_kth_to_end(head, k):
runner = head
for i in range(0, k):
if runner.next_elem:
runner = runner.next_elem
curr = head
while runner:
if not runner.next_elem:
return curr.data
runner = runner.next_elem
curr = curr.next_elem
return None
print(get_kth_to_end(data, 5))
| """
Implement an algorithm to find the kth to last element of a singly linked list.
1->3->5->7->9->0
"""
class Node:
def __init__(self, data, next_elem=None):
self.data = data
self.next_elem = next_elem
data = node(1, node(3, node(5, node(7, node(9, node(0))))))
curr = data
while curr is not None:
print(curr.data, end=', ')
curr = curr.next_elem
print()
def get_kth_to_end(head, k):
runner = head
for i in range(0, k):
if runner.next_elem:
runner = runner.next_elem
curr = head
while runner:
if not runner.next_elem:
return curr.data
runner = runner.next_elem
curr = curr.next_elem
return None
print(get_kth_to_end(data, 5)) |
def tram(m, n):
alfabet = "ABCDEFGHIJKLMNOPQRSTUVW"[:m]
przystanki = (alfabet + alfabet[1:-1][::-1]) * 2 * n
rozklad = ""
while przystanki:
curr = przystanki[n - 1]
#print(przystanki[:m * 2], " -- >", curr)
rozklad += curr
przystanki = popall(przystanki[n:], curr)
return rozklad
def popall(slowo, x):
ret = " "
for lit in slowo:
if lit != x and lit != ret[-1]:
ret += lit
ret = ret[1:]
if len(ret) == 1:
ret = ret * len(slowo)
return ret
| def tram(m, n):
alfabet = 'ABCDEFGHIJKLMNOPQRSTUVW'[:m]
przystanki = (alfabet + alfabet[1:-1][::-1]) * 2 * n
rozklad = ''
while przystanki:
curr = przystanki[n - 1]
rozklad += curr
przystanki = popall(przystanki[n:], curr)
return rozklad
def popall(slowo, x):
ret = ' '
for lit in slowo:
if lit != x and lit != ret[-1]:
ret += lit
ret = ret[1:]
if len(ret) == 1:
ret = ret * len(slowo)
return ret |
# Path for log. Make sure the files (if present, otherwise the containing directory) are writable by the user that will be running the daemon.
logPath = '/var/log/carillon/carillon.log'
logDebug = False
# Note, you can monitor the log in real time with tail -f [logPath]
# MIDI info
midiPort = 20 #Find with aplaymidi -l
midiHWPort = 'hw:1' #Find with amidi -l
midiPath = "/path/to/midifiles"
# See README.md for details on how to provide MIDI files to be added to the chime program.
# Silent hours: do not send any MIDI between these hours (exclusive). For no silent hours, use False.
silentHours = (22,7)
# The first minute (:00) of the first silent hour is allowed to sound, so any pre-hour chimes aren't left w/o strikes.
# The range can cross a midnight (e.g. 22,7) or not (e.g. 0,7 or 1,7).
# For more fine-grained control over silent times, duplicate midi files and set them to trigger at specific times.
strikingDelay = 3 #Seconds between hourly strokes | log_path = '/var/log/carillon/carillon.log'
log_debug = False
midi_port = 20
midi_hw_port = 'hw:1'
midi_path = '/path/to/midifiles'
silent_hours = (22, 7)
striking_delay = 3 |
DATA = ''
MODEL_INIT = '$(pwd)/model_init'
MODEL_TRUE = '$(pwd)/model_true'
PRECOND = ''
SPECFEM_DATA = '$(pwd)/specfem2d/DATA'
SPECFEM_BIN = '$(pwd)/../../../specfem2d/bin'
| data = ''
model_init = '$(pwd)/model_init'
model_true = '$(pwd)/model_true'
precond = ''
specfem_data = '$(pwd)/specfem2d/DATA'
specfem_bin = '$(pwd)/../../../specfem2d/bin' |
def example():
return [1721, 979, 366, 299, 675, 1456]
def input_data():
with open( "input.txt" ) as fl:
nums = [ int(i) for i in fl.readlines() ]
return nums
def find_it(nums):
for idx in range(len(nums)):
for idy in range(len(nums))[idx+1:]:
if (nums[idx] + nums[idy] == 2020):
print("found it!")
print(nums[idx],",", nums[idy])
print(nums[idx] * nums[idy])
return nums[idx] * nums[idy]
def test_example():
assert find_it(example()) == 514579
find_it(input_data())
print ("script done")
| def example():
return [1721, 979, 366, 299, 675, 1456]
def input_data():
with open('input.txt') as fl:
nums = [int(i) for i in fl.readlines()]
return nums
def find_it(nums):
for idx in range(len(nums)):
for idy in range(len(nums))[idx + 1:]:
if nums[idx] + nums[idy] == 2020:
print('found it!')
print(nums[idx], ',', nums[idy])
print(nums[idx] * nums[idy])
return nums[idx] * nums[idy]
def test_example():
assert find_it(example()) == 514579
find_it(input_data())
print('script done') |
# This is for the perso that i yearn
# i shall do a petty iterator
# it shall has a for cicle
# Dictionary
name = {
"Mayra":"love",
"Alejandra":"faith and hope",
"Arauz":" all my life",
"Mejia":"the best in civil engeenering"
}
# for Cicle
for maam in name:
print(f"She is {maam} and for me is {name[maam]}")
| name = {'Mayra': 'love', 'Alejandra': 'faith and hope', 'Arauz': ' all my life', 'Mejia': 'the best in civil engeenering'}
for maam in name:
print(f'She is {maam} and for me is {name[maam]}') |
#!/usr/bin/env python
'''The Goal of this script is to place the data in a
python dictionary of unique results.'''
# To accomplish this parsing we need a XML file that can be
# parsed so do scan your localhost using this command
# nmap -oX test 127.0.0.1
| """The Goal of this script is to place the data in a
python dictionary of unique results.""" |
"""
Write a function that takes in a string of lowercase English-alphabet letters
and returns the index of the string's first non-repeating character.
The first non-repeating character is the first character in a string that
occurs only once.
If the input string doesn't have any non-repeating characters, your function
should return -1.
Example:
input
string = "abcdcaf"
output
1 // the first non-repeating char is 'b' and is at the [1] index
two ideas come to mind:
1. look at each char in order and see if it exists in hashmap
if it does, remove that char from list.
if not, than you've found a duplicate
'a': 2
'b': 1
'c': 2
'd': 1
'f': 1
algorithm:
look at each char in string one at a Time checking if it exists in the dictionary
if yes, increment value of Key
if not, intialize key with value of 1.
and initialize key in indexOfChar dictionary with current index.
then I want to gather all the keys into a list
then look at each key in dictionary if it has a value greater than 1 move on.
the first character you check that has a value of 1 is the first character that does not repeat.
"""
def first_non_repeating_char(string):
times_seen = {}
index_of_char = {}
# look at each char in string one at a Time checking if it exists in the dictionary
for index in range(len(string)):
char = string[index]
if times_seen.get(char, False):
# if yes, increment value of Key times_seen[char]
times_seen[char] += 1
else:
# if not, intialize key with value of 1.
times_seen[char] = 1
# and initialize key in indexOfChar dictionary with current index.
index_of_char[char] = index
list_of_keys = times_seen.keys()
# then I want to gather all the keys into a list
# then look at each key in dictionary if it has a value greater than 1 move on.
for key in list_of_keys:
if times_seen.get(key, False) == 1:
return index_of_char[key]
# the first character you check that has a value of 1 is the first character that does not repeat.
return -1
"""
solution code from org via steph:
# O(n) time | O(1) space - where n is the length of the input string.
# The constant space is because the input string only has lowercase
# English-alphabet letters; thus, our hash table will never have more
# than 26 character frequencies.
def firstNonRepeatingCharacter(string):
characterFrequencies = {}
for character in string:
characterFrequencies[character] = characterFrequencies.get(character, 0) + 1
for idx in range(len(string)):
character = string[idx]
if characterFrequencies[character] == 1:
return idx
return -1
"""
| """
Write a function that takes in a string of lowercase English-alphabet letters
and returns the index of the string's first non-repeating character.
The first non-repeating character is the first character in a string that
occurs only once.
If the input string doesn't have any non-repeating characters, your function
should return -1.
Example:
input
string = "abcdcaf"
output
1 // the first non-repeating char is 'b' and is at the [1] index
two ideas come to mind:
1. look at each char in order and see if it exists in hashmap
if it does, remove that char from list.
if not, than you've found a duplicate
'a': 2
'b': 1
'c': 2
'd': 1
'f': 1
algorithm:
look at each char in string one at a Time checking if it exists in the dictionary
if yes, increment value of Key
if not, intialize key with value of 1.
and initialize key in indexOfChar dictionary with current index.
then I want to gather all the keys into a list
then look at each key in dictionary if it has a value greater than 1 move on.
the first character you check that has a value of 1 is the first character that does not repeat.
"""
def first_non_repeating_char(string):
times_seen = {}
index_of_char = {}
for index in range(len(string)):
char = string[index]
if times_seen.get(char, False):
times_seen[char] += 1
else:
times_seen[char] = 1
index_of_char[char] = index
list_of_keys = times_seen.keys()
for key in list_of_keys:
if times_seen.get(key, False) == 1:
return index_of_char[key]
return -1
'\nsolution code from org via steph:\n\n# O(n) time | O(1) space - where n is the length of the input string. \n# The constant space is because the input string only has lowercase\n# English-alphabet letters; thus, our hash table will never have more\n# than 26 character frequencies.\n\ndef firstNonRepeatingCharacter(string):\n characterFrequencies = {}\n\t\n\tfor character in string:\n\t\tcharacterFrequencies[character] = characterFrequencies.get(character, 0) + 1\n\t\t\n\tfor idx in range(len(string)):\n\t\tcharacter = string[idx]\n\t\tif characterFrequencies[character] == 1:\n\t\t\treturn idx\n\t\t\n return -1\n\n' |
"""
HPC Base image
Contents:
FFTW version 3.3.8
HDF5 version 1.10.6
Mellanox OFED version 5.0-2.1.8.0
NVIDIA HPC SDK version 20.7
OpenMPI version 4.0.4
Python 2 and 3 (upstream)
"""
# pylint: disable=invalid-name, undefined-variable, used-before-assignment
# The NVIDIA HPC SDK End-User License Agreement must be accepted.
# https://docs.nvidia.com/hpc-sdk/eula
nvhpc_eula=False
if USERARG.get('nvhpc_eula_accept', False):
nvhpc_eula=True
else:
raise RuntimeError('NVIDIA HPC SDK EULA not accepted. To accept, use "--userarg nvhpc_eula_accept=yes"\nSee NVIDIA HPC SDK EULA at https://docs.nvidia.com/hpc-sdk/eula')
# Choose between either Ubuntu 18.04 (default) or CentOS 8
# Add '--userarg centos=true' to the command line to select CentOS
image = 'ubuntu:18.04'
if USERARG.get('centos', False):
image = 'centos:8'
######
# Devel stage
######
Stage0 += comment(__doc__, reformat=False)
Stage0 += baseimage(image=image, _as='devel')
# Python
Stage0 += python()
# NVIDIA HPC SDK
compiler = nvhpc(eula=nvhpc_eula, mpi=False, redist=['compilers/lib/*'],
version='20.7')
compiler.toolchain.CUDA_HOME = '/opt/nvidia/hpc_sdk/Linux_x86_64/20.7/cuda'
Stage0 += compiler
# Mellanox OFED
Stage0 += mlnx_ofed(version='5.0-2.1.8.0')
# OpenMPI
Stage0 += openmpi(version='4.0.4', toolchain=compiler.toolchain)
# FFTW
Stage0 += fftw(version='3.3.8', mpi=True, toolchain=compiler.toolchain)
# HDF5
Stage0 += hdf5(version='1.10.6', toolchain=compiler.toolchain)
# nvidia-container-runtime
Stage0 += environment(variables={
'NVIDIA_VISIBLE_DEVICES': 'all',
'NVIDIA_DRIVER_CAPABILITIES': 'compute,utility',
'NVIDIA_REQUIRE_CUDA': '"cuda>=10.1 brand=tesla,driver>=384,driver<385 brand=tesla,driver>=396,driver<397 brand=tesla,driver>=410,driver<411"'})
######
# Runtime image
######
Stage1 += baseimage(image=image)
Stage1 += Stage0.runtime(_from='devel')
# nvidia-container-runtime
Stage0 += environment(variables={
'NVIDIA_VISIBLE_DEVICES': 'all',
'NVIDIA_DRIVER_CAPABILITIES': 'compute,utility',
'NVIDIA_REQUIRE_CUDA': '"cuda>=10.1 brand=tesla,driver>=384,driver<385 brand=tesla,driver>=396,driver<397 brand=tesla,driver>=410,driver<411"'})
| """
HPC Base image
Contents:
FFTW version 3.3.8
HDF5 version 1.10.6
Mellanox OFED version 5.0-2.1.8.0
NVIDIA HPC SDK version 20.7
OpenMPI version 4.0.4
Python 2 and 3 (upstream)
"""
nvhpc_eula = False
if USERARG.get('nvhpc_eula_accept', False):
nvhpc_eula = True
else:
raise runtime_error('NVIDIA HPC SDK EULA not accepted. To accept, use "--userarg nvhpc_eula_accept=yes"\nSee NVIDIA HPC SDK EULA at https://docs.nvidia.com/hpc-sdk/eula')
image = 'ubuntu:18.04'
if USERARG.get('centos', False):
image = 'centos:8'
stage0 += comment(__doc__, reformat=False)
stage0 += baseimage(image=image, _as='devel')
stage0 += python()
compiler = nvhpc(eula=nvhpc_eula, mpi=False, redist=['compilers/lib/*'], version='20.7')
compiler.toolchain.CUDA_HOME = '/opt/nvidia/hpc_sdk/Linux_x86_64/20.7/cuda'
stage0 += compiler
stage0 += mlnx_ofed(version='5.0-2.1.8.0')
stage0 += openmpi(version='4.0.4', toolchain=compiler.toolchain)
stage0 += fftw(version='3.3.8', mpi=True, toolchain=compiler.toolchain)
stage0 += hdf5(version='1.10.6', toolchain=compiler.toolchain)
stage0 += environment(variables={'NVIDIA_VISIBLE_DEVICES': 'all', 'NVIDIA_DRIVER_CAPABILITIES': 'compute,utility', 'NVIDIA_REQUIRE_CUDA': '"cuda>=10.1 brand=tesla,driver>=384,driver<385 brand=tesla,driver>=396,driver<397 brand=tesla,driver>=410,driver<411"'})
stage1 += baseimage(image=image)
stage1 += Stage0.runtime(_from='devel')
stage0 += environment(variables={'NVIDIA_VISIBLE_DEVICES': 'all', 'NVIDIA_DRIVER_CAPABILITIES': 'compute,utility', 'NVIDIA_REQUIRE_CUDA': '"cuda>=10.1 brand=tesla,driver>=384,driver<385 brand=tesla,driver>=396,driver<397 brand=tesla,driver>=410,driver<411"'}) |
"""
Copyright 2020, University Corporation for Atmospheric Research
See LICENSE.txt for details
"""
nlat = 19
nlon = 36
ntime = 10
nchar = 7
slices = ['input{0}.nc'.format(i) for i in range(5)]
scalars = ['scalar{0}'.format(i) for i in range(2)]
chvars = ['char{0}'.format(i) for i in range(1)]
timvars = ['tim{0}'.format(i) for i in range(2)]
xtimvars = ['tim{0}'.format(i) for i in range(2, 5)]
tvmvars = ['tvm{0}'.format(i) for i in range(2)]
tsvars = ['tsvar{0}'.format(i) for i in range(4)]
fattrs = {'attr1': 'attribute one', 'attr2': 'attribute two'}
| """
Copyright 2020, University Corporation for Atmospheric Research
See LICENSE.txt for details
"""
nlat = 19
nlon = 36
ntime = 10
nchar = 7
slices = ['input{0}.nc'.format(i) for i in range(5)]
scalars = ['scalar{0}'.format(i) for i in range(2)]
chvars = ['char{0}'.format(i) for i in range(1)]
timvars = ['tim{0}'.format(i) for i in range(2)]
xtimvars = ['tim{0}'.format(i) for i in range(2, 5)]
tvmvars = ['tvm{0}'.format(i) for i in range(2)]
tsvars = ['tsvar{0}'.format(i) for i in range(4)]
fattrs = {'attr1': 'attribute one', 'attr2': 'attribute two'} |
def main():
sequence = input().split(',')
programs = ['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p']
program_string = ''.join(programs)
seen = [program_string]
for index in range(1000000000):
for command in sequence:
programs = run_command(programs, command)
program_string = ''.join(programs)
if program_string not in seen:
seen.append(program_string)
else:
index_of_seen = seen.index(program_string)
seen = seen[index_of_seen:]
program_string = seen[(1000000000-index-1)%len(seen)]
break
print(program_string)
def run_command(programs, command):
if(command[0] == 's'):
num_to_switch = -1*int(command[1:])
programs = programs[num_to_switch:]+programs[0:num_to_switch]
elif(command[0] == 'x'):
command = [int(x) for x in command[1:].split('/')]
programs[command[0]], programs[command[1]] = programs[command[1]], programs[command[0]]
elif(command[0] == 'p'):
command = command[1:].split('/')
index_1, index_2 = [programs.index(x) for x in command]
programs[index_1], programs[index_2] = programs[index_2], programs[index_1]
return programs
if __name__ == '__main__':
main() | def main():
sequence = input().split(',')
programs = ['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p']
program_string = ''.join(programs)
seen = [program_string]
for index in range(1000000000):
for command in sequence:
programs = run_command(programs, command)
program_string = ''.join(programs)
if program_string not in seen:
seen.append(program_string)
else:
index_of_seen = seen.index(program_string)
seen = seen[index_of_seen:]
program_string = seen[(1000000000 - index - 1) % len(seen)]
break
print(program_string)
def run_command(programs, command):
if command[0] == 's':
num_to_switch = -1 * int(command[1:])
programs = programs[num_to_switch:] + programs[0:num_to_switch]
elif command[0] == 'x':
command = [int(x) for x in command[1:].split('/')]
(programs[command[0]], programs[command[1]]) = (programs[command[1]], programs[command[0]])
elif command[0] == 'p':
command = command[1:].split('/')
(index_1, index_2) = [programs.index(x) for x in command]
(programs[index_1], programs[index_2]) = (programs[index_2], programs[index_1])
return programs
if __name__ == '__main__':
main() |
def rec_bin_search(arr, element):
if len(arr) == 0:
return False
else:
mid = len(arr) // 2
if arr[mid] == element:
return True
else:
if element < arr[mid]:
return rec_bin_search(arr[:mid], element)
else:
return rec_bin_search(arr[mid+1:], element)
lst = [1,2,3,4,5,6,7]
print(rec_bin_search(lst, 2))
print(rec_bin_search(lst, 10)) | def rec_bin_search(arr, element):
if len(arr) == 0:
return False
else:
mid = len(arr) // 2
if arr[mid] == element:
return True
elif element < arr[mid]:
return rec_bin_search(arr[:mid], element)
else:
return rec_bin_search(arr[mid + 1:], element)
lst = [1, 2, 3, 4, 5, 6, 7]
print(rec_bin_search(lst, 2))
print(rec_bin_search(lst, 10)) |
class Dog:
def bark(self):
print("Bark")
d = Dog()
d.bark()
| class Dog:
def bark(self):
print('Bark')
d = dog()
d.bark() |
"""
Submodules for AST manipulation.
"""
def remove_implications(ast):
"""
@brief Removes implications in an AST.
@param ast The ast
@return another AST
"""
if len(ast) == 3:
op, oper1, oper2 = ast
oper1 = remove_implications(oper1)
oper2 = remove_implications(oper2)
if op == '->':
return ('ou', ('non', oper1), oper2)
else:
return ast
return ast
def is_node_op(ast, op):
return ast[0] == op
def is_litteral(ast):
return ast[0] == 'sym' or ast[0] == 'value'
def distribute_or(ast):
"""
@brief Distributes or on and if needed.
@param ast The ast
@return another ast
"""
assert not is_node_op(ast, '->'), \
"Or can only be distributed on implication free AST"
assert ast is not None, "Empty ast"
if is_node_op(ast, 'or'):
_, exprA, exprB = ast
exprA = distribute_or(exprA)
exprB = distribute_or(exprB)
if is_node_op(exprB, 'and'):
_, exprC, exprD = exprB
exprC = distribute_or(exprC)
exprD = distribute_or(exprD)
left = distribute_or(('or', exprA, exprC))
right = distribute_or(('or', exprA, exprD))
return ('and', left, right)
if is_node_op(exprA, 'and'):
_, exprC, exprD = exprA
exprC = distribute_or(exprC)
exprD = distribute_or(exprD)
left = distribute_or(('or', exprC, exprB))
right = distribute_or(('or', exprD, exprB))
return ('and', left, right)
if len(ast) == 2:
return ast
if len(ast) == 3:
a, b, c = ast
return (a, distribute_or(b), distribute_or(c))
def remove_negations(ast):
"""
@brief Removes all negations.
@param ast The ast
@return another ast
"""
assert not is_node_op(ast, '->'), \
"Negations can only be removed on implication free AST"
assert ast is not None, "Empty ast"
if is_node_op(ast, 'non'):
_, exprA = ast
if is_node_op(exprA, 'or'):
_, exprB, exprC = exprA
exprB = remove_negations(('non', exprB))
exprC = remove_negations(('non', exprC))
return ('and', exprB, exprC)
if is_node_op(exprA, 'and'):
_, exprB, exprC = exprA
exprB = remove_negations(('non', exprB))
exprC = remove_negations(('non', exprC))
return ('or', exprB, exprC)
if is_litteral(exprA):
return ('non', exprA)
if is_node_op(exprA, 'non'):
_, exprB = exprA
exprB = remove_negations(exprB)
return exprB
if len(ast) == 3:
op, A, B = ast
A = remove_negations(A)
B = remove_negations(B)
return (op, A, B)
if len(ast) == 2:
return ast
def prepare_for_cnf(ast):
"""
@brief Prepare an ast to be converted in Conjuntive Normal Form.
@param ast The ast
@return another AST ready to be converted in CNF.
"""
ast = remove_implications(ast)
ast = remove_negations(ast)
ast = distribute_or(ast)
return ast | """
Submodules for AST manipulation.
"""
def remove_implications(ast):
"""
@brief Removes implications in an AST.
@param ast The ast
@return another AST
"""
if len(ast) == 3:
(op, oper1, oper2) = ast
oper1 = remove_implications(oper1)
oper2 = remove_implications(oper2)
if op == '->':
return ('ou', ('non', oper1), oper2)
else:
return ast
return ast
def is_node_op(ast, op):
return ast[0] == op
def is_litteral(ast):
return ast[0] == 'sym' or ast[0] == 'value'
def distribute_or(ast):
"""
@brief Distributes or on and if needed.
@param ast The ast
@return another ast
"""
assert not is_node_op(ast, '->'), 'Or can only be distributed on implication free AST'
assert ast is not None, 'Empty ast'
if is_node_op(ast, 'or'):
(_, expr_a, expr_b) = ast
expr_a = distribute_or(exprA)
expr_b = distribute_or(exprB)
if is_node_op(exprB, 'and'):
(_, expr_c, expr_d) = exprB
expr_c = distribute_or(exprC)
expr_d = distribute_or(exprD)
left = distribute_or(('or', exprA, exprC))
right = distribute_or(('or', exprA, exprD))
return ('and', left, right)
if is_node_op(exprA, 'and'):
(_, expr_c, expr_d) = exprA
expr_c = distribute_or(exprC)
expr_d = distribute_or(exprD)
left = distribute_or(('or', exprC, exprB))
right = distribute_or(('or', exprD, exprB))
return ('and', left, right)
if len(ast) == 2:
return ast
if len(ast) == 3:
(a, b, c) = ast
return (a, distribute_or(b), distribute_or(c))
def remove_negations(ast):
"""
@brief Removes all negations.
@param ast The ast
@return another ast
"""
assert not is_node_op(ast, '->'), 'Negations can only be removed on implication free AST'
assert ast is not None, 'Empty ast'
if is_node_op(ast, 'non'):
(_, expr_a) = ast
if is_node_op(exprA, 'or'):
(_, expr_b, expr_c) = exprA
expr_b = remove_negations(('non', exprB))
expr_c = remove_negations(('non', exprC))
return ('and', exprB, exprC)
if is_node_op(exprA, 'and'):
(_, expr_b, expr_c) = exprA
expr_b = remove_negations(('non', exprB))
expr_c = remove_negations(('non', exprC))
return ('or', exprB, exprC)
if is_litteral(exprA):
return ('non', exprA)
if is_node_op(exprA, 'non'):
(_, expr_b) = exprA
expr_b = remove_negations(exprB)
return exprB
if len(ast) == 3:
(op, a, b) = ast
a = remove_negations(A)
b = remove_negations(B)
return (op, A, B)
if len(ast) == 2:
return ast
def prepare_for_cnf(ast):
"""
@brief Prepare an ast to be converted in Conjuntive Normal Form.
@param ast The ast
@return another AST ready to be converted in CNF.
"""
ast = remove_implications(ast)
ast = remove_negations(ast)
ast = distribute_or(ast)
return ast |
class ModelDot:
"""The ModelDot object can be used to access an actual MeshNode, ReferencePoint, or ConstrainedSketchVertex
object.
Notes
-----
This object can be accessed by:
"""
pass
| class Modeldot:
"""The ModelDot object can be used to access an actual MeshNode, ReferencePoint, or ConstrainedSketchVertex
object.
Notes
-----
This object can be accessed by:
"""
pass |
LONG_BLOG_POST = """
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam eget nibh ac purus euismod pharetra nec ac justo. Suspendisse fringilla tellus ipsum, quis vulputate leo eleifend pellentesque. Vivamus rhoncus augue justo, elementum commodo urna egestas in. Maecenas fermentum et orci sit amet egestas. Aenean malesuada odio vitae tellus pellentesque sodales. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Cras facilisis nunc ac lacus mattis luctus. Curabitur a turpis eu sapien fringilla sagittis. Mauris ultricies, arcu non rutrum fringilla, tortor lectus fermentum augue, et consectetur velit sem ac mi. Cras tortor neque, tempor vitae risus sed, ornare convallis ligula. Sed vestibulum scelerisque bibendum. Donec id volutpat tortor. Ut quis gravida lectus.
Nulla auctor vehicula sem, id ultricies velit dapibus vitae. Suspendisse fringilla sapien eu elit vehicula pulvinar. Vestibulum et felis in tortor sollicitudin porta non nec augue. Vestibulum ornare metus eu dolor maximus varius. Pellentesque viverra dapibus sagittis. Mauris dui est, efficitur sed lorem eu, auctor suscipit nunc. Cras lacus dui, venenatis et metus sit amet, lacinia dictum augue. Aenean et tincidunt risus. Etiam iaculis tortor purus, nec finibus risus congue id. Sed porttitor molestie viverra. Mauris tempor ipsum in orci efficitur aliquet. Phasellus lorem magna, ultricies eget lectus nec, semper blandit nulla. Maecenas tristique lacus felis, eget gravida orci eleifend molestie.
Etiam ut vestibulum augue, ac mollis nulla. Nam porttitor massa sit amet velit faucibus tristique. Aenean volutpat diam dolor, ut ultrices erat accumsan ut. Nunc cursus, erat ac euismod condimentum, mauris tortor dapibus lectus, a placerat mauris elit non tellus. Integer eu quam varius, egestas risus sed, iaculis nulla. Sed luctus turpis id erat interdum placerat. Aliquam dapibus sit amet nunc id euismod. Proin scelerisque ultricies nibh. Ut non lacus quis libero viverra fringilla et tristique est. Cras vel vehicula lorem. Sed vel urna mi. Curabitur egestas purus blandit est sollicitudin vestibulum. Maecenas non interdum felis. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Duis tincidunt enim eu eros fermentum lobortis. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas.
Vestibulum ut consequat mauris. Etiam mollis orci eros, eget scelerisque nulla dignissim ac. Mauris in congue nulla, lacinia tincidunt neque. Sed auctor nunc vitae condimentum sollicitudin. Sed non metus libero. Vivamus tincidunt, nunc eget finibus mattis, ex tellus consequat libero, sit amet tristique arcu lorem ac tellus. Morbi fringilla velit in tincidunt efficitur. Nunc ut magna eget massa laoreet euismod at eget metus. Pellentesque blandit sapien nibh, eu tempus nibh eleifend non. Sed faucibus augue nisl. Nulla non dolor lobortis, rhoncus velit ac, maximus enim. Pellentesque rhoncus, tellus vel mollis accumsan, nibh ante volutpat erat, a sodales velit sem quis neque. Vestibulum sit amet commodo erat. Vivamus sed mauris sit amet nisi euismod scelerisque.
Nullam rutrum turpis lacus, non fringilla nibh viverra nec. Fusce sodales consequat scelerisque. Praesent faucibus ligula lacus, at consequat diam cursus vel. Aliquam erat volutpat. Proin in nibh justo. Suspendisse sit amet metus vel elit mollis gravida at sit amet nunc. Fusce pulvinar, tortor vel consectetur dapibus, massa ex viverra odio, et feugiat lacus quam a nisi. Vestibulum dictum dapibus elit nec dictum. Suspendisse imperdiet viverra neque. Morbi libero sapien, egestas sed purus eu, ultrices accumsan augue. Phasellus feugiat lorem felis, sit amet accumsan libero mattis id. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Duis egestas sed nisl vitae faucibus.
Maecenas rhoncus metus ut ante consequat iaculis. Nunc ornare, neque ut suscipit molestie, lorem urna accumsan urna, a pulvinar mi eros sed sem. Cras in lorem pulvinar risus rhoncus commodo sed non odio. Morbi commodo nec metus a fermentum. Fusce vel tincidunt nunc. Curabitur a blandit risus. Suspendisse sit amet euismod lectus. Nullam semper mollis ornare. Aliquam quis quam quis est sollicitudin pulvinar.
Nunc suscipit erat non ultricies ultricies. Etiam ac elit aliquet velit ultricies placerat. Aenean nec auctor massa. Suspendisse ac nisl non libero pulvinar commodo. Phasellus vestibulum porttitor pellentesque. In sed est tellus. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Nullam tincidunt est eu mauris aliquam, at sagittis dolor efficitur. Integer tempor at mi vitae maximus. Nam dui lacus, venenatis et egestas at, egestas nec sapien.
""" | long_blog_post = '\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam eget nibh ac purus euismod pharetra nec ac justo. Suspendisse fringilla tellus ipsum, quis vulputate leo eleifend pellentesque. Vivamus rhoncus augue justo, elementum commodo urna egestas in. Maecenas fermentum et orci sit amet egestas. Aenean malesuada odio vitae tellus pellentesque sodales. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Cras facilisis nunc ac lacus mattis luctus. Curabitur a turpis eu sapien fringilla sagittis. Mauris ultricies, arcu non rutrum fringilla, tortor lectus fermentum augue, et consectetur velit sem ac mi. Cras tortor neque, tempor vitae risus sed, ornare convallis ligula. Sed vestibulum scelerisque bibendum. Donec id volutpat tortor. Ut quis gravida lectus.\n\nNulla auctor vehicula sem, id ultricies velit dapibus vitae. Suspendisse fringilla sapien eu elit vehicula pulvinar. Vestibulum et felis in tortor sollicitudin porta non nec augue. Vestibulum ornare metus eu dolor maximus varius. Pellentesque viverra dapibus sagittis. Mauris dui est, efficitur sed lorem eu, auctor suscipit nunc. Cras lacus dui, venenatis et metus sit amet, lacinia dictum augue. Aenean et tincidunt risus. Etiam iaculis tortor purus, nec finibus risus congue id. Sed porttitor molestie viverra. Mauris tempor ipsum in orci efficitur aliquet. Phasellus lorem magna, ultricies eget lectus nec, semper blandit nulla. Maecenas tristique lacus felis, eget gravida orci eleifend molestie.\n\nEtiam ut vestibulum augue, ac mollis nulla. Nam porttitor massa sit amet velit faucibus tristique. Aenean volutpat diam dolor, ut ultrices erat accumsan ut. Nunc cursus, erat ac euismod condimentum, mauris tortor dapibus lectus, a placerat mauris elit non tellus. Integer eu quam varius, egestas risus sed, iaculis nulla. Sed luctus turpis id erat interdum placerat. Aliquam dapibus sit amet nunc id euismod. Proin scelerisque ultricies nibh. Ut non lacus quis libero viverra fringilla et tristique est. Cras vel vehicula lorem. Sed vel urna mi. Curabitur egestas purus blandit est sollicitudin vestibulum. Maecenas non interdum felis. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Duis tincidunt enim eu eros fermentum lobortis. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas.\n\nVestibulum ut consequat mauris. Etiam mollis orci eros, eget scelerisque nulla dignissim ac. Mauris in congue nulla, lacinia tincidunt neque. Sed auctor nunc vitae condimentum sollicitudin. Sed non metus libero. Vivamus tincidunt, nunc eget finibus mattis, ex tellus consequat libero, sit amet tristique arcu lorem ac tellus. Morbi fringilla velit in tincidunt efficitur. Nunc ut magna eget massa laoreet euismod at eget metus. Pellentesque blandit sapien nibh, eu tempus nibh eleifend non. Sed faucibus augue nisl. Nulla non dolor lobortis, rhoncus velit ac, maximus enim. Pellentesque rhoncus, tellus vel mollis accumsan, nibh ante volutpat erat, a sodales velit sem quis neque. Vestibulum sit amet commodo erat. Vivamus sed mauris sit amet nisi euismod scelerisque.\n\nNullam rutrum turpis lacus, non fringilla nibh viverra nec. Fusce sodales consequat scelerisque. Praesent faucibus ligula lacus, at consequat diam cursus vel. Aliquam erat volutpat. Proin in nibh justo. Suspendisse sit amet metus vel elit mollis gravida at sit amet nunc. Fusce pulvinar, tortor vel consectetur dapibus, massa ex viverra odio, et feugiat lacus quam a nisi. Vestibulum dictum dapibus elit nec dictum. Suspendisse imperdiet viverra neque. Morbi libero sapien, egestas sed purus eu, ultrices accumsan augue. Phasellus feugiat lorem felis, sit amet accumsan libero mattis id. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Duis egestas sed nisl vitae faucibus.\n\nMaecenas rhoncus metus ut ante consequat iaculis. Nunc ornare, neque ut suscipit molestie, lorem urna accumsan urna, a pulvinar mi eros sed sem. Cras in lorem pulvinar risus rhoncus commodo sed non odio. Morbi commodo nec metus a fermentum. Fusce vel tincidunt nunc. Curabitur a blandit risus. Suspendisse sit amet euismod lectus. Nullam semper mollis ornare. Aliquam quis quam quis est sollicitudin pulvinar.\n\nNunc suscipit erat non ultricies ultricies. Etiam ac elit aliquet velit ultricies placerat. Aenean nec auctor massa. Suspendisse ac nisl non libero pulvinar commodo. Phasellus vestibulum porttitor pellentesque. In sed est tellus. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Nullam tincidunt est eu mauris aliquam, at sagittis dolor efficitur. Integer tempor at mi vitae maximus. Nam dui lacus, venenatis et egestas at, egestas nec sapien.\n' |
"""Example of Counting Permutations with Recursive Factorial Functions"""
# Data
n = 5
# The One-Liner
factorial = lambda n: n * factorial(n-1) if n > 1 else 1
# The Result
print(factorial(n)) | """Example of Counting Permutations with Recursive Factorial Functions"""
n = 5
factorial = lambda n: n * factorial(n - 1) if n > 1 else 1
print(factorial(n)) |
[
alg.createtemp (
"revenue",
alg.aggregation (
"l_suppkey",
[ ( Reduction.SUM, "revenue", "sum_revenue" ) ],
alg.map (
"revenue",
scal.MulExpr (
scal.AttrExpr ( "l_extendedprice" ),
scal.SubExpr (
scal.ConstExpr ( "1.0", Type.FLOAT ),
scal.AttrExpr ( "l_discount" )
)
),
alg.selection (
scal.AndExpr (
scal.LargerEqualExpr (
scal.AttrExpr ( "l_shipdate" ),
scal.ConstExpr ( "19960101", Type.DATE )
),
scal.SmallerExpr (
scal.AttrExpr ( "l_shipdate" ),
scal.ConstExpr ( "19960401", Type.DATE )
)
),
alg.scan ( "lineitem" )
)
)
)
),
alg.projection (
[ "s_suppkey", "s_name", "s_address", "s_phone", "total_revenue" ],
alg.join (
( "l_suppkey", "s_suppkey" ),
alg.join (
( "total_revenue", "sum_revenue" ),
alg.aggregation (
[],
[( Reduction.MAX, "sum_revenue", "total_revenue" )],
alg.scan ( "revenue", "r1" )
),
alg.scan ( "revenue", "r2" )
),
alg.scan ( "supplier" )
)
)
]
| [alg.createtemp('revenue', alg.aggregation('l_suppkey', [(Reduction.SUM, 'revenue', 'sum_revenue')], alg.map('revenue', scal.MulExpr(scal.AttrExpr('l_extendedprice'), scal.SubExpr(scal.ConstExpr('1.0', Type.FLOAT), scal.AttrExpr('l_discount'))), alg.selection(scal.AndExpr(scal.LargerEqualExpr(scal.AttrExpr('l_shipdate'), scal.ConstExpr('19960101', Type.DATE)), scal.SmallerExpr(scal.AttrExpr('l_shipdate'), scal.ConstExpr('19960401', Type.DATE))), alg.scan('lineitem'))))), alg.projection(['s_suppkey', 's_name', 's_address', 's_phone', 'total_revenue'], alg.join(('l_suppkey', 's_suppkey'), alg.join(('total_revenue', 'sum_revenue'), alg.aggregation([], [(Reduction.MAX, 'sum_revenue', 'total_revenue')], alg.scan('revenue', 'r1')), alg.scan('revenue', 'r2')), alg.scan('supplier')))] |
#!/usr/bin/env python
__all__ = [
"osutils",
]
| __all__ = ['osutils'] |
def searchInsert(self, nums, target):
start = 0
end = len(nums) - 1
while start <= end:
middle = (start + end) // 2
if nums[middle] == target:
return middle
elif target > nums[middle]:
start = middle + 1
elif target < nums[middle]:
end = middle - 1
return start
| def search_insert(self, nums, target):
start = 0
end = len(nums) - 1
while start <= end:
middle = (start + end) // 2
if nums[middle] == target:
return middle
elif target > nums[middle]:
start = middle + 1
elif target < nums[middle]:
end = middle - 1
return start |
#!/usr/bin/python3
RYD_TO_EV = 13.6056980659
class EnergyVals():
def __init__(self, **kwargs):
kwargs = {k.lower():v for k,v in kwargs.items()}
self._eqTol = 1e-5
self._e0Tot = kwargs.get("e0tot", None)
self._e0Coh = kwargs.get("e0coh", None)
self.e1 = kwargs.get("e1", None)
self.e2 = kwargs.get("e2", None)
self.entropy = kwargs.get("entropy", None)
self.tb2CohesiveFree = kwargs.get("tb2CohesiveFree".lower(), None)
self.dftTotalElectronic = kwargs.get("dftTotalElectronic".lower(),None)
self.castepTotalElectronic = kwargs.get("castepTotalElectronic".lower(), None)
self.dispersion = kwargs.get("dispersion",None)
#These are numerical-attributes which form the base-data for the class. Keep them
#here since they are used both to convert the object into a dictionary AND
#to check equality between objects
self.numAttrs = ["e0Tot", "e0Coh", "e1", "e2", "entropy", "tb2CohesiveFree",
"dftTotalElectronic", "castepTotalElectronic", "dispersion"]
def convRydToEv(self):
for key in self.numAttrs:
if getattr(self,key) is not None:
setattr(self, key, getattr(self, key)*RYD_TO_EV)
def toDict(self):
extraAttrs = ["electronicTotalE", "electronicMinusEntropy", "electronicMinusHalfEntropy"]
basicDict = {attr:getattr(self,attr) for attr in self.numAttrs if getattr(self,attr) is not None}
extraAttrDict = {attr:getattr(self,attr) for attr in extraAttrs if getattr(self,attr) is not None}
outDict = dict()
outDict.update(basicDict)
outDict.update(extraAttrDict)
return outDict
@property
def e0Tot(self):
return self._e0Tot
@property
def e0Coh(self):
return self._e0Coh
@property
def electronicCohesiveE(self):
if self.tb2CohesiveFree is not None:
return self.tb2CohesiveFree + self.entropy
elif (self.e0Coh is not None) and (self.e1 is not None): #In this case the file is Tb1. Meaning these values are relative to the atomic ones
return self.e0Coh + self.e1
else:
raise ValueError("No information on electronic Cohesive Energy appears to be "
"held in current EnergyVals object")
@property
def electronicTotalE(self):
""" Note: Castep/CP2K (at least) include the entropy contribution here """
if self.castepTotalElectronic is not None:
return self.castepTotalElectronic
if self.dftTotalElectronic is not None:
return self.dftTotalElectronic
elif self.tb2CohesiveFree is not None:
return self.e0Tot + self.e1
else:
raise ValueError("No information on total electronic energy is present in current "
"EnergyVals object")
@property
def electronicMinusEntropy(self):
if self.entropy is None:
outVal = None
else:
outVal = self.electronicTotalE - self.entropy
return outVal
@property
def electronicMinusHalfEntropy(self):
""" This is what castep uses to get 0K estimates """
if self.entropy is None:
outVal = None
else:
outVal = self.electronicTotalE - (0.5*self.entropy)
return outVal
@property
def freeCohesiveE(self):
if self.tb2CohesiveFree is not None:
return self.tb2CohesiveFree
else:
return self.e0Coh + self.e1 + self.entropy
# else:
# raise ValueError("No information on free Cohesive Energy appears to be "
# "held in current EnergyVals object")
def __eq__(self, other):
eqTol = min([abs(x._eqTol) for x in [self,other]])
for currAttr in self.numAttrs:
if not self._attrsAreTheSameOnOtherObj(currAttr, other, eqTol):
return False
return True
def _attrsAreTheSameOnOtherObj(self, attr, other, eqTol):
valA, valB = getattr(self, attr), getattr(other,attr)
if (valA is None) and (valB is None):
return True
elif (valA is None) or (valB is None):
return False
if abs(valA-valB)>eqTol:
return False
return True
| ryd_to_ev = 13.6056980659
class Energyvals:
def __init__(self, **kwargs):
kwargs = {k.lower(): v for (k, v) in kwargs.items()}
self._eqTol = 1e-05
self._e0Tot = kwargs.get('e0tot', None)
self._e0Coh = kwargs.get('e0coh', None)
self.e1 = kwargs.get('e1', None)
self.e2 = kwargs.get('e2', None)
self.entropy = kwargs.get('entropy', None)
self.tb2CohesiveFree = kwargs.get('tb2CohesiveFree'.lower(), None)
self.dftTotalElectronic = kwargs.get('dftTotalElectronic'.lower(), None)
self.castepTotalElectronic = kwargs.get('castepTotalElectronic'.lower(), None)
self.dispersion = kwargs.get('dispersion', None)
self.numAttrs = ['e0Tot', 'e0Coh', 'e1', 'e2', 'entropy', 'tb2CohesiveFree', 'dftTotalElectronic', 'castepTotalElectronic', 'dispersion']
def conv_ryd_to_ev(self):
for key in self.numAttrs:
if getattr(self, key) is not None:
setattr(self, key, getattr(self, key) * RYD_TO_EV)
def to_dict(self):
extra_attrs = ['electronicTotalE', 'electronicMinusEntropy', 'electronicMinusHalfEntropy']
basic_dict = {attr: getattr(self, attr) for attr in self.numAttrs if getattr(self, attr) is not None}
extra_attr_dict = {attr: getattr(self, attr) for attr in extraAttrs if getattr(self, attr) is not None}
out_dict = dict()
outDict.update(basicDict)
outDict.update(extraAttrDict)
return outDict
@property
def e0_tot(self):
return self._e0Tot
@property
def e0_coh(self):
return self._e0Coh
@property
def electronic_cohesive_e(self):
if self.tb2CohesiveFree is not None:
return self.tb2CohesiveFree + self.entropy
elif self.e0Coh is not None and self.e1 is not None:
return self.e0Coh + self.e1
else:
raise value_error('No information on electronic Cohesive Energy appears to be held in current EnergyVals object')
@property
def electronic_total_e(self):
""" Note: Castep/CP2K (at least) include the entropy contribution here """
if self.castepTotalElectronic is not None:
return self.castepTotalElectronic
if self.dftTotalElectronic is not None:
return self.dftTotalElectronic
elif self.tb2CohesiveFree is not None:
return self.e0Tot + self.e1
else:
raise value_error('No information on total electronic energy is present in current EnergyVals object')
@property
def electronic_minus_entropy(self):
if self.entropy is None:
out_val = None
else:
out_val = self.electronicTotalE - self.entropy
return outVal
@property
def electronic_minus_half_entropy(self):
""" This is what castep uses to get 0K estimates """
if self.entropy is None:
out_val = None
else:
out_val = self.electronicTotalE - 0.5 * self.entropy
return outVal
@property
def free_cohesive_e(self):
if self.tb2CohesiveFree is not None:
return self.tb2CohesiveFree
else:
return self.e0Coh + self.e1 + self.entropy
def __eq__(self, other):
eq_tol = min([abs(x._eqTol) for x in [self, other]])
for curr_attr in self.numAttrs:
if not self._attrsAreTheSameOnOtherObj(currAttr, other, eqTol):
return False
return True
def _attrs_are_the_same_on_other_obj(self, attr, other, eqTol):
(val_a, val_b) = (getattr(self, attr), getattr(other, attr))
if valA is None and valB is None:
return True
elif valA is None or valB is None:
return False
if abs(valA - valB) > eqTol:
return False
return True |
f = open("input1.txt").readlines()
count = 0
for i in range(1,len(f)):
if int(f[i-1])<int(f[i]):
count+=1
print(count)
count = 0
for i in range(3,len(f)):
if int(f[i-3])<int(f[i]):
count+=1
print(count)
| f = open('input1.txt').readlines()
count = 0
for i in range(1, len(f)):
if int(f[i - 1]) < int(f[i]):
count += 1
print(count)
count = 0
for i in range(3, len(f)):
if int(f[i - 3]) < int(f[i]):
count += 1
print(count) |
_base_ = "soft_teacher_faster_rcnn_r50_caffe_fpn_coco_full_720k.py"
lr_config = dict(step=[120000 * 8, 160000 * 8])
runner = dict(_delete_=True, type="IterBasedRunner", max_iters=180000 * 8)
| _base_ = 'soft_teacher_faster_rcnn_r50_caffe_fpn_coco_full_720k.py'
lr_config = dict(step=[120000 * 8, 160000 * 8])
runner = dict(_delete_=True, type='IterBasedRunner', max_iters=180000 * 8) |
# melhora a performace do codigo
l1 = [1, 2, 3, 4, 5, 6, 7, 8, 9]
ex1 = [variavel for variavel in l1]
ex2 = [v * 2 for v in l1] # multiplica cado elemento da lista 1 por 2
ex3 = [(v, v2) for v in l1 for v2 in range(3)]
print(ex3)
l2 = ['pedro', 'mauro', 'maria']
ex4 = [v.replace('a', '@').upper() for v in l2] # muda a letra a de uma variavel
print(ex4)
tupla = (
('chave1', 'valor1'),
('chave2', 'valor2'),
)
ex5 = [(y, x) for x, y in tupla]
ex5 = dict(ex5) # inverter num dicionario
print(ex5['valor1'])
l3 = list(range(100)) # lista de 0 a 100
ex6 = [va for va in l3 if va % 3 == 0 if va % 8 == 0] # numeros divisiveis por 3 e por 8
print(ex6)
ex7 = [v if v % 3 == 0 and v % 8 == 0 else 0 for v in l3]
print(ex7) | l1 = [1, 2, 3, 4, 5, 6, 7, 8, 9]
ex1 = [variavel for variavel in l1]
ex2 = [v * 2 for v in l1]
ex3 = [(v, v2) for v in l1 for v2 in range(3)]
print(ex3)
l2 = ['pedro', 'mauro', 'maria']
ex4 = [v.replace('a', '@').upper() for v in l2]
print(ex4)
tupla = (('chave1', 'valor1'), ('chave2', 'valor2'))
ex5 = [(y, x) for (x, y) in tupla]
ex5 = dict(ex5)
print(ex5['valor1'])
l3 = list(range(100))
ex6 = [va for va in l3 if va % 3 == 0 if va % 8 == 0]
print(ex6)
ex7 = [v if v % 3 == 0 and v % 8 == 0 else 0 for v in l3]
print(ex7) |
""" This module contains the functions to compare MISRA rules """
def misra_c2004_compare(rule):
""" compare misra C2004 rules """
return int(rule.split('.')[0])*100 + int(rule.split('.')[1])
def misra_c2012_compare(rule):
""" compare misra C2012 rules """
return int(rule.split('.')[0])*100 + int(rule.split('.')[1])
def determine_compare_method(standard):
""" determine the compare method based upon the provided standard """
possibles = globals().copy()
possibles.update(locals())
method_name = "misra_" + standard.lower() + "_compare"
method = possibles.get(method_name)
if not method:
raise NotImplementedError("Method %s not implemented" % method_name)
return method
| """ This module contains the functions to compare MISRA rules """
def misra_c2004_compare(rule):
""" compare misra C2004 rules """
return int(rule.split('.')[0]) * 100 + int(rule.split('.')[1])
def misra_c2012_compare(rule):
""" compare misra C2012 rules """
return int(rule.split('.')[0]) * 100 + int(rule.split('.')[1])
def determine_compare_method(standard):
""" determine the compare method based upon the provided standard """
possibles = globals().copy()
possibles.update(locals())
method_name = 'misra_' + standard.lower() + '_compare'
method = possibles.get(method_name)
if not method:
raise not_implemented_error('Method %s not implemented' % method_name)
return method |
# defines a function that takes two arguments
def cheese_and_crackers(cheese_count, boxes_of_crackers):
# prints a string with the first argument passed into the function inserted into the output
print(f"You have {cheese_count} cheeses!")
# prints a string with the second argument passed into the function inserted into the output
print(f"You have {boxes_of_crackers} boxes of crackers!")
# prints a string
print("Man that's enough for a party!")
# prints a string
print("Get a blanket.\n")
# prints a string
print("We can just give the function numbers directly:")
# calls the cheese_and_crackers function with 20 and 30 as the arguments being passed in
cheese_and_crackers(20,30)
# prints a string
print("OR, we can use variables from our script:")
# stores a value of 10 in the variable amount_of_cheese
amount_of_cheese = 10
# stores a value of 50 in the variable amount_of_crackers
amount_of_crackers = 50
# calls the cheese_and_crackers function, passing in the values stored in the variables amount_of_cheese and amount_of_crackers
cheese_and_crackers(amount_of_cheese, amount_of_crackers)
# prints a string
print("We can even do math inside too:")
# calls the cheese_and_crackers function with the results of 1 + 20 and 5 + 6 passed in as the arguments.
cheese_and_crackers(10 + 20, 5 + 6)
# prints a string
print("And we can combine the two, variables and math:")
# calls the cheese_and_crackers function with the results of adding 100 to the value stored in amount_of_cheese and 1000 to the value stored in amount_of_crackers as the arguments
cheese_and_crackers(amount_of_cheese + 100, amount_of_crackers + 1000) | def cheese_and_crackers(cheese_count, boxes_of_crackers):
print(f'You have {cheese_count} cheeses!')
print(f'You have {boxes_of_crackers} boxes of crackers!')
print("Man that's enough for a party!")
print('Get a blanket.\n')
print('We can just give the function numbers directly:')
cheese_and_crackers(20, 30)
print('OR, we can use variables from our script:')
amount_of_cheese = 10
amount_of_crackers = 50
cheese_and_crackers(amount_of_cheese, amount_of_crackers)
print('We can even do math inside too:')
cheese_and_crackers(10 + 20, 5 + 6)
print('And we can combine the two, variables and math:')
cheese_and_crackers(amount_of_cheese + 100, amount_of_crackers + 1000) |
def selection_sort(arr):
for i in range(len(arr)):
min = i # index of min elem
for j in range(i+1,len(arr)):
# arr[j] is smaller than the min elem
if arr[j] < arr[min]:
min = j
arr[i],arr[min] = arr[min],arr[i] # swap
# print(arr)
return arr
| def selection_sort(arr):
for i in range(len(arr)):
min = i
for j in range(i + 1, len(arr)):
if arr[j] < arr[min]:
min = j
(arr[i], arr[min]) = (arr[min], arr[i])
return arr |
class System_Status():
def __init__(self, plant_state=None):
if plant_state is None:
plant_state = [1, 1, 1]
self.plant_state = plant_state
def __str__(self):
return f"El estado de la planta es {self.plant_state}" | class System_Status:
def __init__(self, plant_state=None):
if plant_state is None:
plant_state = [1, 1, 1]
self.plant_state = plant_state
def __str__(self):
return f'El estado de la planta es {self.plant_state}' |
class IPVerify:
def __init__(self):
super(IPVerify, self).__init__()
# self.octetLst = []
# self.subnetMaskLst = []
# def __initializeIP(self, ip: str):
# self.octetLst.clear()
# [self.octetLst.append(i) for i in ip.split(".")]
# return self.octetLst
def __initializeIP(self, ip: str):
lst = []
[lst.append(i) for i in ip.split(".")]
if len(lst[0]) == 8:
lst = self.__binInput(lst)
return lst
@staticmethod
def __binInput(lst):
lst2 = []
[lst2.append(str(int(i, 2))) for i in lst]
return lst2
# @staticmethod
def __initializeMask(self, mask: str):
m = mask.split(".")
l = len(m)
if l == 4:
# t = deque()
t = []
try:
for i in m:
num = int(i)
if 256 > num >= 0:
t.append(str(num))
else:
return None
return t
except:
return None
elif l == 1:
mask = self.CIDRtoDefaultNotation(m[0])
m = mask.split(".")
return m
# print()
else:
return None
@staticmethod
def CIDRtoDefaultNotation(mask: str):
"""Convert subnet mask notation from CIDR to default """
mask = int(mask[1:])
q = int(mask / 8) # no. of complete octet in mask
r = int(mask % 8) # bit size of incomplete octet in mask
c = 1 # no. of incomplete octet in mask
l1 = [8] * q
l1.append(r)
if r == 0:
c = 0 # if size is zero, then change no. of incomplete octet to 0
l1.pop() # remove
l2 = [0] * (4 - q - c)
# noofSetBitForEachOctetinMask = deque()
noofSetBitForEachOctetinMask = []
[noofSetBitForEachOctetinMask.append(i) for i in l1]
[noofSetBitForEachOctetinMask.append(i) for i in l2]
# print(noofSetBitForEachOctetinMask)
newMask = []
for i in noofSetBitForEachOctetinMask:
octet = "0b"
for _ in range(i):
octet += "1"
for _ in range(8 - i):
octet += "0"
newMask.append(str(int(octet, 2)))
return ".".join(newMask)
# print(".".join(newMask))
@staticmethod
def __firstCheck(octetlst: list):
try:
for octet in octetlst:
o = int(octet)
if o > 255 or o < 0:
return False
return True
except:
return False
@staticmethod
def __secondCheck(lst: list):
for octet in lst:
i = octet[0]
if i == "0" and len(octet) > 1:
return False
return True
def verify(self, lst: list):
"""Verify ipv4 address"""
if len(lst) == 4:
first = self.__firstCheck(lst)
if first:
if self.__secondCheck(lst):
return True
# print("Valid IP Address")
else:
return False
# print("Invalid IP Address")
else:
return False
else:
return False
# print("Invalid IP Address")
# def printVerify(self):
# if self.verify(self.octetLst):
# print("Valid IP Address")
# else:
# print("Invalid IP Address")
def verifyAndPrint(self, ipv4_add: str):
"""Verify ipv4 address and print valid/Invalid """
ls = self.__initializeIP(ipv4_add)
if self.verify(ls):
print("Valid IP Address")
else:
print("Invalid IP Address")
def findClassName(self, ipv4_add: str):
"""Return class name if valid ipv4 address otherwise return None"""
ls = self.__initializeIP(ipv4_add)
if self.verify(ls):
i = int(ls[0])
if 127 >= i >= 0:
return "A"
elif 191 >= i >= 128:
return "B"
elif 223 >= i >= 192:
return "C"
elif 239 >= i >= 224:
return "D"
elif 255 >= i >= 240:
return "E"
else:
return None
def printClassName(self, ipv4_add: str):
"""Print class name if valid ipv4 address otherwise print invalid """
j = self.findClassName(ipv4_add)
if j is not None:
print("Class Name is {}".format(j))
print("Default Mask= {}".format(self.defaultMask(j)))
else:
print("Invalid IP Address")
def networkPartOfIP(self, ipv4_add: str, subnetmask: str):
"""Return network part of ipv4 address"""
# maskOct = subnetmask.split(".")
# ipOctet = ipv4_add.split(".")
maskOct = self.__initializeMask(subnetmask)
ipOctet = self.__initializeIP(ipv4_add)
netPart = []
if not (maskOct is None):
if self.verify(ipOctet):
for i in range(4):
t1 = int(ipOctet[i])
t2 = int(maskOct[i])
t = t1 & t2
# t = int(hex(int(self.octetLst[i])) and hex(int(maskOct[i])), 0)
# if not t == 0:
netPart.append(str(t))
return ".".join(netPart)
else:
raise Exception("Invalid ipv4 address")
else:
raise Exception("Invalid Subnet Mask")
def hostPartofIP(self, ipv4_add: str, subnetmask: str):
"""Return host part of ipv4 address"""
# maskOct = subnetmask.split(".")
# ipOctet = ipv4_add.split(".")
maskOct = self.__initializeMask(subnetmask)
ipOctet = self.__initializeIP(ipv4_add)
hostPart = []
if not (maskOct is None):
if self.verify(ipOctet):
for i in range(4):
t1 = int(ipOctet[i])
t2 = (~ int(maskOct[i]))
t = t1 & t2
hostPart.append(str(t))
return ".".join(hostPart)
else:
raise Exception("Invalid ipv4 address")
else:
raise Exception("Invalid Subnet Mask")
def printHostAndNetworkPart(self, ipv4_add: str, mask: str):
"""Print Host and Network part of ipv4 address"""
netPart = self.networkPartOfIP(ipv4_add, mask)
hostPart = self.hostPartofIP(ipv4_add, mask)
print("Network Part of IPv4 Address= {}".format(netPart))
print("Host Part of IPv4 Address= {}".format(hostPart))
@staticmethod
def defaultMask(cl: str):
if cl == "A":
return "255.0.0.0"
elif cl == "B":
return "255.255.0.0"
elif cl == "c":
return "255.255.0.0"
else:
return "None"
| class Ipverify:
def __init__(self):
super(IPVerify, self).__init__()
def __initialize_ip(self, ip: str):
lst = []
[lst.append(i) for i in ip.split('.')]
if len(lst[0]) == 8:
lst = self.__binInput(lst)
return lst
@staticmethod
def __bin_input(lst):
lst2 = []
[lst2.append(str(int(i, 2))) for i in lst]
return lst2
def __initialize_mask(self, mask: str):
m = mask.split('.')
l = len(m)
if l == 4:
t = []
try:
for i in m:
num = int(i)
if 256 > num >= 0:
t.append(str(num))
else:
return None
return t
except:
return None
elif l == 1:
mask = self.CIDRtoDefaultNotation(m[0])
m = mask.split('.')
return m
else:
return None
@staticmethod
def cid_rto_default_notation(mask: str):
"""Convert subnet mask notation from CIDR to default """
mask = int(mask[1:])
q = int(mask / 8)
r = int(mask % 8)
c = 1
l1 = [8] * q
l1.append(r)
if r == 0:
c = 0
l1.pop()
l2 = [0] * (4 - q - c)
noof_set_bit_for_each_octetin_mask = []
[noofSetBitForEachOctetinMask.append(i) for i in l1]
[noofSetBitForEachOctetinMask.append(i) for i in l2]
new_mask = []
for i in noofSetBitForEachOctetinMask:
octet = '0b'
for _ in range(i):
octet += '1'
for _ in range(8 - i):
octet += '0'
newMask.append(str(int(octet, 2)))
return '.'.join(newMask)
@staticmethod
def __first_check(octetlst: list):
try:
for octet in octetlst:
o = int(octet)
if o > 255 or o < 0:
return False
return True
except:
return False
@staticmethod
def __second_check(lst: list):
for octet in lst:
i = octet[0]
if i == '0' and len(octet) > 1:
return False
return True
def verify(self, lst: list):
"""Verify ipv4 address"""
if len(lst) == 4:
first = self.__firstCheck(lst)
if first:
if self.__secondCheck(lst):
return True
else:
return False
else:
return False
else:
return False
def verify_and_print(self, ipv4_add: str):
"""Verify ipv4 address and print valid/Invalid """
ls = self.__initializeIP(ipv4_add)
if self.verify(ls):
print('Valid IP Address')
else:
print('Invalid IP Address')
def find_class_name(self, ipv4_add: str):
"""Return class name if valid ipv4 address otherwise return None"""
ls = self.__initializeIP(ipv4_add)
if self.verify(ls):
i = int(ls[0])
if 127 >= i >= 0:
return 'A'
elif 191 >= i >= 128:
return 'B'
elif 223 >= i >= 192:
return 'C'
elif 239 >= i >= 224:
return 'D'
elif 255 >= i >= 240:
return 'E'
else:
return None
def print_class_name(self, ipv4_add: str):
"""Print class name if valid ipv4 address otherwise print invalid """
j = self.findClassName(ipv4_add)
if j is not None:
print('Class Name is {}'.format(j))
print('Default Mask= {}'.format(self.defaultMask(j)))
else:
print('Invalid IP Address')
def network_part_of_ip(self, ipv4_add: str, subnetmask: str):
"""Return network part of ipv4 address"""
mask_oct = self.__initializeMask(subnetmask)
ip_octet = self.__initializeIP(ipv4_add)
net_part = []
if not maskOct is None:
if self.verify(ipOctet):
for i in range(4):
t1 = int(ipOctet[i])
t2 = int(maskOct[i])
t = t1 & t2
netPart.append(str(t))
return '.'.join(netPart)
else:
raise exception('Invalid ipv4 address')
else:
raise exception('Invalid Subnet Mask')
def host_partof_ip(self, ipv4_add: str, subnetmask: str):
"""Return host part of ipv4 address"""
mask_oct = self.__initializeMask(subnetmask)
ip_octet = self.__initializeIP(ipv4_add)
host_part = []
if not maskOct is None:
if self.verify(ipOctet):
for i in range(4):
t1 = int(ipOctet[i])
t2 = ~int(maskOct[i])
t = t1 & t2
hostPart.append(str(t))
return '.'.join(hostPart)
else:
raise exception('Invalid ipv4 address')
else:
raise exception('Invalid Subnet Mask')
def print_host_and_network_part(self, ipv4_add: str, mask: str):
"""Print Host and Network part of ipv4 address"""
net_part = self.networkPartOfIP(ipv4_add, mask)
host_part = self.hostPartofIP(ipv4_add, mask)
print('Network Part of IPv4 Address= {}'.format(netPart))
print('Host Part of IPv4 Address= {}'.format(hostPart))
@staticmethod
def default_mask(cl: str):
if cl == 'A':
return '255.0.0.0'
elif cl == 'B':
return '255.255.0.0'
elif cl == 'c':
return '255.255.0.0'
else:
return 'None' |
NODE_LIST = [
{
'name': 'syslog_source',
'type': 'syslog_file_monitor',
'outputs': [
'filter',
],
'params': {
'filename': 'testlog1.log',
}
},
{
'name': 'filter',
'type': 'rx_grouper',
'params': {
'groups': {
'imap_auth': {
'rx_list': [
".*hint.*",
("host", "publicapi1"),
],
'outputs': ['writer',],
},
},
},
},
{
'name': 'writer',
'type': 'console_output',
'params': {
},
'outputs': [],
},
]
| node_list = [{'name': 'syslog_source', 'type': 'syslog_file_monitor', 'outputs': ['filter'], 'params': {'filename': 'testlog1.log'}}, {'name': 'filter', 'type': 'rx_grouper', 'params': {'groups': {'imap_auth': {'rx_list': ['.*hint.*', ('host', 'publicapi1')], 'outputs': ['writer']}}}}, {'name': 'writer', 'type': 'console_output', 'params': {}, 'outputs': []}] |
def Convert(number,mode):
if mode.startswith("mili") and mode.endswith("meter") == True:
Milimeter = number
Centimeter = number / 10
Meter = Centimeter / 100
Kilometer = Meter / 1000
Result1 = f"Milimeters : {Milimeter}"
Result2 =f"Centimeters : {Centimeter}"
Result3 =f"Meters : {Meter}"
Result4=f"Kilometers : {Kilometer}"
return Result1,Result2,Result3,Result4
if mode.startswith("centi") and mode.endswith("meter") == True:
Centimeter = number
Milimeter = number * 10
Meter = number /100
Kilometer = Meter / 1000
Result1 = f"Milimeters : {Milimeter}"
Result2 =f"Centimeters : {Centimeter}"
Result3 =f"Meters : {Meter}"
Result4=f"Kilometers : {Kilometer}"
return Result1,Result2,Result3,Result4
if mode.startswith("me") and mode.endswith("ter") == True:
Meter = number
Centimeter = number * 100
Milimeter = Centimeter * 10
Kilometer = number / 1000
Result1 = f"Milimeters : {Milimeter}"
Result2 =f"Centimeters : {Centimeter}"
Result3 =f"Meters : {Meter}"
Result4=f"Kilometers : {Kilometer}"
return Result1,Result2,Result3,Result4
if mode.startswith("kilo") and mode.endswith("meter") == True:
Kilometer = number
Meter = number * 1000
Centimeter = Meter * 100
Milimeter = Centimeter * 10
Result1 = f"Milimeters : {Milimeter}"
Result2 =f"Centimeters : {Centimeter}"
Result3 =f"Meters : {Meter}"
Result4=f"Kilometers : {Kilometer}"
return Result1,Result2,Result3,Result4
| def convert(number, mode):
if mode.startswith('mili') and mode.endswith('meter') == True:
milimeter = number
centimeter = number / 10
meter = Centimeter / 100
kilometer = Meter / 1000
result1 = f'Milimeters : {Milimeter}'
result2 = f'Centimeters : {Centimeter}'
result3 = f'Meters : {Meter}'
result4 = f'Kilometers : {Kilometer}'
return (Result1, Result2, Result3, Result4)
if mode.startswith('centi') and mode.endswith('meter') == True:
centimeter = number
milimeter = number * 10
meter = number / 100
kilometer = Meter / 1000
result1 = f'Milimeters : {Milimeter}'
result2 = f'Centimeters : {Centimeter}'
result3 = f'Meters : {Meter}'
result4 = f'Kilometers : {Kilometer}'
return (Result1, Result2, Result3, Result4)
if mode.startswith('me') and mode.endswith('ter') == True:
meter = number
centimeter = number * 100
milimeter = Centimeter * 10
kilometer = number / 1000
result1 = f'Milimeters : {Milimeter}'
result2 = f'Centimeters : {Centimeter}'
result3 = f'Meters : {Meter}'
result4 = f'Kilometers : {Kilometer}'
return (Result1, Result2, Result3, Result4)
if mode.startswith('kilo') and mode.endswith('meter') == True:
kilometer = number
meter = number * 1000
centimeter = Meter * 100
milimeter = Centimeter * 10
result1 = f'Milimeters : {Milimeter}'
result2 = f'Centimeters : {Centimeter}'
result3 = f'Meters : {Meter}'
result4 = f'Kilometers : {Kilometer}'
return (Result1, Result2, Result3, Result4) |
pt = int(input('digite o primeiro termo da PA '))
r = int(input('digite a razao '))
termos = 1
total=0
total2=0
contador = 10
print('{} -> '.format(pt),end='')
while contador > 1 :
if contador == 10:
total=pt+r
print('{} -> '.format(total),end='')
contador=contador-1
else:
total= total+r
print('{} -> '.format(total),end='')
contador=contador-1
print('Fim')
| pt = int(input('digite o primeiro termo da PA '))
r = int(input('digite a razao '))
termos = 1
total = 0
total2 = 0
contador = 10
print('{} -> '.format(pt), end='')
while contador > 1:
if contador == 10:
total = pt + r
print('{} -> '.format(total), end='')
contador = contador - 1
else:
total = total + r
print('{} -> '.format(total), end='')
contador = contador - 1
print('Fim') |
def analysis(sliceno, job):
job.save('this_is_the_data_analysis ' + str(sliceno), 'myfile1', sliceno=sliceno)
def synthesis(job):
job.save('this_is_the_data_2', 'myfile2')
| def analysis(sliceno, job):
job.save('this_is_the_data_analysis ' + str(sliceno), 'myfile1', sliceno=sliceno)
def synthesis(job):
job.save('this_is_the_data_2', 'myfile2') |
"""Common configuration constants
"""
PROJECTNAME = 'rendereasy.cnawhatsapp'
ADD_PERMISSIONS = {
# -*- extra stuff goes here -*-
'Envio': 'rendereasy.cnawhatsapp: Add Envio',
'Grupo': 'rendereasy.cnawhatsapp: Add Grupo',
}
| """Common configuration constants
"""
projectname = 'rendereasy.cnawhatsapp'
add_permissions = {'Envio': 'rendereasy.cnawhatsapp: Add Envio', 'Grupo': 'rendereasy.cnawhatsapp: Add Grupo'} |
class IIIF_Photo(object):
def __init__(self, iiif, country):
self.iiif = iiif
self.country = country
def get_photo_link(self):
return self.iiif["images"][0]["resource"]["@id"]
| class Iiif_Photo(object):
def __init__(self, iiif, country):
self.iiif = iiif
self.country = country
def get_photo_link(self):
return self.iiif['images'][0]['resource']['@id'] |
birth_year = input('Birth year: ')
print(type(birth_year))
age = 2019 - int(birth_year)
print(type(age))
print(age)
#exercise
weight_in_lbs = input('What is your weight (in pounds)? ')
weight_in_kg = float(weight_in_lbs) * 0.454
print('Your weight is (in kg): ' + str(weight_in_kg))
| birth_year = input('Birth year: ')
print(type(birth_year))
age = 2019 - int(birth_year)
print(type(age))
print(age)
weight_in_lbs = input('What is your weight (in pounds)? ')
weight_in_kg = float(weight_in_lbs) * 0.454
print('Your weight is (in kg): ' + str(weight_in_kg)) |
#!/usr/bin/python
# -*- coding: utf-8 -*-
# Copyright: (c) 2017, Michael Eaton <meaton@iforium.com>
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
# this is a windows documentation stub. actual code lives in the .ps1
# file of the same name
ANSIBLE_METADATA = {'metadata_version': '1.1',
'status': ['preview'],
'supported_by': 'community'}
DOCUMENTATION = r'''
---
module: win_firewall
version_added: '2.4'
short_description: Enable or disable the Windows Firewall
description:
- Enable or Disable Windows Firewall profiles.
requirements:
- This module requires Windows Management Framework 5 or later.
options:
profiles:
description:
- Specify one or more profiles to change.
type: list
choices: [ Domain, Private, Public ]
default: [ Domain, Private, Public ]
state:
description:
- Set state of firewall for given profile.
type: str
choices: [ disabled, enabled ]
seealso:
- module: win_firewall_rule
author:
- Michael Eaton (@michaeldeaton)
'''
EXAMPLES = r'''
- name: Enable firewall for Domain, Public and Private profiles
win_firewall:
state: enabled
profiles:
- Domain
- Private
- Public
tags: enable_firewall
- name: Disable Domain firewall
win_firewall:
state: disabled
profiles:
- Domain
tags: disable_firewall
'''
RETURN = r'''
enabled:
description: Current firewall status for chosen profile (after any potential change).
returned: always
type: bool
sample: true
profiles:
description: Chosen profile.
returned: always
type: str
sample: Domain
state:
description: Desired state of the given firewall profile(s).
returned: always
type: list
sample: enabled
'''
| ansible_metadata = {'metadata_version': '1.1', 'status': ['preview'], 'supported_by': 'community'}
documentation = "\n---\nmodule: win_firewall\nversion_added: '2.4'\nshort_description: Enable or disable the Windows Firewall\ndescription:\n- Enable or Disable Windows Firewall profiles.\nrequirements:\n - This module requires Windows Management Framework 5 or later.\noptions:\n profiles:\n description:\n - Specify one or more profiles to change.\n type: list\n choices: [ Domain, Private, Public ]\n default: [ Domain, Private, Public ]\n state:\n description:\n - Set state of firewall for given profile.\n type: str\n choices: [ disabled, enabled ]\nseealso:\n- module: win_firewall_rule\nauthor:\n- Michael Eaton (@michaeldeaton)\n"
examples = '\n- name: Enable firewall for Domain, Public and Private profiles\n win_firewall:\n state: enabled\n profiles:\n - Domain\n - Private\n - Public\n tags: enable_firewall\n\n- name: Disable Domain firewall\n win_firewall:\n state: disabled\n profiles:\n - Domain\n tags: disable_firewall\n'
return = '\nenabled:\n description: Current firewall status for chosen profile (after any potential change).\n returned: always\n type: bool\n sample: true\nprofiles:\n description: Chosen profile.\n returned: always\n type: str\n sample: Domain\nstate:\n description: Desired state of the given firewall profile(s).\n returned: always\n type: list\n sample: enabled\n' |
{
'targets': [
{
'target_name': 'pointer',
'sources': ['pointer.cc'],
'include_dirs': ['<!(node -e \'require("nan")\')'],
'link_settings': {
'libraries': [
'-lX11',
]
},
'cflags': [
],
}
]
}
| {'targets': [{'target_name': 'pointer', 'sources': ['pointer.cc'], 'include_dirs': ['<!(node -e \'require("nan")\')'], 'link_settings': {'libraries': ['-lX11']}, 'cflags': []}]} |
#
# PySNMP MIB module CLEARTRAC7-MIB (http://snmplabs.com/pysmi)
# ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/CLEARTRAC7-MIB
# Produced by pysmi-0.3.4 at Mon Apr 29 18:09:07 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")
SingleValueConstraint, ConstraintsUnion, ConstraintsIntersection, ValueRangeConstraint, ValueSizeConstraint = mibBuilder.importSymbols("ASN1-REFINEMENT", "SingleValueConstraint", "ConstraintsUnion", "ConstraintsIntersection", "ValueRangeConstraint", "ValueSizeConstraint")
ModuleCompliance, NotificationGroup = mibBuilder.importSymbols("SNMPv2-CONF", "ModuleCompliance", "NotificationGroup")
TimeTicks, NotificationType, MibIdentifier, Counter64, IpAddress, ModuleIdentity, Gauge32, Unsigned32, enterprises, NotificationType, Counter32, Bits, ObjectIdentity, MibScalar, MibTable, MibTableRow, MibTableColumn, iso, Integer32 = mibBuilder.importSymbols("SNMPv2-SMI", "TimeTicks", "NotificationType", "MibIdentifier", "Counter64", "IpAddress", "ModuleIdentity", "Gauge32", "Unsigned32", "enterprises", "NotificationType", "Counter32", "Bits", "ObjectIdentity", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "iso", "Integer32")
TextualConvention, DisplayString = mibBuilder.importSymbols("SNMPv2-TC", "TextualConvention", "DisplayString")
lucent = MibIdentifier((1, 3, 6, 1, 4, 1, 727))
cleartrac7 = MibIdentifier((1, 3, 6, 1, 4, 1, 727, 7))
mgmt = MibIdentifier((1, 3, 6, 1, 4, 1, 727, 7, 2))
system = MibIdentifier((1, 3, 6, 1, 4, 1, 727, 7, 2, 1))
ifwan = MibIdentifier((1, 3, 6, 1, 4, 1, 727, 7, 2, 2))
iflan = MibIdentifier((1, 3, 6, 1, 4, 1, 727, 7, 2, 3))
ifvce = MibIdentifier((1, 3, 6, 1, 4, 1, 727, 7, 2, 18))
pu = MibIdentifier((1, 3, 6, 1, 4, 1, 727, 7, 2, 4))
schedule = MibIdentifier((1, 3, 6, 1, 4, 1, 727, 7, 2, 5))
bridge = MibIdentifier((1, 3, 6, 1, 4, 1, 727, 7, 2, 6))
phone = MibIdentifier((1, 3, 6, 1, 4, 1, 727, 7, 2, 7))
filter = MibIdentifier((1, 3, 6, 1, 4, 1, 727, 7, 2, 8))
pysmi_class = MibIdentifier((1, 3, 6, 1, 4, 1, 727, 7, 2, 9)).setLabel("class")
pvc = MibIdentifier((1, 3, 6, 1, 4, 1, 727, 7, 2, 10))
ipx = MibIdentifier((1, 3, 6, 1, 4, 1, 727, 7, 2, 11))
ipstatic = MibIdentifier((1, 3, 6, 1, 4, 1, 727, 7, 2, 13))
ip = MibIdentifier((1, 3, 6, 1, 4, 1, 727, 7, 2, 14))
ospf = MibIdentifier((1, 3, 6, 1, 4, 1, 727, 7, 2, 15))
ipxfilter = MibIdentifier((1, 3, 6, 1, 4, 1, 727, 7, 2, 16))
stat = MibIdentifier((1, 3, 6, 1, 4, 1, 727, 7, 2, 20))
intf = MibIdentifier((1, 3, 6, 1, 4, 1, 727, 7, 2, 30))
slot = MibIdentifier((1, 3, 6, 1, 4, 1, 727, 7, 2, 31))
ipaddr = MibIdentifier((1, 3, 6, 1, 4, 1, 727, 7, 2, 32))
bootp = MibIdentifier((1, 3, 6, 1, 4, 1, 727, 7, 2, 33))
proxy = MibIdentifier((1, 3, 6, 1, 4, 1, 727, 7, 2, 34))
timep = MibIdentifier((1, 3, 6, 1, 4, 1, 727, 7, 2, 35))
sysDesc = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 1), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: sysDesc.setStatus('mandatory')
sysContact = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 2), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 32))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: sysContact.setStatus('mandatory')
sysName = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 3), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 32))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: sysName.setStatus('mandatory')
sysUnitRoutingVersion = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 21), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 2))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: sysUnitRoutingVersion.setStatus('mandatory')
sysLocation = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 4), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 32))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: sysLocation.setStatus('mandatory')
sysDate = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 5), DisplayString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: sysDate.setStatus('mandatory')
sysClock = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 6), DisplayString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: sysClock.setStatus('mandatory')
sysDay = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 254, 255))).clone(namedValues=NamedValues(("sunday", 1), ("monday", 2), ("tuesday", 3), ("wednesday", 4), ("thursday", 5), ("friday", 6), ("saturday", 7), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: sysDay.setStatus('mandatory')
sysAcceptLoop = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("no", 1), ("yes", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: sysAcceptLoop.setStatus('mandatory')
sysLinkTimeout_s = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 9), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 1000))).setLabel("sysLinkTimeout-s").setMaxAccess("readwrite")
if mibBuilder.loadTexts: sysLinkTimeout_s.setStatus('mandatory')
sysTransitDelay_s = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 10), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 20))).setLabel("sysTransitDelay-s").setMaxAccess("readwrite")
if mibBuilder.loadTexts: sysTransitDelay_s.setStatus('mandatory')
sysDefaultIpAddr = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 11), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: sysDefaultIpAddr.setStatus('mandatory')
sysDefaultIpMask = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 12), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: sysDefaultIpMask.setStatus('mandatory')
sysDefaultGateway = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 13), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: sysDefaultGateway.setStatus('mandatory')
sysRackId = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 15), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 254, 255))).clone(namedValues=NamedValues(("cs-product-only", 0), ("rack-1", 1), ("rack-2", 2), ("rack-3", 3), ("rack-4", 4), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: sysRackId.setStatus('mandatory')
sysPsAndFansMonitoring = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 16), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 254, 255))).clone(namedValues=NamedValues(("cs-product-only", 0), ("none", 1), ("ps", 2), ("fans", 3), ("both", 4), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: sysPsAndFansMonitoring.setStatus('mandatory')
sysPsMonitoring = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 47), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("no", 1), ("yes", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: sysPsMonitoring.setStatus('mandatory')
sysSnmpTrapIpAddr1 = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 17), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: sysSnmpTrapIpAddr1.setStatus('mandatory')
sysSnmpTrapIpAddr2 = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 18), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: sysSnmpTrapIpAddr2.setStatus('mandatory')
sysSnmpTrapIpAddr3 = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 19), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: sysSnmpTrapIpAddr3.setStatus('mandatory')
sysSnmpTrapIpAddr4 = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 20), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: sysSnmpTrapIpAddr4.setStatus('mandatory')
sysThisPosId = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 30), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 5, 6, 7, 8, 254, 255))).clone(namedValues=NamedValues(("cs-product-only", 0), ("pos-1", 1), ("pos-2", 2), ("pos-3", 3), ("pos-4", 4), ("pos-5", 5), ("pos-6", 6), ("pos-7", 7), ("pos-8", 8), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: sysThisPosId.setStatus('mandatory')
sysPosNr = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 31), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 32))).setMaxAccess("readonly")
if mibBuilder.loadTexts: sysPosNr.setStatus('mandatory')
sysRacksNr = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 33), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 4))).setMaxAccess("readonly")
if mibBuilder.loadTexts: sysRacksNr.setStatus('mandatory')
sysPosTable = MibTable((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 32), )
if mibBuilder.loadTexts: sysPosTable.setStatus('mandatory')
sysPosEntry = MibTableRow((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 32, 1), ).setIndexNames((0, "CLEARTRAC7-MIB", "sysPosRackId"), (0, "CLEARTRAC7-MIB", "sysPosId"))
if mibBuilder.loadTexts: sysPosEntry.setStatus('mandatory')
sysPosId = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 32, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 5, 6, 7, 8, 254, 255))).clone(namedValues=NamedValues(("cs-product-only", 0), ("pos-1", 1), ("pos-2", 2), ("pos-3", 3), ("pos-4", 4), ("pos-5", 5), ("pos-6", 6), ("pos-7", 7), ("pos-8", 8), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: sysPosId.setStatus('mandatory')
sysPosProduct = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 32, 1, 3), ObjectIdentifier()).setMaxAccess("readonly")
if mibBuilder.loadTexts: sysPosProduct.setStatus('mandatory')
sysPosRackId = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 32, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 254, 255))).clone(namedValues=NamedValues(("single-rack", 0), ("rack-1", 1), ("rack-2", 2), ("rack-3", 3), ("rack-4", 4), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: sysPosRackId.setStatus('mandatory')
sysPosIpAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 32, 1, 5), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: sysPosIpAddr.setStatus('mandatory')
ipaddrNr = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 32, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipaddrNr.setStatus('mandatory')
ipaddrTable = MibTable((1, 3, 6, 1, 4, 1, 727, 7, 2, 32, 2), )
if mibBuilder.loadTexts: ipaddrTable.setStatus('mandatory')
ipaddrEntry = MibTableRow((1, 3, 6, 1, 4, 1, 727, 7, 2, 32, 2, 1), ).setIndexNames((0, "CLEARTRAC7-MIB", "ipaddrIndex"))
if mibBuilder.loadTexts: ipaddrEntry.setStatus('mandatory')
ipaddrIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 32, 2, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipaddrIndex.setStatus('mandatory')
ipaddrAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 32, 2, 1, 2), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ipaddrAddr.setStatus('mandatory')
ipaddrType = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 32, 2, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 5))).clone(namedValues=NamedValues(("undef", 0), ("global", 1), ("wan", 2), ("lan", 3), ("proxy", 4), ("pvc", 5)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipaddrType.setStatus('mandatory')
ipaddrIfIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 32, 2, 1, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipaddrIfIndex.setStatus('mandatory')
sysDLCI = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 34), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: sysDLCI.setStatus('mandatory')
sysExtensionNumLength = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 35), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 5))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: sysExtensionNumLength.setStatus('mandatory')
sysExtendedDigitsLength = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 36), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 16))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: sysExtendedDigitsLength.setStatus('mandatory')
sysDialTimer = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 37), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 10))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: sysDialTimer.setStatus('mandatory')
sysCountry = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 38), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 9999))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: sysCountry.setStatus('mandatory')
sysJitterBuf = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 39), Integer32().subtype(subtypeSpec=ValueRangeConstraint(10, 255))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: sysJitterBuf.setStatus('mandatory')
sysRingFreq = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 40), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 254, 255))).clone(namedValues=NamedValues(("voice-data-only", 0), ("hz-17", 1), ("hz-20", 2), ("hz-25", 3), ("hz-50", 4), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: sysRingFreq.setStatus('mandatory')
sysRingVolt = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 41), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 254, 255))).clone(namedValues=NamedValues(("voice-data-only", 0), ("rms-Volts-60", 1), ("rms-Volts-80", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: sysRingVolt.setStatus('mandatory')
sysVoiceEncoding = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 42), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 254, 255))).clone(namedValues=NamedValues(("fp-product-only", 0), ("aCode", 1), ("bCode", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: sysVoiceEncoding.setStatus('mandatory')
sysVoiceClocking = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 43), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 254, 255))).clone(namedValues=NamedValues(("fp-product-only", 0), ("aClock", 1), ("bClock", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: sysVoiceClocking.setStatus('mandatory')
sysVoiceLog = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 44), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("no", 1), ("yes", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: sysVoiceLog.setStatus('mandatory')
sysSpeedDialNumLength = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 45), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: sysSpeedDialNumLength.setStatus('mandatory')
sysAutoSaveDelay = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 46), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 255))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: sysAutoSaveDelay.setStatus('mandatory')
sysVoiceHighestPriority = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 48), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("no", 1), ("yes", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: sysVoiceHighestPriority.setStatus('mandatory')
sysVoiceClass = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 49), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 8))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: sysVoiceClass.setStatus('mandatory')
sysHuntForwardingAUnit = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 50), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 16))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: sysHuntForwardingAUnit.setStatus('mandatory')
sysHuntForwardingBUnit = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 51), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 16))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: sysHuntForwardingBUnit.setStatus('mandatory')
sysHuntForwardingADLCI = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 52), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: sysHuntForwardingADLCI.setStatus('mandatory')
sysHuntForwardingBDLCI = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 53), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: sysHuntForwardingBDLCI.setStatus('mandatory')
sysHuntForwardingASvcAddress = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 54), DisplayString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: sysHuntForwardingASvcAddress.setStatus('mandatory')
sysHuntForwardingBSvcAddress = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 55), DisplayString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: sysHuntForwardingBSvcAddress.setStatus('mandatory')
sysBackplaneRipVersion = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 56), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 254, 255))).clone(namedValues=NamedValues(("disable", 1), ("v1", 2), ("v2-broadcast", 3), ("v2-multicast", 4), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: sysBackplaneRipVersion.setStatus('mandatory')
sysTrapRackandPos = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 57), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: sysTrapRackandPos.setStatus('mandatory')
proxyNumber = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 34, 1), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: proxyNumber.setStatus('mandatory')
proxyTable = MibTable((1, 3, 6, 1, 4, 1, 727, 7, 2, 34, 2), )
if mibBuilder.loadTexts: proxyTable.setStatus('mandatory')
proxyEntry = MibTableRow((1, 3, 6, 1, 4, 1, 727, 7, 2, 34, 2, 1), ).setIndexNames((0, "CLEARTRAC7-MIB", "proxyIndex"))
if mibBuilder.loadTexts: proxyEntry.setStatus('mandatory')
proxyIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 34, 2, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: proxyIndex.setStatus('mandatory')
proxyComm = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 34, 2, 1, 2), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 32))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: proxyComm.setStatus('mandatory')
proxyIpAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 34, 2, 1, 3), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: proxyIpAddr.setStatus('mandatory')
proxyIpMask = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 34, 2, 1, 4), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: proxyIpMask.setStatus('mandatory')
proxyTrapIpAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 34, 2, 1, 5), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: proxyTrapIpAddr.setStatus('mandatory')
proxyDefaultGateway = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 34, 2, 1, 6), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: proxyDefaultGateway.setStatus('mandatory')
intfNumber = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 30, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: intfNumber.setStatus('mandatory')
intfTable = MibTable((1, 3, 6, 1, 4, 1, 727, 7, 2, 30, 2), )
if mibBuilder.loadTexts: intfTable.setStatus('mandatory')
intfEntry = MibTableRow((1, 3, 6, 1, 4, 1, 727, 7, 2, 30, 2, 1), ).setIndexNames((0, "CLEARTRAC7-MIB", "intfIndex"))
if mibBuilder.loadTexts: intfEntry.setStatus('mandatory')
intfIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 30, 2, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: intfIndex.setStatus('mandatory')
intfDesc = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 30, 2, 1, 2), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: intfDesc.setStatus('mandatory')
intfType = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 30, 2, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 99, 254, 255))).clone(namedValues=NamedValues(("wan-on-baseCard", 1), ("voice-on-baseCard", 2), ("wan-on-slot", 3), ("voice-on-slot", 4), ("lan-on-baseCard", 5), ("lan-on-slot", 6), ("proxy-on-slot", 7), ("voice-control-on-slot", 8), ("clock-extract-module", 9), ("other", 99), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: intfType.setStatus('mandatory')
intfNumInType = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 30, 2, 1, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 256))).setMaxAccess("readonly")
if mibBuilder.loadTexts: intfNumInType.setStatus('mandatory')
intfSlot = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 30, 2, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 254, 255))).clone(namedValues=NamedValues(("baseCard", 0), ("slot-1", 1), ("slot-2", 2), ("slot-3", 3), ("slot-4", 4), ("slot-5", 5), ("slot-6", 6), ("slot-7", 7), ("slot-8", 8), ("slot-A", 9), ("slot-B", 10), ("slot-C", 11), ("slot-D", 12), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: intfSlot.setStatus('mandatory')
intfSlotType = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 30, 2, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 5, 6, 7, 9, 16, 17, 18, 19, 21, 22, 23, 51, 36, 9999, 254, 255))).clone(namedValues=NamedValues(("baseCard", 0), ("ethernet", 1), ("vcf03", 2), ("g703-E1", 3), ("g703-T1", 4), ("g703-E1-ii", 5), ("g703-T1-ii", 6), ("tokenring", 7), ("voice", 9), ("tic", 16), ("tic-75", 17), ("dvc", 18), ("isdn-bri-voice", 19), ("eic", 21), ("eic-120", 22), ("cem", 23), ("vfc03r", 51), ("proxy", 36), ("unkown", 9999), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: intfSlotType.setStatus('mandatory')
intfNumInSlot = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 30, 2, 1, 7), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 256))).setMaxAccess("readonly")
if mibBuilder.loadTexts: intfNumInSlot.setStatus('mandatory')
intfModuleType = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 30, 2, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 17, 18, 19, 20, 21, 22, 23, 255, 254, 253, 252))).clone(namedValues=NamedValues(("module-rs232-dce", 0), ("module-rs232-dte", 1), ("module-v35-dce", 2), ("module-v35-dte", 3), ("module-x21-dce", 4), ("module-x21-dte", 5), ("module-rs530-dce", 6), ("module-rs530-dte", 7), ("module-rs366A-dce", 8), ("module-rs366A-dte", 9), ("module-rs449-dce", 10), ("module-rs449-dte", 11), ("module-univ-dce", 17), ("module-univ-dte", 18), ("module-i430s-dte", 19), ("module-i430u-dte", 20), ("module-i431-T1-dte", 21), ("module-i431-E1-dte", 22), ("module-dsucsu", 23), ("module-undef-dce", 255), ("module-undef-dte", 254), ("module-undef", 253), ("not-applicable", 252)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: intfModuleType.setStatus('mandatory')
intfSlotNumber = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 31, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: intfSlotNumber.setStatus('mandatory')
slotPortInSlotTable = MibTable((1, 3, 6, 1, 4, 1, 727, 7, 2, 31, 2), )
if mibBuilder.loadTexts: slotPortInSlotTable.setStatus('mandatory')
slotPortInSlotEntry = MibTableRow((1, 3, 6, 1, 4, 1, 727, 7, 2, 31, 2, 1), ).setIndexNames((0, "CLEARTRAC7-MIB", "slotSlot"), (0, "CLEARTRAC7-MIB", "slotPortInSlot"))
if mibBuilder.loadTexts: slotPortInSlotEntry.setStatus('mandatory')
slotSlot = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 31, 2, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 254, 255))).clone(namedValues=NamedValues(("baseCard", 0), ("slot-1", 1), ("slot-2", 2), ("slot-3", 3), ("slot-4", 4), ("slot-5", 5), ("slot-6", 6), ("slot-7", 7), ("slot-8", 8), ("slot-A", 9), ("slot-B", 10), ("slot-C", 11), ("slot-D", 12), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: slotSlot.setStatus('mandatory')
slotPortInSlot = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 31, 2, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 256))).setMaxAccess("readonly")
if mibBuilder.loadTexts: slotPortInSlot.setStatus('mandatory')
slotIfIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 31, 2, 1, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: slotIfIndex.setStatus('mandatory')
ifwanNumber = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ifwanNumber.setStatus('mandatory')
ifwanTable = MibTable((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2), )
if mibBuilder.loadTexts: ifwanTable.setStatus('mandatory')
ifwanEntry = MibTableRow((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1), ).setIndexNames((0, "CLEARTRAC7-MIB", "ifwanIndex"))
if mibBuilder.loadTexts: ifwanEntry.setStatus('mandatory')
ifwanIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ifwanIndex.setStatus('mandatory')
ifwanDesc = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 2), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ifwanDesc.setStatus('mandatory')
ifwanProtocol = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 17, 18, 19, 28, 29, 31, 254, 255))).clone(namedValues=NamedValues(("off", 1), ("p-sdlc", 2), ("s-sdlc", 3), ("hdlc", 4), ("ddcmp", 5), ("t-async", 6), ("r-async", 7), ("bsc", 8), ("cop", 9), ("pvcr", 10), ("passthru", 11), ("console", 12), ("fr-net", 17), ("fr-user", 18), ("ppp", 19), ("g703", 28), ("x25", 29), ("sf", 31), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanProtocol.setStatus('mandatory')
ifwanSpeed_bps = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(110, 2000000))).setLabel("ifwanSpeed-bps").setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanSpeed_bps.setStatus('mandatory')
ifwanFallBackSpeed_bps = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 5), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 2000000))).setLabel("ifwanFallBackSpeed-bps").setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanFallBackSpeed_bps.setStatus('mandatory')
ifwanFallBackSpeedEnable = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 91), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("no", 1), ("yes", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanFallBackSpeedEnable.setStatus('mandatory')
ifwanInterface = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 16, 17, 18, 19, 20, 21, 22, 23, 255, 254, 253))).clone(namedValues=NamedValues(("dce-rs232", 0), ("dte-rs232", 1), ("dce-v35", 2), ("dte-v35", 3), ("dce-x21", 4), ("dte-x21", 5), ("dce-rs530", 6), ("dte-rs530", 7), ("dce-rs366a", 8), ("dte-rs366a", 9), ("dce-rs449", 10), ("dte-rs449", 11), ("dte-aui", 12), ("dte-tpe", 13), ("autom", 16), ("dce-univ", 17), ("dte-univ", 18), ("i430s", 19), ("i430u", 20), ("i431-t1", 21), ("i431-e1", 22), ("dsu-csu", 23), ("dce-undef", 255), ("dte-undef", 254), ("type-undef", 253)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanInterface.setStatus('mandatory')
ifwanClocking = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 11, 12, 13, 254, 255))).clone(namedValues=NamedValues(("internal", 1), ("external", 2), ("ipl", 3), ("itb", 4), ("async", 5), ("iso-int", 6), ("iso-ext", 7), ("t1-e1-B-Rcvd", 11), ("t1-e1-A-Rcvd", 12), ("t1-e1-Local", 13), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanClocking.setStatus('mandatory')
ifwanCoding = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 254, 255))).clone(namedValues=NamedValues(("nrz", 1), ("nrzi", 2), ("nrz-crc0", 3), ("nrzi-crc0", 4), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanCoding.setStatus('mandatory')
ifwanModem = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 9), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 254, 255))).clone(namedValues=NamedValues(("static", 1), ("dynamic", 2), ("statpass", 3), ("dynapass", 4), ("statfix", 5), ("dynafix", 6), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanModem.setStatus('mandatory')
ifwanTxStart = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 10), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 254, 255))).clone(namedValues=NamedValues(("auto", 0), ("max", 1), ("byte-48", 2), ("byte-96", 3), ("byte-144", 4), ("byte-192", 5), ("byte-256", 6), ("byte-512", 7), ("byte-1024", 8), ("byte-2048", 9), ("byte-8", 10), ("byte-16", 11), ("byte-24", 12), ("byte-32", 13), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanTxStart.setStatus('mandatory')
ifwanTxStartCop = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 89), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 254, 255))).clone(namedValues=NamedValues(("auto", 0), ("max", 1), ("byte-8", 2), ("byte-16", 3), ("byte-24", 4), ("byte-32", 5), ("byte-40", 6), ("byte-48", 7), ("byte-96", 8), ("byte-144", 9), ("byte-192", 10), ("byte-256", 11), ("byte-512", 12), ("byte-1024", 13), ("byte-2048", 14), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanTxStartCop.setStatus('mandatory')
ifwanTxStartPass = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 90), Integer32().subtype(subtypeSpec=ValueRangeConstraint(3, 12))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanTxStartPass.setStatus('mandatory')
ifwanIdle = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 11), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 254, 255))).clone(namedValues=NamedValues(("space", 1), ("mark", 2), ("flag", 3), ("markd", 4), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanIdle.setStatus('mandatory')
ifwanDuplex = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 12), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("half", 1), ("full", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanDuplex.setStatus('mandatory')
ifwanGroupPoll = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 13), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("no", 1), ("yes", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanGroupPoll.setStatus('mandatory')
ifwanGroupAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 14), OctetString().subtype(subtypeSpec=ValueSizeConstraint(2, 2)).setFixedLength(2)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanGroupAddress.setStatus('mandatory')
ifwanPollDelay_ms = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 15), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 1000))).setLabel("ifwanPollDelay-ms").setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanPollDelay_ms.setStatus('mandatory')
ifwanFrameDelay = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 16), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 254, 255))).clone(namedValues=NamedValues(("delay-0p0-ms", 1), ("delay-0p5-ms", 2), ("delay-1p0-ms", 3), ("delay-1p5-ms", 4), ("delay-2p0-ms", 5), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanFrameDelay.setStatus('mandatory')
ifwanFormat = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 17), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 254, 255))).clone(namedValues=NamedValues(("fmt-8-none", 1), ("fmt-7-none", 2), ("fmt-7-odd", 3), ("fmt-7-even", 4), ("fmt-7-space", 5), ("fmt-7-mark", 6), ("fmt-7-ignore", 7), ("fmt-8-even", 8), ("fmt-8-odd", 9), ("fmt-8n-2stop", 10), ("fmt-8-bits", 11), ("fmt-6-bits", 12), ("sync", 13), ("async", 14), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanFormat.setStatus('mandatory')
ifwanSync = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 18), OctetString().subtype(subtypeSpec=ValueSizeConstraint(2, 2)).setFixedLength(2)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanSync.setStatus('mandatory')
ifwanDropSyncCounter = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 19), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 100))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanDropSyncCounter.setStatus('mandatory')
ifwanDropSyncCharacter = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 20), OctetString().subtype(subtypeSpec=ValueSizeConstraint(1, 1)).setFixedLength(1)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanDropSyncCharacter.setStatus('mandatory')
ifwanMode = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 21), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 254, 255))).clone(namedValues=NamedValues(("inactive", 1), ("dedicated", 2), ("answer", 3), ("call-backup", 4), ("call-bod", 5), ("wait-user", 6), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanMode.setStatus('mandatory')
ifwanBodCall_s = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 22), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 1000))).setLabel("ifwanBodCall-s").setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanBodCall_s.setStatus('mandatory')
ifwanBodHang_s = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 23), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 1000))).setLabel("ifwanBodHang-s").setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanBodHang_s.setStatus('mandatory')
ifwanBodLevel = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 24), Integer32().subtype(subtypeSpec=ValueRangeConstraint(5, 95))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanBodLevel.setStatus('mandatory')
ifwanBackupCall_s = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 25), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 1000))).setLabel("ifwanBackupCall-s").setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanBackupCall_s.setStatus('mandatory')
ifwanDialTimeout_s = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 92), Integer32().subtype(subtypeSpec=ValueRangeConstraint(30, 1000))).setLabel("ifwanDialTimeout-s").setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanDialTimeout_s.setStatus('mandatory')
ifwanBackupHang_s = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 26), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 1000))).setLabel("ifwanBackupHang-s").setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanBackupHang_s.setStatus('mandatory')
ifwanPortToBack = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 27), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(15, 16, 1, 2, 3, 4, 5, 6, 7, 8, 254, 255))).clone(namedValues=NamedValues(("any", 15), ("all", 16), ("port-1", 1), ("port-2", 2), ("port-3", 3), ("port-4", 4), ("port-5", 5), ("port-6", 6), ("port-7", 7), ("port-8", 8), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanPortToBack.setStatus('mandatory')
ifwanDialer = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 28), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 254, 255))).clone(namedValues=NamedValues(("dTR", 1), ("x21-L1", 2), ("x21-L2", 3), ("v25-H", 4), ("v25-B", 5), ("aT-9600", 6), ("aT-19200", 7), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanDialer.setStatus('mandatory')
ifwanRemoteUnit = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 29), DisplayString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanRemoteUnit.setStatus('mandatory')
ifwanClassNumber = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 30), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 8))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanClassNumber.setStatus('mandatory')
ifwanRingNumber = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 31), OctetString().subtype(subtypeSpec=ValueSizeConstraint(2, 2)).setFixedLength(2)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanRingNumber.setStatus('mandatory')
ifwanIpAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 32), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanIpAddress.setStatus('mandatory')
ifwanSubnetMask = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 33), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanSubnetMask.setStatus('mandatory')
ifwanMaxFrame = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 34), Integer32().subtype(subtypeSpec=ValueRangeConstraint(128, 8192))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanMaxFrame.setStatus('mandatory')
ifwanCompression = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 36), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("no", 1), ("yes", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanCompression.setStatus('mandatory')
ifwanPriority = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 37), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 255))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ifwanPriority.setStatus('mandatory')
ifwanTimeout = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 39), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1000, 30000))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanTimeout.setStatus('mandatory')
ifwanRetry = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 40), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 1000))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanRetry.setStatus('mandatory')
ifwanRemotePort = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 41), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 255))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanRemotePort.setStatus('mandatory')
ifwanFlowControl = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 42), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("off", 1), ("on", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanFlowControl.setStatus('mandatory')
ifwanMgmtInterface = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 43), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 254, 255))).clone(namedValues=NamedValues(("lmi", 1), ("annex-d", 2), ("q-933", 3), ("none", 4), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanMgmtInterface.setStatus('mandatory')
ifwanEnquiryTimer_s = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 44), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 30))).setLabel("ifwanEnquiryTimer-s").setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanEnquiryTimer_s.setStatus('mandatory')
ifwanReportCycle = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 45), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 256))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanReportCycle.setStatus('mandatory')
ifwanIpRip = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 46), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 254, 255))).clone(namedValues=NamedValues(("disable", 1), ("v1", 2), ("v2-broadcast", 3), ("v2-multicast", 4), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanIpRip.setStatus('mandatory')
ifwanCllm = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 47), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("off", 1), ("on", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanCllm.setStatus('mandatory')
ifwanIpxRip = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 48), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("disable", 1), ("enable", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanIpxRip.setStatus('mandatory')
ifwanIpxSap = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 49), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("disable", 1), ("enable", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanIpxSap.setStatus('mandatory')
ifwanIpxNetNum = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 50), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanIpxNetNum.setStatus('mandatory')
ifwanRxFlow = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 52), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(5, 1, 2, 254, 255))).clone(namedValues=NamedValues(("none", 5), ("xon-Xoff", 1), ("hardware", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanRxFlow.setStatus('mandatory')
ifwanTxFlow = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 53), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(5, 1, 2, 254, 255))).clone(namedValues=NamedValues(("none", 5), ("xon-Xoff", 1), ("hardware", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanTxFlow.setStatus('mandatory')
ifwanTxHold_s = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 54), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 1000))).setLabel("ifwanTxHold-s").setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanTxHold_s.setStatus('mandatory')
ifwanDsOSpeed_bps = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 55), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("bps-64000", 1), ("bps-56000", 2), ("not-applicable", 254), ("not-available", 255)))).setLabel("ifwanDsOSpeed-bps").setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanDsOSpeed_bps.setStatus('mandatory')
ifwanFraming = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 58), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(2, 3, 4, 254, 255))).clone(namedValues=NamedValues(("esf", 2), ("d4", 3), ("other", 4), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanFraming.setStatus('mandatory')
ifwanTerminating = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 59), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("tE", 1), ("nT", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanTerminating.setStatus('mandatory')
ifwanCrc4 = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 60), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("disable", 1), ("enable", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanCrc4.setStatus('mandatory')
ifwanLineCoding = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 61), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 5, 4, 7, 254, 255))).clone(namedValues=NamedValues(("ami-e1", 0), ("hdb3-e1", 1), ("b8zs-t1", 2), ("ami-t1", 5), ("other", 4), ("b7sz-t1", 7), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanLineCoding.setStatus('mandatory')
ifwanBChannels = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 62), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 254, 255))).clone(namedValues=NamedValues(("disable", 1), ("b1", 2), ("b2", 3), ("b1-plus-b2", 4), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanBChannels.setStatus('mandatory')
ifwanMultiframing = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 63), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("disable", 1), ("enable", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanMultiframing.setStatus('mandatory')
ifwanOspfEnable = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 64), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("disable", 1), ("enable", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanOspfEnable.setStatus('mandatory')
ifwanOspfAreaId = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 65), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanOspfAreaId.setStatus('mandatory')
ifwanOspfTransitDelay = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 66), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 360))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanOspfTransitDelay.setStatus('mandatory')
ifwanOspfRetransmitInt = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 67), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 360))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanOspfRetransmitInt.setStatus('mandatory')
ifwanOspfHelloInt = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 68), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 360))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanOspfHelloInt.setStatus('mandatory')
ifwanOspfDeadInt = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 69), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 2000))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanOspfDeadInt.setStatus('mandatory')
ifwanOspfPassword = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 70), DisplayString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanOspfPassword.setStatus('mandatory')
ifwanOspfMetricCost = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 71), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65534))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanOspfMetricCost.setStatus('mandatory')
ifwanChUse = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 72), DisplayString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanChUse.setStatus('mandatory')
ifwanGainLimit = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 77), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("db-30", 1), ("db-36", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanGainLimit.setStatus('mandatory')
ifwanSignaling = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 78), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 254, 255))).clone(namedValues=NamedValues(("none", 1), ("t1-rob-bit", 2), ("e1-cas", 3), ("e1-ccs", 4), ("trsp-orig", 5), ("trsp-answ", 6), ("qsig", 7), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanSignaling.setStatus('mandatory')
ifwanIdleCode = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 79), OctetString().subtype(subtypeSpec=ValueSizeConstraint(1, 1)).setFixedLength(1)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanIdleCode.setStatus('mandatory')
ifwanLineBuild = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 80), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 254, 255))).clone(namedValues=NamedValues(("ft0-to-133", 0), ("ft133-to-266", 1), ("ft266-to-399", 2), ("ft399-to-533", 3), ("ft533-to-655", 4), ("dbMinus7point5", 5), ("dbMinus15", 6), ("dbMinus22point5", 7), ("ohm-75", 8), ("ohm-120", 9), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanLineBuild.setStatus('mandatory')
ifwanT1E1Status = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 84), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("disable", 1), ("enable", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanT1E1Status.setStatus('mandatory')
ifwanT1E1LoopBack = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 85), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 254, 255))).clone(namedValues=NamedValues(("disable", 1), ("enable", 2), ("lev1-local", 3), ("lev2-local", 4), ("echo", 5), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanT1E1LoopBack.setStatus('mandatory')
ifwanChExp = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 86), DisplayString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanChExp.setStatus('mandatory')
ifwanT1E1InterBit = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 87), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("disable", 1), ("enable", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanT1E1InterBit.setStatus('mandatory')
ifwanEncodingLaw = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 88), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 254, 255))).clone(namedValues=NamedValues(("aLaw", 0), ("muLaw", 1), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanEncodingLaw.setStatus('mandatory')
ifwanCellPacketization = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 93), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("disable", 1), ("enable", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanCellPacketization.setStatus('mandatory')
ifwanMaxChannels = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 94), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 10000))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanMaxChannels.setStatus('mandatory')
ifwanCondLMIPort = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 95), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 254, 255))).clone(namedValues=NamedValues(("none", 0), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanCondLMIPort.setStatus('mandatory')
ifwanExtNumber = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 96), DisplayString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanExtNumber.setStatus('mandatory')
ifwanDestExtNumber = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 97), DisplayString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanDestExtNumber.setStatus('mandatory')
ifwanConnTimeout_s = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 98), Integer32().subtype(subtypeSpec=ValueRangeConstraint(10, 30))).setLabel("ifwanConnTimeout-s").setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanConnTimeout_s.setStatus('mandatory')
ifwanSvcAddressType = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 99), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("none", 1), ("e-164", 2), ("x-121", 3)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanSvcAddressType.setStatus('mandatory')
ifwanSvcNetworkAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 100), DisplayString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanSvcNetworkAddress.setStatus('mandatory')
ifwanSvcMaxTxTimeoutT200 = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 101), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 5))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanSvcMaxTxTimeoutT200.setStatus('mandatory')
ifwanSvcInactiveTimeoutT203 = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 102), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 60))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanSvcInactiveTimeoutT203.setStatus('mandatory')
ifwanSvcIframeRetransmissionsN200 = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 103), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 16))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanSvcIframeRetransmissionsN200.setStatus('mandatory')
ifwanSvcSetupTimeoutT303 = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 104), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 30))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanSvcSetupTimeoutT303.setStatus('mandatory')
ifwanSvcDisconnectTimeoutT305 = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 105), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 30))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanSvcDisconnectTimeoutT305.setStatus('mandatory')
ifwanSvcReleaseTimeoutT308 = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 106), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 30))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanSvcReleaseTimeoutT308.setStatus('mandatory')
ifwanSvcCallProceedingTimeoutT310 = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 107), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 30))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanSvcCallProceedingTimeoutT310.setStatus('mandatory')
ifwanSvcStatusTimeoutT322 = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 108), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 30))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanSvcStatusTimeoutT322.setStatus('mandatory')
ifwanTeiMode = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 109), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("dynamic", 1), ("fixed", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanTeiMode.setStatus('mandatory')
ifwanDigitNumber = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 110), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 8))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanDigitNumber.setStatus('mandatory')
ifwanMsn1 = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 111), DisplayString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanMsn1.setStatus('mandatory')
ifwanMsn2 = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 112), DisplayString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanMsn2.setStatus('mandatory')
ifwanMsn3 = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 113), DisplayString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanMsn3.setStatus('mandatory')
ifwanX25Encapsulation = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 114), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("annex-f", 1), ("annex-g", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanX25Encapsulation.setStatus('mandatory')
ifwanPvcNumber = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 115), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanPvcNumber.setStatus('mandatory')
ifwanQsigPbxAb = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 116), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("a", 1), ("b", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanQsigPbxAb.setStatus('mandatory')
ifwanQsigPbxXy = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 117), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("x", 1), ("y", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanQsigPbxXy.setStatus('mandatory')
ifwanIpRipTxRx = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 118), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 254, 255))).clone(namedValues=NamedValues(("duplex", 1), ("tx-only", 2), ("rx-only", 3), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanIpRipTxRx.setStatus('mandatory')
ifwanIpRipAuthType = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 119), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("none", 1), ("simple", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanIpRipAuthType.setStatus('mandatory')
ifwanIpRipPassword = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 120), DisplayString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanIpRipPassword.setStatus('mandatory')
ifwanPppSilent = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 121), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("send-request", 1), ("wait-for-request", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanPppSilent.setStatus('mandatory')
ifwanPppConfigRestartTimer = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 122), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 255))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanPppConfigRestartTimer.setStatus('mandatory')
ifwanPppConfigRetries = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 123), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 255))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanPppConfigRetries.setStatus('mandatory')
ifwanPppNegociateLocalMru = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 124), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("no", 1), ("yes", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanPppNegociateLocalMru.setStatus('mandatory')
ifwanPppLocalMru = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 125), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 3000))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanPppLocalMru.setStatus('mandatory')
ifwanPppNegociatePeerMru = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 126), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("no", 1), ("yes", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanPppNegociatePeerMru.setStatus('mandatory')
ifwanPppPeerMruUpTo = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 127), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 3000))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanPppPeerMruUpTo.setStatus('mandatory')
ifwanPppNegociateAccm = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 128), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("no", 1), ("yes", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanPppNegociateAccm.setStatus('mandatory')
ifwanPppRequestedAccmChar = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 129), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanPppRequestedAccmChar.setStatus('mandatory')
ifwanPppAcceptAccmPeer = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 130), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("no", 1), ("yes", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanPppAcceptAccmPeer.setStatus('mandatory')
ifwanPppAcceptableAccmChar = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 131), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanPppAcceptableAccmChar.setStatus('mandatory')
ifwanPppRequestMagicNum = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 132), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("no", 1), ("yes", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanPppRequestMagicNum.setStatus('mandatory')
ifwanPppAcceptMagicNum = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 133), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("no", 1), ("yes", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanPppAcceptMagicNum.setStatus('mandatory')
ifwanPppAcceptOldIpAddNeg = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 134), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("no", 1), ("yes", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanPppAcceptOldIpAddNeg.setStatus('mandatory')
ifwanPppNegociateIpAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 135), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("no", 1), ("yes", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanPppNegociateIpAddress.setStatus('mandatory')
ifwanPppAcceptIpAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 136), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("no", 1), ("yes", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanPppAcceptIpAddress.setStatus('mandatory')
ifwanPppRemoteIpAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 137), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanPppRemoteIpAddress.setStatus('mandatory')
ifwanPppRemoteSubnetMask = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 138), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanPppRemoteSubnetMask.setStatus('mandatory')
ifwanHighPriorityTransparentClass = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 139), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("no", 1), ("yes", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanHighPriorityTransparentClass.setStatus('mandatory')
ifwanTransparentClassNumber = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 140), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 8))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanTransparentClassNumber.setStatus('mandatory')
ifwanChannelCompressed = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 141), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("no", 1), ("yes", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanChannelCompressed.setStatus('mandatory')
ifwanSfType = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 142), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 254, 255))).clone(namedValues=NamedValues(("demodulator", 1), ("modulator", 2), ("expansion", 3), ("agregate", 4), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanSfType.setStatus('mandatory')
ifwanSfMode = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 143), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("inactive", 1), ("active", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanSfMode.setStatus('mandatory')
ifwanSfCarrierId = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 144), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifwanSfCarrierId.setStatus('mandatory')
ifvceNumber = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ifvceNumber.setStatus('mandatory')
ifvceTable = MibTable((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2), )
if mibBuilder.loadTexts: ifvceTable.setStatus('mandatory')
ifvceEntry = MibTableRow((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1), ).setIndexNames((0, "CLEARTRAC7-MIB", "ifvceIndex"))
if mibBuilder.loadTexts: ifvceEntry.setStatus('mandatory')
ifvceIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ifvceIndex.setStatus('mandatory')
ifvceDesc = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 2), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ifvceDesc.setStatus('mandatory')
ifvceProtocol = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 21, 22, 23, 24, 26, 30, 254, 255))).clone(namedValues=NamedValues(("off", 1), ("acelp-8-kbs", 21), ("acelp-4-8-kbs", 22), ("pcm64k", 23), ("adpcm32k", 24), ("atc16k", 26), ("acelp-cn", 30), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifvceProtocol.setStatus('mandatory')
ifvceInterface = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 254, 255))).clone(namedValues=NamedValues(("fxs", 1), ("fx0", 2), ("e-and-m", 3), ("ac15", 4), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifvceInterface.setStatus('mandatory')
ifvceRemotePort = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 5), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 899))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifvceRemotePort.setStatus('mandatory')
ifvceActivationType = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 254, 255))).clone(namedValues=NamedValues(("predefined", 1), ("switched", 2), ("autodial", 3), ("broadcast", 4), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifvceActivationType.setStatus('mandatory')
ifvceRemoteUnit = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 7), DisplayString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifvceRemoteUnit.setStatus('mandatory')
ifvceHuntGroup = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 254, 255))).clone(namedValues=NamedValues(("no", 1), ("a", 2), ("b", 3), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifvceHuntGroup.setStatus('mandatory')
ifvceToneDetectRegen_s = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 9), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 256))).setLabel("ifvceToneDetectRegen-s").setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifvceToneDetectRegen_s.setStatus('mandatory')
ifvcePulseMakeBreak_ms = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 10), Integer32().subtype(subtypeSpec=ValueRangeConstraint(20, 80))).setLabel("ifvcePulseMakeBreak-ms").setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifvcePulseMakeBreak_ms.setStatus('mandatory')
ifvceToneOn_ms = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 11), Integer32().subtype(subtypeSpec=ValueRangeConstraint(30, 1000))).setLabel("ifvceToneOn-ms").setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifvceToneOn_ms.setStatus('mandatory')
ifvceToneOff_ms = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 12), Integer32().subtype(subtypeSpec=ValueRangeConstraint(30, 1000))).setLabel("ifvceToneOff-ms").setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifvceToneOff_ms.setStatus('mandatory')
ifvceSilenceSuppress = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 13), Integer32().subtype(subtypeSpec=ValueRangeConstraint(4, 20))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifvceSilenceSuppress.setStatus('mandatory')
ifvceDVCSilenceSuppress = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 33), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 5))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifvceDVCSilenceSuppress.setStatus('mandatory')
ifvceSignaling = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 14), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 6, 10, 11, 12, 13, 14, 15, 17, 18, 21, 22, 23, 24, 25, 26, 27, 28, 32, 30, 254, 255))).clone(namedValues=NamedValues(("e-and-m-4w-imm-start", 1), ("e-and-m-2W-imm-start", 2), ("loop-start", 3), ("ac15-a", 4), ("ac15-c", 6), ("e-and-m-4w-timed-e", 10), ("e-and-m-2W-timed-e", 11), ("e-and-m-4W-wink-start", 12), ("e-and-m-2W-wink-start", 13), ("e-and-m-4W-delay-dial", 14), ("e-and-m-2W-delay-dial", 15), ("e-and-m-4W-colisee", 17), ("e-and-m-2W-colisee", 18), ("imm-start", 21), ("r2", 22), ("fxo", 23), ("fxs", 24), ("gnd-fxo", 25), ("gnd-fxs", 26), ("plar", 27), ("poi", 28), ("wink-start", 32), ("ab00", 30), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifvceSignaling.setStatus('mandatory')
ifvceLocalInbound = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 16), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 254, 255))).clone(namedValues=NamedValues(("db-22", 1), ("db-21", 2), ("db-20", 3), ("db-19", 4), ("db-18", 5), ("db-17", 6), ("db-16", 7), ("db-15", 8), ("db-14", 9), ("db-13", 10), ("db-12", 11), ("db-11", 12), ("db-10", 13), ("db-9", 14), ("db-8", 15), ("db-7", 16), ("db-6", 17), ("db-5", 18), ("db-4", 19), ("db-3", 20), ("db-2", 21), ("db-1", 22), ("db0", 23), ("db1", 24), ("db2", 25), ("db3", 26), ("db4", 27), ("db5", 28), ("db6", 29), ("db7", 30), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifvceLocalInbound.setStatus('mandatory')
ifvceLocalOutbound = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 17), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 254, 255))).clone(namedValues=NamedValues(("db-22", 1), ("db-21", 2), ("db-20", 3), ("db-19", 4), ("db-18", 5), ("db-17", 6), ("db-16", 7), ("db-15", 8), ("db-14", 9), ("db-13", 10), ("db-12", 11), ("db-11", 12), ("db-10", 13), ("db-9", 14), ("db-8", 15), ("db-7", 16), ("db-6", 17), ("db-5", 18), ("db-4", 19), ("db-3", 20), ("db-2", 21), ("db-1", 22), ("db0", 23), ("db1", 24), ("db2", 25), ("db3", 26), ("db4", 27), ("db5", 28), ("db6", 29), ("db7", 30), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifvceLocalOutbound.setStatus('mandatory')
ifvceDVCLocalInbound = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 34), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 254, 255))).clone(namedValues=NamedValues(("db-12", 9), ("db-11", 10), ("db-10", 11), ("db-9", 12), ("db-8", 13), ("db-7", 14), ("db-6", 15), ("db-5", 16), ("db-4", 17), ("db-3", 18), ("db-2", 19), ("db-1", 20), ("db0", 21), ("db1", 22), ("db2", 23), ("db3", 24), ("db4", 25), ("db5", 26), ("db6", 27), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifvceDVCLocalInbound.setStatus('mandatory')
ifvceDVCLocalOutbound = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 35), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 254, 255))).clone(namedValues=NamedValues(("db-12", 9), ("db-11", 10), ("db-10", 11), ("db-9", 12), ("db-8", 13), ("db-7", 14), ("db-6", 15), ("db-5", 16), ("db-4", 17), ("db-3", 18), ("db-2", 19), ("db-1", 20), ("db0", 21), ("db1", 22), ("db2", 23), ("db3", 24), ("db4", 25), ("db5", 26), ("db6", 27), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifvceDVCLocalOutbound.setStatus('mandatory')
ifvceFaxModemRelay = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 18), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 254, 255))).clone(namedValues=NamedValues(("none", 1), ("fax", 2), ("both", 3), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifvceFaxModemRelay.setStatus('mandatory')
ifvceMaxFaxModemRate = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 44), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 254, 255))).clone(namedValues=NamedValues(("rate-14400", 1), ("rate-12000", 2), ("rate-9600", 3), ("rate-7200", 4), ("rate-4800", 5), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifvceMaxFaxModemRate.setStatus('mandatory')
ifvceFxoTimeout_s = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 19), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 99))).setLabel("ifvceFxoTimeout-s").setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifvceFxoTimeout_s.setStatus('mandatory')
ifvceTeTimer_s = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 20), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 255))).setLabel("ifvceTeTimer-s").setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifvceTeTimer_s.setStatus('mandatory')
ifvceFwdDigits = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 21), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 254, 255))).clone(namedValues=NamedValues(("none", 1), ("all", 2), ("ext", 3), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifvceFwdDigits.setStatus('mandatory')
ifvceFwdType = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 22), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("tone", 1), ("pulse", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifvceFwdType.setStatus('mandatory')
ifvceFwdDelay_ms = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 23), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 10000))).setLabel("ifvceFwdDelay-ms").setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifvceFwdDelay_ms.setStatus('mandatory')
ifvceDelDigits = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 24), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 4))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifvceDelDigits.setStatus('mandatory')
ifvceExtNumber = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 25), DisplayString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifvceExtNumber.setStatus('mandatory')
ifvceLinkDwnBusy = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 27), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 254, 255))).clone(namedValues=NamedValues(("no", 1), ("yes", 2), ("broadcast", 3), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifvceLinkDwnBusy.setStatus('mandatory')
ifvceToneType = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 28), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 254, 255))).clone(namedValues=NamedValues(("dtmf", 0), ("mf", 1), ("r2", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifvceToneType.setStatus('mandatory')
ifvceRate8kx1 = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 29), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("no", 1), ("yes", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifvceRate8kx1.setStatus('mandatory')
ifvceRate8kx2 = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 30), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("no", 1), ("yes", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifvceRate8kx2.setStatus('mandatory')
ifvceRate5k8x1 = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 31), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("no", 1), ("yes", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifvceRate5k8x1.setStatus('mandatory')
ifvceRate5k8x2 = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 32), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("no", 1), ("yes", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifvceRate5k8x2.setStatus('mandatory')
ifvceBroadcastDir = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 36), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("tX", 1), ("rX", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifvceBroadcastDir.setStatus('mandatory')
ifvceBroadcastPvc = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 37), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 300))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifvceBroadcastPvc.setStatus('mandatory')
ifvceAnalogLinkDwnBusy = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 38), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 254, 255))).clone(namedValues=NamedValues(("no", 1), ("yes", 2), ("broadcast", 3), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifvceAnalogLinkDwnBusy.setStatus('mandatory')
ifvceSpeedDialNum = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 39), DisplayString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifvceSpeedDialNum.setStatus('mandatory')
ifvceR2ExtendedDigitSrc = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 40), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("map", 1), ("user", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifvceR2ExtendedDigitSrc.setStatus('mandatory')
ifvceR2Group2Digit = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 41), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 15))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifvceR2Group2Digit.setStatus('mandatory')
ifvceR2CompleteDigit = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 42), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 15))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifvceR2CompleteDigit.setStatus('mandatory')
ifvceR2BusyDigit = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 43), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 15))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifvceR2BusyDigit.setStatus('mandatory')
ifvceRate8kx3 = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 45), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("no", 1), ("yes", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifvceRate8kx3.setStatus('mandatory')
ifvceRate6kx1 = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 46), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("no", 1), ("yes", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifvceRate6kx1.setStatus('mandatory')
ifvceRate6kx2 = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 47), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("no", 1), ("yes", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifvceRate6kx2.setStatus('mandatory')
ifvceRate6kx3 = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 48), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("no", 1), ("yes", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifvceRate6kx3.setStatus('mandatory')
ifvceRate4k8x1 = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 49), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("no", 1), ("yes", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifvceRate4k8x1.setStatus('mandatory')
ifvceRate4k8x2 = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 50), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("no", 1), ("yes", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifvceRate4k8x2.setStatus('mandatory')
ifvceDTalkThreshold = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 51), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 1, 2, 3, 4, 5, 6, 7, 26, 254, 255))).clone(namedValues=NamedValues(("db-12", 8), ("db-11", 9), ("db-10", 10), ("db-9", 11), ("db-8", 12), ("db-7", 13), ("db-6", 14), ("db-5", 15), ("db-4", 16), ("db-3", 17), ("db-2", 18), ("db-1", 19), ("db0", 20), ("db1", 21), ("db2", 22), ("db3", 23), ("db4", 24), ("db5", 25), ("db6", 1), ("db7", 2), ("db8", 3), ("db9", 4), ("db10", 5), ("db11", 6), ("db12", 7), ("disabled", 26), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifvceDTalkThreshold.setStatus('mandatory')
ifvceToneEnergyDetec = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 52), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("yes", 1), ("no", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifvceToneEnergyDetec.setStatus('mandatory')
ifvceExtendedDigitSrc = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 53), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("map", 1), ("user", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifvceExtendedDigitSrc.setStatus('mandatory')
ifvceDtmfOnTime = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 54), Integer32().subtype(subtypeSpec=ValueRangeConstraint(20, 50))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifvceDtmfOnTime.setStatus('mandatory')
ifvceEnableDtmfOnTime = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 55), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("no", 1), ("yes", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifvceEnableDtmfOnTime.setStatus('mandatory')
iflanNumber = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 3, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: iflanNumber.setStatus('mandatory')
iflanTable = MibTable((1, 3, 6, 1, 4, 1, 727, 7, 2, 3, 2), )
if mibBuilder.loadTexts: iflanTable.setStatus('mandatory')
iflanEntry = MibTableRow((1, 3, 6, 1, 4, 1, 727, 7, 2, 3, 2, 1), ).setIndexNames((0, "CLEARTRAC7-MIB", "iflanIndex"))
if mibBuilder.loadTexts: iflanEntry.setStatus('mandatory')
iflanIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 3, 2, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: iflanIndex.setStatus('mandatory')
iflanDesc = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 3, 2, 1, 2), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: iflanDesc.setStatus('mandatory')
iflanProtocol = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 3, 2, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 13, 14, 15, 16, 254, 255))).clone(namedValues=NamedValues(("off", 1), ("token-ring", 13), ("ethernet-auto", 14), ("ethernet-802p3", 15), ("ethernet-v2", 16), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: iflanProtocol.setStatus('mandatory')
iflanSpeed = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 3, 2, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 254, 255))).clone(namedValues=NamedValues(("tr-4-Mbps", 1), ("tr-16-Mbps", 2), ("eth-10-Mbps", 3), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: iflanSpeed.setStatus('mandatory')
iflanPriority = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 3, 2, 1, 5), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 255))).setMaxAccess("readonly")
if mibBuilder.loadTexts: iflanPriority.setStatus('mandatory')
iflanCost = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 3, 2, 1, 6), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 255))).setMaxAccess("readonly")
if mibBuilder.loadTexts: iflanCost.setStatus('mandatory')
iflanPhysAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 3, 2, 1, 7), OctetString().subtype(subtypeSpec=ValueSizeConstraint(6, 6)).setFixedLength(6)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: iflanPhysAddr.setStatus('mandatory')
iflanIpAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 3, 2, 1, 8), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: iflanIpAddress.setStatus('mandatory')
iflanSubnetMask = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 3, 2, 1, 9), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: iflanSubnetMask.setStatus('mandatory')
iflanMaxFrame = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 3, 2, 1, 10), Integer32().subtype(subtypeSpec=ValueRangeConstraint(128, 8192))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: iflanMaxFrame.setStatus('mandatory')
iflanEth_LinkIntegrity = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 3, 2, 1, 12), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("no", 1), ("yes", 2), ("not-applicable", 254), ("not-available", 255)))).setLabel("iflanEth-LinkIntegrity").setMaxAccess("readwrite")
if mibBuilder.loadTexts: iflanEth_LinkIntegrity.setStatus('mandatory')
iflanTr_Monitor = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 3, 2, 1, 13), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("no", 1), ("yes", 2), ("not-applicable", 254), ("not-available", 255)))).setLabel("iflanTr-Monitor").setMaxAccess("readwrite")
if mibBuilder.loadTexts: iflanTr_Monitor.setStatus('mandatory')
iflanTr_Etr = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 3, 2, 1, 14), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("no", 1), ("yes", 2), ("not-applicable", 254), ("not-available", 255)))).setLabel("iflanTr-Etr").setMaxAccess("readwrite")
if mibBuilder.loadTexts: iflanTr_Etr.setStatus('mandatory')
iflanTr_RingNumber = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 3, 2, 1, 15), OctetString().subtype(subtypeSpec=ValueSizeConstraint(2, 2)).setFixedLength(2)).setLabel("iflanTr-RingNumber").setMaxAccess("readwrite")
if mibBuilder.loadTexts: iflanTr_RingNumber.setStatus('mandatory')
iflanIpRip = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 3, 2, 1, 16), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 254, 255))).clone(namedValues=NamedValues(("disable", 1), ("v1", 2), ("v2-broadcast", 3), ("v2-multicast", 4), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: iflanIpRip.setStatus('mandatory')
iflanIpxRip = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 3, 2, 1, 17), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("disable", 1), ("enable", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: iflanIpxRip.setStatus('mandatory')
iflanIpxSap = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 3, 2, 1, 18), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("disable", 1), ("enable", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: iflanIpxSap.setStatus('mandatory')
iflanIpxNetNum = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 3, 2, 1, 19), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: iflanIpxNetNum.setStatus('mandatory')
iflanIpxLanType = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 3, 2, 1, 20), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 254, 255))).clone(namedValues=NamedValues(("ethernet-802p2", 1), ("ethernet-snap", 2), ("ethernet-802p3", 3), ("ethernet-ii", 4), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: iflanIpxLanType.setStatus('mandatory')
iflanOspfEnable = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 3, 2, 1, 21), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("disable", 1), ("enable", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: iflanOspfEnable.setStatus('mandatory')
iflanOspfAreaId = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 3, 2, 1, 22), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: iflanOspfAreaId.setStatus('mandatory')
iflanOspfPriority = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 3, 2, 1, 23), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 255))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: iflanOspfPriority.setStatus('mandatory')
iflanOspfTransitDelay = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 3, 2, 1, 24), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 360))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: iflanOspfTransitDelay.setStatus('mandatory')
iflanOspfRetransmitInt = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 3, 2, 1, 25), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 360))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: iflanOspfRetransmitInt.setStatus('mandatory')
iflanOspfHelloInt = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 3, 2, 1, 26), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 360))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: iflanOspfHelloInt.setStatus('mandatory')
iflanOspfDeadInt = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 3, 2, 1, 27), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 2000))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: iflanOspfDeadInt.setStatus('mandatory')
iflanOspfPassword = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 3, 2, 1, 28), DisplayString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: iflanOspfPassword.setStatus('mandatory')
iflanOspfMetricCost = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 3, 2, 1, 29), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65534))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: iflanOspfMetricCost.setStatus('mandatory')
iflanIpRipTxRx = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 3, 2, 1, 30), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 254, 255))).clone(namedValues=NamedValues(("duplex", 1), ("tx-only", 2), ("rx-only", 3), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: iflanIpRipTxRx.setStatus('mandatory')
iflanIpRipAuthType = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 3, 2, 1, 31), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("none", 1), ("simple", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: iflanIpRipAuthType.setStatus('mandatory')
iflanIpRipPassword = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 3, 2, 1, 32), DisplayString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: iflanIpRipPassword.setStatus('mandatory')
puNumber = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: puNumber.setStatus('mandatory')
puTable = MibTable((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2), )
if mibBuilder.loadTexts: puTable.setStatus('mandatory')
puEntry = MibTableRow((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1), ).setIndexNames((0, "CLEARTRAC7-MIB", "puIndex"))
if mibBuilder.loadTexts: puEntry.setStatus('mandatory')
puIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: puIndex.setStatus('mandatory')
puMode = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 254, 255))).clone(namedValues=NamedValues(("off", 1), ("sdlc-llc", 2), ("sdlc-sdlc", 3), ("sdlc-dlsw", 4), ("sdlc-links", 5), ("llc-dlsw", 6), ("llc-links", 7), ("dlsw-links", 8), ("sdlc-ban", 9), ("sdlc-bnn", 10), ("llc-ban", 11), ("llc-bnn", 12), ("dlsw-ban", 13), ("dlsw-bnn", 14), ("ban-link", 15), ("bnn-link", 16), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: puMode.setStatus('mandatory')
puActive = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("no", 1), ("yes", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: puActive.setStatus('mandatory')
puDelayBeforeConn_s = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 1000))).setLabel("puDelayBeforeConn-s").setMaxAccess("readwrite")
if mibBuilder.loadTexts: puDelayBeforeConn_s.setStatus('mandatory')
puRole = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("secondary", 1), ("primary", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: puRole.setStatus('mandatory')
puSdlcPort = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 6), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: puSdlcPort.setStatus('mandatory')
puSdlcAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 7), OctetString().subtype(subtypeSpec=ValueSizeConstraint(1, 1)).setFixedLength(1)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: puSdlcAddress.setStatus('mandatory')
puSdlcPort2 = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 8), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: puSdlcPort2.setStatus('mandatory')
puSdlcAddress2 = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 9), OctetString().subtype(subtypeSpec=ValueSizeConstraint(1, 1)).setFixedLength(1)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: puSdlcAddress2.setStatus('mandatory')
puSdlcTimeout_ms = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 10), Integer32().subtype(subtypeSpec=ValueRangeConstraint(100, 30000))).setLabel("puSdlcTimeout-ms").setMaxAccess("readwrite")
if mibBuilder.loadTexts: puSdlcTimeout_ms.setStatus('mandatory')
puSdlcRetry = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 11), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 1000))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: puSdlcRetry.setStatus('mandatory')
puSdlcWindow = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 12), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 7))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: puSdlcWindow.setStatus('mandatory')
puSdlcMaxFrame = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 13), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: puSdlcMaxFrame.setStatus('mandatory')
puLlcDa = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 14), OctetString().subtype(subtypeSpec=ValueSizeConstraint(6, 6)).setFixedLength(6)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: puLlcDa.setStatus('mandatory')
puLlcTr_Routing = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 15), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("trsp", 1), ("src", 2), ("not-applicable", 254), ("not-available", 255)))).setLabel("puLlcTr-Routing").setMaxAccess("readwrite")
if mibBuilder.loadTexts: puLlcTr_Routing.setStatus('mandatory')
puLlcSsap = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 16), OctetString().subtype(subtypeSpec=ValueSizeConstraint(1, 1)).setFixedLength(1)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: puLlcSsap.setStatus('mandatory')
puLlcDsap = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 17), OctetString().subtype(subtypeSpec=ValueSizeConstraint(1, 1)).setFixedLength(1)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: puLlcDsap.setStatus('mandatory')
puLlcTimeout_ms = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 18), Integer32().subtype(subtypeSpec=ValueRangeConstraint(100, 30000))).setLabel("puLlcTimeout-ms").setMaxAccess("readwrite")
if mibBuilder.loadTexts: puLlcTimeout_ms.setStatus('mandatory')
puLlcRetry = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 19), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 1000))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: puLlcRetry.setStatus('mandatory')
puLlcWindow = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 20), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 31))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: puLlcWindow.setStatus('mandatory')
puLlcDynamicWindow = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 21), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 1000))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: puLlcDynamicWindow.setStatus('mandatory')
puLlcMaxFrame = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 23), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: puLlcMaxFrame.setStatus('mandatory')
puDlsDa = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 24), OctetString().subtype(subtypeSpec=ValueSizeConstraint(6, 6)).setFixedLength(6)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: puDlsDa.setStatus('mandatory')
puDlsSsap = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 25), OctetString().subtype(subtypeSpec=ValueSizeConstraint(1, 1)).setFixedLength(1)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: puDlsSsap.setStatus('mandatory')
puDlsDsap = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 26), OctetString().subtype(subtypeSpec=ValueSizeConstraint(1, 1)).setFixedLength(1)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: puDlsDsap.setStatus('mandatory')
puDlsIpSrc = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 27), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: puDlsIpSrc.setStatus('mandatory')
puDlsIpDst = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 28), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: puDlsIpDst.setStatus('mandatory')
puDlsMaxFrame = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 29), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: puDlsMaxFrame.setStatus('mandatory')
puLinkRemoteUnit = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 30), DisplayString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: puLinkRemoteUnit.setStatus('mandatory')
puLinkClassNumber = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 31), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 8))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: puLinkClassNumber.setStatus('mandatory')
puLinkRemPu = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 32), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 64))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: puLinkRemPu.setStatus('mandatory')
puXid = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 33), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 254, 255))).clone(namedValues=NamedValues(("no", 1), ("yes", 2), ("manual", 3), ("auto", 4), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: puXid.setStatus('mandatory')
puXidId = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 34), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: puXidId.setStatus('mandatory')
puXidFormat = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 35), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: puXidFormat.setStatus('mandatory')
puXidPuType = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 36), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: puXidPuType.setStatus('mandatory')
puBnnPvc = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 37), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: puBnnPvc.setStatus('mandatory')
puBnnFid = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 38), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 254, 255))).clone(namedValues=NamedValues(("fID2", 1), ("fID4", 2), ("aPPN", 3), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: puBnnFid.setStatus('mandatory')
puBanDa = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 39), OctetString().subtype(subtypeSpec=ValueSizeConstraint(6, 6)).setFixedLength(6)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: puBanDa.setStatus('mandatory')
puBanBnnSsap = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 40), OctetString().subtype(subtypeSpec=ValueSizeConstraint(1, 1)).setFixedLength(1)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: puBanBnnSsap.setStatus('mandatory')
puBanBnnDsap = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 41), OctetString().subtype(subtypeSpec=ValueSizeConstraint(1, 1)).setFixedLength(1)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: puBanBnnDsap.setStatus('mandatory')
puBanBnnTimeout_ms = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 42), Integer32().subtype(subtypeSpec=ValueRangeConstraint(100, 30000))).setLabel("puBanBnnTimeout-ms").setMaxAccess("readwrite")
if mibBuilder.loadTexts: puBanBnnTimeout_ms.setStatus('mandatory')
puBanBnnRetry = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 43), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 1000))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: puBanBnnRetry.setStatus('mandatory')
puBanBnnWindow = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 44), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 31))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: puBanBnnWindow.setStatus('mandatory')
puBanBnnNw = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 45), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 1000))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: puBanBnnNw.setStatus('mandatory')
puBanBnnMaxFrame = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 46), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: puBanBnnMaxFrame.setStatus('mandatory')
puBanRouting = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 47), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 254, 255))).clone(namedValues=NamedValues(("transparent", 1), ("source", 2), ("source-a", 3), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: puBanRouting.setStatus('mandatory')
scheduleNumber = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 5, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: scheduleNumber.setStatus('mandatory')
scheduleTable = MibTable((1, 3, 6, 1, 4, 1, 727, 7, 2, 5, 2), )
if mibBuilder.loadTexts: scheduleTable.setStatus('mandatory')
scheduleEntry = MibTableRow((1, 3, 6, 1, 4, 1, 727, 7, 2, 5, 2, 1), ).setIndexNames((0, "CLEARTRAC7-MIB", "schedulePeriod"))
if mibBuilder.loadTexts: scheduleEntry.setStatus('mandatory')
schedulePeriod = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 5, 2, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: schedulePeriod.setStatus('mandatory')
scheduleEnable = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 5, 2, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("no", 1), ("yes", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: scheduleEnable.setStatus('mandatory')
scheduleDay = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 5, 2, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 254, 255))).clone(namedValues=NamedValues(("all", 1), ("sunday", 2), ("monday", 3), ("tuesday", 4), ("wednesday", 5), ("thursday", 6), ("friday", 7), ("saturday", 8), ("workday", 9), ("weekend", 10), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: scheduleDay.setStatus('mandatory')
scheduleBeginTime = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 5, 2, 1, 4), DisplayString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: scheduleBeginTime.setStatus('mandatory')
scheduleEndTime = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 5, 2, 1, 5), DisplayString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: scheduleEndTime.setStatus('mandatory')
schedulePort1 = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 5, 2, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 254, 255))).clone(namedValues=NamedValues(("inactive", 1), ("dedicated", 2), ("answer", 3), ("call-backup", 4), ("call-bod", 5), ("wait-user", 6), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: schedulePort1.setStatus('mandatory')
schedulePort2 = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 5, 2, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 254, 255))).clone(namedValues=NamedValues(("inactive", 1), ("dedicated", 2), ("answer", 3), ("call-backup", 4), ("call-bod", 5), ("wait-user", 6), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: schedulePort2.setStatus('mandatory')
schedulePort3 = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 5, 2, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 254, 255))).clone(namedValues=NamedValues(("inactive", 1), ("dedicated", 2), ("answer", 3), ("call-backup", 4), ("call-bod", 5), ("wait-user", 6), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: schedulePort3.setStatus('mandatory')
schedulePort4 = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 5, 2, 1, 9), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 254, 255))).clone(namedValues=NamedValues(("inactive", 1), ("dedicated", 2), ("answer", 3), ("call-backup", 4), ("call-bod", 5), ("wait-user", 6), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: schedulePort4.setStatus('mandatory')
schedulePort5 = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 5, 2, 1, 10), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 254, 255))).clone(namedValues=NamedValues(("inactive", 1), ("dedicated", 2), ("answer", 3), ("call-backup", 4), ("call-bod", 5), ("wait-user", 6), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: schedulePort5.setStatus('mandatory')
schedulePort6 = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 5, 2, 1, 11), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 254, 255))).clone(namedValues=NamedValues(("inactive", 1), ("dedicated", 2), ("answer", 3), ("call-backup", 4), ("call-bod", 5), ("wait-user", 6), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: schedulePort6.setStatus('mandatory')
schedulePort7 = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 5, 2, 1, 12), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 254, 255))).clone(namedValues=NamedValues(("inactive", 1), ("dedicated", 2), ("answer", 3), ("call-backup", 4), ("call-bod", 5), ("wait-user", 6), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: schedulePort7.setStatus('mandatory')
schedulePort8 = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 5, 2, 1, 13), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 254, 255))).clone(namedValues=NamedValues(("inactive", 1), ("dedicated", 2), ("answer", 3), ("call-backup", 4), ("call-bod", 5), ("wait-user", 6), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: schedulePort8.setStatus('mandatory')
bridgeEnable = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 6, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("no", 1), ("yes", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: bridgeEnable.setStatus('mandatory')
bridgeStpEnable = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 6, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("no", 1), ("yes", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: bridgeStpEnable.setStatus('mandatory')
bridgeLanType = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 6, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 254, 255))).clone(namedValues=NamedValues(("ethernet-auto", 1), ("ethernet-802p3", 2), ("ethernet-v2", 3), ("token-ring", 4), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: bridgeLanType.setStatus('mandatory')
bridgeAgingTime_s = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 6, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(10, 1000000))).setLabel("bridgeAgingTime-s").setMaxAccess("readwrite")
if mibBuilder.loadTexts: bridgeAgingTime_s.setStatus('mandatory')
bridgeHelloTime_s = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 6, 5), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 10))).setLabel("bridgeHelloTime-s").setMaxAccess("readwrite")
if mibBuilder.loadTexts: bridgeHelloTime_s.setStatus('mandatory')
bridgeMaxAge_s = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 6, 6), Integer32().subtype(subtypeSpec=ValueRangeConstraint(6, 40))).setLabel("bridgeMaxAge-s").setMaxAccess("readwrite")
if mibBuilder.loadTexts: bridgeMaxAge_s.setStatus('mandatory')
bridgeForwardDelay_s = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 6, 7), Integer32().subtype(subtypeSpec=ValueRangeConstraint(4, 30))).setLabel("bridgeForwardDelay-s").setMaxAccess("readwrite")
if mibBuilder.loadTexts: bridgeForwardDelay_s.setStatus('mandatory')
bridgePriority = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 6, 8), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: bridgePriority.setStatus('mandatory')
bridgeTr_Number = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 6, 9), OctetString().subtype(subtypeSpec=ValueSizeConstraint(1, 1)).setFixedLength(1)).setLabel("bridgeTr-Number").setMaxAccess("readwrite")
if mibBuilder.loadTexts: bridgeTr_Number.setStatus('mandatory')
bridgeTr_SteSpan = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 6, 10), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 254, 255))).clone(namedValues=NamedValues(("auto", 1), ("disable", 2), ("forced", 3), ("not-applicable", 254), ("not-available", 255)))).setLabel("bridgeTr-SteSpan").setMaxAccess("readwrite")
if mibBuilder.loadTexts: bridgeTr_SteSpan.setStatus('mandatory')
bridgeTr_MaxHop = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 6, 11), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 7))).setLabel("bridgeTr-MaxHop").setMaxAccess("readwrite")
if mibBuilder.loadTexts: bridgeTr_MaxHop.setStatus('mandatory')
phoneNumber = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 7, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: phoneNumber.setStatus('mandatory')
phoneTable = MibTable((1, 3, 6, 1, 4, 1, 727, 7, 2, 7, 2), )
if mibBuilder.loadTexts: phoneTable.setStatus('mandatory')
phoneEntry = MibTableRow((1, 3, 6, 1, 4, 1, 727, 7, 2, 7, 2, 1), ).setIndexNames((0, "CLEARTRAC7-MIB", "phoneIndex"))
if mibBuilder.loadTexts: phoneEntry.setStatus('mandatory')
phoneIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 7, 2, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: phoneIndex.setStatus('mandatory')
phoneRemoteUnit = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 7, 2, 1, 2), DisplayString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: phoneRemoteUnit.setStatus('mandatory')
phonePhoneNumber = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 7, 2, 1, 3), DisplayString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: phonePhoneNumber.setStatus('mandatory')
phoneNextHop = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 7, 2, 1, 4), DisplayString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: phoneNextHop.setStatus('mandatory')
phoneCost = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 7, 2, 1, 5), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65534))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: phoneCost.setStatus('mandatory')
filterNumber = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 8, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: filterNumber.setStatus('mandatory')
filterTable = MibTable((1, 3, 6, 1, 4, 1, 727, 7, 2, 8, 2), )
if mibBuilder.loadTexts: filterTable.setStatus('mandatory')
filterEntry = MibTableRow((1, 3, 6, 1, 4, 1, 727, 7, 2, 8, 2, 1), ).setIndexNames((0, "CLEARTRAC7-MIB", "filterIndex"))
if mibBuilder.loadTexts: filterEntry.setStatus('mandatory')
filterIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 8, 2, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: filterIndex.setStatus('mandatory')
filterActive = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 8, 2, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("no", 1), ("yes", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: filterActive.setStatus('mandatory')
filterDefinition = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 8, 2, 1, 3), DisplayString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: filterDefinition.setStatus('mandatory')
classNumber = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 9, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: classNumber.setStatus('mandatory')
classDefaultClass = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 9, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 8))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: classDefaultClass.setStatus('mandatory')
classTable = MibTable((1, 3, 6, 1, 4, 1, 727, 7, 2, 9, 3), )
if mibBuilder.loadTexts: classTable.setStatus('mandatory')
classEntry = MibTableRow((1, 3, 6, 1, 4, 1, 727, 7, 2, 9, 3, 1), ).setIndexNames((0, "CLEARTRAC7-MIB", "classIndex"))
if mibBuilder.loadTexts: classEntry.setStatus('mandatory')
classIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 9, 3, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: classIndex.setStatus('mandatory')
classWeight = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 9, 3, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 16))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: classWeight.setStatus('mandatory')
classPrefRoute = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 9, 3, 1, 3), DisplayString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: classPrefRoute.setStatus('mandatory')
pvcNumber = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: pvcNumber.setStatus('mandatory')
pvcTable = MibTable((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2), )
if mibBuilder.loadTexts: pvcTable.setStatus('mandatory')
pvcEntry = MibTableRow((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1), ).setIndexNames((0, "CLEARTRAC7-MIB", "pvcIndex"))
if mibBuilder.loadTexts: pvcEntry.setStatus('mandatory')
pvcIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: pvcIndex.setStatus('mandatory')
pvcMode = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 7, 8, 9, 254, 255))).clone(namedValues=NamedValues(("off", 1), ("pvcr", 2), ("multiplex", 3), ("transp", 4), ("rfc-1490", 5), ("fp", 7), ("broadcast", 8), ("fp-multiplex", 9), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: pvcMode.setStatus('mandatory')
pvcDlciAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 1022))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: pvcDlciAddress.setStatus('mandatory')
pvcPort = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 4), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: pvcPort.setStatus('mandatory')
pvcUserPort = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 5), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: pvcUserPort.setStatus('mandatory')
pvcInfoRate = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 6), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1200, 2000000))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: pvcInfoRate.setStatus('mandatory')
pvcPriority = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 9), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 255))).setMaxAccess("readonly")
if mibBuilder.loadTexts: pvcPriority.setStatus('mandatory')
pvcCost = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 10), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readonly")
if mibBuilder.loadTexts: pvcCost.setStatus('mandatory')
pvcRemoteUnit = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 11), DisplayString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: pvcRemoteUnit.setStatus('mandatory')
pvcTimeout_ms = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 12), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1000, 30000))).setLabel("pvcTimeout-ms").setMaxAccess("readwrite")
if mibBuilder.loadTexts: pvcTimeout_ms.setStatus('mandatory')
pvcRetry = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 13), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 1000))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: pvcRetry.setStatus('mandatory')
pvcCompression = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 14), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("no", 1), ("yes", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: pvcCompression.setStatus('mandatory')
pvcIpAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 15), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: pvcIpAddress.setStatus('mandatory')
pvcSubnetMask = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 16), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: pvcSubnetMask.setStatus('mandatory')
pvcMaxFrame = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 17), Integer32().subtype(subtypeSpec=ValueRangeConstraint(128, 8192))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: pvcMaxFrame.setStatus('mandatory')
pvcBroadcastGroup = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 18), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("no", 1), ("yes", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: pvcBroadcastGroup.setStatus('mandatory')
pvcBrgConnection = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 19), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("no", 1), ("yes", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: pvcBrgConnection.setStatus('mandatory')
pvcIpConnection = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 20), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("no", 1), ("yes", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: pvcIpConnection.setStatus('mandatory')
pvcRemotePvc = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 21), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 300))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: pvcRemotePvc.setStatus('mandatory')
pvcPvcClass = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 22), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 8))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: pvcPvcClass.setStatus('mandatory')
pvcNetworkPort = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 23), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: pvcNetworkPort.setStatus('mandatory')
pvcRingNumber = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 24), OctetString().subtype(subtypeSpec=ValueSizeConstraint(2, 2)).setFixedLength(2)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: pvcRingNumber.setStatus('mandatory')
pvcIpRip = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 25), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 254, 255))).clone(namedValues=NamedValues(("disable", 1), ("v1", 2), ("v2-broadcast", 3), ("v2-multicast", 4), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: pvcIpRip.setStatus('mandatory')
pvcBurstInfoRate = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 26), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1200, 2000000))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: pvcBurstInfoRate.setStatus('mandatory')
pvcUserDlci = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 27), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 1022))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: pvcUserDlci.setStatus('mandatory')
pvcNetworkDlci = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 28), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 1022))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: pvcNetworkDlci.setStatus('mandatory')
pvcIpxRip = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 29), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("disable", 1), ("enable", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: pvcIpxRip.setStatus('mandatory')
pvcIpxSap = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 30), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("disable", 1), ("enable", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: pvcIpxSap.setStatus('mandatory')
pvcIpxNetNum = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 31), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: pvcIpxNetNum.setStatus('mandatory')
pvcIpxConnection = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 32), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("no", 1), ("yes", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: pvcIpxConnection.setStatus('mandatory')
pvcType = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 33), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(2, 3, 4, 254, 255))).clone(namedValues=NamedValues(("dedicated", 2), ("answer", 3), ("call-backup", 4), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: pvcType.setStatus('mandatory')
pvcBackupCall_s = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 34), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 255))).setLabel("pvcBackupCall-s").setMaxAccess("readwrite")
if mibBuilder.loadTexts: pvcBackupCall_s.setStatus('mandatory')
pvcBackupHang_s = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 35), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 255))).setLabel("pvcBackupHang-s").setMaxAccess("readwrite")
if mibBuilder.loadTexts: pvcBackupHang_s.setStatus('mandatory')
pvcBackup = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 36), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(15, 16, 254, 255))).clone(namedValues=NamedValues(("any", 15), ("all", 16), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: pvcBackup.setStatus('mandatory')
pvcOspfEnable = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 37), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("disable", 1), ("enable", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: pvcOspfEnable.setStatus('mandatory')
pvcOspfAreaId = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 38), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: pvcOspfAreaId.setStatus('mandatory')
pvcOspfTransitDelay = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 39), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 360))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: pvcOspfTransitDelay.setStatus('mandatory')
pvcOspfRetransmitInt = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 40), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 360))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: pvcOspfRetransmitInt.setStatus('mandatory')
pvcOspfHelloInt = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 41), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 360))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: pvcOspfHelloInt.setStatus('mandatory')
pvcOspfDeadInt = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 42), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 2000))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: pvcOspfDeadInt.setStatus('mandatory')
pvcOspfPassword = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 43), DisplayString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: pvcOspfPassword.setStatus('mandatory')
pvcOspfMetricCost = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 44), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65534))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: pvcOspfMetricCost.setStatus('mandatory')
pvcProxyAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 45), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 8))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: pvcProxyAddr.setStatus('mandatory')
pvcLlcConnection = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 46), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("no", 1), ("yes", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: pvcLlcConnection.setStatus('mandatory')
pvcDialTimeout = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 47), Integer32().subtype(subtypeSpec=ValueRangeConstraint(30, 255))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: pvcDialTimeout.setStatus('mandatory')
pvcMaxChannels = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 48), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 10000))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: pvcMaxChannels.setStatus('mandatory')
pvcHuntForwardingAUnit = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 49), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 16))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: pvcHuntForwardingAUnit.setStatus('mandatory')
pvcHuntForwardingBUnit = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 50), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 16))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: pvcHuntForwardingBUnit.setStatus('mandatory')
pvcRemoteFpUnit = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 51), DisplayString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: pvcRemoteFpUnit.setStatus('mandatory')
pvcIpRipTxRx = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 52), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 254, 255))).clone(namedValues=NamedValues(("duplex", 1), ("tx-only", 2), ("rx-only", 3), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: pvcIpRipTxRx.setStatus('mandatory')
pvcIpRipAuthType = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 53), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("none", 1), ("simple", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: pvcIpRipAuthType.setStatus('mandatory')
pvcIpRipPassword = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 54), DisplayString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: pvcIpRipPassword.setStatus('mandatory')
ipxRouterEnable = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 11, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("disable", 1), ("enable", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ipxRouterEnable.setStatus('mandatory')
ipxInternalNetNum = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 11, 2), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ipxInternalNetNum.setStatus('mandatory')
ipRouterEnable = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 14, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("disable", 1), ("enable", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ipRouterEnable.setStatus('mandatory')
bootpEnable = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 33, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("disable", 1), ("enable", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: bootpEnable.setStatus('mandatory')
bootpMaxHops = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 33, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 16))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: bootpMaxHops.setStatus('mandatory')
bootpIpDestAddr1 = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 33, 3), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: bootpIpDestAddr1.setStatus('mandatory')
bootpIpDestAddr2 = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 33, 4), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: bootpIpDestAddr2.setStatus('mandatory')
bootpIpDestAddr3 = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 33, 5), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: bootpIpDestAddr3.setStatus('mandatory')
bootpIpDestAddr4 = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 33, 6), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: bootpIpDestAddr4.setStatus('mandatory')
timepTimeZoneSign = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 35, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("no", 1), ("yes", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: timepTimeZoneSign.setStatus('mandatory')
timepTimeZone = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 35, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 720))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: timepTimeZone.setStatus('mandatory')
timepDaylightSaving = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 35, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("no", 1), ("yes", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: timepDaylightSaving.setStatus('mandatory')
timepServerProtocol = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 35, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))).clone(namedValues=NamedValues(("none", 1), ("udp", 2), ("tcp", 3), ("both", 4)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: timepServerProtocol.setStatus('mandatory')
timepClientProtocol = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 35, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("none", 1), ("udp", 2), ("tcp", 3)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: timepClientProtocol.setStatus('mandatory')
timepServerIpAddress = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 35, 6), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: timepServerIpAddress.setStatus('mandatory')
timepClientUpdateInterval = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 35, 7), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65534))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: timepClientUpdateInterval.setStatus('mandatory')
timepClientUdpTimeout = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 35, 8), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65534))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: timepClientUdpTimeout.setStatus('mandatory')
timepClientUdpRetransmissions = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 35, 9), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65534))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: timepClientUdpRetransmissions.setStatus('mandatory')
timepGetServerTimeNow = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 35, 10), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 1))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: timepGetServerTimeNow.setStatus('mandatory')
ipstaticNumber = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 13, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipstaticNumber.setStatus('mandatory')
ipstaticTable = MibTable((1, 3, 6, 1, 4, 1, 727, 7, 2, 13, 2), )
if mibBuilder.loadTexts: ipstaticTable.setStatus('mandatory')
ipstaticEntry = MibTableRow((1, 3, 6, 1, 4, 1, 727, 7, 2, 13, 2, 1), ).setIndexNames((0, "CLEARTRAC7-MIB", "ipstaticIndex"))
if mibBuilder.loadTexts: ipstaticEntry.setStatus('mandatory')
ipstaticIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 13, 2, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipstaticIndex.setStatus('mandatory')
ipstaticValid = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 13, 2, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("no", 1), ("yes", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ipstaticValid.setStatus('mandatory')
ipstaticIpDest = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 13, 2, 1, 3), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ipstaticIpDest.setStatus('mandatory')
ipstaticMask = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 13, 2, 1, 4), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ipstaticMask.setStatus('mandatory')
ipstaticNextHop = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 13, 2, 1, 5), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ipstaticNextHop.setStatus('mandatory')
ospfGlobal = MibIdentifier((1, 3, 6, 1, 4, 1, 727, 7, 2, 15, 1))
ospfArea = MibIdentifier((1, 3, 6, 1, 4, 1, 727, 7, 2, 15, 2))
ospfRange = MibIdentifier((1, 3, 6, 1, 4, 1, 727, 7, 2, 15, 3))
ospfVLink = MibIdentifier((1, 3, 6, 1, 4, 1, 727, 7, 2, 15, 4))
ospfGlobalRouterId = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 15, 1, 1), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ospfGlobalRouterId.setStatus('mandatory')
ospfGlobalAutoVLink = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 15, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("no", 1), ("yes", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ospfGlobalAutoVLink.setStatus('mandatory')
ospfGlobalRackAreaId = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 15, 1, 3), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ospfGlobalRackAreaId.setStatus('mandatory')
ospfGlobalGlobalAreaId = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 15, 1, 4), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ospfGlobalGlobalAreaId.setStatus('mandatory')
ospfAreaNumber = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 15, 2, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfAreaNumber.setStatus('mandatory')
ospfAreaTable = MibTable((1, 3, 6, 1, 4, 1, 727, 7, 2, 15, 2, 2), )
if mibBuilder.loadTexts: ospfAreaTable.setStatus('mandatory')
ospfAreaEntry = MibTableRow((1, 3, 6, 1, 4, 1, 727, 7, 2, 15, 2, 2, 1), ).setIndexNames((0, "CLEARTRAC7-MIB", "ospfAreaIndex"))
if mibBuilder.loadTexts: ospfAreaEntry.setStatus('mandatory')
ospfAreaIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 15, 2, 2, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfAreaIndex.setStatus('mandatory')
ospfAreaAreaId = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 15, 2, 2, 1, 2), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ospfAreaAreaId.setStatus('mandatory')
ospfAreaEnable = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 15, 2, 2, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("disable", 1), ("enable", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ospfAreaEnable.setStatus('mandatory')
ospfAreaAuthType = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 15, 2, 2, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("none", 1), ("simple", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ospfAreaAuthType.setStatus('mandatory')
ospfAreaImportASExt = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 15, 2, 2, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("no", 1), ("yes", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ospfAreaImportASExt.setStatus('mandatory')
ospfAreaStubMetric = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 15, 2, 2, 1, 6), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 255))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ospfAreaStubMetric.setStatus('mandatory')
ospfRangeNumber = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 15, 3, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfRangeNumber.setStatus('mandatory')
ospfRangeTable = MibTable((1, 3, 6, 1, 4, 1, 727, 7, 2, 15, 3, 2), )
if mibBuilder.loadTexts: ospfRangeTable.setStatus('mandatory')
ospfRangeEntry = MibTableRow((1, 3, 6, 1, 4, 1, 727, 7, 2, 15, 3, 2, 1), ).setIndexNames((0, "CLEARTRAC7-MIB", "ospfRangeIndex"))
if mibBuilder.loadTexts: ospfRangeEntry.setStatus('mandatory')
ospfRangeIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 15, 3, 2, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfRangeIndex.setStatus('mandatory')
ospfRangeNet = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 15, 3, 2, 1, 2), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ospfRangeNet.setStatus('mandatory')
ospfRangeMask = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 15, 3, 2, 1, 3), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ospfRangeMask.setStatus('mandatory')
ospfRangeEnable = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 15, 3, 2, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("disable", 1), ("enable", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ospfRangeEnable.setStatus('mandatory')
ospfRangeStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 15, 3, 2, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("don-t-adv", 1), ("advertise", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ospfRangeStatus.setStatus('mandatory')
ospfRangeAddToArea = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 15, 3, 2, 1, 6), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ospfRangeAddToArea.setStatus('mandatory')
ospfVLinkNumber = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 15, 4, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfVLinkNumber.setStatus('mandatory')
ospfVLinkTable = MibTable((1, 3, 6, 1, 4, 1, 727, 7, 2, 15, 4, 2), )
if mibBuilder.loadTexts: ospfVLinkTable.setStatus('mandatory')
ospfVLinkEntry = MibTableRow((1, 3, 6, 1, 4, 1, 727, 7, 2, 15, 4, 2, 1), ).setIndexNames((0, "CLEARTRAC7-MIB", "ospfVLinkIndex"))
if mibBuilder.loadTexts: ospfVLinkEntry.setStatus('mandatory')
ospfVLinkIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 15, 4, 2, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfVLinkIndex.setStatus('mandatory')
ospfVLinkTransitAreaId = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 15, 4, 2, 1, 2), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ospfVLinkTransitAreaId.setStatus('mandatory')
ospfVLinkNeighborRtrId = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 15, 4, 2, 1, 3), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ospfVLinkNeighborRtrId.setStatus('mandatory')
ospfVLinkEnable = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 15, 4, 2, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 254, 255))).clone(namedValues=NamedValues(("disable", 1), ("enable", 2), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ospfVLinkEnable.setStatus('mandatory')
ospfVLinkTransitDelay = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 15, 4, 2, 1, 5), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 360))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ospfVLinkTransitDelay.setStatus('mandatory')
ospfVLinkRetransmitInt = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 15, 4, 2, 1, 6), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 360))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ospfVLinkRetransmitInt.setStatus('mandatory')
ospfVLinkHelloInt = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 15, 4, 2, 1, 7), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 360))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ospfVLinkHelloInt.setStatus('mandatory')
ospfVLinkDeadInt = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 15, 4, 2, 1, 8), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 2000))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ospfVLinkDeadInt.setStatus('mandatory')
ospfVLinkPassword = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 15, 4, 2, 1, 9), DisplayString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ospfVLinkPassword.setStatus('mandatory')
ipxfilterNumber = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 16, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipxfilterNumber.setStatus('mandatory')
ipxfilterTable = MibTable((1, 3, 6, 1, 4, 1, 727, 7, 2, 16, 2), )
if mibBuilder.loadTexts: ipxfilterTable.setStatus('mandatory')
ipxfilterEntry = MibTableRow((1, 3, 6, 1, 4, 1, 727, 7, 2, 16, 2, 1), ).setIndexNames((0, "CLEARTRAC7-MIB", "ipxfilterIndex"))
if mibBuilder.loadTexts: ipxfilterEntry.setStatus('mandatory')
ipxfilterIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 16, 2, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipxfilterIndex.setStatus('mandatory')
ipxfilterEnable = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 16, 2, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("disable", 1), ("enable", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ipxfilterEnable.setStatus('mandatory')
ipxfilterSap = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 16, 2, 1, 3), OctetString().subtype(subtypeSpec=ValueSizeConstraint(2, 2)).setFixedLength(2)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ipxfilterSap.setStatus('mandatory')
ipxfilterType = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 16, 2, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("standard", 1), ("reverse", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ipxfilterType.setStatus('mandatory')
statAlarmTable = MibTable((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 1), )
if mibBuilder.loadTexts: statAlarmTable.setStatus('mandatory')
statAlarmEntry = MibTableRow((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 1, 1), ).setIndexNames((0, "CLEARTRAC7-MIB", "statAlarmIndex"))
if mibBuilder.loadTexts: statAlarmEntry.setStatus('mandatory')
statAlarmIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 1, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statAlarmIndex.setStatus('mandatory')
statAlarmDesc = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 1, 1, 2), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statAlarmDesc.setStatus('mandatory')
statAlarmDate = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 1, 1, 3), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statAlarmDate.setStatus('mandatory')
statAlarmTime = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 1, 1, 4), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statAlarmTime.setStatus('mandatory')
statAlarmModule = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 1, 1, 5), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statAlarmModule.setStatus('mandatory')
statAlarmAlarm = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 1, 1, 6), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statAlarmAlarm.setStatus('mandatory')
statAlarmArg = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 1, 1, 7), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statAlarmArg.setStatus('mandatory')
statIfwanTable = MibTable((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 2), )
if mibBuilder.loadTexts: statIfwanTable.setStatus('mandatory')
statIfwanEntry = MibTableRow((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 2, 1), ).setIndexNames((0, "CLEARTRAC7-MIB", "statIfwanIndex"))
if mibBuilder.loadTexts: statIfwanEntry.setStatus('mandatory')
statIfwanIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 2, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statIfwanIndex.setStatus('mandatory')
statIfwanDesc = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 2, 1, 2), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statIfwanDesc.setStatus('mandatory')
statIfwanProtocol = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 2, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 17, 18, 19, 24, 27, 28, 29, 254, 255))).clone(namedValues=NamedValues(("off", 1), ("p-sdlc", 2), ("s-sdlc", 3), ("hdlc", 4), ("ddcmp", 5), ("t-async", 6), ("r-async", 7), ("bsc", 8), ("cop", 9), ("pvcr", 10), ("passthru", 11), ("console", 12), ("fr-net", 17), ("fr-user", 18), ("ppp", 19), ("e1-trsp", 24), ("isdn-bri", 27), ("g703", 28), ("x25", 29), ("not-applicable", 254), ("not-available", 255)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: statIfwanProtocol.setStatus('mandatory')
statIfwanInterface = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 2, 1, 4), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statIfwanInterface.setStatus('mandatory')
statIfwanModemSignal = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 2, 1, 5), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statIfwanModemSignal.setStatus('mandatory')
statIfwanSpeed = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 2, 1, 6), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statIfwanSpeed.setStatus('mandatory')
statIfwanState = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 2, 1, 7), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statIfwanState.setStatus('mandatory')
statIfwanMeanTx = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 2, 1, 8), Gauge32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statIfwanMeanTx.setStatus('mandatory')
statIfwanMeanRx = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 2, 1, 9), Gauge32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statIfwanMeanRx.setStatus('mandatory')
statIfwanPeakTx = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 2, 1, 10), Gauge32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statIfwanPeakTx.setStatus('mandatory')
statIfwanPeakRx = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 2, 1, 11), Gauge32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statIfwanPeakRx.setStatus('mandatory')
statIfwanBadFrames = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 2, 1, 12), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statIfwanBadFrames.setStatus('mandatory')
statIfwanBadFlags = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 2, 1, 13), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statIfwanBadFlags.setStatus('mandatory')
statIfwanUnderruns = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 2, 1, 14), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statIfwanUnderruns.setStatus('mandatory')
statIfwanRetries = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 2, 1, 15), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statIfwanRetries.setStatus('mandatory')
statIfwanRestart = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 2, 1, 16), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statIfwanRestart.setStatus('mandatory')
statIfwanFramesTx = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 2, 1, 17), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statIfwanFramesTx.setStatus('mandatory')
statIfwanFramesRx = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 2, 1, 18), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statIfwanFramesRx.setStatus('mandatory')
statIfwanOctetsTx = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 2, 1, 19), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statIfwanOctetsTx.setStatus('mandatory')
statIfwanOctetsRx = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 2, 1, 20), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statIfwanOctetsRx.setStatus('mandatory')
statIfwanOvrFrames = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 2, 1, 21), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statIfwanOvrFrames.setStatus('mandatory')
statIfwanBadOctets = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 2, 1, 22), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statIfwanBadOctets.setStatus('mandatory')
statIfwanOvrOctets = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 2, 1, 23), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statIfwanOvrOctets.setStatus('mandatory')
statIfwanT1E1ESS = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 2, 1, 24), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statIfwanT1E1ESS.setStatus('mandatory')
statIfwanT1E1SES = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 2, 1, 25), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statIfwanT1E1SES.setStatus('mandatory')
statIfwanT1E1SEF = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 2, 1, 26), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statIfwanT1E1SEF.setStatus('mandatory')
statIfwanT1E1UAS = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 2, 1, 27), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statIfwanT1E1UAS.setStatus('mandatory')
statIfwanT1E1CSS = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 2, 1, 28), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statIfwanT1E1CSS.setStatus('mandatory')
statIfwanT1E1PCV = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 2, 1, 29), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statIfwanT1E1PCV.setStatus('mandatory')
statIfwanT1E1LES = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 2, 1, 30), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statIfwanT1E1LES.setStatus('mandatory')
statIfwanT1E1BES = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 2, 1, 31), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statIfwanT1E1BES.setStatus('mandatory')
statIfwanT1E1DM = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 2, 1, 32), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statIfwanT1E1DM.setStatus('mandatory')
statIfwanT1E1LCV = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 2, 1, 33), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statIfwanT1E1LCV.setStatus('mandatory')
statIfwanCompErrs = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 2, 1, 34), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statIfwanCompErrs.setStatus('mandatory')
statIfwanChOverflows = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 2, 1, 35), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statIfwanChOverflows.setStatus('mandatory')
statIfwanChAborts = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 2, 1, 36), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statIfwanChAborts.setStatus('mandatory')
statIfwanChSeqErrs = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 2, 1, 37), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statIfwanChSeqErrs.setStatus('mandatory')
statIfwanDropInsert = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 2, 1, 38), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statIfwanDropInsert.setStatus('mandatory')
statIfwanTrspState = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 2, 1, 39), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statIfwanTrspState.setStatus('mandatory')
statIfwanTrspLastError = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 2, 1, 40), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statIfwanTrspLastError.setStatus('mandatory')
statIfwanQ922State = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 2, 1, 41), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statIfwanQ922State.setStatus('mandatory')
statIflanTable = MibTable((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 3), )
if mibBuilder.loadTexts: statIflanTable.setStatus('mandatory')
statIflanEntry = MibTableRow((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 3, 1), ).setIndexNames((0, "CLEARTRAC7-MIB", "statIflanIndex"))
if mibBuilder.loadTexts: statIflanEntry.setStatus('mandatory')
statIflanIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 3, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statIflanIndex.setStatus('mandatory')
statIflanProtocol = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 3, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 13, 14, 15, 16))).clone(namedValues=NamedValues(("off", 1), ("token-ring", 13), ("ethernet-auto", 14), ("ethernet-802p3", 15), ("ethernet-v2", 16)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: statIflanProtocol.setStatus('mandatory')
statIflanSpeed = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 3, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("tr-4-Mbps", 1), ("tr-16-Mbps", 2), ("eth-10-Mbps", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: statIflanSpeed.setStatus('mandatory')
statIflanConnectionStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 3, 1, 4), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statIflanConnectionStatus.setStatus('mandatory')
statIflanOperatingMode = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 3, 1, 5), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statIflanOperatingMode.setStatus('mandatory')
statIflanEth_Interface = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 3, 1, 6), DisplayString()).setLabel("statIflanEth-Interface").setMaxAccess("readonly")
if mibBuilder.loadTexts: statIflanEth_Interface.setStatus('mandatory')
statIflanMeanTx_kbps = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 3, 1, 7), Gauge32()).setLabel("statIflanMeanTx-kbps").setMaxAccess("readonly")
if mibBuilder.loadTexts: statIflanMeanTx_kbps.setStatus('mandatory')
statIflanMeanRx_kbps = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 3, 1, 8), Gauge32()).setLabel("statIflanMeanRx-kbps").setMaxAccess("readonly")
if mibBuilder.loadTexts: statIflanMeanRx_kbps.setStatus('mandatory')
statIflanPeakTx_kbps = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 3, 1, 9), Gauge32()).setLabel("statIflanPeakTx-kbps").setMaxAccess("readonly")
if mibBuilder.loadTexts: statIflanPeakTx_kbps.setStatus('mandatory')
statIflanPeakRx_kbps = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 3, 1, 10), Gauge32()).setLabel("statIflanPeakRx-kbps").setMaxAccess("readonly")
if mibBuilder.loadTexts: statIflanPeakRx_kbps.setStatus('mandatory')
statIflanRetries = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 3, 1, 11), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statIflanRetries.setStatus('mandatory')
statIflanBadFrames = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 3, 1, 12), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statIflanBadFrames.setStatus('mandatory')
statIflanBadFlags = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 3, 1, 13), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statIflanBadFlags.setStatus('mandatory')
statIflanTr_ReceiveCongestion = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 3, 1, 14), Counter32()).setLabel("statIflanTr-ReceiveCongestion").setMaxAccess("readonly")
if mibBuilder.loadTexts: statIflanTr_ReceiveCongestion.setStatus('mandatory')
statIflanEth_OneCollision = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 3, 1, 15), Counter32()).setLabel("statIflanEth-OneCollision").setMaxAccess("readonly")
if mibBuilder.loadTexts: statIflanEth_OneCollision.setStatus('mandatory')
statIflanEth_TwoCollisions = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 3, 1, 16), Counter32()).setLabel("statIflanEth-TwoCollisions").setMaxAccess("readonly")
if mibBuilder.loadTexts: statIflanEth_TwoCollisions.setStatus('mandatory')
statIflanEth_ThreeAndMoreCol = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 3, 1, 17), Counter32()).setLabel("statIflanEth-ThreeAndMoreCol").setMaxAccess("readonly")
if mibBuilder.loadTexts: statIflanEth_ThreeAndMoreCol.setStatus('mandatory')
statIflanEth_DeferredTrans = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 3, 1, 18), Counter32()).setLabel("statIflanEth-DeferredTrans").setMaxAccess("readonly")
if mibBuilder.loadTexts: statIflanEth_DeferredTrans.setStatus('mandatory')
statIflanEth_ExcessiveCollision = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 3, 1, 19), Counter32()).setLabel("statIflanEth-ExcessiveCollision").setMaxAccess("readonly")
if mibBuilder.loadTexts: statIflanEth_ExcessiveCollision.setStatus('mandatory')
statIflanEth_LateCollision = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 3, 1, 20), Counter32()).setLabel("statIflanEth-LateCollision").setMaxAccess("readonly")
if mibBuilder.loadTexts: statIflanEth_LateCollision.setStatus('mandatory')
statIflanEth_FrameCheckSeq = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 3, 1, 21), Counter32()).setLabel("statIflanEth-FrameCheckSeq").setMaxAccess("readonly")
if mibBuilder.loadTexts: statIflanEth_FrameCheckSeq.setStatus('mandatory')
statIflanEth_Align = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 3, 1, 22), Counter32()).setLabel("statIflanEth-Align").setMaxAccess("readonly")
if mibBuilder.loadTexts: statIflanEth_Align.setStatus('mandatory')
statIflanEth_CarrierSense = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 3, 1, 23), Counter32()).setLabel("statIflanEth-CarrierSense").setMaxAccess("readonly")
if mibBuilder.loadTexts: statIflanEth_CarrierSense.setStatus('mandatory')
statIfvceTable = MibTable((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 10), )
if mibBuilder.loadTexts: statIfvceTable.setStatus('mandatory')
statIfvceEntry = MibTableRow((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 10, 1), ).setIndexNames((0, "CLEARTRAC7-MIB", "statIfvceIndex"))
if mibBuilder.loadTexts: statIfvceEntry.setStatus('mandatory')
statIfvceIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 10, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statIfvceIndex.setStatus('mandatory')
statIfvceDesc = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 10, 1, 2), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statIfvceDesc.setStatus('mandatory')
statIfvceState = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 10, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 5))).clone(namedValues=NamedValues(("inactive", 0), ("idle", 1), ("pause", 2), ("local", 3), ("online", 4), ("disconnect", 5)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: statIfvceState.setStatus('mandatory')
statIfvceProtocol = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 10, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 21, 22, 23, 24, 26, 30))).clone(namedValues=NamedValues(("off", 1), ("acelp-8-kbs", 21), ("acelp-4-8-kbs", 22), ("pcm64k", 23), ("adpcm32k", 24), ("atc16k", 26), ("acelp-cn", 30)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: statIfvceProtocol.setStatus('mandatory')
statIfvceLastError = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 10, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12))).clone(namedValues=NamedValues(("none", 0), ("incompatibility", 1), ("new-parameters", 2), ("rerouting", 3), ("state-fault", 4), ("unreachable", 5), ("disconnect", 6), ("port-closure", 7), ("no-destination", 8), ("pvc-closure", 9), ("too-many-calls", 10), ("class-mismatch", 11), ("algo-mismatch", 12)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: statIfvceLastError.setStatus('mandatory')
statIfvceFaxRate = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 10, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4))).clone(namedValues=NamedValues(("none", 0), ("fx-2-4Kbps", 1), ("fx-4-8Kbps", 2), ("fx-7-2Kbps", 3), ("fx-9-6Kbps", 4)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: statIfvceFaxRate.setStatus('mandatory')
statIfvceFaxMode = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 10, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(255, 0, 1))).clone(namedValues=NamedValues(("none", 255), ("out-of-fax", 0), ("in-fax", 1)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: statIfvceFaxMode.setStatus('mandatory')
statIfvceOverruns = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 10, 1, 8), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statIfvceOverruns.setStatus('mandatory')
statIfvceUnderruns = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 10, 1, 9), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statIfvceUnderruns.setStatus('mandatory')
statIfvceDvcPortInUse = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 10, 1, 10), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statIfvceDvcPortInUse.setStatus('mandatory')
statPuTable = MibTable((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 4), )
if mibBuilder.loadTexts: statPuTable.setStatus('mandatory')
statPuEntry = MibTableRow((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 4, 1), ).setIndexNames((0, "CLEARTRAC7-MIB", "statPuIndex"))
if mibBuilder.loadTexts: statPuEntry.setStatus('mandatory')
statPuIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 4, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statPuIndex.setStatus('mandatory')
statPuMode = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 4, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16))).clone(namedValues=NamedValues(("off", 1), ("sdlc-llc", 2), ("sdlc-sdlc", 3), ("sdlc-dlsw", 4), ("sdlc-links", 5), ("llc-dlsw", 6), ("llc-links", 7), ("dlsw-links", 8), ("sdlc-ban", 9), ("sdlc-bnn", 10), ("llc-ban", 11), ("llc-bnn", 12), ("dlsw-ban", 13), ("dlsw-bnn", 14), ("ban-link", 15), ("bnn-link", 16)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: statPuMode.setStatus('mandatory')
statPuConnectionStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 4, 1, 3), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statPuConnectionStatus.setStatus('mandatory')
statPuCompErrs = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 4, 1, 4), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statPuCompErrs.setStatus('mandatory')
statPuChOverflows = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 4, 1, 5), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statPuChOverflows.setStatus('mandatory')
statPuChAborts = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 4, 1, 6), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statPuChAborts.setStatus('mandatory')
statPuChSeqErrs = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 4, 1, 7), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statPuChSeqErrs.setStatus('mandatory')
statBridge = MibIdentifier((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 5))
statBridgeBridge = MibIdentifier((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 5, 1))
statBridgePort = MibIdentifier((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 5, 2))
statBridgeBridgeAddressDiscard = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 5, 1, 1), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statBridgeBridgeAddressDiscard.setStatus('mandatory')
statBridgeBridgeFrameDiscard = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 5, 1, 2), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statBridgeBridgeFrameDiscard.setStatus('mandatory')
statBridgeBridgeDesignatedRoot = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 5, 1, 3), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statBridgeBridgeDesignatedRoot.setStatus('mandatory')
statBridgeBridgeRootCost = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 5, 1, 4), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statBridgeBridgeRootCost.setStatus('mandatory')
statBridgeBridgeRootPort = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 5, 1, 5), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statBridgeBridgeRootPort.setStatus('mandatory')
statBridgeBridgeFrameFiltered = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 5, 1, 6), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statBridgeBridgeFrameFiltered.setStatus('mandatory')
statBridgeBridgeFrameTimeout = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 5, 1, 7), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statBridgeBridgeFrameTimeout.setStatus('mandatory')
statBridgePortTable = MibTable((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 5, 2, 1), )
if mibBuilder.loadTexts: statBridgePortTable.setStatus('mandatory')
statBridgePortEntry = MibTableRow((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 5, 2, 1, 1), ).setIndexNames((0, "CLEARTRAC7-MIB", "statBridgePortIndex"))
if mibBuilder.loadTexts: statBridgePortEntry.setStatus('mandatory')
statBridgePortIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 5, 2, 1, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statBridgePortIndex.setStatus('mandatory')
statBridgePortDestination = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 5, 2, 1, 1, 2), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statBridgePortDestination.setStatus('mandatory')
statBridgePortState = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 5, 2, 1, 1, 3), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statBridgePortState.setStatus('mandatory')
statBridgePortDesignatedRoot = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 5, 2, 1, 1, 4), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statBridgePortDesignatedRoot.setStatus('mandatory')
statBridgePortDesignatedCost = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 5, 2, 1, 1, 5), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statBridgePortDesignatedCost.setStatus('mandatory')
statBridgePortDesignatedBridge = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 5, 2, 1, 1, 6), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statBridgePortDesignatedBridge.setStatus('mandatory')
statBridgePortDesignatedPort = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 5, 2, 1, 1, 7), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statBridgePortDesignatedPort.setStatus('mandatory')
statBridgePortTrspFrameIn = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 5, 2, 1, 1, 8), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statBridgePortTrspFrameIn.setStatus('mandatory')
statBridgePortTrspFrameOut = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 5, 2, 1, 1, 9), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statBridgePortTrspFrameOut.setStatus('mandatory')
statBridgePortTr_SpecRteFrameIn = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 5, 2, 1, 1, 10), DisplayString()).setLabel("statBridgePortTr-SpecRteFrameIn").setMaxAccess("readonly")
if mibBuilder.loadTexts: statBridgePortTr_SpecRteFrameIn.setStatus('mandatory')
statBridgePortTr_SpecRteFrameOut = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 5, 2, 1, 1, 11), DisplayString()).setLabel("statBridgePortTr-SpecRteFrameOut").setMaxAccess("readonly")
if mibBuilder.loadTexts: statBridgePortTr_SpecRteFrameOut.setStatus('mandatory')
statBridgePortTr_AllRteFrameIn = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 5, 2, 1, 1, 12), DisplayString()).setLabel("statBridgePortTr-AllRteFrameIn").setMaxAccess("readonly")
if mibBuilder.loadTexts: statBridgePortTr_AllRteFrameIn.setStatus('mandatory')
statBridgePortTr_AllRteFrameOut = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 5, 2, 1, 1, 13), DisplayString()).setLabel("statBridgePortTr-AllRteFrameOut").setMaxAccess("readonly")
if mibBuilder.loadTexts: statBridgePortTr_AllRteFrameOut.setStatus('mandatory')
statBridgePortTr_SingleRteFrameIn = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 5, 2, 1, 1, 14), DisplayString()).setLabel("statBridgePortTr-SingleRteFrameIn").setMaxAccess("readonly")
if mibBuilder.loadTexts: statBridgePortTr_SingleRteFrameIn.setStatus('mandatory')
statBridgePortTr_SingleRteFrameOut = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 5, 2, 1, 1, 15), DisplayString()).setLabel("statBridgePortTr-SingleRteFrameOut").setMaxAccess("readonly")
if mibBuilder.loadTexts: statBridgePortTr_SingleRteFrameOut.setStatus('mandatory')
statBridgePortTr_SegmentMismatch = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 5, 2, 1, 1, 16), DisplayString()).setLabel("statBridgePortTr-SegmentMismatch").setMaxAccess("readonly")
if mibBuilder.loadTexts: statBridgePortTr_SegmentMismatch.setStatus('mandatory')
statBridgePortTr_SegmentDuplicate = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 5, 2, 1, 1, 17), DisplayString()).setLabel("statBridgePortTr-SegmentDuplicate").setMaxAccess("readonly")
if mibBuilder.loadTexts: statBridgePortTr_SegmentDuplicate.setStatus('mandatory')
statBridgePortTr_HopCntExceeded = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 5, 2, 1, 1, 18), DisplayString()).setLabel("statBridgePortTr-HopCntExceeded").setMaxAccess("readonly")
if mibBuilder.loadTexts: statBridgePortTr_HopCntExceeded.setStatus('mandatory')
statBridgePortTr_FrmLngExceeded = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 5, 2, 1, 1, 19), DisplayString()).setLabel("statBridgePortTr-FrmLngExceeded").setMaxAccess("readonly")
if mibBuilder.loadTexts: statBridgePortTr_FrmLngExceeded.setStatus('mandatory')
statPvcTable = MibTable((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 6), )
if mibBuilder.loadTexts: statPvcTable.setStatus('mandatory')
statPvcEntry = MibTableRow((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 6, 1), ).setIndexNames((0, "CLEARTRAC7-MIB", "statPvcIndex"))
if mibBuilder.loadTexts: statPvcEntry.setStatus('mandatory')
statPvcIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 6, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statPvcIndex.setStatus('mandatory')
statPvcProtocol = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 6, 1, 2), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statPvcProtocol.setStatus('mandatory')
statPvcMode = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 6, 1, 3), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statPvcMode.setStatus('mandatory')
statPvcInfoSignal = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 6, 1, 4), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statPvcInfoSignal.setStatus('mandatory')
statPvcSpeed = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 6, 1, 5), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statPvcSpeed.setStatus('mandatory')
statPvcState = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 6, 1, 6), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statPvcState.setStatus('mandatory')
statPvcMeanTx = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 6, 1, 7), Gauge32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statPvcMeanTx.setStatus('mandatory')
statPvcMeanRx = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 6, 1, 8), Gauge32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statPvcMeanRx.setStatus('mandatory')
statPvcPeakTx = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 6, 1, 9), Gauge32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statPvcPeakTx.setStatus('mandatory')
statPvcPeakRx = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 6, 1, 10), Gauge32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statPvcPeakRx.setStatus('mandatory')
statPvcError = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 6, 1, 11), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statPvcError.setStatus('mandatory')
statPvcRestart = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 6, 1, 12), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statPvcRestart.setStatus('mandatory')
statPvcFramesTx = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 6, 1, 13), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statPvcFramesTx.setStatus('mandatory')
statPvcFramesRx = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 6, 1, 14), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statPvcFramesRx.setStatus('mandatory')
statPvcOctetsTx = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 6, 1, 15), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statPvcOctetsTx.setStatus('mandatory')
statPvcOctetsRx = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 6, 1, 16), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statPvcOctetsRx.setStatus('mandatory')
statPvcBadFrames = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 6, 1, 17), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statPvcBadFrames.setStatus('mandatory')
statPvcOvrFrames = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 6, 1, 18), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statPvcOvrFrames.setStatus('mandatory')
statPvcBadOctets = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 6, 1, 19), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statPvcBadOctets.setStatus('mandatory')
statPvcOvrOctets = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 6, 1, 20), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statPvcOvrOctets.setStatus('mandatory')
statPvcDlci = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 6, 1, 21), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statPvcDlci.setStatus('mandatory')
statPvcCompErrs = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 6, 1, 28), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statPvcCompErrs.setStatus('mandatory')
statPvcChOverflows = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 6, 1, 29), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statPvcChOverflows.setStatus('mandatory')
statPvcChAborts = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 6, 1, 30), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statPvcChAborts.setStatus('mandatory')
statPvcChSeqErrs = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 6, 1, 31), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statPvcChSeqErrs.setStatus('mandatory')
statPvcrRouteTable = MibTable((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 7), )
if mibBuilder.loadTexts: statPvcrRouteTable.setStatus('mandatory')
statPvcrRouteEntry = MibTableRow((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 7, 1), ).setIndexNames((0, "CLEARTRAC7-MIB", "statPvcrRouteName"), (0, "CLEARTRAC7-MIB", "statPvcrRouteNextHop"))
if mibBuilder.loadTexts: statPvcrRouteEntry.setStatus('mandatory')
statPvcrRouteName = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 7, 1, 1), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statPvcrRouteName.setStatus('mandatory')
statPvcrRouteValid = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 7, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("no", 1), ("yes", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: statPvcrRouteValid.setStatus('mandatory')
statPvcrRouteMetric = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 7, 1, 3), Gauge32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statPvcrRouteMetric.setStatus('mandatory')
statPvcrRouteIntrf = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 7, 1, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statPvcrRouteIntrf.setStatus('mandatory')
statPvcrRouteNextHop = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 7, 1, 5), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statPvcrRouteNextHop.setStatus('mandatory')
statPvcrRouteAge = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 7, 1, 6), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statPvcrRouteAge.setStatus('mandatory')
statSystem = MibIdentifier((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 20))
statSystemAlarmNumber = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 20, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statSystemAlarmNumber.setStatus('mandatory')
statSystemMeanCompRate = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 20, 2), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statSystemMeanCompRate.setStatus('mandatory')
statSystemMeanDecompRate = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 20, 3), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statSystemMeanDecompRate.setStatus('mandatory')
statSystemPeakCompRate = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 20, 4), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statSystemPeakCompRate.setStatus('mandatory')
statSystemPeakDecompRate = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 20, 5), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statSystemPeakDecompRate.setStatus('mandatory')
statSystemSa = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 20, 6), Gauge32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statSystemSa.setStatus('mandatory')
statSystemSp = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 20, 7), Gauge32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statSystemSp.setStatus('mandatory')
statSystemNa = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 20, 8), OctetString().subtype(subtypeSpec=ValueSizeConstraint(6, 6)).setFixedLength(6)).setMaxAccess("readonly")
if mibBuilder.loadTexts: statSystemNa.setStatus('mandatory')
statSystemBia = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 20, 9), OctetString().subtype(subtypeSpec=ValueSizeConstraint(6, 6)).setFixedLength(6)).setMaxAccess("readonly")
if mibBuilder.loadTexts: statSystemBia.setStatus('mandatory')
statSystemTr_Nan = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 20, 10), OctetString().subtype(subtypeSpec=ValueSizeConstraint(6, 6)).setFixedLength(6)).setLabel("statSystemTr-Nan").setMaxAccess("readonly")
if mibBuilder.loadTexts: statSystemTr_Nan.setStatus('mandatory')
statSystemResetCounters = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 20, 11), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("no", 1), ("yes", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: statSystemResetCounters.setStatus('mandatory')
statSystemClearAlarms = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 20, 12), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("no", 1), ("yes", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: statSystemClearAlarms.setStatus('mandatory')
statSystemClearErrorLed = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 20, 13), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("no", 1), ("yes", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: statSystemClearErrorLed.setStatus('mandatory')
statBootp = MibIdentifier((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 21))
statBootpNbRequestReceived = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 21, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statBootpNbRequestReceived.setStatus('mandatory')
statBootpNbRequestSend = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 21, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statBootpNbRequestSend.setStatus('mandatory')
statBootpNbReplyReceived = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 21, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statBootpNbReplyReceived.setStatus('mandatory')
statBootpNbReplySend = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 21, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statBootpNbReplySend.setStatus('mandatory')
statBootpReplyWithInvalidGiaddr = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 21, 5), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statBootpReplyWithInvalidGiaddr.setStatus('mandatory')
statBootpHopsLimitExceed = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 21, 6), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statBootpHopsLimitExceed.setStatus('mandatory')
statBootpRequestReceivedOnPortBootpc = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 21, 7), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statBootpRequestReceivedOnPortBootpc.setStatus('mandatory')
statBootpReplyReceivedOnPortBootpc = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 21, 8), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statBootpReplyReceivedOnPortBootpc.setStatus('mandatory')
statBootpInvalidOpCodeField = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 21, 9), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statBootpInvalidOpCodeField.setStatus('mandatory')
statBootpCannotRouteFrame = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 21, 10), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statBootpCannotRouteFrame.setStatus('mandatory')
statBootpFrameTooSmallToBeABootpFrame = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 21, 11), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statBootpFrameTooSmallToBeABootpFrame.setStatus('mandatory')
statBootpCannotReceiveAndForwardOnTheSamePort = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 21, 12), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statBootpCannotReceiveAndForwardOnTheSamePort.setStatus('mandatory')
statGrp = MibIdentifier((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 22))
statGrpNumber = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 22, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statGrpNumber.setStatus('mandatory')
statGrpTable = MibTable((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 22, 2), )
if mibBuilder.loadTexts: statGrpTable.setStatus('mandatory')
statGrpEntry = MibTableRow((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 22, 2, 1), ).setIndexNames((0, "CLEARTRAC7-MIB", "statGrpIndex"))
if mibBuilder.loadTexts: statGrpEntry.setStatus('mandatory')
statGrpIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 22, 2, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statGrpIndex.setStatus('mandatory')
statGrpDestName = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 22, 2, 1, 2), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statGrpDestName.setStatus('mandatory')
statGrpOutOfSeqErrs = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 22, 2, 1, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statGrpOutOfSeqErrs.setStatus('mandatory')
statGrpSorterTimeouts = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 22, 2, 1, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statGrpSorterTimeouts.setStatus('mandatory')
statGrpSorterOverruns = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 22, 2, 1, 5), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statGrpSorterOverruns.setStatus('mandatory')
statTimep = MibIdentifier((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 23))
statTimeNbFrameReceived = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 23, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statTimeNbFrameReceived.setStatus('mandatory')
statTimeNbFrameSent = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 23, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statTimeNbFrameSent.setStatus('mandatory')
statTimeNbRequestReceived = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 23, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statTimeNbRequestReceived.setStatus('mandatory')
statTimeNbReplySent = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 23, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statTimeNbReplySent.setStatus('mandatory')
statTimeNbRequestSent = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 23, 5), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statTimeNbRequestSent.setStatus('mandatory')
statTimeNbReplyReceived = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 23, 6), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statTimeNbReplyReceived.setStatus('mandatory')
statTimeClientRetransmissions = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 23, 7), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statTimeClientRetransmissions.setStatus('mandatory')
statTimeClientSyncFailures = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 23, 8), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statTimeClientSyncFailures.setStatus('mandatory')
statTimeInvalidLocalIpAddress = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 23, 9), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statTimeInvalidLocalIpAddress.setStatus('mandatory')
statTimeInvalidPortNumbers = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 23, 10), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statTimeInvalidPortNumbers.setStatus('mandatory')
statQ922counters = MibIdentifier((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 24))
statTxRetransmissions = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 24, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statTxRetransmissions.setStatus('mandatory')
statReleaseIndications = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 24, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statReleaseIndications.setStatus('mandatory')
statEstablishIndications = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 24, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statEstablishIndications.setStatus('mandatory')
statLinkEstablished = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 24, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statLinkEstablished.setStatus('mandatory')
statTxIframeQdiscards = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 24, 5), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statTxIframeQdiscards.setStatus('mandatory')
statRxframes = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 24, 6), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statRxframes.setStatus('mandatory')
statTxframes = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 24, 7), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statTxframes.setStatus('mandatory')
statRxBytes = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 24, 8), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statRxBytes.setStatus('mandatory')
statTxBytes = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 24, 9), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statTxBytes.setStatus('mandatory')
statQ922errors = MibIdentifier((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 25))
statInvalidRxSizes = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 25, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statInvalidRxSizes.setStatus('mandatory')
statMissingControlBlocks = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 25, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statMissingControlBlocks.setStatus('mandatory')
statRxAcknowledgeExpiry = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 25, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statRxAcknowledgeExpiry.setStatus('mandatory')
statTxAcknowledgeExpiry = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 25, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statTxAcknowledgeExpiry.setStatus('mandatory')
statQ933counters = MibIdentifier((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 26))
statTxSetupMessages = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 26, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statTxSetupMessages.setStatus('mandatory')
statRxSetupMessages = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 26, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statRxSetupMessages.setStatus('mandatory')
statTxCallProceedingMessages = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 26, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statTxCallProceedingMessages.setStatus('mandatory')
statRxCallProceedingMessages = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 26, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statRxCallProceedingMessages.setStatus('mandatory')
statTxConnectMessages = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 26, 5), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statTxConnectMessages.setStatus('mandatory')
statRxConnectMessages = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 26, 6), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statRxConnectMessages.setStatus('mandatory')
statTxReleaseMessages = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 26, 7), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statTxReleaseMessages.setStatus('mandatory')
statRxReleaseMessages = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 26, 8), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statRxReleaseMessages.setStatus('mandatory')
statTxReleaseCompleteMessages = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 26, 9), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statTxReleaseCompleteMessages.setStatus('mandatory')
statRxReleaseCompleteMessages = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 26, 10), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statRxReleaseCompleteMessages.setStatus('mandatory')
statTxDisconnectMessages = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 26, 11), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statTxDisconnectMessages.setStatus('mandatory')
statRxDisconnectMessages = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 26, 12), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statRxDisconnectMessages.setStatus('mandatory')
statTxStatusMessages = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 26, 13), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statTxStatusMessages.setStatus('mandatory')
statRxStatusMessages = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 26, 14), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statRxStatusMessages.setStatus('mandatory')
statTxStatusEnquiryMessages = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 26, 15), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statTxStatusEnquiryMessages.setStatus('mandatory')
statRxStatusEnquiryMessages = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 26, 16), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statRxStatusEnquiryMessages.setStatus('mandatory')
statProtocolTimeouts = MibScalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 26, 17), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statProtocolTimeouts.setStatus('mandatory')
statSvcTable = MibTable((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 27), )
if mibBuilder.loadTexts: statSvcTable.setStatus('mandatory')
statSvcEntry = MibTableRow((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 27, 1), ).setIndexNames((0, "CLEARTRAC7-MIB", "statSvcIndex"))
if mibBuilder.loadTexts: statSvcEntry.setStatus('mandatory')
statSvcIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 27, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statSvcIndex.setStatus('mandatory')
statSvcProtocol = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 27, 1, 2), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statSvcProtocol.setStatus('mandatory')
statSvcMode = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 27, 1, 3), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statSvcMode.setStatus('mandatory')
statSvcInfoSignal = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 27, 1, 4), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statSvcInfoSignal.setStatus('mandatory')
statSvcSpeed = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 27, 1, 5), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statSvcSpeed.setStatus('mandatory')
statSvcState = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 27, 1, 6), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statSvcState.setStatus('mandatory')
statSvcMeanTx = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 27, 1, 7), Gauge32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statSvcMeanTx.setStatus('mandatory')
statSvcMeanRx = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 27, 1, 8), Gauge32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statSvcMeanRx.setStatus('mandatory')
statSvcPeakTx = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 27, 1, 9), Gauge32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statSvcPeakTx.setStatus('mandatory')
statSvcPeakRx = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 27, 1, 10), Gauge32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statSvcPeakRx.setStatus('mandatory')
statSvcError = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 27, 1, 11), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statSvcError.setStatus('mandatory')
statSvcRestart = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 27, 1, 12), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statSvcRestart.setStatus('mandatory')
statSvcFramesTx = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 27, 1, 13), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statSvcFramesTx.setStatus('mandatory')
statSvcFramesRx = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 27, 1, 14), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statSvcFramesRx.setStatus('mandatory')
statSvcOctetsTx = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 27, 1, 15), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statSvcOctetsTx.setStatus('mandatory')
statSvcOctetsRx = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 27, 1, 16), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statSvcOctetsRx.setStatus('mandatory')
statSvcBadFrames = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 27, 1, 17), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statSvcBadFrames.setStatus('mandatory')
statSvcOvrFrames = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 27, 1, 18), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statSvcOvrFrames.setStatus('mandatory')
statSvcBadOctets = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 27, 1, 19), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statSvcBadOctets.setStatus('mandatory')
statSvcOvrOctets = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 27, 1, 20), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statSvcOvrOctets.setStatus('mandatory')
statSvcDlci = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 27, 1, 21), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statSvcDlci.setStatus('mandatory')
statIfcemTable = MibTable((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 28), )
if mibBuilder.loadTexts: statIfcemTable.setStatus('mandatory')
statIfcemEntry = MibTableRow((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 28, 1), ).setIndexNames((0, "CLEARTRAC7-MIB", "statIfcemIndex"))
if mibBuilder.loadTexts: statIfcemEntry.setStatus('mandatory')
statIfcemIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 28, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statIfcemIndex.setStatus('mandatory')
statIfcemDesc = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 28, 1, 2), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statIfcemDesc.setStatus('mandatory')
statIfcemClockState = MibTableColumn((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 28, 1, 3), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: statIfcemClockState.setStatus('mandatory')
connectionDown = NotificationType((1, 3, 6, 1, 4, 1, 727) + (0,600)).setObjects(("CLEARTRAC7-MIB", "puIndex"))
linkDown = NotificationType((1, 3, 6, 1, 4, 1, 727) + (0,601)).setObjects(("CLEARTRAC7-MIB", "ifwanIndex"))
pvcDown = NotificationType((1, 3, 6, 1, 4, 1, 727) + (0,602)).setObjects(("CLEARTRAC7-MIB", "pvcIndex"))
cardDown = NotificationType((1, 3, 6, 1, 4, 1, 727) + (0,603)).setObjects(("CLEARTRAC7-MIB", "sysTrapRackandPos"))
connectionUp = NotificationType((1, 3, 6, 1, 4, 1, 727) + (0,604)).setObjects(("CLEARTRAC7-MIB", "puIndex"))
linkUp = NotificationType((1, 3, 6, 1, 4, 1, 727) + (0,605)).setObjects(("CLEARTRAC7-MIB", "ifwanIndex"))
pvcUp = NotificationType((1, 3, 6, 1, 4, 1, 727) + (0,606)).setObjects(("CLEARTRAC7-MIB", "pvcIndex"))
cardup = NotificationType((1, 3, 6, 1, 4, 1, 727) + (0,607)).setObjects(("CLEARTRAC7-MIB", "sysTrapRackandPos"))
periodStarted = NotificationType((1, 3, 6, 1, 4, 1, 727) + (0,608)).setObjects(("CLEARTRAC7-MIB", "schedulePeriod"))
periodEnded = NotificationType((1, 3, 6, 1, 4, 1, 727) + (0,609)).setObjects(("CLEARTRAC7-MIB", "schedulePeriod"))
badDestPort = NotificationType((1, 3, 6, 1, 4, 1, 727) + (0,610)).setObjects(("CLEARTRAC7-MIB", "ifwanIndex"))
badDestPvc = NotificationType((1, 3, 6, 1, 4, 1, 727) + (0,611)).setObjects(("CLEARTRAC7-MIB", "ifwanIndex"))
backupCall = NotificationType((1, 3, 6, 1, 4, 1, 727) + (0,612))
backupHang = NotificationType((1, 3, 6, 1, 4, 1, 727) + (0,613))
manualCall = NotificationType((1, 3, 6, 1, 4, 1, 727) + (0,614))
manualHang = NotificationType((1, 3, 6, 1, 4, 1, 727) + (0,615))
bondTrig = NotificationType((1, 3, 6, 1, 4, 1, 727) + (0,616))
bondDeTrig = NotificationType((1, 3, 6, 1, 4, 1, 727) + (0,617))
firmwareStored = NotificationType((1, 3, 6, 1, 4, 1, 727) + (0,618))
cfgStored = NotificationType((1, 3, 6, 1, 4, 1, 727) + (0,619))
noTrap = NotificationType((1, 3, 6, 1, 4, 1, 727) + (0,620))
fatalTrap = NotificationType((1, 3, 6, 1, 4, 1, 727) + (0,621))
notMemory = NotificationType((1, 3, 6, 1, 4, 1, 727) + (0,622))
setupReset = NotificationType((1, 3, 6, 1, 4, 1, 727) + (0,623))
badChecksum = NotificationType((1, 3, 6, 1, 4, 1, 727) + (0,624))
fatalMsg = NotificationType((1, 3, 6, 1, 4, 1, 727) + (0,625))
noMsg = NotificationType((1, 3, 6, 1, 4, 1, 727) + (0,626))
bothPsUp = NotificationType((1, 3, 6, 1, 4, 1, 727) + (0,627))
onePsDown = NotificationType((1, 3, 6, 1, 4, 1, 727) + (0,628))
bothFansUp = NotificationType((1, 3, 6, 1, 4, 1, 727) + (0,629))
oneOrMoreFanDown = NotificationType((1, 3, 6, 1, 4, 1, 727) + (0,630))
accountingFileFull = NotificationType((1, 3, 6, 1, 4, 1, 727) + (0,631))
frLinkUp = NotificationType((1, 3, 6, 1, 4, 1, 727) + (0,665)).setObjects(("CLEARTRAC7-MIB", "ifwanIndex"))
frLinkDown = NotificationType((1, 3, 6, 1, 4, 1, 727) + (0,666)).setObjects(("CLEARTRAC7-MIB", "ifwanIndex"))
q922Up = NotificationType((1, 3, 6, 1, 4, 1, 727) + (0,667)).setObjects(("CLEARTRAC7-MIB", "ifwanIndex"))
q922Down = NotificationType((1, 3, 6, 1, 4, 1, 727) + (0,668)).setObjects(("CLEARTRAC7-MIB", "ifwanIndex"))
accountingFileOverflow = NotificationType((1, 3, 6, 1, 4, 1, 727) + (0,669))
mibBuilder.exportSymbols("CLEARTRAC7-MIB", timepClientUpdateInterval=timepClientUpdateInterval, statIflanSpeed=statIflanSpeed, ifvceHuntGroup=ifvceHuntGroup, statBridgePortDesignatedCost=statBridgePortDesignatedCost, statSvcPeakRx=statSvcPeakRx, statSvcDlci=statSvcDlci, backupHang=backupHang, phoneNumber=phoneNumber, statSystem=statSystem, ifvceNumber=ifvceNumber, ifwanTxStart=ifwanTxStart, puDlsDsap=puDlsDsap, ifvceRate5k8x2=ifvceRate5k8x2, ospfVLinkTable=ospfVLinkTable, ifwanPppAcceptableAccmChar=ifwanPppAcceptableAccmChar, statBridgePortTr_HopCntExceeded=statBridgePortTr_HopCntExceeded, sysPosTable=sysPosTable, ifwanMode=ifwanMode, statIfwanProtocol=statIfwanProtocol, ospfRangeMask=ospfRangeMask, statIfwanBadFrames=statIfwanBadFrames, statIfvceLastError=statIfvceLastError, filterNumber=filterNumber, statTxIframeQdiscards=statTxIframeQdiscards, ipstaticTable=ipstaticTable, ifvceRate6kx3=ifvceRate6kx3, statPvcBadFrames=statPvcBadFrames, ifwanFormat=ifwanFormat, ifwanProtocol=ifwanProtocol, statAlarmTable=statAlarmTable, slotPortInSlotEntry=slotPortInSlotEntry, frLinkUp=frLinkUp, proxyIndex=proxyIndex, ifvceProtocol=ifvceProtocol, slotPortInSlot=slotPortInSlot, ipxInternalNetNum=ipxInternalNetNum, iflanSpeed=iflanSpeed, timepClientProtocol=timepClientProtocol, ifwanSvcDisconnectTimeoutT305=ifwanSvcDisconnectTimeoutT305, iflanOspfMetricCost=iflanOspfMetricCost, statIfvceState=statIfvceState, ifwanTeiMode=ifwanTeiMode, pvcNetworkPort=pvcNetworkPort, ipaddr=ipaddr, intfType=intfType, ifvceLocalInbound=ifvceLocalInbound, ifwanPortToBack=ifwanPortToBack, iflanDesc=iflanDesc, phoneRemoteUnit=phoneRemoteUnit, ifwanSfCarrierId=ifwanSfCarrierId, ifwanT1E1Status=ifwanT1E1Status, statIfvceProtocol=statIfvceProtocol, sysSpeedDialNumLength=sysSpeedDialNumLength, statPuEntry=statPuEntry, pvcIpxNetNum=pvcIpxNetNum, puBanBnnNw=puBanBnnNw, ifwanDesc=ifwanDesc, statIfwanIndex=statIfwanIndex, sysSnmpTrapIpAddr3=sysSnmpTrapIpAddr3, statTimeNbFrameReceived=statTimeNbFrameReceived, ipRouterEnable=ipRouterEnable, sysClock=sysClock, ifvceToneOff_ms=ifvceToneOff_ms, bridgeTr_MaxHop=bridgeTr_MaxHop, ipstaticIpDest=ipstaticIpDest, iflanSubnetMask=iflanSubnetMask, iflanIpRip=iflanIpRip, statIfwanChOverflows=statIfwanChOverflows, statIfcemEntry=statIfcemEntry, ospfVLinkTransitAreaId=ospfVLinkTransitAreaId, ifwanRetry=ifwanRetry, bridgeMaxAge_s=bridgeMaxAge_s, filterDefinition=filterDefinition, intfNumInSlot=intfNumInSlot, iflanNumber=iflanNumber, sysPosIpAddr=sysPosIpAddr, statIfwanT1E1BES=statIfwanT1E1BES, timepGetServerTimeNow=timepGetServerTimeNow, statSystemSp=statSystemSp, statIfwanChSeqErrs=statIfwanChSeqErrs, linkDown=linkDown, badDestPvc=badDestPvc, pvcDown=pvcDown, pvcInfoRate=pvcInfoRate, statBootpCannotReceiveAndForwardOnTheSamePort=statBootpCannotReceiveAndForwardOnTheSamePort, puRole=puRole, statIflanEth_ThreeAndMoreCol=statIflanEth_ThreeAndMoreCol, ifwanDropSyncCounter=ifwanDropSyncCounter, ifwanOspfAreaId=ifwanOspfAreaId, statQ922counters=statQ922counters, firmwareStored=firmwareStored, statSvcOctetsTx=statSvcOctetsTx, statGrpTable=statGrpTable, scheduleEndTime=scheduleEndTime, statRxCallProceedingMessages=statRxCallProceedingMessages, statBridgePortTr_SpecRteFrameOut=statBridgePortTr_SpecRteFrameOut, ifwanTable=ifwanTable, puSdlcAddress2=puSdlcAddress2, statTimeNbReplyReceived=statTimeNbReplyReceived, ifwanFrameDelay=ifwanFrameDelay, iflanMaxFrame=iflanMaxFrame, statIfwanEntry=statIfwanEntry, statGrpOutOfSeqErrs=statGrpOutOfSeqErrs, statQ922errors=statQ922errors, statBridgeBridgeFrameTimeout=statBridgeBridgeFrameTimeout, intfModuleType=intfModuleType, statIfcemDesc=statIfcemDesc, proxyDefaultGateway=proxyDefaultGateway, puMode=puMode, ifvceRate6kx2=ifvceRate6kx2, backupCall=backupCall, statIfwanRetries=statIfwanRetries, ifvceActivationType=ifvceActivationType, iflanOspfPassword=iflanOspfPassword, ifwanPriority=ifwanPriority, ospfAreaAreaId=ospfAreaAreaId, ifvceDelDigits=ifvceDelDigits, puSdlcPort2=puSdlcPort2, ifwanDestExtNumber=ifwanDestExtNumber, ifvceRate6kx1=ifvceRate6kx1, statGrpSorterTimeouts=statGrpSorterTimeouts, ifwanLineBuild=ifwanLineBuild, puLlcDsap=puLlcDsap, q922Up=q922Up, ifwanNumber=ifwanNumber, manualHang=manualHang, ospfRangeNet=ospfRangeNet, ipxfilterEntry=ipxfilterEntry, statSystemNa=statSystemNa, statBridgePortEntry=statBridgePortEntry, ospfRangeNumber=ospfRangeNumber, ospfVLinkEntry=ospfVLinkEntry, puBnnFid=puBnnFid, ifwanOspfEnable=ifwanOspfEnable, statPuChAborts=statPuChAborts, intfNumInType=intfNumInType, ifvceRemotePort=ifvceRemotePort, linkUp=linkUp, statIflanTr_ReceiveCongestion=statIflanTr_ReceiveCongestion, statIfwanDesc=statIfwanDesc, sysDefaultGateway=sysDefaultGateway, pvcIpRipAuthType=pvcIpRipAuthType, ipxfilterNumber=ipxfilterNumber, statPuTable=statPuTable, ifvceR2Group2Digit=ifvceR2Group2Digit, sysHuntForwardingADLCI=sysHuntForwardingADLCI, statReleaseIndications=statReleaseIndications, sysDefaultIpMask=sysDefaultIpMask, ifwanEncodingLaw=ifwanEncodingLaw, sysDay=sysDay, iflanIpxNetNum=iflanIpxNetNum, ifvceFwdDigits=ifvceFwdDigits, statIfwanT1E1PCV=statIfwanT1E1PCV, statPvcrRouteValid=statPvcrRouteValid, pvcUserDlci=pvcUserDlci, ipxfilter=ipxfilter, statIflanEth_FrameCheckSeq=statIflanEth_FrameCheckSeq, statBridgePortTr_AllRteFrameOut=statBridgePortTr_AllRteFrameOut, puBanBnnSsap=puBanBnnSsap, timepServerProtocol=timepServerProtocol, ospfArea=ospfArea, statBridgePortTrspFrameOut=statBridgePortTrspFrameOut, statGrpNumber=statGrpNumber, bondTrig=bondTrig, sysName=sysName, statIfwanT1E1UAS=statIfwanT1E1UAS, statIfwanT1E1ESS=statIfwanT1E1ESS, pvcCost=pvcCost, ospfVLink=ospfVLink, statBridgeBridgeAddressDiscard=statBridgeBridgeAddressDiscard, statBridgePortState=statBridgePortState, statSystemPeakDecompRate=statSystemPeakDecompRate, ifvceDVCSilenceSuppress=ifvceDVCSilenceSuppress, statBootpNbRequestSend=statBootpNbRequestSend, intfSlotType=intfSlotType, sysPosProduct=sysPosProduct, statPvcRestart=statPvcRestart, pu=pu, puLlcDynamicWindow=puLlcDynamicWindow, statGrpEntry=statGrpEntry, ospfAreaStubMetric=ospfAreaStubMetric, ifwanX25Encapsulation=ifwanX25Encapsulation, statTxAcknowledgeExpiry=statTxAcknowledgeExpiry, statSvcOvrFrames=statSvcOvrFrames, sysLocation=sysLocation, statSvcMeanRx=statSvcMeanRx, ifwanOspfTransitDelay=ifwanOspfTransitDelay, sysRingFreq=sysRingFreq, iflanEth_LinkIntegrity=iflanEth_LinkIntegrity, pvcProxyAddr=pvcProxyAddr, classPrefRoute=classPrefRoute, ifwanGroupAddress=ifwanGroupAddress, scheduleEnable=scheduleEnable, phoneCost=phoneCost, statPvcPeakRx=statPvcPeakRx, sysLinkTimeout_s=sysLinkTimeout_s, timep=timep, iflanOspfAreaId=iflanOspfAreaId, pvcIpRipPassword=pvcIpRipPassword, statIflanPeakRx_kbps=statIflanPeakRx_kbps, statIfwanOvrFrames=statIfwanOvrFrames, ifvceSpeedDialNum=ifvceSpeedDialNum, ifwanPppAcceptMagicNum=ifwanPppAcceptMagicNum, pvcRingNumber=pvcRingNumber, pvcRemoteUnit=pvcRemoteUnit, statSystemTr_Nan=statSystemTr_Nan, statIflanEth_DeferredTrans=statIflanEth_DeferredTrans, ospfVLinkRetransmitInt=ospfVLinkRetransmitInt, puBnnPvc=puBnnPvc, statPvcOctetsTx=statPvcOctetsTx, statPvcError=statPvcError, statAlarmAlarm=statAlarmAlarm, statSvcEntry=statSvcEntry, notMemory=notMemory, stat=stat, pvcOspfMetricCost=pvcOspfMetricCost, sysPosId=sysPosId, pvcOspfPassword=pvcOspfPassword, iflanIpRipTxRx=iflanIpRipTxRx, statIfwanRestart=statIfwanRestart, bootpIpDestAddr2=bootpIpDestAddr2, statBridgePortTable=statBridgePortTable, ifvceInterface=ifvceInterface, connectionUp=connectionUp, ifvceRate8kx1=ifvceRate8kx1, ifvceRate8kx2=ifvceRate8kx2, statIfwanTable=statIfwanTable, ifwanTimeout=ifwanTimeout, bridgeLanType=bridgeLanType, puSdlcAddress=puSdlcAddress, intfSlot=intfSlot, statIflanOperatingMode=statIflanOperatingMode, statTxRetransmissions=statTxRetransmissions, ifwanDropSyncCharacter=ifwanDropSyncCharacter, ifwanSvcSetupTimeoutT303=ifwanSvcSetupTimeoutT303, ifvceSignaling=ifvceSignaling, ifvceBroadcastDir=ifvceBroadcastDir, statIfwanInterface=statIfwanInterface, ifvceDtmfOnTime=ifvceDtmfOnTime, statPvcrRouteEntry=statPvcrRouteEntry, statSystemBia=statSystemBia, ospfRange=ospfRange, mgmt=mgmt, statSystemClearErrorLed=statSystemClearErrorLed, ifwanSvcMaxTxTimeoutT200=ifwanSvcMaxTxTimeoutT200, iflanOspfDeadInt=iflanOspfDeadInt, ifwanPppSilent=ifwanPppSilent, statAlarmModule=statAlarmModule, puSdlcRetry=puSdlcRetry, statIfwanDropInsert=statIfwanDropInsert, intfTable=intfTable, ifwanIdleCode=ifwanIdleCode, ifwanPppNegociateAccm=ifwanPppNegociateAccm, ifwanIpRipPassword=ifwanIpRipPassword)
mibBuilder.exportSymbols("CLEARTRAC7-MIB", puDlsDa=puDlsDa, pvcMode=pvcMode, ifwanSvcAddressType=ifwanSvcAddressType, statPvcrRouteAge=statPvcrRouteAge, ifwanPppRequestedAccmChar=ifwanPppRequestedAccmChar, pvcOspfAreaId=pvcOspfAreaId, slotSlot=slotSlot, ifvceLinkDwnBusy=ifvceLinkDwnBusy, bridgeTr_SteSpan=bridgeTr_SteSpan, ifwanPppAcceptOldIpAddNeg=ifwanPppAcceptOldIpAddNeg, ipxRouterEnable=ipxRouterEnable, intf=intf, classNumber=classNumber, ifwanOspfDeadInt=ifwanOspfDeadInt, ipaddrNr=ipaddrNr, statPvcInfoSignal=statPvcInfoSignal, statIfwanBadOctets=statIfwanBadOctets, statBridgePortTr_AllRteFrameIn=statBridgePortTr_AllRteFrameIn, statSvcBadFrames=statSvcBadFrames, statIfvceFaxRate=statIfvceFaxRate, puLlcWindow=puLlcWindow, statBootpHopsLimitExceed=statBootpHopsLimitExceed, statBootpCannotRouteFrame=statBootpCannotRouteFrame, statTimeNbFrameSent=statTimeNbFrameSent, statAlarmIndex=statAlarmIndex, ifvceFxoTimeout_s=ifvceFxoTimeout_s, statIfcemTable=statIfcemTable, ifwanIpRip=ifwanIpRip, pvcIpxSap=pvcIpxSap, statIfwanCompErrs=statIfwanCompErrs, sysPosEntry=sysPosEntry, statIflanEntry=statIflanEntry, ifwanQsigPbxXy=ifwanQsigPbxXy, statRxReleaseCompleteMessages=statRxReleaseCompleteMessages, puSdlcTimeout_ms=puSdlcTimeout_ms, accountingFileFull=accountingFileFull, ospfAreaEnable=ospfAreaEnable, puBanBnnDsap=puBanBnnDsap, ifwanOspfMetricCost=ifwanOspfMetricCost, system=system, ifwanIpAddress=ifwanIpAddress, ospfAreaAuthType=ospfAreaAuthType, statPuConnectionStatus=statPuConnectionStatus, puDlsIpDst=puDlsIpDst, puBanBnnTimeout_ms=puBanBnnTimeout_ms, ipaddrAddr=ipaddrAddr, ifwanSync=ifwanSync, ifvceDTalkThreshold=ifvceDTalkThreshold, ifwanDsOSpeed_bps=ifwanDsOSpeed_bps, ifwanChannelCompressed=ifwanChannelCompressed, pvcIpRip=pvcIpRip, timepDaylightSaving=timepDaylightSaving, bootpEnable=bootpEnable, timepClientUdpRetransmissions=timepClientUdpRetransmissions, ifwanMultiframing=ifwanMultiframing, statIfvceUnderruns=statIfvceUnderruns, iflanOspfPriority=iflanOspfPriority, timepServerIpAddress=timepServerIpAddress, statIflanEth_Interface=statIflanEth_Interface, ifwanDigitNumber=ifwanDigitNumber, ifvceR2CompleteDigit=ifvceR2CompleteDigit, ifwanPppLocalMru=ifwanPppLocalMru, pvcIpRipTxRx=pvcIpRipTxRx, schedulePort7=schedulePort7, statBootpNbRequestReceived=statBootpNbRequestReceived, ifvceFaxModemRelay=ifvceFaxModemRelay, ospfVLinkEnable=ospfVLinkEnable, statIfwanMeanRx=statIfwanMeanRx, statPvcFramesRx=statPvcFramesRx, statSvcProtocol=statSvcProtocol, filterTable=filterTable, ospfRangeEntry=ospfRangeEntry, statBridgePortTr_SingleRteFrameIn=statBridgePortTr_SingleRteFrameIn, sysVoiceClass=sysVoiceClass, schedulePort1=schedulePort1, filterIndex=filterIndex, iflanIpxSap=iflanIpxSap, puDelayBeforeConn_s=puDelayBeforeConn_s, statIfvceTable=statIfvceTable, iflanIndex=iflanIndex, puLlcSsap=puLlcSsap, statRxBytes=statRxBytes, statSvcBadOctets=statSvcBadOctets, bondDeTrig=bondDeTrig, proxyEntry=proxyEntry, ifvceToneEnergyDetec=ifvceToneEnergyDetec, statPvcMode=statPvcMode, statTxStatusEnquiryMessages=statTxStatusEnquiryMessages, classTable=classTable, iflanIpRipAuthType=iflanIpRipAuthType, manualCall=manualCall, statSvcOvrOctets=statSvcOvrOctets, statGrpSorterOverruns=statGrpSorterOverruns, ifwanReportCycle=ifwanReportCycle, pvcRetry=pvcRetry, phoneTable=phoneTable, statIfwanPeakTx=statIfwanPeakTx, ifvceRate5k8x1=ifvceRate5k8x1, ospfAreaIndex=ospfAreaIndex, ifwanPppNegociateLocalMru=ifwanPppNegociateLocalMru, sysUnitRoutingVersion=sysUnitRoutingVersion, ifvceSilenceSuppress=ifvceSilenceSuppress, filterEntry=filterEntry, pvcUserPort=pvcUserPort, statPvcOctetsRx=statPvcOctetsRx, statBootpReplyReceivedOnPortBootpc=statBootpReplyReceivedOnPortBootpc, ipaddrTable=ipaddrTable, ifwanPppPeerMruUpTo=ifwanPppPeerMruUpTo, ifvceBroadcastPvc=ifvceBroadcastPvc, ifwanFallBackSpeed_bps=ifwanFallBackSpeed_bps, ipx=ipx, ifvceRate4k8x2=ifvceRate4k8x2, iflanTable=iflanTable, pvcEntry=pvcEntry, statTimeInvalidLocalIpAddress=statTimeInvalidLocalIpAddress, ifwanMsn2=ifwanMsn2, statIfwanChAborts=statIfwanChAborts, statRxStatusMessages=statRxStatusMessages, ifwanTxStartPass=ifwanTxStartPass, puBanBnnMaxFrame=puBanBnnMaxFrame, statQ933counters=statQ933counters, statRxReleaseMessages=statRxReleaseMessages, pvcRemoteFpUnit=pvcRemoteFpUnit, ifvceTable=ifvceTable, iflanIpxLanType=iflanIpxLanType, statAlarmDesc=statAlarmDesc, statBridgeBridgeDesignatedRoot=statBridgeBridgeDesignatedRoot, phoneNextHop=phoneNextHop, ifvceTeTimer_s=ifvceTeTimer_s, statPvcMeanRx=statPvcMeanRx, statPvcDlci=statPvcDlci, statTxframes=statTxframes, statPvcTable=statPvcTable, statTxCallProceedingMessages=statTxCallProceedingMessages, ifwanSvcReleaseTimeoutT308=ifwanSvcReleaseTimeoutT308, statPvcCompErrs=statPvcCompErrs, statBridgePortIndex=statBridgePortIndex, statSvcRestart=statSvcRestart, statRxDisconnectMessages=statRxDisconnectMessages, ifvceToneType=ifvceToneType, statPvcChAborts=statPvcChAborts, pvcNumber=pvcNumber, pvcBackupCall_s=pvcBackupCall_s, statInvalidRxSizes=statInvalidRxSizes, slotPortInSlotTable=slotPortInSlotTable, statSvcTable=statSvcTable, schedulePeriod=schedulePeriod, statPvcBadOctets=statPvcBadOctets, ifwanFraming=ifwanFraming, ospfRangeTable=ospfRangeTable, ipstaticEntry=ipstaticEntry, ifvceEnableDtmfOnTime=ifvceEnableDtmfOnTime, ospfAreaNumber=ospfAreaNumber, statTxReleaseCompleteMessages=statTxReleaseCompleteMessages, puBanRouting=puBanRouting, statBridgePortTr_SegmentMismatch=statBridgePortTr_SegmentMismatch, fatalTrap=fatalTrap, bridgeEnable=bridgeEnable, ifwanIpxSap=ifwanIpxSap, pvcOspfTransitDelay=pvcOspfTransitDelay, ospfVLinkDeadInt=ospfVLinkDeadInt, statBootpNbReplyReceived=statBootpNbReplyReceived, ifwanPppNegociatePeerMru=ifwanPppNegociatePeerMru, statPvcrRouteTable=statPvcrRouteTable, pvcPort=pvcPort, statSystemResetCounters=statSystemResetCounters, cfgStored=cfgStored, ifwanSvcStatusTimeoutT322=ifwanSvcStatusTimeoutT322, ifwanSubnetMask=ifwanSubnetMask, statPvcProtocol=statPvcProtocol, statSystemMeanCompRate=statSystemMeanCompRate, ifvceExtNumber=ifvceExtNumber, pvcMaxChannels=pvcMaxChannels, sysDesc=sysDesc, statPvcState=statPvcState, puNumber=puNumber, scheduleEntry=scheduleEntry, puXid=puXid, pvcOspfHelloInt=pvcOspfHelloInt, ifwanMaxChannels=ifwanMaxChannels, ifwanTerminating=ifwanTerminating, ifvceFwdType=ifvceFwdType, bootp=bootp, classDefaultClass=classDefaultClass, statIfwanModemSignal=statIfwanModemSignal, statPuChOverflows=statPuChOverflows, bridgeTr_Number=bridgeTr_Number, ospfGlobalRouterId=ospfGlobalRouterId, ifwan=ifwan, pysmi_class=pysmi_class, connectionDown=connectionDown, ifwanPppRemoteIpAddress=ifwanPppRemoteIpAddress, statIfwanUnderruns=statIfwanUnderruns, sysVoiceEncoding=sysVoiceEncoding, proxyNumber=proxyNumber, ifwanIndex=ifwanIndex, iflanCost=iflanCost, sysExtendedDigitsLength=sysExtendedDigitsLength, ifvceR2BusyDigit=ifvceR2BusyDigit, lucent=lucent, ifwanRemotePort=ifwanRemotePort, statIfwanOctetsRx=statIfwanOctetsRx, ifwanEntry=ifwanEntry, statIfwanFramesTx=statIfwanFramesTx, proxyComm=proxyComm, ipstaticIndex=ipstaticIndex, statIfwanT1E1LES=statIfwanT1E1LES, puSdlcPort=puSdlcPort, ifwanDialTimeout_s=ifwanDialTimeout_s, sysCountry=sysCountry, sysTransitDelay_s=sysTransitDelay_s, sysHuntForwardingBDLCI=sysHuntForwardingBDLCI, statIfvceDesc=statIfvceDesc, pvcTimeout_ms=pvcTimeout_ms, proxy=proxy, statIfwanState=statIfwanState, ifvceEntry=ifvceEntry, pvcBroadcastGroup=pvcBroadcastGroup, bootpIpDestAddr3=bootpIpDestAddr3, statBridgePortTrspFrameIn=statBridgePortTrspFrameIn, puActive=puActive, statBridgePortTr_FrmLngExceeded=statBridgePortTr_FrmLngExceeded, ifvcePulseMakeBreak_ms=ifvcePulseMakeBreak_ms, statAlarmEntry=statAlarmEntry, statIfwanMeanTx=statIfwanMeanTx, statBootpReplyWithInvalidGiaddr=statBootpReplyWithInvalidGiaddr, pvcOspfRetransmitInt=pvcOspfRetransmitInt, ifvceRemoteUnit=ifvceRemoteUnit, statIfwanT1E1SEF=statIfwanT1E1SEF, ifwanConnTimeout_s=ifwanConnTimeout_s, ifwanCompression=ifwanCompression, periodEnded=periodEnded, ifwanIpRipAuthType=ifwanIpRipAuthType, puXidId=puXidId, ifwanGainLimit=ifwanGainLimit, statBridgePortDesignatedPort=statBridgePortDesignatedPort, sysHuntForwardingAUnit=sysHuntForwardingAUnit, ifwanPppConfigRetries=ifwanPppConfigRetries, ifwanBodCall_s=ifwanBodCall_s, statSvcMode=statSvcMode, statBridgeBridgeFrameDiscard=statBridgeBridgeFrameDiscard, statSvcMeanTx=statSvcMeanTx, ifwanPppConfigRestartTimer=ifwanPppConfigRestartTimer, statMissingControlBlocks=statMissingControlBlocks, ifwanGroupPoll=ifwanGroupPoll, puTable=puTable, noTrap=noTrap, ipaddrEntry=ipaddrEntry, puLinkRemPu=puLinkRemPu, ifvceDVCLocalInbound=ifvceDVCLocalInbound, puBanBnnWindow=puBanBnnWindow, classIndex=classIndex, statPvcChOverflows=statPvcChOverflows, statIflanConnectionStatus=statIflanConnectionStatus)
mibBuilder.exportSymbols("CLEARTRAC7-MIB", setupReset=setupReset, ifwanTxHold_s=ifwanTxHold_s, badChecksum=badChecksum, sysDLCI=sysDLCI, ifwanSpeed_bps=ifwanSpeed_bps, ifwanClocking=ifwanClocking, ifvceDesc=ifvceDesc, statTxReleaseMessages=statTxReleaseMessages, ifwanPvcNumber=ifwanPvcNumber, statTimeNbReplySent=statTimeNbReplySent, bothFansUp=bothFansUp, ifwanCrc4=ifwanCrc4, statTimeClientSyncFailures=statTimeClientSyncFailures, statTxDisconnectMessages=statTxDisconnectMessages, cardDown=cardDown, statBridgePortDestination=statBridgePortDestination, sysPosNr=sysPosNr, schedulePort4=schedulePort4, phone=phone, bridgeAgingTime_s=bridgeAgingTime_s, statIfwanTrspLastError=statIfwanTrspLastError, sysRacksNr=sysRacksNr, statPvcSpeed=statPvcSpeed, ifwanIpxNetNum=ifwanIpxNetNum, statBridgeBridge=statBridgeBridge, pvcDlciAddress=pvcDlciAddress, statAlarmTime=statAlarmTime, statIflanProtocol=statIflanProtocol, statPvcMeanTx=statPvcMeanTx, pvcOspfEnable=pvcOspfEnable, statGrpDestName=statGrpDestName, ipstaticValid=ipstaticValid, ifwanHighPriorityTransparentClass=ifwanHighPriorityTransparentClass, ipstaticMask=ipstaticMask, ifvce=ifvce, sysVoiceHighestPriority=sysVoiceHighestPriority, ifwanFallBackSpeedEnable=ifwanFallBackSpeedEnable, statIflanBadFlags=statIflanBadFlags, iflanIpAddress=iflanIpAddress, iflanOspfEnable=iflanOspfEnable, statPvcOvrFrames=statPvcOvrFrames, bootpIpDestAddr1=bootpIpDestAddr1, statPvcrRouteNextHop=statPvcrRouteNextHop, puLinkRemoteUnit=puLinkRemoteUnit, proxyTrapIpAddr=proxyTrapIpAddr, sysRackId=sysRackId, bridge=bridge, statIfvceEntry=statIfvceEntry, statSystemAlarmNumber=statSystemAlarmNumber, ipstatic=ipstatic, ipstaticNumber=ipstaticNumber, statBootpNbReplySend=statBootpNbReplySend, ospfAreaTable=ospfAreaTable, proxyIpAddr=proxyIpAddr, pvcType=pvcType, sysThisPosId=sysThisPosId, iflanTr_Etr=iflanTr_Etr, statIfvceIndex=statIfvceIndex, statEstablishIndications=statEstablishIndications, schedule=schedule, filter=filter, classEntry=classEntry, statPvcrRouteIntrf=statPvcrRouteIntrf, ipaddrIfIndex=ipaddrIfIndex, puSdlcWindow=puSdlcWindow, ospfRangeEnable=ospfRangeEnable, statBridge=statBridge, sysDefaultIpAddr=sysDefaultIpAddr, puLlcTimeout_ms=puLlcTimeout_ms, statIfvceFaxMode=statIfvceFaxMode, statPuChSeqErrs=statPuChSeqErrs, statRxStatusEnquiryMessages=statRxStatusEnquiryMessages, statIflanMeanTx_kbps=statIflanMeanTx_kbps, ifwanLineCoding=ifwanLineCoding, statSystemMeanDecompRate=statSystemMeanDecompRate, statIflanIndex=statIflanIndex, ifwanPppNegociateIpAddress=ifwanPppNegociateIpAddress, ifwanSfType=ifwanSfType, sysAcceptLoop=sysAcceptLoop, bridgePriority=bridgePriority, statBridgePortTr_SegmentDuplicate=statBridgePortTr_SegmentDuplicate, pvcIpConnection=pvcIpConnection, schedulePort3=schedulePort3, pvcIpxConnection=pvcIpxConnection, fatalMsg=fatalMsg, sysVoiceClocking=sysVoiceClocking, iflan=iflan, ifwanMaxFrame=ifwanMaxFrame, puLlcDa=puLlcDa, ipstaticNextHop=ipstaticNextHop, statRxConnectMessages=statRxConnectMessages, ospfGlobalAutoVLink=ospfGlobalAutoVLink, bootpIpDestAddr4=bootpIpDestAddr4, ifwanMgmtInterface=ifwanMgmtInterface, ifwanBackupHang_s=ifwanBackupHang_s, ifwanChUse=ifwanChUse, pvcHuntForwardingBUnit=pvcHuntForwardingBUnit, cardup=cardup, ifwanCoding=ifwanCoding, pvcSubnetMask=pvcSubnetMask, statIfwanT1E1LCV=statIfwanT1E1LCV, statTxBytes=statTxBytes, slotIfIndex=slotIfIndex, statTimeNbRequestSent=statTimeNbRequestSent, iflanPriority=iflanPriority, ifwanRingNumber=ifwanRingNumber, statSystemSa=statSystemSa, ifwanInterface=ifwanInterface, filterActive=filterActive, puDlsSsap=puDlsSsap, ospfVLinkIndex=ospfVLinkIndex, statPvcFramesTx=statPvcFramesTx, pvcPriority=pvcPriority, sysHuntForwardingASvcAddress=sysHuntForwardingASvcAddress, ifvceIndex=ifvceIndex, ifwanPppAcceptAccmPeer=ifwanPppAcceptAccmPeer, puXidFormat=puXidFormat, sysPsMonitoring=sysPsMonitoring, sysTrapRackandPos=sysTrapRackandPos, statIfwanPeakRx=statIfwanPeakRx, statIflanEth_OneCollision=statIflanEth_OneCollision, ospfGlobal=ospfGlobal, statIflanRetries=statIflanRetries, statIfwanOvrOctets=statIfwanOvrOctets, sysVoiceLog=sysVoiceLog, ifvceLocalOutbound=ifvceLocalOutbound, pvcNetworkDlci=pvcNetworkDlci, pvcOspfDeadInt=pvcOspfDeadInt, iflanOspfHelloInt=iflanOspfHelloInt, statSystemPeakCompRate=statSystemPeakCompRate, statIfcemIndex=statIfcemIndex, ipxfilterType=ipxfilterType, ospfVLinkHelloInt=ospfVLinkHelloInt, iflanOspfRetransmitInt=iflanOspfRetransmitInt, slot=slot, iflanProtocol=iflanProtocol, schedulePort2=schedulePort2, ospfAreaEntry=ospfAreaEntry, sysBackplaneRipVersion=sysBackplaneRipVersion, pvcIpAddress=pvcIpAddress, statIflanPeakTx_kbps=statIflanPeakTx_kbps, pvcLlcConnection=pvcLlcConnection, statIflanBadFrames=statIflanBadFrames, statBridgePortTr_SingleRteFrameOut=statBridgePortTr_SingleRteFrameOut, puLlcMaxFrame=puLlcMaxFrame, periodStarted=periodStarted, statTxSetupMessages=statTxSetupMessages, statSvcOctetsRx=statSvcOctetsRx, ifvceDVCLocalOutbound=ifvceDVCLocalOutbound, intfDesc=intfDesc, statProtocolTimeouts=statProtocolTimeouts, q922Down=q922Down, ifwanBChannels=ifwanBChannels, ip=ip, ifwanSvcIframeRetransmissionsN200=ifwanSvcIframeRetransmissionsN200, statRxAcknowledgeExpiry=statRxAcknowledgeExpiry, ifwanT1E1InterBit=ifwanT1E1InterBit, phonePhoneNumber=phonePhoneNumber, ifwanEnquiryTimer_s=ifwanEnquiryTimer_s, ifvceRate8kx3=ifvceRate8kx3, statIfwanT1E1CSS=statIfwanT1E1CSS, statIfwanT1E1DM=statIfwanT1E1DM, ifvceRate4k8x1=ifvceRate4k8x1, statIfwanFramesRx=statIfwanFramesRx, pvcIndex=pvcIndex, pvcCompression=pvcCompression, statIflanEth_ExcessiveCollision=statIflanEth_ExcessiveCollision, ospf=ospf, bridgeStpEnable=bridgeStpEnable, ifwanBodLevel=ifwanBodLevel, ospfGlobalGlobalAreaId=ospfGlobalGlobalAreaId, ospfRangeIndex=ospfRangeIndex, puDlsIpSrc=puDlsIpSrc, intfEntry=intfEntry, ifwanIpxRip=ifwanIpxRip, ifwanOspfPassword=ifwanOspfPassword, pvc=pvc, statGrp=statGrp, ifwanQsigPbxAb=ifwanQsigPbxAb, ifvceFwdDelay_ms=ifvceFwdDelay_ms, pvcBackup=pvcBackup, ifwanIpRipTxRx=ifwanIpRipTxRx, statRxframes=statRxframes, ifwanSvcInactiveTimeoutT203=ifwanSvcInactiveTimeoutT203, statIflanEth_Align=statIflanEth_Align, ipaddrType=ipaddrType, ospfVLinkPassword=ospfVLinkPassword, iflanTr_Monitor=iflanTr_Monitor, ifvceAnalogLinkDwnBusy=ifvceAnalogLinkDwnBusy, statSvcPeakTx=statSvcPeakTx, iflanIpRipPassword=iflanIpRipPassword, sysSnmpTrapIpAddr4=sysSnmpTrapIpAddr4, ifwanTransparentClassNumber=ifwanTransparentClassNumber, puEntry=puEntry, statRxSetupMessages=statRxSetupMessages, statIflanEth_LateCollision=statIflanEth_LateCollision, pvcBrgConnection=pvcBrgConnection, iflanIpxRip=iflanIpxRip, ospfGlobalRackAreaId=ospfGlobalRackAreaId, statPvcIndex=statPvcIndex, badDestPort=badDestPort, statTxConnectMessages=statTxConnectMessages, statSvcFramesTx=statSvcFramesTx, scheduleNumber=scheduleNumber, ifwanT1E1LoopBack=ifwanT1E1LoopBack, ipxfilterIndex=ipxfilterIndex, statIflanEth_TwoCollisions=statIflanEth_TwoCollisions, sysDialTimer=sysDialTimer, sysSnmpTrapIpAddr1=sysSnmpTrapIpAddr1, schedulePort5=schedulePort5, ifwanOspfRetransmitInt=ifwanOspfRetransmitInt, ipaddrIndex=ipaddrIndex, ifwanPppAcceptIpAddress=ifwanPppAcceptIpAddress, statBootpFrameTooSmallToBeABootpFrame=statBootpFrameTooSmallToBeABootpFrame, statLinkEstablished=statLinkEstablished, sysHuntForwardingBUnit=sysHuntForwardingBUnit, ifwanModem=ifwanModem, phoneEntry=phoneEntry, statSvcFramesRx=statSvcFramesRx, statPuIndex=statPuIndex, puIndex=puIndex, ospfVLinkTransitDelay=ospfVLinkTransitDelay, ifwanSvcCallProceedingTimeoutT310=ifwanSvcCallProceedingTimeoutT310, intfIndex=intfIndex, ifwanIdle=ifwanIdle, ifvceMaxFaxModemRate=ifvceMaxFaxModemRate, pvcRemotePvc=pvcRemotePvc, ospfAreaImportASExt=ospfAreaImportASExt, bridgeHelloTime_s=bridgeHelloTime_s, statSvcError=statSvcError, timepTimeZoneSign=timepTimeZoneSign, ifwanExtNumber=ifwanExtNumber, ipxfilterTable=ipxfilterTable, statPvcEntry=statPvcEntry, intfSlotNumber=intfSlotNumber, statPvcChSeqErrs=statPvcChSeqErrs, statBootpInvalidOpCodeField=statBootpInvalidOpCodeField, ifvceR2ExtendedDigitSrc=ifvceR2ExtendedDigitSrc, puXidPuType=puXidPuType, ospfRangeStatus=ospfRangeStatus, onePsDown=onePsDown, statIfwanT1E1SES=statIfwanT1E1SES, statPvcPeakTx=statPvcPeakTx, statTimeInvalidPortNumbers=statTimeInvalidPortNumbers, schedulePort8=schedulePort8, statPvcrRouteName=statPvcrRouteName, puDlsMaxFrame=puDlsMaxFrame, statTimep=statTimep, intfNumber=intfNumber, statSvcSpeed=statSvcSpeed, pvcPvcClass=pvcPvcClass, cleartrac7=cleartrac7, statSvcIndex=statSvcIndex, sysPosRackId=sysPosRackId)
mibBuilder.exportSymbols("CLEARTRAC7-MIB", ifwanPppRemoteSubnetMask=ifwanPppRemoteSubnetMask, ifwanDialer=ifwanDialer, pvcHuntForwardingAUnit=pvcHuntForwardingAUnit, statIfvceDvcPortInUse=statIfvceDvcPortInUse, ifwanSvcNetworkAddress=ifwanSvcNetworkAddress, statTxStatusMessages=statTxStatusMessages, statBootpRequestReceivedOnPortBootpc=statBootpRequestReceivedOnPortBootpc, ipxfilterSap=ipxfilterSap, statBridgePortDesignatedRoot=statBridgePortDesignatedRoot, ifwanChExp=ifwanChExp, scheduleTable=scheduleTable, statSystemClearAlarms=statSystemClearAlarms, statBridgeBridgeFrameFiltered=statBridgeBridgeFrameFiltered, accountingFileOverflow=accountingFileOverflow, scheduleBeginTime=scheduleBeginTime, sysJitterBuf=sysJitterBuf, ifwanPollDelay_ms=ifwanPollDelay_ms, puLlcRetry=puLlcRetry, statAlarmDate=statAlarmDate, puLinkClassNumber=puLinkClassNumber, ifwanClassNumber=ifwanClassNumber, ospfVLinkNeighborRtrId=ospfVLinkNeighborRtrId, statPvcOvrOctets=statPvcOvrOctets, ifwanRxFlow=ifwanRxFlow, statIfwanTrspState=statIfwanTrspState, ifwanCllm=ifwanCllm, statAlarmArg=statAlarmArg, bridgeForwardDelay_s=bridgeForwardDelay_s, sysSnmpTrapIpAddr2=sysSnmpTrapIpAddr2, ifwanOspfHelloInt=ifwanOspfHelloInt, sysPsAndFansMonitoring=sysPsAndFansMonitoring, frLinkDown=frLinkDown, statIfwanOctetsTx=statIfwanOctetsTx, ifwanBodHang_s=ifwanBodHang_s, puBanDa=puBanDa, statIfwanBadFlags=statIfwanBadFlags, statPuMode=statPuMode, ifwanCondLMIPort=ifwanCondLMIPort, statBridgePortDesignatedBridge=statBridgePortDesignatedBridge, sysRingVolt=sysRingVolt, phoneIndex=phoneIndex, statTimeClientRetransmissions=statTimeClientRetransmissions, proxyTable=proxyTable, ifwanTxStartCop=ifwanTxStartCop, statIfwanQ922State=statIfwanQ922State, proxyIpMask=proxyIpMask, iflanOspfTransitDelay=iflanOspfTransitDelay, statBootp=statBootp, timepClientUdpTimeout=timepClientUdpTimeout, iflanEntry=iflanEntry, ifvceToneDetectRegen_s=ifvceToneDetectRegen_s, statIflanTable=statIflanTable, ospfRangeAddToArea=ospfRangeAddToArea, ospfVLinkNumber=ospfVLinkNumber, ifwanTxFlow=ifwanTxFlow, sysDate=sysDate, statPvcrRouteMetric=statPvcrRouteMetric, bothPsUp=bothPsUp, pvcMaxFrame=pvcMaxFrame, puBanBnnRetry=puBanBnnRetry, ifwanCellPacketization=ifwanCellPacketization, iflanTr_RingNumber=iflanTr_RingNumber, statBridgePortTr_SpecRteFrameIn=statBridgePortTr_SpecRteFrameIn, timepTimeZone=timepTimeZone, ifwanSignaling=ifwanSignaling, ifwanMsn3=ifwanMsn3, noMsg=noMsg, ifvceExtendedDigitSrc=ifvceExtendedDigitSrc, iflanPhysAddr=iflanPhysAddr, statBridgeBridgeRootCost=statBridgeBridgeRootCost, ipxfilterEnable=ipxfilterEnable, ifwanRemoteUnit=ifwanRemoteUnit, statTimeNbRequestReceived=statTimeNbRequestReceived, ifvceToneOn_ms=ifvceToneOn_ms, sysContact=sysContact, statIfcemClockState=statIfcemClockState, pvcDialTimeout=pvcDialTimeout, schedulePort6=schedulePort6, sysHuntForwardingBSvcAddress=sysHuntForwardingBSvcAddress, sysAutoSaveDelay=sysAutoSaveDelay, pvcTable=pvcTable, statBridgeBridgeRootPort=statBridgeBridgeRootPort, ifwanSfMode=ifwanSfMode, puLlcTr_Routing=puLlcTr_Routing, statIflanEth_CarrierSense=statIflanEth_CarrierSense, ifwanBackupCall_s=ifwanBackupCall_s, statSvcInfoSignal=statSvcInfoSignal, classWeight=classWeight, pvcBurstInfoRate=pvcBurstInfoRate, puSdlcMaxFrame=puSdlcMaxFrame, pvcUp=pvcUp, statIfwanSpeed=statIfwanSpeed, statIflanMeanRx_kbps=statIflanMeanRx_kbps, statGrpIndex=statGrpIndex, oneOrMoreFanDown=oneOrMoreFanDown, pvcIpxRip=pvcIpxRip, statSvcState=statSvcState, ifwanDuplex=ifwanDuplex, bootpMaxHops=bootpMaxHops, ifwanFlowControl=ifwanFlowControl, sysExtensionNumLength=sysExtensionNumLength, statPuCompErrs=statPuCompErrs, ifwanPppRequestMagicNum=ifwanPppRequestMagicNum, scheduleDay=scheduleDay, statIfvceOverruns=statIfvceOverruns, pvcBackupHang_s=pvcBackupHang_s, statBridgePort=statBridgePort, ifwanMsn1=ifwanMsn1)
| (integer, object_identifier, octet_string) = mibBuilder.importSymbols('ASN1', 'Integer', 'ObjectIdentifier', 'OctetString')
(named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues')
(single_value_constraint, constraints_union, constraints_intersection, value_range_constraint, value_size_constraint) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'SingleValueConstraint', 'ConstraintsUnion', 'ConstraintsIntersection', 'ValueRangeConstraint', 'ValueSizeConstraint')
(module_compliance, notification_group) = mibBuilder.importSymbols('SNMPv2-CONF', 'ModuleCompliance', 'NotificationGroup')
(time_ticks, notification_type, mib_identifier, counter64, ip_address, module_identity, gauge32, unsigned32, enterprises, notification_type, counter32, bits, object_identity, mib_scalar, mib_table, mib_table_row, mib_table_column, iso, integer32) = mibBuilder.importSymbols('SNMPv2-SMI', 'TimeTicks', 'NotificationType', 'MibIdentifier', 'Counter64', 'IpAddress', 'ModuleIdentity', 'Gauge32', 'Unsigned32', 'enterprises', 'NotificationType', 'Counter32', 'Bits', 'ObjectIdentity', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn', 'iso', 'Integer32')
(textual_convention, display_string) = mibBuilder.importSymbols('SNMPv2-TC', 'TextualConvention', 'DisplayString')
lucent = mib_identifier((1, 3, 6, 1, 4, 1, 727))
cleartrac7 = mib_identifier((1, 3, 6, 1, 4, 1, 727, 7))
mgmt = mib_identifier((1, 3, 6, 1, 4, 1, 727, 7, 2))
system = mib_identifier((1, 3, 6, 1, 4, 1, 727, 7, 2, 1))
ifwan = mib_identifier((1, 3, 6, 1, 4, 1, 727, 7, 2, 2))
iflan = mib_identifier((1, 3, 6, 1, 4, 1, 727, 7, 2, 3))
ifvce = mib_identifier((1, 3, 6, 1, 4, 1, 727, 7, 2, 18))
pu = mib_identifier((1, 3, 6, 1, 4, 1, 727, 7, 2, 4))
schedule = mib_identifier((1, 3, 6, 1, 4, 1, 727, 7, 2, 5))
bridge = mib_identifier((1, 3, 6, 1, 4, 1, 727, 7, 2, 6))
phone = mib_identifier((1, 3, 6, 1, 4, 1, 727, 7, 2, 7))
filter = mib_identifier((1, 3, 6, 1, 4, 1, 727, 7, 2, 8))
pysmi_class = mib_identifier((1, 3, 6, 1, 4, 1, 727, 7, 2, 9)).setLabel('class')
pvc = mib_identifier((1, 3, 6, 1, 4, 1, 727, 7, 2, 10))
ipx = mib_identifier((1, 3, 6, 1, 4, 1, 727, 7, 2, 11))
ipstatic = mib_identifier((1, 3, 6, 1, 4, 1, 727, 7, 2, 13))
ip = mib_identifier((1, 3, 6, 1, 4, 1, 727, 7, 2, 14))
ospf = mib_identifier((1, 3, 6, 1, 4, 1, 727, 7, 2, 15))
ipxfilter = mib_identifier((1, 3, 6, 1, 4, 1, 727, 7, 2, 16))
stat = mib_identifier((1, 3, 6, 1, 4, 1, 727, 7, 2, 20))
intf = mib_identifier((1, 3, 6, 1, 4, 1, 727, 7, 2, 30))
slot = mib_identifier((1, 3, 6, 1, 4, 1, 727, 7, 2, 31))
ipaddr = mib_identifier((1, 3, 6, 1, 4, 1, 727, 7, 2, 32))
bootp = mib_identifier((1, 3, 6, 1, 4, 1, 727, 7, 2, 33))
proxy = mib_identifier((1, 3, 6, 1, 4, 1, 727, 7, 2, 34))
timep = mib_identifier((1, 3, 6, 1, 4, 1, 727, 7, 2, 35))
sys_desc = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 1), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
sysDesc.setStatus('mandatory')
sys_contact = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 2), display_string().subtype(subtypeSpec=value_size_constraint(0, 32))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
sysContact.setStatus('mandatory')
sys_name = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 3), display_string().subtype(subtypeSpec=value_size_constraint(0, 32))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
sysName.setStatus('mandatory')
sys_unit_routing_version = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 21), integer32().subtype(subtypeSpec=value_range_constraint(1, 2))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
sysUnitRoutingVersion.setStatus('mandatory')
sys_location = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 4), display_string().subtype(subtypeSpec=value_size_constraint(0, 32))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
sysLocation.setStatus('mandatory')
sys_date = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 5), display_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
sysDate.setStatus('mandatory')
sys_clock = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 6), display_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
sysClock.setStatus('mandatory')
sys_day = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 254, 255))).clone(namedValues=named_values(('sunday', 1), ('monday', 2), ('tuesday', 3), ('wednesday', 4), ('thursday', 5), ('friday', 6), ('saturday', 7), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
sysDay.setStatus('mandatory')
sys_accept_loop = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('no', 1), ('yes', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
sysAcceptLoop.setStatus('mandatory')
sys_link_timeout_s = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 9), integer32().subtype(subtypeSpec=value_range_constraint(0, 1000))).setLabel('sysLinkTimeout-s').setMaxAccess('readwrite')
if mibBuilder.loadTexts:
sysLinkTimeout_s.setStatus('mandatory')
sys_transit_delay_s = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 10), integer32().subtype(subtypeSpec=value_range_constraint(1, 20))).setLabel('sysTransitDelay-s').setMaxAccess('readwrite')
if mibBuilder.loadTexts:
sysTransitDelay_s.setStatus('mandatory')
sys_default_ip_addr = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 11), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
sysDefaultIpAddr.setStatus('mandatory')
sys_default_ip_mask = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 12), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
sysDefaultIpMask.setStatus('mandatory')
sys_default_gateway = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 13), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
sysDefaultGateway.setStatus('mandatory')
sys_rack_id = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 15), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 254, 255))).clone(namedValues=named_values(('cs-product-only', 0), ('rack-1', 1), ('rack-2', 2), ('rack-3', 3), ('rack-4', 4), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
sysRackId.setStatus('mandatory')
sys_ps_and_fans_monitoring = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 16), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 254, 255))).clone(namedValues=named_values(('cs-product-only', 0), ('none', 1), ('ps', 2), ('fans', 3), ('both', 4), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
sysPsAndFansMonitoring.setStatus('mandatory')
sys_ps_monitoring = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 47), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('no', 1), ('yes', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
sysPsMonitoring.setStatus('mandatory')
sys_snmp_trap_ip_addr1 = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 17), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
sysSnmpTrapIpAddr1.setStatus('mandatory')
sys_snmp_trap_ip_addr2 = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 18), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
sysSnmpTrapIpAddr2.setStatus('mandatory')
sys_snmp_trap_ip_addr3 = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 19), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
sysSnmpTrapIpAddr3.setStatus('mandatory')
sys_snmp_trap_ip_addr4 = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 20), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
sysSnmpTrapIpAddr4.setStatus('mandatory')
sys_this_pos_id = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 30), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5, 6, 7, 8, 254, 255))).clone(namedValues=named_values(('cs-product-only', 0), ('pos-1', 1), ('pos-2', 2), ('pos-3', 3), ('pos-4', 4), ('pos-5', 5), ('pos-6', 6), ('pos-7', 7), ('pos-8', 8), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
sysThisPosId.setStatus('mandatory')
sys_pos_nr = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 31), integer32().subtype(subtypeSpec=value_range_constraint(0, 32))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
sysPosNr.setStatus('mandatory')
sys_racks_nr = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 33), integer32().subtype(subtypeSpec=value_range_constraint(0, 4))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
sysRacksNr.setStatus('mandatory')
sys_pos_table = mib_table((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 32))
if mibBuilder.loadTexts:
sysPosTable.setStatus('mandatory')
sys_pos_entry = mib_table_row((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 32, 1)).setIndexNames((0, 'CLEARTRAC7-MIB', 'sysPosRackId'), (0, 'CLEARTRAC7-MIB', 'sysPosId'))
if mibBuilder.loadTexts:
sysPosEntry.setStatus('mandatory')
sys_pos_id = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 32, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5, 6, 7, 8, 254, 255))).clone(namedValues=named_values(('cs-product-only', 0), ('pos-1', 1), ('pos-2', 2), ('pos-3', 3), ('pos-4', 4), ('pos-5', 5), ('pos-6', 6), ('pos-7', 7), ('pos-8', 8), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
sysPosId.setStatus('mandatory')
sys_pos_product = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 32, 1, 3), object_identifier()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
sysPosProduct.setStatus('mandatory')
sys_pos_rack_id = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 32, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 254, 255))).clone(namedValues=named_values(('single-rack', 0), ('rack-1', 1), ('rack-2', 2), ('rack-3', 3), ('rack-4', 4), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
sysPosRackId.setStatus('mandatory')
sys_pos_ip_addr = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 32, 1, 5), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
sysPosIpAddr.setStatus('mandatory')
ipaddr_nr = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 32, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipaddrNr.setStatus('mandatory')
ipaddr_table = mib_table((1, 3, 6, 1, 4, 1, 727, 7, 2, 32, 2))
if mibBuilder.loadTexts:
ipaddrTable.setStatus('mandatory')
ipaddr_entry = mib_table_row((1, 3, 6, 1, 4, 1, 727, 7, 2, 32, 2, 1)).setIndexNames((0, 'CLEARTRAC7-MIB', 'ipaddrIndex'))
if mibBuilder.loadTexts:
ipaddrEntry.setStatus('mandatory')
ipaddr_index = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 32, 2, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipaddrIndex.setStatus('mandatory')
ipaddr_addr = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 32, 2, 1, 2), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ipaddrAddr.setStatus('mandatory')
ipaddr_type = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 32, 2, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5))).clone(namedValues=named_values(('undef', 0), ('global', 1), ('wan', 2), ('lan', 3), ('proxy', 4), ('pvc', 5)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipaddrType.setStatus('mandatory')
ipaddr_if_index = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 32, 2, 1, 4), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipaddrIfIndex.setStatus('mandatory')
sys_dlci = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 34), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
sysDLCI.setStatus('mandatory')
sys_extension_num_length = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 35), integer32().subtype(subtypeSpec=value_range_constraint(1, 5))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
sysExtensionNumLength.setStatus('mandatory')
sys_extended_digits_length = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 36), integer32().subtype(subtypeSpec=value_range_constraint(0, 16))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
sysExtendedDigitsLength.setStatus('mandatory')
sys_dial_timer = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 37), integer32().subtype(subtypeSpec=value_range_constraint(0, 10))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
sysDialTimer.setStatus('mandatory')
sys_country = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 38), integer32().subtype(subtypeSpec=value_range_constraint(0, 9999))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
sysCountry.setStatus('mandatory')
sys_jitter_buf = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 39), integer32().subtype(subtypeSpec=value_range_constraint(10, 255))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
sysJitterBuf.setStatus('mandatory')
sys_ring_freq = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 40), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 254, 255))).clone(namedValues=named_values(('voice-data-only', 0), ('hz-17', 1), ('hz-20', 2), ('hz-25', 3), ('hz-50', 4), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
sysRingFreq.setStatus('mandatory')
sys_ring_volt = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 41), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 254, 255))).clone(namedValues=named_values(('voice-data-only', 0), ('rms-Volts-60', 1), ('rms-Volts-80', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
sysRingVolt.setStatus('mandatory')
sys_voice_encoding = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 42), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 254, 255))).clone(namedValues=named_values(('fp-product-only', 0), ('aCode', 1), ('bCode', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
sysVoiceEncoding.setStatus('mandatory')
sys_voice_clocking = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 43), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 254, 255))).clone(namedValues=named_values(('fp-product-only', 0), ('aClock', 1), ('bClock', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
sysVoiceClocking.setStatus('mandatory')
sys_voice_log = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 44), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('no', 1), ('yes', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
sysVoiceLog.setStatus('mandatory')
sys_speed_dial_num_length = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 45), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
sysSpeedDialNumLength.setStatus('mandatory')
sys_auto_save_delay = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 46), integer32().subtype(subtypeSpec=value_range_constraint(0, 255))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
sysAutoSaveDelay.setStatus('mandatory')
sys_voice_highest_priority = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 48), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('no', 1), ('yes', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
sysVoiceHighestPriority.setStatus('mandatory')
sys_voice_class = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 49), integer32().subtype(subtypeSpec=value_range_constraint(1, 8))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
sysVoiceClass.setStatus('mandatory')
sys_hunt_forwarding_a_unit = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 50), display_string().subtype(subtypeSpec=value_size_constraint(0, 16))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
sysHuntForwardingAUnit.setStatus('mandatory')
sys_hunt_forwarding_b_unit = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 51), display_string().subtype(subtypeSpec=value_size_constraint(0, 16))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
sysHuntForwardingBUnit.setStatus('mandatory')
sys_hunt_forwarding_adlci = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 52), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
sysHuntForwardingADLCI.setStatus('mandatory')
sys_hunt_forwarding_bdlci = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 53), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
sysHuntForwardingBDLCI.setStatus('mandatory')
sys_hunt_forwarding_a_svc_address = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 54), display_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
sysHuntForwardingASvcAddress.setStatus('mandatory')
sys_hunt_forwarding_b_svc_address = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 55), display_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
sysHuntForwardingBSvcAddress.setStatus('mandatory')
sys_backplane_rip_version = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 56), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 254, 255))).clone(namedValues=named_values(('disable', 1), ('v1', 2), ('v2-broadcast', 3), ('v2-multicast', 4), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
sysBackplaneRipVersion.setStatus('mandatory')
sys_trap_rackand_pos = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 1, 57), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
sysTrapRackandPos.setStatus('mandatory')
proxy_number = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 34, 1), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
proxyNumber.setStatus('mandatory')
proxy_table = mib_table((1, 3, 6, 1, 4, 1, 727, 7, 2, 34, 2))
if mibBuilder.loadTexts:
proxyTable.setStatus('mandatory')
proxy_entry = mib_table_row((1, 3, 6, 1, 4, 1, 727, 7, 2, 34, 2, 1)).setIndexNames((0, 'CLEARTRAC7-MIB', 'proxyIndex'))
if mibBuilder.loadTexts:
proxyEntry.setStatus('mandatory')
proxy_index = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 34, 2, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
proxyIndex.setStatus('mandatory')
proxy_comm = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 34, 2, 1, 2), display_string().subtype(subtypeSpec=value_size_constraint(0, 32))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
proxyComm.setStatus('mandatory')
proxy_ip_addr = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 34, 2, 1, 3), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
proxyIpAddr.setStatus('mandatory')
proxy_ip_mask = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 34, 2, 1, 4), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
proxyIpMask.setStatus('mandatory')
proxy_trap_ip_addr = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 34, 2, 1, 5), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
proxyTrapIpAddr.setStatus('mandatory')
proxy_default_gateway = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 34, 2, 1, 6), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
proxyDefaultGateway.setStatus('mandatory')
intf_number = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 30, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
intfNumber.setStatus('mandatory')
intf_table = mib_table((1, 3, 6, 1, 4, 1, 727, 7, 2, 30, 2))
if mibBuilder.loadTexts:
intfTable.setStatus('mandatory')
intf_entry = mib_table_row((1, 3, 6, 1, 4, 1, 727, 7, 2, 30, 2, 1)).setIndexNames((0, 'CLEARTRAC7-MIB', 'intfIndex'))
if mibBuilder.loadTexts:
intfEntry.setStatus('mandatory')
intf_index = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 30, 2, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
intfIndex.setStatus('mandatory')
intf_desc = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 30, 2, 1, 2), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
intfDesc.setStatus('mandatory')
intf_type = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 30, 2, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 99, 254, 255))).clone(namedValues=named_values(('wan-on-baseCard', 1), ('voice-on-baseCard', 2), ('wan-on-slot', 3), ('voice-on-slot', 4), ('lan-on-baseCard', 5), ('lan-on-slot', 6), ('proxy-on-slot', 7), ('voice-control-on-slot', 8), ('clock-extract-module', 9), ('other', 99), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
intfType.setStatus('mandatory')
intf_num_in_type = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 30, 2, 1, 4), integer32().subtype(subtypeSpec=value_range_constraint(1, 256))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
intfNumInType.setStatus('mandatory')
intf_slot = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 30, 2, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 254, 255))).clone(namedValues=named_values(('baseCard', 0), ('slot-1', 1), ('slot-2', 2), ('slot-3', 3), ('slot-4', 4), ('slot-5', 5), ('slot-6', 6), ('slot-7', 7), ('slot-8', 8), ('slot-A', 9), ('slot-B', 10), ('slot-C', 11), ('slot-D', 12), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
intfSlot.setStatus('mandatory')
intf_slot_type = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 30, 2, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5, 6, 7, 9, 16, 17, 18, 19, 21, 22, 23, 51, 36, 9999, 254, 255))).clone(namedValues=named_values(('baseCard', 0), ('ethernet', 1), ('vcf03', 2), ('g703-E1', 3), ('g703-T1', 4), ('g703-E1-ii', 5), ('g703-T1-ii', 6), ('tokenring', 7), ('voice', 9), ('tic', 16), ('tic-75', 17), ('dvc', 18), ('isdn-bri-voice', 19), ('eic', 21), ('eic-120', 22), ('cem', 23), ('vfc03r', 51), ('proxy', 36), ('unkown', 9999), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
intfSlotType.setStatus('mandatory')
intf_num_in_slot = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 30, 2, 1, 7), integer32().subtype(subtypeSpec=value_range_constraint(1, 256))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
intfNumInSlot.setStatus('mandatory')
intf_module_type = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 30, 2, 1, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 17, 18, 19, 20, 21, 22, 23, 255, 254, 253, 252))).clone(namedValues=named_values(('module-rs232-dce', 0), ('module-rs232-dte', 1), ('module-v35-dce', 2), ('module-v35-dte', 3), ('module-x21-dce', 4), ('module-x21-dte', 5), ('module-rs530-dce', 6), ('module-rs530-dte', 7), ('module-rs366A-dce', 8), ('module-rs366A-dte', 9), ('module-rs449-dce', 10), ('module-rs449-dte', 11), ('module-univ-dce', 17), ('module-univ-dte', 18), ('module-i430s-dte', 19), ('module-i430u-dte', 20), ('module-i431-T1-dte', 21), ('module-i431-E1-dte', 22), ('module-dsucsu', 23), ('module-undef-dce', 255), ('module-undef-dte', 254), ('module-undef', 253), ('not-applicable', 252)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
intfModuleType.setStatus('mandatory')
intf_slot_number = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 31, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
intfSlotNumber.setStatus('mandatory')
slot_port_in_slot_table = mib_table((1, 3, 6, 1, 4, 1, 727, 7, 2, 31, 2))
if mibBuilder.loadTexts:
slotPortInSlotTable.setStatus('mandatory')
slot_port_in_slot_entry = mib_table_row((1, 3, 6, 1, 4, 1, 727, 7, 2, 31, 2, 1)).setIndexNames((0, 'CLEARTRAC7-MIB', 'slotSlot'), (0, 'CLEARTRAC7-MIB', 'slotPortInSlot'))
if mibBuilder.loadTexts:
slotPortInSlotEntry.setStatus('mandatory')
slot_slot = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 31, 2, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 254, 255))).clone(namedValues=named_values(('baseCard', 0), ('slot-1', 1), ('slot-2', 2), ('slot-3', 3), ('slot-4', 4), ('slot-5', 5), ('slot-6', 6), ('slot-7', 7), ('slot-8', 8), ('slot-A', 9), ('slot-B', 10), ('slot-C', 11), ('slot-D', 12), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
slotSlot.setStatus('mandatory')
slot_port_in_slot = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 31, 2, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(1, 256))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
slotPortInSlot.setStatus('mandatory')
slot_if_index = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 31, 2, 1, 3), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
slotIfIndex.setStatus('mandatory')
ifwan_number = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ifwanNumber.setStatus('mandatory')
ifwan_table = mib_table((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2))
if mibBuilder.loadTexts:
ifwanTable.setStatus('mandatory')
ifwan_entry = mib_table_row((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1)).setIndexNames((0, 'CLEARTRAC7-MIB', 'ifwanIndex'))
if mibBuilder.loadTexts:
ifwanEntry.setStatus('mandatory')
ifwan_index = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ifwanIndex.setStatus('mandatory')
ifwan_desc = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 2), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ifwanDesc.setStatus('mandatory')
ifwan_protocol = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 17, 18, 19, 28, 29, 31, 254, 255))).clone(namedValues=named_values(('off', 1), ('p-sdlc', 2), ('s-sdlc', 3), ('hdlc', 4), ('ddcmp', 5), ('t-async', 6), ('r-async', 7), ('bsc', 8), ('cop', 9), ('pvcr', 10), ('passthru', 11), ('console', 12), ('fr-net', 17), ('fr-user', 18), ('ppp', 19), ('g703', 28), ('x25', 29), ('sf', 31), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanProtocol.setStatus('mandatory')
ifwan_speed_bps = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 4), integer32().subtype(subtypeSpec=value_range_constraint(110, 2000000))).setLabel('ifwanSpeed-bps').setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanSpeed_bps.setStatus('mandatory')
ifwan_fall_back_speed_bps = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 5), integer32().subtype(subtypeSpec=value_range_constraint(0, 2000000))).setLabel('ifwanFallBackSpeed-bps').setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanFallBackSpeed_bps.setStatus('mandatory')
ifwan_fall_back_speed_enable = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 91), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('no', 1), ('yes', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanFallBackSpeedEnable.setStatus('mandatory')
ifwan_interface = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 16, 17, 18, 19, 20, 21, 22, 23, 255, 254, 253))).clone(namedValues=named_values(('dce-rs232', 0), ('dte-rs232', 1), ('dce-v35', 2), ('dte-v35', 3), ('dce-x21', 4), ('dte-x21', 5), ('dce-rs530', 6), ('dte-rs530', 7), ('dce-rs366a', 8), ('dte-rs366a', 9), ('dce-rs449', 10), ('dte-rs449', 11), ('dte-aui', 12), ('dte-tpe', 13), ('autom', 16), ('dce-univ', 17), ('dte-univ', 18), ('i430s', 19), ('i430u', 20), ('i431-t1', 21), ('i431-e1', 22), ('dsu-csu', 23), ('dce-undef', 255), ('dte-undef', 254), ('type-undef', 253)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanInterface.setStatus('mandatory')
ifwan_clocking = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 11, 12, 13, 254, 255))).clone(namedValues=named_values(('internal', 1), ('external', 2), ('ipl', 3), ('itb', 4), ('async', 5), ('iso-int', 6), ('iso-ext', 7), ('t1-e1-B-Rcvd', 11), ('t1-e1-A-Rcvd', 12), ('t1-e1-Local', 13), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanClocking.setStatus('mandatory')
ifwan_coding = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 254, 255))).clone(namedValues=named_values(('nrz', 1), ('nrzi', 2), ('nrz-crc0', 3), ('nrzi-crc0', 4), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanCoding.setStatus('mandatory')
ifwan_modem = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 9), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 254, 255))).clone(namedValues=named_values(('static', 1), ('dynamic', 2), ('statpass', 3), ('dynapass', 4), ('statfix', 5), ('dynafix', 6), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanModem.setStatus('mandatory')
ifwan_tx_start = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 10), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 254, 255))).clone(namedValues=named_values(('auto', 0), ('max', 1), ('byte-48', 2), ('byte-96', 3), ('byte-144', 4), ('byte-192', 5), ('byte-256', 6), ('byte-512', 7), ('byte-1024', 8), ('byte-2048', 9), ('byte-8', 10), ('byte-16', 11), ('byte-24', 12), ('byte-32', 13), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanTxStart.setStatus('mandatory')
ifwan_tx_start_cop = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 89), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 254, 255))).clone(namedValues=named_values(('auto', 0), ('max', 1), ('byte-8', 2), ('byte-16', 3), ('byte-24', 4), ('byte-32', 5), ('byte-40', 6), ('byte-48', 7), ('byte-96', 8), ('byte-144', 9), ('byte-192', 10), ('byte-256', 11), ('byte-512', 12), ('byte-1024', 13), ('byte-2048', 14), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanTxStartCop.setStatus('mandatory')
ifwan_tx_start_pass = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 90), integer32().subtype(subtypeSpec=value_range_constraint(3, 12))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanTxStartPass.setStatus('mandatory')
ifwan_idle = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 11), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 254, 255))).clone(namedValues=named_values(('space', 1), ('mark', 2), ('flag', 3), ('markd', 4), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanIdle.setStatus('mandatory')
ifwan_duplex = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 12), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('half', 1), ('full', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanDuplex.setStatus('mandatory')
ifwan_group_poll = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 13), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('no', 1), ('yes', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanGroupPoll.setStatus('mandatory')
ifwan_group_address = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 14), octet_string().subtype(subtypeSpec=value_size_constraint(2, 2)).setFixedLength(2)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanGroupAddress.setStatus('mandatory')
ifwan_poll_delay_ms = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 15), integer32().subtype(subtypeSpec=value_range_constraint(0, 1000))).setLabel('ifwanPollDelay-ms').setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanPollDelay_ms.setStatus('mandatory')
ifwan_frame_delay = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 16), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 254, 255))).clone(namedValues=named_values(('delay-0p0-ms', 1), ('delay-0p5-ms', 2), ('delay-1p0-ms', 3), ('delay-1p5-ms', 4), ('delay-2p0-ms', 5), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanFrameDelay.setStatus('mandatory')
ifwan_format = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 17), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 254, 255))).clone(namedValues=named_values(('fmt-8-none', 1), ('fmt-7-none', 2), ('fmt-7-odd', 3), ('fmt-7-even', 4), ('fmt-7-space', 5), ('fmt-7-mark', 6), ('fmt-7-ignore', 7), ('fmt-8-even', 8), ('fmt-8-odd', 9), ('fmt-8n-2stop', 10), ('fmt-8-bits', 11), ('fmt-6-bits', 12), ('sync', 13), ('async', 14), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanFormat.setStatus('mandatory')
ifwan_sync = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 18), octet_string().subtype(subtypeSpec=value_size_constraint(2, 2)).setFixedLength(2)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanSync.setStatus('mandatory')
ifwan_drop_sync_counter = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 19), integer32().subtype(subtypeSpec=value_range_constraint(1, 100))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanDropSyncCounter.setStatus('mandatory')
ifwan_drop_sync_character = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 20), octet_string().subtype(subtypeSpec=value_size_constraint(1, 1)).setFixedLength(1)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanDropSyncCharacter.setStatus('mandatory')
ifwan_mode = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 21), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 254, 255))).clone(namedValues=named_values(('inactive', 1), ('dedicated', 2), ('answer', 3), ('call-backup', 4), ('call-bod', 5), ('wait-user', 6), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanMode.setStatus('mandatory')
ifwan_bod_call_s = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 22), integer32().subtype(subtypeSpec=value_range_constraint(1, 1000))).setLabel('ifwanBodCall-s').setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanBodCall_s.setStatus('mandatory')
ifwan_bod_hang_s = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 23), integer32().subtype(subtypeSpec=value_range_constraint(1, 1000))).setLabel('ifwanBodHang-s').setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanBodHang_s.setStatus('mandatory')
ifwan_bod_level = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 24), integer32().subtype(subtypeSpec=value_range_constraint(5, 95))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanBodLevel.setStatus('mandatory')
ifwan_backup_call_s = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 25), integer32().subtype(subtypeSpec=value_range_constraint(1, 1000))).setLabel('ifwanBackupCall-s').setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanBackupCall_s.setStatus('mandatory')
ifwan_dial_timeout_s = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 92), integer32().subtype(subtypeSpec=value_range_constraint(30, 1000))).setLabel('ifwanDialTimeout-s').setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanDialTimeout_s.setStatus('mandatory')
ifwan_backup_hang_s = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 26), integer32().subtype(subtypeSpec=value_range_constraint(1, 1000))).setLabel('ifwanBackupHang-s').setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanBackupHang_s.setStatus('mandatory')
ifwan_port_to_back = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 27), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(15, 16, 1, 2, 3, 4, 5, 6, 7, 8, 254, 255))).clone(namedValues=named_values(('any', 15), ('all', 16), ('port-1', 1), ('port-2', 2), ('port-3', 3), ('port-4', 4), ('port-5', 5), ('port-6', 6), ('port-7', 7), ('port-8', 8), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanPortToBack.setStatus('mandatory')
ifwan_dialer = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 28), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 254, 255))).clone(namedValues=named_values(('dTR', 1), ('x21-L1', 2), ('x21-L2', 3), ('v25-H', 4), ('v25-B', 5), ('aT-9600', 6), ('aT-19200', 7), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanDialer.setStatus('mandatory')
ifwan_remote_unit = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 29), display_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanRemoteUnit.setStatus('mandatory')
ifwan_class_number = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 30), integer32().subtype(subtypeSpec=value_range_constraint(1, 8))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanClassNumber.setStatus('mandatory')
ifwan_ring_number = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 31), octet_string().subtype(subtypeSpec=value_size_constraint(2, 2)).setFixedLength(2)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanRingNumber.setStatus('mandatory')
ifwan_ip_address = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 32), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanIpAddress.setStatus('mandatory')
ifwan_subnet_mask = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 33), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanSubnetMask.setStatus('mandatory')
ifwan_max_frame = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 34), integer32().subtype(subtypeSpec=value_range_constraint(128, 8192))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanMaxFrame.setStatus('mandatory')
ifwan_compression = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 36), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('no', 1), ('yes', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanCompression.setStatus('mandatory')
ifwan_priority = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 37), integer32().subtype(subtypeSpec=value_range_constraint(0, 255))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ifwanPriority.setStatus('mandatory')
ifwan_timeout = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 39), integer32().subtype(subtypeSpec=value_range_constraint(1000, 30000))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanTimeout.setStatus('mandatory')
ifwan_retry = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 40), integer32().subtype(subtypeSpec=value_range_constraint(1, 1000))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanRetry.setStatus('mandatory')
ifwan_remote_port = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 41), integer32().subtype(subtypeSpec=value_range_constraint(1, 255))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanRemotePort.setStatus('mandatory')
ifwan_flow_control = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 42), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('off', 1), ('on', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanFlowControl.setStatus('mandatory')
ifwan_mgmt_interface = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 43), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 254, 255))).clone(namedValues=named_values(('lmi', 1), ('annex-d', 2), ('q-933', 3), ('none', 4), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanMgmtInterface.setStatus('mandatory')
ifwan_enquiry_timer_s = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 44), integer32().subtype(subtypeSpec=value_range_constraint(1, 30))).setLabel('ifwanEnquiryTimer-s').setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanEnquiryTimer_s.setStatus('mandatory')
ifwan_report_cycle = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 45), integer32().subtype(subtypeSpec=value_range_constraint(1, 256))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanReportCycle.setStatus('mandatory')
ifwan_ip_rip = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 46), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 254, 255))).clone(namedValues=named_values(('disable', 1), ('v1', 2), ('v2-broadcast', 3), ('v2-multicast', 4), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanIpRip.setStatus('mandatory')
ifwan_cllm = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 47), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('off', 1), ('on', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanCllm.setStatus('mandatory')
ifwan_ipx_rip = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 48), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('disable', 1), ('enable', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanIpxRip.setStatus('mandatory')
ifwan_ipx_sap = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 49), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('disable', 1), ('enable', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanIpxSap.setStatus('mandatory')
ifwan_ipx_net_num = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 50), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanIpxNetNum.setStatus('mandatory')
ifwan_rx_flow = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 52), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(5, 1, 2, 254, 255))).clone(namedValues=named_values(('none', 5), ('xon-Xoff', 1), ('hardware', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanRxFlow.setStatus('mandatory')
ifwan_tx_flow = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 53), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(5, 1, 2, 254, 255))).clone(namedValues=named_values(('none', 5), ('xon-Xoff', 1), ('hardware', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanTxFlow.setStatus('mandatory')
ifwan_tx_hold_s = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 54), integer32().subtype(subtypeSpec=value_range_constraint(0, 1000))).setLabel('ifwanTxHold-s').setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanTxHold_s.setStatus('mandatory')
ifwan_ds_o_speed_bps = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 55), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('bps-64000', 1), ('bps-56000', 2), ('not-applicable', 254), ('not-available', 255)))).setLabel('ifwanDsOSpeed-bps').setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanDsOSpeed_bps.setStatus('mandatory')
ifwan_framing = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 58), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(2, 3, 4, 254, 255))).clone(namedValues=named_values(('esf', 2), ('d4', 3), ('other', 4), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanFraming.setStatus('mandatory')
ifwan_terminating = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 59), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('tE', 1), ('nT', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanTerminating.setStatus('mandatory')
ifwan_crc4 = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 60), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('disable', 1), ('enable', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanCrc4.setStatus('mandatory')
ifwan_line_coding = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 61), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 5, 4, 7, 254, 255))).clone(namedValues=named_values(('ami-e1', 0), ('hdb3-e1', 1), ('b8zs-t1', 2), ('ami-t1', 5), ('other', 4), ('b7sz-t1', 7), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanLineCoding.setStatus('mandatory')
ifwan_b_channels = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 62), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 254, 255))).clone(namedValues=named_values(('disable', 1), ('b1', 2), ('b2', 3), ('b1-plus-b2', 4), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanBChannels.setStatus('mandatory')
ifwan_multiframing = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 63), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('disable', 1), ('enable', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanMultiframing.setStatus('mandatory')
ifwan_ospf_enable = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 64), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('disable', 1), ('enable', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanOspfEnable.setStatus('mandatory')
ifwan_ospf_area_id = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 65), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanOspfAreaId.setStatus('mandatory')
ifwan_ospf_transit_delay = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 66), integer32().subtype(subtypeSpec=value_range_constraint(1, 360))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanOspfTransitDelay.setStatus('mandatory')
ifwan_ospf_retransmit_int = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 67), integer32().subtype(subtypeSpec=value_range_constraint(1, 360))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanOspfRetransmitInt.setStatus('mandatory')
ifwan_ospf_hello_int = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 68), integer32().subtype(subtypeSpec=value_range_constraint(1, 360))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanOspfHelloInt.setStatus('mandatory')
ifwan_ospf_dead_int = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 69), integer32().subtype(subtypeSpec=value_range_constraint(1, 2000))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanOspfDeadInt.setStatus('mandatory')
ifwan_ospf_password = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 70), display_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanOspfPassword.setStatus('mandatory')
ifwan_ospf_metric_cost = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 71), integer32().subtype(subtypeSpec=value_range_constraint(1, 65534))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanOspfMetricCost.setStatus('mandatory')
ifwan_ch_use = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 72), display_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanChUse.setStatus('mandatory')
ifwan_gain_limit = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 77), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('db-30', 1), ('db-36', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanGainLimit.setStatus('mandatory')
ifwan_signaling = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 78), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 254, 255))).clone(namedValues=named_values(('none', 1), ('t1-rob-bit', 2), ('e1-cas', 3), ('e1-ccs', 4), ('trsp-orig', 5), ('trsp-answ', 6), ('qsig', 7), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanSignaling.setStatus('mandatory')
ifwan_idle_code = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 79), octet_string().subtype(subtypeSpec=value_size_constraint(1, 1)).setFixedLength(1)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanIdleCode.setStatus('mandatory')
ifwan_line_build = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 80), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 254, 255))).clone(namedValues=named_values(('ft0-to-133', 0), ('ft133-to-266', 1), ('ft266-to-399', 2), ('ft399-to-533', 3), ('ft533-to-655', 4), ('dbMinus7point5', 5), ('dbMinus15', 6), ('dbMinus22point5', 7), ('ohm-75', 8), ('ohm-120', 9), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanLineBuild.setStatus('mandatory')
ifwan_t1_e1_status = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 84), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('disable', 1), ('enable', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanT1E1Status.setStatus('mandatory')
ifwan_t1_e1_loop_back = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 85), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 254, 255))).clone(namedValues=named_values(('disable', 1), ('enable', 2), ('lev1-local', 3), ('lev2-local', 4), ('echo', 5), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanT1E1LoopBack.setStatus('mandatory')
ifwan_ch_exp = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 86), display_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanChExp.setStatus('mandatory')
ifwan_t1_e1_inter_bit = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 87), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('disable', 1), ('enable', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanT1E1InterBit.setStatus('mandatory')
ifwan_encoding_law = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 88), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 254, 255))).clone(namedValues=named_values(('aLaw', 0), ('muLaw', 1), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanEncodingLaw.setStatus('mandatory')
ifwan_cell_packetization = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 93), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('disable', 1), ('enable', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanCellPacketization.setStatus('mandatory')
ifwan_max_channels = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 94), integer32().subtype(subtypeSpec=value_range_constraint(0, 10000))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanMaxChannels.setStatus('mandatory')
ifwan_cond_lmi_port = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 95), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 254, 255))).clone(namedValues=named_values(('none', 0), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanCondLMIPort.setStatus('mandatory')
ifwan_ext_number = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 96), display_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanExtNumber.setStatus('mandatory')
ifwan_dest_ext_number = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 97), display_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanDestExtNumber.setStatus('mandatory')
ifwan_conn_timeout_s = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 98), integer32().subtype(subtypeSpec=value_range_constraint(10, 30))).setLabel('ifwanConnTimeout-s').setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanConnTimeout_s.setStatus('mandatory')
ifwan_svc_address_type = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 99), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('none', 1), ('e-164', 2), ('x-121', 3)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanSvcAddressType.setStatus('mandatory')
ifwan_svc_network_address = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 100), display_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanSvcNetworkAddress.setStatus('mandatory')
ifwan_svc_max_tx_timeout_t200 = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 101), integer32().subtype(subtypeSpec=value_range_constraint(1, 5))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanSvcMaxTxTimeoutT200.setStatus('mandatory')
ifwan_svc_inactive_timeout_t203 = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 102), integer32().subtype(subtypeSpec=value_range_constraint(1, 60))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanSvcInactiveTimeoutT203.setStatus('mandatory')
ifwan_svc_iframe_retransmissions_n200 = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 103), integer32().subtype(subtypeSpec=value_range_constraint(1, 16))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanSvcIframeRetransmissionsN200.setStatus('mandatory')
ifwan_svc_setup_timeout_t303 = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 104), integer32().subtype(subtypeSpec=value_range_constraint(1, 30))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanSvcSetupTimeoutT303.setStatus('mandatory')
ifwan_svc_disconnect_timeout_t305 = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 105), integer32().subtype(subtypeSpec=value_range_constraint(1, 30))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanSvcDisconnectTimeoutT305.setStatus('mandatory')
ifwan_svc_release_timeout_t308 = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 106), integer32().subtype(subtypeSpec=value_range_constraint(1, 30))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanSvcReleaseTimeoutT308.setStatus('mandatory')
ifwan_svc_call_proceeding_timeout_t310 = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 107), integer32().subtype(subtypeSpec=value_range_constraint(1, 30))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanSvcCallProceedingTimeoutT310.setStatus('mandatory')
ifwan_svc_status_timeout_t322 = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 108), integer32().subtype(subtypeSpec=value_range_constraint(1, 30))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanSvcStatusTimeoutT322.setStatus('mandatory')
ifwan_tei_mode = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 109), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('dynamic', 1), ('fixed', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanTeiMode.setStatus('mandatory')
ifwan_digit_number = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 110), integer32().subtype(subtypeSpec=value_range_constraint(0, 8))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanDigitNumber.setStatus('mandatory')
ifwan_msn1 = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 111), display_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanMsn1.setStatus('mandatory')
ifwan_msn2 = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 112), display_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanMsn2.setStatus('mandatory')
ifwan_msn3 = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 113), display_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanMsn3.setStatus('mandatory')
ifwan_x25_encapsulation = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 114), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('annex-f', 1), ('annex-g', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanX25Encapsulation.setStatus('mandatory')
ifwan_pvc_number = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 115), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanPvcNumber.setStatus('mandatory')
ifwan_qsig_pbx_ab = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 116), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('a', 1), ('b', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanQsigPbxAb.setStatus('mandatory')
ifwan_qsig_pbx_xy = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 117), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('x', 1), ('y', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanQsigPbxXy.setStatus('mandatory')
ifwan_ip_rip_tx_rx = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 118), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 254, 255))).clone(namedValues=named_values(('duplex', 1), ('tx-only', 2), ('rx-only', 3), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanIpRipTxRx.setStatus('mandatory')
ifwan_ip_rip_auth_type = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 119), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('none', 1), ('simple', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanIpRipAuthType.setStatus('mandatory')
ifwan_ip_rip_password = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 120), display_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanIpRipPassword.setStatus('mandatory')
ifwan_ppp_silent = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 121), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('send-request', 1), ('wait-for-request', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanPppSilent.setStatus('mandatory')
ifwan_ppp_config_restart_timer = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 122), integer32().subtype(subtypeSpec=value_range_constraint(0, 255))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanPppConfigRestartTimer.setStatus('mandatory')
ifwan_ppp_config_retries = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 123), integer32().subtype(subtypeSpec=value_range_constraint(0, 255))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanPppConfigRetries.setStatus('mandatory')
ifwan_ppp_negociate_local_mru = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 124), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('no', 1), ('yes', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanPppNegociateLocalMru.setStatus('mandatory')
ifwan_ppp_local_mru = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 125), integer32().subtype(subtypeSpec=value_range_constraint(0, 3000))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanPppLocalMru.setStatus('mandatory')
ifwan_ppp_negociate_peer_mru = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 126), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('no', 1), ('yes', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanPppNegociatePeerMru.setStatus('mandatory')
ifwan_ppp_peer_mru_up_to = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 127), integer32().subtype(subtypeSpec=value_range_constraint(0, 3000))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanPppPeerMruUpTo.setStatus('mandatory')
ifwan_ppp_negociate_accm = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 128), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('no', 1), ('yes', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanPppNegociateAccm.setStatus('mandatory')
ifwan_ppp_requested_accm_char = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 129), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanPppRequestedAccmChar.setStatus('mandatory')
ifwan_ppp_accept_accm_peer = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 130), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('no', 1), ('yes', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanPppAcceptAccmPeer.setStatus('mandatory')
ifwan_ppp_acceptable_accm_char = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 131), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanPppAcceptableAccmChar.setStatus('mandatory')
ifwan_ppp_request_magic_num = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 132), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('no', 1), ('yes', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanPppRequestMagicNum.setStatus('mandatory')
ifwan_ppp_accept_magic_num = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 133), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('no', 1), ('yes', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanPppAcceptMagicNum.setStatus('mandatory')
ifwan_ppp_accept_old_ip_add_neg = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 134), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('no', 1), ('yes', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanPppAcceptOldIpAddNeg.setStatus('mandatory')
ifwan_ppp_negociate_ip_address = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 135), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('no', 1), ('yes', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanPppNegociateIpAddress.setStatus('mandatory')
ifwan_ppp_accept_ip_address = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 136), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('no', 1), ('yes', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanPppAcceptIpAddress.setStatus('mandatory')
ifwan_ppp_remote_ip_address = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 137), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanPppRemoteIpAddress.setStatus('mandatory')
ifwan_ppp_remote_subnet_mask = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 138), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanPppRemoteSubnetMask.setStatus('mandatory')
ifwan_high_priority_transparent_class = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 139), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('no', 1), ('yes', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanHighPriorityTransparentClass.setStatus('mandatory')
ifwan_transparent_class_number = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 140), integer32().subtype(subtypeSpec=value_range_constraint(1, 8))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanTransparentClassNumber.setStatus('mandatory')
ifwan_channel_compressed = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 141), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('no', 1), ('yes', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanChannelCompressed.setStatus('mandatory')
ifwan_sf_type = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 142), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 254, 255))).clone(namedValues=named_values(('demodulator', 1), ('modulator', 2), ('expansion', 3), ('agregate', 4), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanSfType.setStatus('mandatory')
ifwan_sf_mode = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 143), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('inactive', 1), ('active', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanSfMode.setStatus('mandatory')
ifwan_sf_carrier_id = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 2, 2, 1, 144), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifwanSfCarrierId.setStatus('mandatory')
ifvce_number = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ifvceNumber.setStatus('mandatory')
ifvce_table = mib_table((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2))
if mibBuilder.loadTexts:
ifvceTable.setStatus('mandatory')
ifvce_entry = mib_table_row((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1)).setIndexNames((0, 'CLEARTRAC7-MIB', 'ifvceIndex'))
if mibBuilder.loadTexts:
ifvceEntry.setStatus('mandatory')
ifvce_index = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ifvceIndex.setStatus('mandatory')
ifvce_desc = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 2), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ifvceDesc.setStatus('mandatory')
ifvce_protocol = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 21, 22, 23, 24, 26, 30, 254, 255))).clone(namedValues=named_values(('off', 1), ('acelp-8-kbs', 21), ('acelp-4-8-kbs', 22), ('pcm64k', 23), ('adpcm32k', 24), ('atc16k', 26), ('acelp-cn', 30), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifvceProtocol.setStatus('mandatory')
ifvce_interface = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 254, 255))).clone(namedValues=named_values(('fxs', 1), ('fx0', 2), ('e-and-m', 3), ('ac15', 4), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifvceInterface.setStatus('mandatory')
ifvce_remote_port = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 5), integer32().subtype(subtypeSpec=value_range_constraint(1, 899))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifvceRemotePort.setStatus('mandatory')
ifvce_activation_type = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 254, 255))).clone(namedValues=named_values(('predefined', 1), ('switched', 2), ('autodial', 3), ('broadcast', 4), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifvceActivationType.setStatus('mandatory')
ifvce_remote_unit = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 7), display_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifvceRemoteUnit.setStatus('mandatory')
ifvce_hunt_group = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 254, 255))).clone(namedValues=named_values(('no', 1), ('a', 2), ('b', 3), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifvceHuntGroup.setStatus('mandatory')
ifvce_tone_detect_regen_s = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 9), integer32().subtype(subtypeSpec=value_range_constraint(0, 256))).setLabel('ifvceToneDetectRegen-s').setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifvceToneDetectRegen_s.setStatus('mandatory')
ifvce_pulse_make_break_ms = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 10), integer32().subtype(subtypeSpec=value_range_constraint(20, 80))).setLabel('ifvcePulseMakeBreak-ms').setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifvcePulseMakeBreak_ms.setStatus('mandatory')
ifvce_tone_on_ms = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 11), integer32().subtype(subtypeSpec=value_range_constraint(30, 1000))).setLabel('ifvceToneOn-ms').setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifvceToneOn_ms.setStatus('mandatory')
ifvce_tone_off_ms = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 12), integer32().subtype(subtypeSpec=value_range_constraint(30, 1000))).setLabel('ifvceToneOff-ms').setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifvceToneOff_ms.setStatus('mandatory')
ifvce_silence_suppress = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 13), integer32().subtype(subtypeSpec=value_range_constraint(4, 20))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifvceSilenceSuppress.setStatus('mandatory')
ifvce_dvc_silence_suppress = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 33), integer32().subtype(subtypeSpec=value_range_constraint(1, 5))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifvceDVCSilenceSuppress.setStatus('mandatory')
ifvce_signaling = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 14), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 6, 10, 11, 12, 13, 14, 15, 17, 18, 21, 22, 23, 24, 25, 26, 27, 28, 32, 30, 254, 255))).clone(namedValues=named_values(('e-and-m-4w-imm-start', 1), ('e-and-m-2W-imm-start', 2), ('loop-start', 3), ('ac15-a', 4), ('ac15-c', 6), ('e-and-m-4w-timed-e', 10), ('e-and-m-2W-timed-e', 11), ('e-and-m-4W-wink-start', 12), ('e-and-m-2W-wink-start', 13), ('e-and-m-4W-delay-dial', 14), ('e-and-m-2W-delay-dial', 15), ('e-and-m-4W-colisee', 17), ('e-and-m-2W-colisee', 18), ('imm-start', 21), ('r2', 22), ('fxo', 23), ('fxs', 24), ('gnd-fxo', 25), ('gnd-fxs', 26), ('plar', 27), ('poi', 28), ('wink-start', 32), ('ab00', 30), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifvceSignaling.setStatus('mandatory')
ifvce_local_inbound = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 16), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 254, 255))).clone(namedValues=named_values(('db-22', 1), ('db-21', 2), ('db-20', 3), ('db-19', 4), ('db-18', 5), ('db-17', 6), ('db-16', 7), ('db-15', 8), ('db-14', 9), ('db-13', 10), ('db-12', 11), ('db-11', 12), ('db-10', 13), ('db-9', 14), ('db-8', 15), ('db-7', 16), ('db-6', 17), ('db-5', 18), ('db-4', 19), ('db-3', 20), ('db-2', 21), ('db-1', 22), ('db0', 23), ('db1', 24), ('db2', 25), ('db3', 26), ('db4', 27), ('db5', 28), ('db6', 29), ('db7', 30), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifvceLocalInbound.setStatus('mandatory')
ifvce_local_outbound = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 17), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 254, 255))).clone(namedValues=named_values(('db-22', 1), ('db-21', 2), ('db-20', 3), ('db-19', 4), ('db-18', 5), ('db-17', 6), ('db-16', 7), ('db-15', 8), ('db-14', 9), ('db-13', 10), ('db-12', 11), ('db-11', 12), ('db-10', 13), ('db-9', 14), ('db-8', 15), ('db-7', 16), ('db-6', 17), ('db-5', 18), ('db-4', 19), ('db-3', 20), ('db-2', 21), ('db-1', 22), ('db0', 23), ('db1', 24), ('db2', 25), ('db3', 26), ('db4', 27), ('db5', 28), ('db6', 29), ('db7', 30), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifvceLocalOutbound.setStatus('mandatory')
ifvce_dvc_local_inbound = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 34), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 254, 255))).clone(namedValues=named_values(('db-12', 9), ('db-11', 10), ('db-10', 11), ('db-9', 12), ('db-8', 13), ('db-7', 14), ('db-6', 15), ('db-5', 16), ('db-4', 17), ('db-3', 18), ('db-2', 19), ('db-1', 20), ('db0', 21), ('db1', 22), ('db2', 23), ('db3', 24), ('db4', 25), ('db5', 26), ('db6', 27), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifvceDVCLocalInbound.setStatus('mandatory')
ifvce_dvc_local_outbound = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 35), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 254, 255))).clone(namedValues=named_values(('db-12', 9), ('db-11', 10), ('db-10', 11), ('db-9', 12), ('db-8', 13), ('db-7', 14), ('db-6', 15), ('db-5', 16), ('db-4', 17), ('db-3', 18), ('db-2', 19), ('db-1', 20), ('db0', 21), ('db1', 22), ('db2', 23), ('db3', 24), ('db4', 25), ('db5', 26), ('db6', 27), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifvceDVCLocalOutbound.setStatus('mandatory')
ifvce_fax_modem_relay = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 18), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 254, 255))).clone(namedValues=named_values(('none', 1), ('fax', 2), ('both', 3), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifvceFaxModemRelay.setStatus('mandatory')
ifvce_max_fax_modem_rate = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 44), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 254, 255))).clone(namedValues=named_values(('rate-14400', 1), ('rate-12000', 2), ('rate-9600', 3), ('rate-7200', 4), ('rate-4800', 5), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifvceMaxFaxModemRate.setStatus('mandatory')
ifvce_fxo_timeout_s = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 19), integer32().subtype(subtypeSpec=value_range_constraint(1, 99))).setLabel('ifvceFxoTimeout-s').setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifvceFxoTimeout_s.setStatus('mandatory')
ifvce_te_timer_s = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 20), integer32().subtype(subtypeSpec=value_range_constraint(0, 255))).setLabel('ifvceTeTimer-s').setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifvceTeTimer_s.setStatus('mandatory')
ifvce_fwd_digits = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 21), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 254, 255))).clone(namedValues=named_values(('none', 1), ('all', 2), ('ext', 3), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifvceFwdDigits.setStatus('mandatory')
ifvce_fwd_type = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 22), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('tone', 1), ('pulse', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifvceFwdType.setStatus('mandatory')
ifvce_fwd_delay_ms = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 23), integer32().subtype(subtypeSpec=value_range_constraint(0, 10000))).setLabel('ifvceFwdDelay-ms').setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifvceFwdDelay_ms.setStatus('mandatory')
ifvce_del_digits = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 24), integer32().subtype(subtypeSpec=value_range_constraint(0, 4))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifvceDelDigits.setStatus('mandatory')
ifvce_ext_number = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 25), display_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifvceExtNumber.setStatus('mandatory')
ifvce_link_dwn_busy = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 27), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 254, 255))).clone(namedValues=named_values(('no', 1), ('yes', 2), ('broadcast', 3), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifvceLinkDwnBusy.setStatus('mandatory')
ifvce_tone_type = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 28), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 254, 255))).clone(namedValues=named_values(('dtmf', 0), ('mf', 1), ('r2', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifvceToneType.setStatus('mandatory')
ifvce_rate8kx1 = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 29), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('no', 1), ('yes', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifvceRate8kx1.setStatus('mandatory')
ifvce_rate8kx2 = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 30), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('no', 1), ('yes', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifvceRate8kx2.setStatus('mandatory')
ifvce_rate5k8x1 = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 31), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('no', 1), ('yes', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifvceRate5k8x1.setStatus('mandatory')
ifvce_rate5k8x2 = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 32), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('no', 1), ('yes', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifvceRate5k8x2.setStatus('mandatory')
ifvce_broadcast_dir = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 36), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('tX', 1), ('rX', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifvceBroadcastDir.setStatus('mandatory')
ifvce_broadcast_pvc = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 37), integer32().subtype(subtypeSpec=value_range_constraint(0, 300))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifvceBroadcastPvc.setStatus('mandatory')
ifvce_analog_link_dwn_busy = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 38), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 254, 255))).clone(namedValues=named_values(('no', 1), ('yes', 2), ('broadcast', 3), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifvceAnalogLinkDwnBusy.setStatus('mandatory')
ifvce_speed_dial_num = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 39), display_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifvceSpeedDialNum.setStatus('mandatory')
ifvce_r2_extended_digit_src = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 40), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('map', 1), ('user', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifvceR2ExtendedDigitSrc.setStatus('mandatory')
ifvce_r2_group2_digit = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 41), integer32().subtype(subtypeSpec=value_range_constraint(0, 15))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifvceR2Group2Digit.setStatus('mandatory')
ifvce_r2_complete_digit = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 42), integer32().subtype(subtypeSpec=value_range_constraint(1, 15))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifvceR2CompleteDigit.setStatus('mandatory')
ifvce_r2_busy_digit = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 43), integer32().subtype(subtypeSpec=value_range_constraint(1, 15))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifvceR2BusyDigit.setStatus('mandatory')
ifvce_rate8kx3 = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 45), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('no', 1), ('yes', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifvceRate8kx3.setStatus('mandatory')
ifvce_rate6kx1 = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 46), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('no', 1), ('yes', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifvceRate6kx1.setStatus('mandatory')
ifvce_rate6kx2 = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 47), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('no', 1), ('yes', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifvceRate6kx2.setStatus('mandatory')
ifvce_rate6kx3 = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 48), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('no', 1), ('yes', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifvceRate6kx3.setStatus('mandatory')
ifvce_rate4k8x1 = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 49), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('no', 1), ('yes', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifvceRate4k8x1.setStatus('mandatory')
ifvce_rate4k8x2 = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 50), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('no', 1), ('yes', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifvceRate4k8x2.setStatus('mandatory')
ifvce_d_talk_threshold = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 51), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 1, 2, 3, 4, 5, 6, 7, 26, 254, 255))).clone(namedValues=named_values(('db-12', 8), ('db-11', 9), ('db-10', 10), ('db-9', 11), ('db-8', 12), ('db-7', 13), ('db-6', 14), ('db-5', 15), ('db-4', 16), ('db-3', 17), ('db-2', 18), ('db-1', 19), ('db0', 20), ('db1', 21), ('db2', 22), ('db3', 23), ('db4', 24), ('db5', 25), ('db6', 1), ('db7', 2), ('db8', 3), ('db9', 4), ('db10', 5), ('db11', 6), ('db12', 7), ('disabled', 26), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifvceDTalkThreshold.setStatus('mandatory')
ifvce_tone_energy_detec = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 52), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('yes', 1), ('no', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifvceToneEnergyDetec.setStatus('mandatory')
ifvce_extended_digit_src = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 53), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('map', 1), ('user', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifvceExtendedDigitSrc.setStatus('mandatory')
ifvce_dtmf_on_time = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 54), integer32().subtype(subtypeSpec=value_range_constraint(20, 50))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifvceDtmfOnTime.setStatus('mandatory')
ifvce_enable_dtmf_on_time = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 18, 2, 1, 55), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('no', 1), ('yes', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifvceEnableDtmfOnTime.setStatus('mandatory')
iflan_number = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 3, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
iflanNumber.setStatus('mandatory')
iflan_table = mib_table((1, 3, 6, 1, 4, 1, 727, 7, 2, 3, 2))
if mibBuilder.loadTexts:
iflanTable.setStatus('mandatory')
iflan_entry = mib_table_row((1, 3, 6, 1, 4, 1, 727, 7, 2, 3, 2, 1)).setIndexNames((0, 'CLEARTRAC7-MIB', 'iflanIndex'))
if mibBuilder.loadTexts:
iflanEntry.setStatus('mandatory')
iflan_index = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 3, 2, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
iflanIndex.setStatus('mandatory')
iflan_desc = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 3, 2, 1, 2), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
iflanDesc.setStatus('mandatory')
iflan_protocol = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 3, 2, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 13, 14, 15, 16, 254, 255))).clone(namedValues=named_values(('off', 1), ('token-ring', 13), ('ethernet-auto', 14), ('ethernet-802p3', 15), ('ethernet-v2', 16), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
iflanProtocol.setStatus('mandatory')
iflan_speed = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 3, 2, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 254, 255))).clone(namedValues=named_values(('tr-4-Mbps', 1), ('tr-16-Mbps', 2), ('eth-10-Mbps', 3), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
iflanSpeed.setStatus('mandatory')
iflan_priority = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 3, 2, 1, 5), integer32().subtype(subtypeSpec=value_range_constraint(0, 255))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
iflanPriority.setStatus('mandatory')
iflan_cost = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 3, 2, 1, 6), integer32().subtype(subtypeSpec=value_range_constraint(0, 255))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
iflanCost.setStatus('mandatory')
iflan_phys_addr = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 3, 2, 1, 7), octet_string().subtype(subtypeSpec=value_size_constraint(6, 6)).setFixedLength(6)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
iflanPhysAddr.setStatus('mandatory')
iflan_ip_address = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 3, 2, 1, 8), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
iflanIpAddress.setStatus('mandatory')
iflan_subnet_mask = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 3, 2, 1, 9), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
iflanSubnetMask.setStatus('mandatory')
iflan_max_frame = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 3, 2, 1, 10), integer32().subtype(subtypeSpec=value_range_constraint(128, 8192))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
iflanMaxFrame.setStatus('mandatory')
iflan_eth__link_integrity = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 3, 2, 1, 12), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('no', 1), ('yes', 2), ('not-applicable', 254), ('not-available', 255)))).setLabel('iflanEth-LinkIntegrity').setMaxAccess('readwrite')
if mibBuilder.loadTexts:
iflanEth_LinkIntegrity.setStatus('mandatory')
iflan_tr__monitor = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 3, 2, 1, 13), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('no', 1), ('yes', 2), ('not-applicable', 254), ('not-available', 255)))).setLabel('iflanTr-Monitor').setMaxAccess('readwrite')
if mibBuilder.loadTexts:
iflanTr_Monitor.setStatus('mandatory')
iflan_tr__etr = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 3, 2, 1, 14), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('no', 1), ('yes', 2), ('not-applicable', 254), ('not-available', 255)))).setLabel('iflanTr-Etr').setMaxAccess('readwrite')
if mibBuilder.loadTexts:
iflanTr_Etr.setStatus('mandatory')
iflan_tr__ring_number = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 3, 2, 1, 15), octet_string().subtype(subtypeSpec=value_size_constraint(2, 2)).setFixedLength(2)).setLabel('iflanTr-RingNumber').setMaxAccess('readwrite')
if mibBuilder.loadTexts:
iflanTr_RingNumber.setStatus('mandatory')
iflan_ip_rip = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 3, 2, 1, 16), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 254, 255))).clone(namedValues=named_values(('disable', 1), ('v1', 2), ('v2-broadcast', 3), ('v2-multicast', 4), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
iflanIpRip.setStatus('mandatory')
iflan_ipx_rip = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 3, 2, 1, 17), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('disable', 1), ('enable', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
iflanIpxRip.setStatus('mandatory')
iflan_ipx_sap = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 3, 2, 1, 18), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('disable', 1), ('enable', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
iflanIpxSap.setStatus('mandatory')
iflan_ipx_net_num = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 3, 2, 1, 19), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
iflanIpxNetNum.setStatus('mandatory')
iflan_ipx_lan_type = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 3, 2, 1, 20), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 254, 255))).clone(namedValues=named_values(('ethernet-802p2', 1), ('ethernet-snap', 2), ('ethernet-802p3', 3), ('ethernet-ii', 4), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
iflanIpxLanType.setStatus('mandatory')
iflan_ospf_enable = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 3, 2, 1, 21), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('disable', 1), ('enable', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
iflanOspfEnable.setStatus('mandatory')
iflan_ospf_area_id = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 3, 2, 1, 22), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
iflanOspfAreaId.setStatus('mandatory')
iflan_ospf_priority = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 3, 2, 1, 23), integer32().subtype(subtypeSpec=value_range_constraint(0, 255))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
iflanOspfPriority.setStatus('mandatory')
iflan_ospf_transit_delay = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 3, 2, 1, 24), integer32().subtype(subtypeSpec=value_range_constraint(1, 360))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
iflanOspfTransitDelay.setStatus('mandatory')
iflan_ospf_retransmit_int = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 3, 2, 1, 25), integer32().subtype(subtypeSpec=value_range_constraint(1, 360))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
iflanOspfRetransmitInt.setStatus('mandatory')
iflan_ospf_hello_int = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 3, 2, 1, 26), integer32().subtype(subtypeSpec=value_range_constraint(1, 360))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
iflanOspfHelloInt.setStatus('mandatory')
iflan_ospf_dead_int = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 3, 2, 1, 27), integer32().subtype(subtypeSpec=value_range_constraint(1, 2000))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
iflanOspfDeadInt.setStatus('mandatory')
iflan_ospf_password = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 3, 2, 1, 28), display_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
iflanOspfPassword.setStatus('mandatory')
iflan_ospf_metric_cost = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 3, 2, 1, 29), integer32().subtype(subtypeSpec=value_range_constraint(1, 65534))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
iflanOspfMetricCost.setStatus('mandatory')
iflan_ip_rip_tx_rx = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 3, 2, 1, 30), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 254, 255))).clone(namedValues=named_values(('duplex', 1), ('tx-only', 2), ('rx-only', 3), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
iflanIpRipTxRx.setStatus('mandatory')
iflan_ip_rip_auth_type = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 3, 2, 1, 31), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('none', 1), ('simple', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
iflanIpRipAuthType.setStatus('mandatory')
iflan_ip_rip_password = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 3, 2, 1, 32), display_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
iflanIpRipPassword.setStatus('mandatory')
pu_number = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
puNumber.setStatus('mandatory')
pu_table = mib_table((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2))
if mibBuilder.loadTexts:
puTable.setStatus('mandatory')
pu_entry = mib_table_row((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1)).setIndexNames((0, 'CLEARTRAC7-MIB', 'puIndex'))
if mibBuilder.loadTexts:
puEntry.setStatus('mandatory')
pu_index = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
puIndex.setStatus('mandatory')
pu_mode = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 254, 255))).clone(namedValues=named_values(('off', 1), ('sdlc-llc', 2), ('sdlc-sdlc', 3), ('sdlc-dlsw', 4), ('sdlc-links', 5), ('llc-dlsw', 6), ('llc-links', 7), ('dlsw-links', 8), ('sdlc-ban', 9), ('sdlc-bnn', 10), ('llc-ban', 11), ('llc-bnn', 12), ('dlsw-ban', 13), ('dlsw-bnn', 14), ('ban-link', 15), ('bnn-link', 16), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
puMode.setStatus('mandatory')
pu_active = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('no', 1), ('yes', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
puActive.setStatus('mandatory')
pu_delay_before_conn_s = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 4), integer32().subtype(subtypeSpec=value_range_constraint(1, 1000))).setLabel('puDelayBeforeConn-s').setMaxAccess('readwrite')
if mibBuilder.loadTexts:
puDelayBeforeConn_s.setStatus('mandatory')
pu_role = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('secondary', 1), ('primary', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
puRole.setStatus('mandatory')
pu_sdlc_port = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 6), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
puSdlcPort.setStatus('mandatory')
pu_sdlc_address = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 7), octet_string().subtype(subtypeSpec=value_size_constraint(1, 1)).setFixedLength(1)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
puSdlcAddress.setStatus('mandatory')
pu_sdlc_port2 = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 8), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
puSdlcPort2.setStatus('mandatory')
pu_sdlc_address2 = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 9), octet_string().subtype(subtypeSpec=value_size_constraint(1, 1)).setFixedLength(1)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
puSdlcAddress2.setStatus('mandatory')
pu_sdlc_timeout_ms = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 10), integer32().subtype(subtypeSpec=value_range_constraint(100, 30000))).setLabel('puSdlcTimeout-ms').setMaxAccess('readwrite')
if mibBuilder.loadTexts:
puSdlcTimeout_ms.setStatus('mandatory')
pu_sdlc_retry = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 11), integer32().subtype(subtypeSpec=value_range_constraint(1, 1000))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
puSdlcRetry.setStatus('mandatory')
pu_sdlc_window = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 12), integer32().subtype(subtypeSpec=value_range_constraint(1, 7))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
puSdlcWindow.setStatus('mandatory')
pu_sdlc_max_frame = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 13), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
puSdlcMaxFrame.setStatus('mandatory')
pu_llc_da = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 14), octet_string().subtype(subtypeSpec=value_size_constraint(6, 6)).setFixedLength(6)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
puLlcDa.setStatus('mandatory')
pu_llc_tr__routing = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 15), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('trsp', 1), ('src', 2), ('not-applicable', 254), ('not-available', 255)))).setLabel('puLlcTr-Routing').setMaxAccess('readwrite')
if mibBuilder.loadTexts:
puLlcTr_Routing.setStatus('mandatory')
pu_llc_ssap = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 16), octet_string().subtype(subtypeSpec=value_size_constraint(1, 1)).setFixedLength(1)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
puLlcSsap.setStatus('mandatory')
pu_llc_dsap = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 17), octet_string().subtype(subtypeSpec=value_size_constraint(1, 1)).setFixedLength(1)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
puLlcDsap.setStatus('mandatory')
pu_llc_timeout_ms = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 18), integer32().subtype(subtypeSpec=value_range_constraint(100, 30000))).setLabel('puLlcTimeout-ms').setMaxAccess('readwrite')
if mibBuilder.loadTexts:
puLlcTimeout_ms.setStatus('mandatory')
pu_llc_retry = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 19), integer32().subtype(subtypeSpec=value_range_constraint(1, 1000))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
puLlcRetry.setStatus('mandatory')
pu_llc_window = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 20), integer32().subtype(subtypeSpec=value_range_constraint(1, 31))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
puLlcWindow.setStatus('mandatory')
pu_llc_dynamic_window = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 21), integer32().subtype(subtypeSpec=value_range_constraint(1, 1000))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
puLlcDynamicWindow.setStatus('mandatory')
pu_llc_max_frame = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 23), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
puLlcMaxFrame.setStatus('mandatory')
pu_dls_da = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 24), octet_string().subtype(subtypeSpec=value_size_constraint(6, 6)).setFixedLength(6)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
puDlsDa.setStatus('mandatory')
pu_dls_ssap = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 25), octet_string().subtype(subtypeSpec=value_size_constraint(1, 1)).setFixedLength(1)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
puDlsSsap.setStatus('mandatory')
pu_dls_dsap = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 26), octet_string().subtype(subtypeSpec=value_size_constraint(1, 1)).setFixedLength(1)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
puDlsDsap.setStatus('mandatory')
pu_dls_ip_src = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 27), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
puDlsIpSrc.setStatus('mandatory')
pu_dls_ip_dst = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 28), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
puDlsIpDst.setStatus('mandatory')
pu_dls_max_frame = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 29), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
puDlsMaxFrame.setStatus('mandatory')
pu_link_remote_unit = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 30), display_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
puLinkRemoteUnit.setStatus('mandatory')
pu_link_class_number = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 31), integer32().subtype(subtypeSpec=value_range_constraint(1, 8))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
puLinkClassNumber.setStatus('mandatory')
pu_link_rem_pu = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 32), integer32().subtype(subtypeSpec=value_range_constraint(1, 64))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
puLinkRemPu.setStatus('mandatory')
pu_xid = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 33), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 254, 255))).clone(namedValues=named_values(('no', 1), ('yes', 2), ('manual', 3), ('auto', 4), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
puXid.setStatus('mandatory')
pu_xid_id = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 34), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
puXidId.setStatus('mandatory')
pu_xid_format = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 35), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
puXidFormat.setStatus('mandatory')
pu_xid_pu_type = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 36), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
puXidPuType.setStatus('mandatory')
pu_bnn_pvc = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 37), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
puBnnPvc.setStatus('mandatory')
pu_bnn_fid = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 38), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 254, 255))).clone(namedValues=named_values(('fID2', 1), ('fID4', 2), ('aPPN', 3), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
puBnnFid.setStatus('mandatory')
pu_ban_da = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 39), octet_string().subtype(subtypeSpec=value_size_constraint(6, 6)).setFixedLength(6)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
puBanDa.setStatus('mandatory')
pu_ban_bnn_ssap = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 40), octet_string().subtype(subtypeSpec=value_size_constraint(1, 1)).setFixedLength(1)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
puBanBnnSsap.setStatus('mandatory')
pu_ban_bnn_dsap = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 41), octet_string().subtype(subtypeSpec=value_size_constraint(1, 1)).setFixedLength(1)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
puBanBnnDsap.setStatus('mandatory')
pu_ban_bnn_timeout_ms = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 42), integer32().subtype(subtypeSpec=value_range_constraint(100, 30000))).setLabel('puBanBnnTimeout-ms').setMaxAccess('readwrite')
if mibBuilder.loadTexts:
puBanBnnTimeout_ms.setStatus('mandatory')
pu_ban_bnn_retry = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 43), integer32().subtype(subtypeSpec=value_range_constraint(1, 1000))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
puBanBnnRetry.setStatus('mandatory')
pu_ban_bnn_window = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 44), integer32().subtype(subtypeSpec=value_range_constraint(1, 31))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
puBanBnnWindow.setStatus('mandatory')
pu_ban_bnn_nw = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 45), integer32().subtype(subtypeSpec=value_range_constraint(1, 1000))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
puBanBnnNw.setStatus('mandatory')
pu_ban_bnn_max_frame = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 46), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
puBanBnnMaxFrame.setStatus('mandatory')
pu_ban_routing = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 4, 2, 1, 47), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 254, 255))).clone(namedValues=named_values(('transparent', 1), ('source', 2), ('source-a', 3), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
puBanRouting.setStatus('mandatory')
schedule_number = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 5, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
scheduleNumber.setStatus('mandatory')
schedule_table = mib_table((1, 3, 6, 1, 4, 1, 727, 7, 2, 5, 2))
if mibBuilder.loadTexts:
scheduleTable.setStatus('mandatory')
schedule_entry = mib_table_row((1, 3, 6, 1, 4, 1, 727, 7, 2, 5, 2, 1)).setIndexNames((0, 'CLEARTRAC7-MIB', 'schedulePeriod'))
if mibBuilder.loadTexts:
scheduleEntry.setStatus('mandatory')
schedule_period = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 5, 2, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
schedulePeriod.setStatus('mandatory')
schedule_enable = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 5, 2, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('no', 1), ('yes', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
scheduleEnable.setStatus('mandatory')
schedule_day = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 5, 2, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 254, 255))).clone(namedValues=named_values(('all', 1), ('sunday', 2), ('monday', 3), ('tuesday', 4), ('wednesday', 5), ('thursday', 6), ('friday', 7), ('saturday', 8), ('workday', 9), ('weekend', 10), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
scheduleDay.setStatus('mandatory')
schedule_begin_time = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 5, 2, 1, 4), display_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
scheduleBeginTime.setStatus('mandatory')
schedule_end_time = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 5, 2, 1, 5), display_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
scheduleEndTime.setStatus('mandatory')
schedule_port1 = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 5, 2, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 254, 255))).clone(namedValues=named_values(('inactive', 1), ('dedicated', 2), ('answer', 3), ('call-backup', 4), ('call-bod', 5), ('wait-user', 6), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
schedulePort1.setStatus('mandatory')
schedule_port2 = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 5, 2, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 254, 255))).clone(namedValues=named_values(('inactive', 1), ('dedicated', 2), ('answer', 3), ('call-backup', 4), ('call-bod', 5), ('wait-user', 6), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
schedulePort2.setStatus('mandatory')
schedule_port3 = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 5, 2, 1, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 254, 255))).clone(namedValues=named_values(('inactive', 1), ('dedicated', 2), ('answer', 3), ('call-backup', 4), ('call-bod', 5), ('wait-user', 6), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
schedulePort3.setStatus('mandatory')
schedule_port4 = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 5, 2, 1, 9), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 254, 255))).clone(namedValues=named_values(('inactive', 1), ('dedicated', 2), ('answer', 3), ('call-backup', 4), ('call-bod', 5), ('wait-user', 6), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
schedulePort4.setStatus('mandatory')
schedule_port5 = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 5, 2, 1, 10), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 254, 255))).clone(namedValues=named_values(('inactive', 1), ('dedicated', 2), ('answer', 3), ('call-backup', 4), ('call-bod', 5), ('wait-user', 6), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
schedulePort5.setStatus('mandatory')
schedule_port6 = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 5, 2, 1, 11), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 254, 255))).clone(namedValues=named_values(('inactive', 1), ('dedicated', 2), ('answer', 3), ('call-backup', 4), ('call-bod', 5), ('wait-user', 6), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
schedulePort6.setStatus('mandatory')
schedule_port7 = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 5, 2, 1, 12), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 254, 255))).clone(namedValues=named_values(('inactive', 1), ('dedicated', 2), ('answer', 3), ('call-backup', 4), ('call-bod', 5), ('wait-user', 6), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
schedulePort7.setStatus('mandatory')
schedule_port8 = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 5, 2, 1, 13), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 254, 255))).clone(namedValues=named_values(('inactive', 1), ('dedicated', 2), ('answer', 3), ('call-backup', 4), ('call-bod', 5), ('wait-user', 6), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
schedulePort8.setStatus('mandatory')
bridge_enable = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 6, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('no', 1), ('yes', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
bridgeEnable.setStatus('mandatory')
bridge_stp_enable = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 6, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('no', 1), ('yes', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
bridgeStpEnable.setStatus('mandatory')
bridge_lan_type = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 6, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 254, 255))).clone(namedValues=named_values(('ethernet-auto', 1), ('ethernet-802p3', 2), ('ethernet-v2', 3), ('token-ring', 4), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
bridgeLanType.setStatus('mandatory')
bridge_aging_time_s = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 6, 4), integer32().subtype(subtypeSpec=value_range_constraint(10, 1000000))).setLabel('bridgeAgingTime-s').setMaxAccess('readwrite')
if mibBuilder.loadTexts:
bridgeAgingTime_s.setStatus('mandatory')
bridge_hello_time_s = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 6, 5), integer32().subtype(subtypeSpec=value_range_constraint(1, 10))).setLabel('bridgeHelloTime-s').setMaxAccess('readwrite')
if mibBuilder.loadTexts:
bridgeHelloTime_s.setStatus('mandatory')
bridge_max_age_s = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 6, 6), integer32().subtype(subtypeSpec=value_range_constraint(6, 40))).setLabel('bridgeMaxAge-s').setMaxAccess('readwrite')
if mibBuilder.loadTexts:
bridgeMaxAge_s.setStatus('mandatory')
bridge_forward_delay_s = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 6, 7), integer32().subtype(subtypeSpec=value_range_constraint(4, 30))).setLabel('bridgeForwardDelay-s').setMaxAccess('readwrite')
if mibBuilder.loadTexts:
bridgeForwardDelay_s.setStatus('mandatory')
bridge_priority = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 6, 8), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
bridgePriority.setStatus('mandatory')
bridge_tr__number = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 6, 9), octet_string().subtype(subtypeSpec=value_size_constraint(1, 1)).setFixedLength(1)).setLabel('bridgeTr-Number').setMaxAccess('readwrite')
if mibBuilder.loadTexts:
bridgeTr_Number.setStatus('mandatory')
bridge_tr__ste_span = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 6, 10), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 254, 255))).clone(namedValues=named_values(('auto', 1), ('disable', 2), ('forced', 3), ('not-applicable', 254), ('not-available', 255)))).setLabel('bridgeTr-SteSpan').setMaxAccess('readwrite')
if mibBuilder.loadTexts:
bridgeTr_SteSpan.setStatus('mandatory')
bridge_tr__max_hop = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 6, 11), integer32().subtype(subtypeSpec=value_range_constraint(0, 7))).setLabel('bridgeTr-MaxHop').setMaxAccess('readwrite')
if mibBuilder.loadTexts:
bridgeTr_MaxHop.setStatus('mandatory')
phone_number = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 7, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
phoneNumber.setStatus('mandatory')
phone_table = mib_table((1, 3, 6, 1, 4, 1, 727, 7, 2, 7, 2))
if mibBuilder.loadTexts:
phoneTable.setStatus('mandatory')
phone_entry = mib_table_row((1, 3, 6, 1, 4, 1, 727, 7, 2, 7, 2, 1)).setIndexNames((0, 'CLEARTRAC7-MIB', 'phoneIndex'))
if mibBuilder.loadTexts:
phoneEntry.setStatus('mandatory')
phone_index = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 7, 2, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
phoneIndex.setStatus('mandatory')
phone_remote_unit = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 7, 2, 1, 2), display_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
phoneRemoteUnit.setStatus('mandatory')
phone_phone_number = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 7, 2, 1, 3), display_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
phonePhoneNumber.setStatus('mandatory')
phone_next_hop = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 7, 2, 1, 4), display_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
phoneNextHop.setStatus('mandatory')
phone_cost = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 7, 2, 1, 5), integer32().subtype(subtypeSpec=value_range_constraint(0, 65534))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
phoneCost.setStatus('mandatory')
filter_number = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 8, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
filterNumber.setStatus('mandatory')
filter_table = mib_table((1, 3, 6, 1, 4, 1, 727, 7, 2, 8, 2))
if mibBuilder.loadTexts:
filterTable.setStatus('mandatory')
filter_entry = mib_table_row((1, 3, 6, 1, 4, 1, 727, 7, 2, 8, 2, 1)).setIndexNames((0, 'CLEARTRAC7-MIB', 'filterIndex'))
if mibBuilder.loadTexts:
filterEntry.setStatus('mandatory')
filter_index = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 8, 2, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
filterIndex.setStatus('mandatory')
filter_active = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 8, 2, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('no', 1), ('yes', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
filterActive.setStatus('mandatory')
filter_definition = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 8, 2, 1, 3), display_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
filterDefinition.setStatus('mandatory')
class_number = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 9, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
classNumber.setStatus('mandatory')
class_default_class = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 9, 2), integer32().subtype(subtypeSpec=value_range_constraint(1, 8))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
classDefaultClass.setStatus('mandatory')
class_table = mib_table((1, 3, 6, 1, 4, 1, 727, 7, 2, 9, 3))
if mibBuilder.loadTexts:
classTable.setStatus('mandatory')
class_entry = mib_table_row((1, 3, 6, 1, 4, 1, 727, 7, 2, 9, 3, 1)).setIndexNames((0, 'CLEARTRAC7-MIB', 'classIndex'))
if mibBuilder.loadTexts:
classEntry.setStatus('mandatory')
class_index = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 9, 3, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
classIndex.setStatus('mandatory')
class_weight = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 9, 3, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(1, 16))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
classWeight.setStatus('mandatory')
class_pref_route = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 9, 3, 1, 3), display_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
classPrefRoute.setStatus('mandatory')
pvc_number = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
pvcNumber.setStatus('mandatory')
pvc_table = mib_table((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2))
if mibBuilder.loadTexts:
pvcTable.setStatus('mandatory')
pvc_entry = mib_table_row((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1)).setIndexNames((0, 'CLEARTRAC7-MIB', 'pvcIndex'))
if mibBuilder.loadTexts:
pvcEntry.setStatus('mandatory')
pvc_index = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
pvcIndex.setStatus('mandatory')
pvc_mode = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 7, 8, 9, 254, 255))).clone(namedValues=named_values(('off', 1), ('pvcr', 2), ('multiplex', 3), ('transp', 4), ('rfc-1490', 5), ('fp', 7), ('broadcast', 8), ('fp-multiplex', 9), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
pvcMode.setStatus('mandatory')
pvc_dlci_address = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 3), integer32().subtype(subtypeSpec=value_range_constraint(0, 1022))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
pvcDlciAddress.setStatus('mandatory')
pvc_port = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 4), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
pvcPort.setStatus('mandatory')
pvc_user_port = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 5), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
pvcUserPort.setStatus('mandatory')
pvc_info_rate = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 6), integer32().subtype(subtypeSpec=value_range_constraint(1200, 2000000))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
pvcInfoRate.setStatus('mandatory')
pvc_priority = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 9), integer32().subtype(subtypeSpec=value_range_constraint(0, 255))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
pvcPriority.setStatus('mandatory')
pvc_cost = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 10), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
pvcCost.setStatus('mandatory')
pvc_remote_unit = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 11), display_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
pvcRemoteUnit.setStatus('mandatory')
pvc_timeout_ms = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 12), integer32().subtype(subtypeSpec=value_range_constraint(1000, 30000))).setLabel('pvcTimeout-ms').setMaxAccess('readwrite')
if mibBuilder.loadTexts:
pvcTimeout_ms.setStatus('mandatory')
pvc_retry = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 13), integer32().subtype(subtypeSpec=value_range_constraint(1, 1000))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
pvcRetry.setStatus('mandatory')
pvc_compression = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 14), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('no', 1), ('yes', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
pvcCompression.setStatus('mandatory')
pvc_ip_address = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 15), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
pvcIpAddress.setStatus('mandatory')
pvc_subnet_mask = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 16), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
pvcSubnetMask.setStatus('mandatory')
pvc_max_frame = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 17), integer32().subtype(subtypeSpec=value_range_constraint(128, 8192))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
pvcMaxFrame.setStatus('mandatory')
pvc_broadcast_group = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 18), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('no', 1), ('yes', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
pvcBroadcastGroup.setStatus('mandatory')
pvc_brg_connection = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 19), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('no', 1), ('yes', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
pvcBrgConnection.setStatus('mandatory')
pvc_ip_connection = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 20), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('no', 1), ('yes', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
pvcIpConnection.setStatus('mandatory')
pvc_remote_pvc = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 21), integer32().subtype(subtypeSpec=value_range_constraint(1, 300))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
pvcRemotePvc.setStatus('mandatory')
pvc_pvc_class = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 22), integer32().subtype(subtypeSpec=value_range_constraint(1, 8))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
pvcPvcClass.setStatus('mandatory')
pvc_network_port = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 23), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
pvcNetworkPort.setStatus('mandatory')
pvc_ring_number = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 24), octet_string().subtype(subtypeSpec=value_size_constraint(2, 2)).setFixedLength(2)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
pvcRingNumber.setStatus('mandatory')
pvc_ip_rip = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 25), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 254, 255))).clone(namedValues=named_values(('disable', 1), ('v1', 2), ('v2-broadcast', 3), ('v2-multicast', 4), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
pvcIpRip.setStatus('mandatory')
pvc_burst_info_rate = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 26), integer32().subtype(subtypeSpec=value_range_constraint(1200, 2000000))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
pvcBurstInfoRate.setStatus('mandatory')
pvc_user_dlci = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 27), integer32().subtype(subtypeSpec=value_range_constraint(0, 1022))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
pvcUserDlci.setStatus('mandatory')
pvc_network_dlci = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 28), integer32().subtype(subtypeSpec=value_range_constraint(1, 1022))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
pvcNetworkDlci.setStatus('mandatory')
pvc_ipx_rip = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 29), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('disable', 1), ('enable', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
pvcIpxRip.setStatus('mandatory')
pvc_ipx_sap = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 30), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('disable', 1), ('enable', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
pvcIpxSap.setStatus('mandatory')
pvc_ipx_net_num = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 31), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
pvcIpxNetNum.setStatus('mandatory')
pvc_ipx_connection = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 32), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('no', 1), ('yes', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
pvcIpxConnection.setStatus('mandatory')
pvc_type = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 33), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(2, 3, 4, 254, 255))).clone(namedValues=named_values(('dedicated', 2), ('answer', 3), ('call-backup', 4), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
pvcType.setStatus('mandatory')
pvc_backup_call_s = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 34), integer32().subtype(subtypeSpec=value_range_constraint(1, 255))).setLabel('pvcBackupCall-s').setMaxAccess('readwrite')
if mibBuilder.loadTexts:
pvcBackupCall_s.setStatus('mandatory')
pvc_backup_hang_s = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 35), integer32().subtype(subtypeSpec=value_range_constraint(1, 255))).setLabel('pvcBackupHang-s').setMaxAccess('readwrite')
if mibBuilder.loadTexts:
pvcBackupHang_s.setStatus('mandatory')
pvc_backup = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 36), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(15, 16, 254, 255))).clone(namedValues=named_values(('any', 15), ('all', 16), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
pvcBackup.setStatus('mandatory')
pvc_ospf_enable = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 37), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('disable', 1), ('enable', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
pvcOspfEnable.setStatus('mandatory')
pvc_ospf_area_id = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 38), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
pvcOspfAreaId.setStatus('mandatory')
pvc_ospf_transit_delay = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 39), integer32().subtype(subtypeSpec=value_range_constraint(1, 360))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
pvcOspfTransitDelay.setStatus('mandatory')
pvc_ospf_retransmit_int = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 40), integer32().subtype(subtypeSpec=value_range_constraint(1, 360))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
pvcOspfRetransmitInt.setStatus('mandatory')
pvc_ospf_hello_int = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 41), integer32().subtype(subtypeSpec=value_range_constraint(1, 360))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
pvcOspfHelloInt.setStatus('mandatory')
pvc_ospf_dead_int = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 42), integer32().subtype(subtypeSpec=value_range_constraint(1, 2000))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
pvcOspfDeadInt.setStatus('mandatory')
pvc_ospf_password = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 43), display_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
pvcOspfPassword.setStatus('mandatory')
pvc_ospf_metric_cost = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 44), integer32().subtype(subtypeSpec=value_range_constraint(1, 65534))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
pvcOspfMetricCost.setStatus('mandatory')
pvc_proxy_addr = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 45), integer32().subtype(subtypeSpec=value_range_constraint(1, 8))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
pvcProxyAddr.setStatus('mandatory')
pvc_llc_connection = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 46), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('no', 1), ('yes', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
pvcLlcConnection.setStatus('mandatory')
pvc_dial_timeout = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 47), integer32().subtype(subtypeSpec=value_range_constraint(30, 255))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
pvcDialTimeout.setStatus('mandatory')
pvc_max_channels = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 48), integer32().subtype(subtypeSpec=value_range_constraint(0, 10000))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
pvcMaxChannels.setStatus('mandatory')
pvc_hunt_forwarding_a_unit = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 49), display_string().subtype(subtypeSpec=value_size_constraint(0, 16))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
pvcHuntForwardingAUnit.setStatus('mandatory')
pvc_hunt_forwarding_b_unit = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 50), display_string().subtype(subtypeSpec=value_size_constraint(0, 16))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
pvcHuntForwardingBUnit.setStatus('mandatory')
pvc_remote_fp_unit = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 51), display_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
pvcRemoteFpUnit.setStatus('mandatory')
pvc_ip_rip_tx_rx = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 52), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 254, 255))).clone(namedValues=named_values(('duplex', 1), ('tx-only', 2), ('rx-only', 3), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
pvcIpRipTxRx.setStatus('mandatory')
pvc_ip_rip_auth_type = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 53), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('none', 1), ('simple', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
pvcIpRipAuthType.setStatus('mandatory')
pvc_ip_rip_password = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 10, 2, 1, 54), display_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
pvcIpRipPassword.setStatus('mandatory')
ipx_router_enable = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 11, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('disable', 1), ('enable', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ipxRouterEnable.setStatus('mandatory')
ipx_internal_net_num = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 11, 2), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ipxInternalNetNum.setStatus('mandatory')
ip_router_enable = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 14, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('disable', 1), ('enable', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ipRouterEnable.setStatus('mandatory')
bootp_enable = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 33, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('disable', 1), ('enable', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
bootpEnable.setStatus('mandatory')
bootp_max_hops = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 33, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 16))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
bootpMaxHops.setStatus('mandatory')
bootp_ip_dest_addr1 = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 33, 3), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
bootpIpDestAddr1.setStatus('mandatory')
bootp_ip_dest_addr2 = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 33, 4), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
bootpIpDestAddr2.setStatus('mandatory')
bootp_ip_dest_addr3 = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 33, 5), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
bootpIpDestAddr3.setStatus('mandatory')
bootp_ip_dest_addr4 = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 33, 6), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
bootpIpDestAddr4.setStatus('mandatory')
timep_time_zone_sign = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 35, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('no', 1), ('yes', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
timepTimeZoneSign.setStatus('mandatory')
timep_time_zone = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 35, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 720))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
timepTimeZone.setStatus('mandatory')
timep_daylight_saving = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 35, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('no', 1), ('yes', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
timepDaylightSaving.setStatus('mandatory')
timep_server_protocol = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 35, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4))).clone(namedValues=named_values(('none', 1), ('udp', 2), ('tcp', 3), ('both', 4)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
timepServerProtocol.setStatus('mandatory')
timep_client_protocol = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 35, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('none', 1), ('udp', 2), ('tcp', 3)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
timepClientProtocol.setStatus('mandatory')
timep_server_ip_address = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 35, 6), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
timepServerIpAddress.setStatus('mandatory')
timep_client_update_interval = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 35, 7), integer32().subtype(subtypeSpec=value_range_constraint(1, 65534))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
timepClientUpdateInterval.setStatus('mandatory')
timep_client_udp_timeout = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 35, 8), integer32().subtype(subtypeSpec=value_range_constraint(1, 65534))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
timepClientUdpTimeout.setStatus('mandatory')
timep_client_udp_retransmissions = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 35, 9), integer32().subtype(subtypeSpec=value_range_constraint(1, 65534))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
timepClientUdpRetransmissions.setStatus('mandatory')
timep_get_server_time_now = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 35, 10), integer32().subtype(subtypeSpec=value_range_constraint(0, 1))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
timepGetServerTimeNow.setStatus('mandatory')
ipstatic_number = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 13, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipstaticNumber.setStatus('mandatory')
ipstatic_table = mib_table((1, 3, 6, 1, 4, 1, 727, 7, 2, 13, 2))
if mibBuilder.loadTexts:
ipstaticTable.setStatus('mandatory')
ipstatic_entry = mib_table_row((1, 3, 6, 1, 4, 1, 727, 7, 2, 13, 2, 1)).setIndexNames((0, 'CLEARTRAC7-MIB', 'ipstaticIndex'))
if mibBuilder.loadTexts:
ipstaticEntry.setStatus('mandatory')
ipstatic_index = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 13, 2, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipstaticIndex.setStatus('mandatory')
ipstatic_valid = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 13, 2, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('no', 1), ('yes', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ipstaticValid.setStatus('mandatory')
ipstatic_ip_dest = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 13, 2, 1, 3), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ipstaticIpDest.setStatus('mandatory')
ipstatic_mask = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 13, 2, 1, 4), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ipstaticMask.setStatus('mandatory')
ipstatic_next_hop = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 13, 2, 1, 5), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ipstaticNextHop.setStatus('mandatory')
ospf_global = mib_identifier((1, 3, 6, 1, 4, 1, 727, 7, 2, 15, 1))
ospf_area = mib_identifier((1, 3, 6, 1, 4, 1, 727, 7, 2, 15, 2))
ospf_range = mib_identifier((1, 3, 6, 1, 4, 1, 727, 7, 2, 15, 3))
ospf_v_link = mib_identifier((1, 3, 6, 1, 4, 1, 727, 7, 2, 15, 4))
ospf_global_router_id = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 15, 1, 1), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ospfGlobalRouterId.setStatus('mandatory')
ospf_global_auto_v_link = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 15, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('no', 1), ('yes', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ospfGlobalAutoVLink.setStatus('mandatory')
ospf_global_rack_area_id = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 15, 1, 3), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ospfGlobalRackAreaId.setStatus('mandatory')
ospf_global_global_area_id = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 15, 1, 4), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ospfGlobalGlobalAreaId.setStatus('mandatory')
ospf_area_number = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 15, 2, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfAreaNumber.setStatus('mandatory')
ospf_area_table = mib_table((1, 3, 6, 1, 4, 1, 727, 7, 2, 15, 2, 2))
if mibBuilder.loadTexts:
ospfAreaTable.setStatus('mandatory')
ospf_area_entry = mib_table_row((1, 3, 6, 1, 4, 1, 727, 7, 2, 15, 2, 2, 1)).setIndexNames((0, 'CLEARTRAC7-MIB', 'ospfAreaIndex'))
if mibBuilder.loadTexts:
ospfAreaEntry.setStatus('mandatory')
ospf_area_index = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 15, 2, 2, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfAreaIndex.setStatus('mandatory')
ospf_area_area_id = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 15, 2, 2, 1, 2), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ospfAreaAreaId.setStatus('mandatory')
ospf_area_enable = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 15, 2, 2, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('disable', 1), ('enable', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ospfAreaEnable.setStatus('mandatory')
ospf_area_auth_type = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 15, 2, 2, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('none', 1), ('simple', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ospfAreaAuthType.setStatus('mandatory')
ospf_area_import_as_ext = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 15, 2, 2, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('no', 1), ('yes', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ospfAreaImportASExt.setStatus('mandatory')
ospf_area_stub_metric = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 15, 2, 2, 1, 6), integer32().subtype(subtypeSpec=value_range_constraint(1, 255))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ospfAreaStubMetric.setStatus('mandatory')
ospf_range_number = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 15, 3, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfRangeNumber.setStatus('mandatory')
ospf_range_table = mib_table((1, 3, 6, 1, 4, 1, 727, 7, 2, 15, 3, 2))
if mibBuilder.loadTexts:
ospfRangeTable.setStatus('mandatory')
ospf_range_entry = mib_table_row((1, 3, 6, 1, 4, 1, 727, 7, 2, 15, 3, 2, 1)).setIndexNames((0, 'CLEARTRAC7-MIB', 'ospfRangeIndex'))
if mibBuilder.loadTexts:
ospfRangeEntry.setStatus('mandatory')
ospf_range_index = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 15, 3, 2, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfRangeIndex.setStatus('mandatory')
ospf_range_net = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 15, 3, 2, 1, 2), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ospfRangeNet.setStatus('mandatory')
ospf_range_mask = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 15, 3, 2, 1, 3), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ospfRangeMask.setStatus('mandatory')
ospf_range_enable = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 15, 3, 2, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('disable', 1), ('enable', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ospfRangeEnable.setStatus('mandatory')
ospf_range_status = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 15, 3, 2, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('don-t-adv', 1), ('advertise', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ospfRangeStatus.setStatus('mandatory')
ospf_range_add_to_area = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 15, 3, 2, 1, 6), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ospfRangeAddToArea.setStatus('mandatory')
ospf_v_link_number = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 15, 4, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfVLinkNumber.setStatus('mandatory')
ospf_v_link_table = mib_table((1, 3, 6, 1, 4, 1, 727, 7, 2, 15, 4, 2))
if mibBuilder.loadTexts:
ospfVLinkTable.setStatus('mandatory')
ospf_v_link_entry = mib_table_row((1, 3, 6, 1, 4, 1, 727, 7, 2, 15, 4, 2, 1)).setIndexNames((0, 'CLEARTRAC7-MIB', 'ospfVLinkIndex'))
if mibBuilder.loadTexts:
ospfVLinkEntry.setStatus('mandatory')
ospf_v_link_index = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 15, 4, 2, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfVLinkIndex.setStatus('mandatory')
ospf_v_link_transit_area_id = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 15, 4, 2, 1, 2), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ospfVLinkTransitAreaId.setStatus('mandatory')
ospf_v_link_neighbor_rtr_id = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 15, 4, 2, 1, 3), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ospfVLinkNeighborRtrId.setStatus('mandatory')
ospf_v_link_enable = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 15, 4, 2, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 254, 255))).clone(namedValues=named_values(('disable', 1), ('enable', 2), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ospfVLinkEnable.setStatus('mandatory')
ospf_v_link_transit_delay = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 15, 4, 2, 1, 5), integer32().subtype(subtypeSpec=value_range_constraint(1, 360))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ospfVLinkTransitDelay.setStatus('mandatory')
ospf_v_link_retransmit_int = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 15, 4, 2, 1, 6), integer32().subtype(subtypeSpec=value_range_constraint(1, 360))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ospfVLinkRetransmitInt.setStatus('mandatory')
ospf_v_link_hello_int = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 15, 4, 2, 1, 7), integer32().subtype(subtypeSpec=value_range_constraint(1, 360))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ospfVLinkHelloInt.setStatus('mandatory')
ospf_v_link_dead_int = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 15, 4, 2, 1, 8), integer32().subtype(subtypeSpec=value_range_constraint(1, 2000))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ospfVLinkDeadInt.setStatus('mandatory')
ospf_v_link_password = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 15, 4, 2, 1, 9), display_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ospfVLinkPassword.setStatus('mandatory')
ipxfilter_number = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 16, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipxfilterNumber.setStatus('mandatory')
ipxfilter_table = mib_table((1, 3, 6, 1, 4, 1, 727, 7, 2, 16, 2))
if mibBuilder.loadTexts:
ipxfilterTable.setStatus('mandatory')
ipxfilter_entry = mib_table_row((1, 3, 6, 1, 4, 1, 727, 7, 2, 16, 2, 1)).setIndexNames((0, 'CLEARTRAC7-MIB', 'ipxfilterIndex'))
if mibBuilder.loadTexts:
ipxfilterEntry.setStatus('mandatory')
ipxfilter_index = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 16, 2, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipxfilterIndex.setStatus('mandatory')
ipxfilter_enable = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 16, 2, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('disable', 1), ('enable', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ipxfilterEnable.setStatus('mandatory')
ipxfilter_sap = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 16, 2, 1, 3), octet_string().subtype(subtypeSpec=value_size_constraint(2, 2)).setFixedLength(2)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ipxfilterSap.setStatus('mandatory')
ipxfilter_type = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 16, 2, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('standard', 1), ('reverse', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ipxfilterType.setStatus('mandatory')
stat_alarm_table = mib_table((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 1))
if mibBuilder.loadTexts:
statAlarmTable.setStatus('mandatory')
stat_alarm_entry = mib_table_row((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 1, 1)).setIndexNames((0, 'CLEARTRAC7-MIB', 'statAlarmIndex'))
if mibBuilder.loadTexts:
statAlarmEntry.setStatus('mandatory')
stat_alarm_index = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 1, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statAlarmIndex.setStatus('mandatory')
stat_alarm_desc = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 1, 1, 2), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statAlarmDesc.setStatus('mandatory')
stat_alarm_date = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 1, 1, 3), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statAlarmDate.setStatus('mandatory')
stat_alarm_time = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 1, 1, 4), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statAlarmTime.setStatus('mandatory')
stat_alarm_module = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 1, 1, 5), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statAlarmModule.setStatus('mandatory')
stat_alarm_alarm = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 1, 1, 6), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statAlarmAlarm.setStatus('mandatory')
stat_alarm_arg = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 1, 1, 7), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statAlarmArg.setStatus('mandatory')
stat_ifwan_table = mib_table((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 2))
if mibBuilder.loadTexts:
statIfwanTable.setStatus('mandatory')
stat_ifwan_entry = mib_table_row((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 2, 1)).setIndexNames((0, 'CLEARTRAC7-MIB', 'statIfwanIndex'))
if mibBuilder.loadTexts:
statIfwanEntry.setStatus('mandatory')
stat_ifwan_index = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 2, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statIfwanIndex.setStatus('mandatory')
stat_ifwan_desc = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 2, 1, 2), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statIfwanDesc.setStatus('mandatory')
stat_ifwan_protocol = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 2, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 17, 18, 19, 24, 27, 28, 29, 254, 255))).clone(namedValues=named_values(('off', 1), ('p-sdlc', 2), ('s-sdlc', 3), ('hdlc', 4), ('ddcmp', 5), ('t-async', 6), ('r-async', 7), ('bsc', 8), ('cop', 9), ('pvcr', 10), ('passthru', 11), ('console', 12), ('fr-net', 17), ('fr-user', 18), ('ppp', 19), ('e1-trsp', 24), ('isdn-bri', 27), ('g703', 28), ('x25', 29), ('not-applicable', 254), ('not-available', 255)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statIfwanProtocol.setStatus('mandatory')
stat_ifwan_interface = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 2, 1, 4), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statIfwanInterface.setStatus('mandatory')
stat_ifwan_modem_signal = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 2, 1, 5), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statIfwanModemSignal.setStatus('mandatory')
stat_ifwan_speed = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 2, 1, 6), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statIfwanSpeed.setStatus('mandatory')
stat_ifwan_state = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 2, 1, 7), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statIfwanState.setStatus('mandatory')
stat_ifwan_mean_tx = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 2, 1, 8), gauge32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statIfwanMeanTx.setStatus('mandatory')
stat_ifwan_mean_rx = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 2, 1, 9), gauge32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statIfwanMeanRx.setStatus('mandatory')
stat_ifwan_peak_tx = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 2, 1, 10), gauge32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statIfwanPeakTx.setStatus('mandatory')
stat_ifwan_peak_rx = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 2, 1, 11), gauge32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statIfwanPeakRx.setStatus('mandatory')
stat_ifwan_bad_frames = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 2, 1, 12), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statIfwanBadFrames.setStatus('mandatory')
stat_ifwan_bad_flags = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 2, 1, 13), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statIfwanBadFlags.setStatus('mandatory')
stat_ifwan_underruns = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 2, 1, 14), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statIfwanUnderruns.setStatus('mandatory')
stat_ifwan_retries = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 2, 1, 15), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statIfwanRetries.setStatus('mandatory')
stat_ifwan_restart = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 2, 1, 16), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statIfwanRestart.setStatus('mandatory')
stat_ifwan_frames_tx = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 2, 1, 17), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statIfwanFramesTx.setStatus('mandatory')
stat_ifwan_frames_rx = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 2, 1, 18), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statIfwanFramesRx.setStatus('mandatory')
stat_ifwan_octets_tx = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 2, 1, 19), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statIfwanOctetsTx.setStatus('mandatory')
stat_ifwan_octets_rx = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 2, 1, 20), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statIfwanOctetsRx.setStatus('mandatory')
stat_ifwan_ovr_frames = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 2, 1, 21), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statIfwanOvrFrames.setStatus('mandatory')
stat_ifwan_bad_octets = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 2, 1, 22), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statIfwanBadOctets.setStatus('mandatory')
stat_ifwan_ovr_octets = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 2, 1, 23), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statIfwanOvrOctets.setStatus('mandatory')
stat_ifwan_t1_e1_ess = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 2, 1, 24), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statIfwanT1E1ESS.setStatus('mandatory')
stat_ifwan_t1_e1_ses = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 2, 1, 25), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statIfwanT1E1SES.setStatus('mandatory')
stat_ifwan_t1_e1_sef = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 2, 1, 26), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statIfwanT1E1SEF.setStatus('mandatory')
stat_ifwan_t1_e1_uas = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 2, 1, 27), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statIfwanT1E1UAS.setStatus('mandatory')
stat_ifwan_t1_e1_css = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 2, 1, 28), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statIfwanT1E1CSS.setStatus('mandatory')
stat_ifwan_t1_e1_pcv = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 2, 1, 29), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statIfwanT1E1PCV.setStatus('mandatory')
stat_ifwan_t1_e1_les = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 2, 1, 30), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statIfwanT1E1LES.setStatus('mandatory')
stat_ifwan_t1_e1_bes = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 2, 1, 31), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statIfwanT1E1BES.setStatus('mandatory')
stat_ifwan_t1_e1_dm = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 2, 1, 32), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statIfwanT1E1DM.setStatus('mandatory')
stat_ifwan_t1_e1_lcv = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 2, 1, 33), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statIfwanT1E1LCV.setStatus('mandatory')
stat_ifwan_comp_errs = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 2, 1, 34), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statIfwanCompErrs.setStatus('mandatory')
stat_ifwan_ch_overflows = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 2, 1, 35), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statIfwanChOverflows.setStatus('mandatory')
stat_ifwan_ch_aborts = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 2, 1, 36), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statIfwanChAborts.setStatus('mandatory')
stat_ifwan_ch_seq_errs = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 2, 1, 37), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statIfwanChSeqErrs.setStatus('mandatory')
stat_ifwan_drop_insert = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 2, 1, 38), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statIfwanDropInsert.setStatus('mandatory')
stat_ifwan_trsp_state = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 2, 1, 39), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statIfwanTrspState.setStatus('mandatory')
stat_ifwan_trsp_last_error = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 2, 1, 40), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statIfwanTrspLastError.setStatus('mandatory')
stat_ifwan_q922_state = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 2, 1, 41), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statIfwanQ922State.setStatus('mandatory')
stat_iflan_table = mib_table((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 3))
if mibBuilder.loadTexts:
statIflanTable.setStatus('mandatory')
stat_iflan_entry = mib_table_row((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 3, 1)).setIndexNames((0, 'CLEARTRAC7-MIB', 'statIflanIndex'))
if mibBuilder.loadTexts:
statIflanEntry.setStatus('mandatory')
stat_iflan_index = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 3, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statIflanIndex.setStatus('mandatory')
stat_iflan_protocol = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 3, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 13, 14, 15, 16))).clone(namedValues=named_values(('off', 1), ('token-ring', 13), ('ethernet-auto', 14), ('ethernet-802p3', 15), ('ethernet-v2', 16)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statIflanProtocol.setStatus('mandatory')
stat_iflan_speed = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 3, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('tr-4-Mbps', 1), ('tr-16-Mbps', 2), ('eth-10-Mbps', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statIflanSpeed.setStatus('mandatory')
stat_iflan_connection_status = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 3, 1, 4), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statIflanConnectionStatus.setStatus('mandatory')
stat_iflan_operating_mode = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 3, 1, 5), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statIflanOperatingMode.setStatus('mandatory')
stat_iflan_eth__interface = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 3, 1, 6), display_string()).setLabel('statIflanEth-Interface').setMaxAccess('readonly')
if mibBuilder.loadTexts:
statIflanEth_Interface.setStatus('mandatory')
stat_iflan_mean_tx_kbps = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 3, 1, 7), gauge32()).setLabel('statIflanMeanTx-kbps').setMaxAccess('readonly')
if mibBuilder.loadTexts:
statIflanMeanTx_kbps.setStatus('mandatory')
stat_iflan_mean_rx_kbps = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 3, 1, 8), gauge32()).setLabel('statIflanMeanRx-kbps').setMaxAccess('readonly')
if mibBuilder.loadTexts:
statIflanMeanRx_kbps.setStatus('mandatory')
stat_iflan_peak_tx_kbps = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 3, 1, 9), gauge32()).setLabel('statIflanPeakTx-kbps').setMaxAccess('readonly')
if mibBuilder.loadTexts:
statIflanPeakTx_kbps.setStatus('mandatory')
stat_iflan_peak_rx_kbps = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 3, 1, 10), gauge32()).setLabel('statIflanPeakRx-kbps').setMaxAccess('readonly')
if mibBuilder.loadTexts:
statIflanPeakRx_kbps.setStatus('mandatory')
stat_iflan_retries = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 3, 1, 11), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statIflanRetries.setStatus('mandatory')
stat_iflan_bad_frames = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 3, 1, 12), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statIflanBadFrames.setStatus('mandatory')
stat_iflan_bad_flags = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 3, 1, 13), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statIflanBadFlags.setStatus('mandatory')
stat_iflan_tr__receive_congestion = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 3, 1, 14), counter32()).setLabel('statIflanTr-ReceiveCongestion').setMaxAccess('readonly')
if mibBuilder.loadTexts:
statIflanTr_ReceiveCongestion.setStatus('mandatory')
stat_iflan_eth__one_collision = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 3, 1, 15), counter32()).setLabel('statIflanEth-OneCollision').setMaxAccess('readonly')
if mibBuilder.loadTexts:
statIflanEth_OneCollision.setStatus('mandatory')
stat_iflan_eth__two_collisions = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 3, 1, 16), counter32()).setLabel('statIflanEth-TwoCollisions').setMaxAccess('readonly')
if mibBuilder.loadTexts:
statIflanEth_TwoCollisions.setStatus('mandatory')
stat_iflan_eth__three_and_more_col = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 3, 1, 17), counter32()).setLabel('statIflanEth-ThreeAndMoreCol').setMaxAccess('readonly')
if mibBuilder.loadTexts:
statIflanEth_ThreeAndMoreCol.setStatus('mandatory')
stat_iflan_eth__deferred_trans = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 3, 1, 18), counter32()).setLabel('statIflanEth-DeferredTrans').setMaxAccess('readonly')
if mibBuilder.loadTexts:
statIflanEth_DeferredTrans.setStatus('mandatory')
stat_iflan_eth__excessive_collision = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 3, 1, 19), counter32()).setLabel('statIflanEth-ExcessiveCollision').setMaxAccess('readonly')
if mibBuilder.loadTexts:
statIflanEth_ExcessiveCollision.setStatus('mandatory')
stat_iflan_eth__late_collision = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 3, 1, 20), counter32()).setLabel('statIflanEth-LateCollision').setMaxAccess('readonly')
if mibBuilder.loadTexts:
statIflanEth_LateCollision.setStatus('mandatory')
stat_iflan_eth__frame_check_seq = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 3, 1, 21), counter32()).setLabel('statIflanEth-FrameCheckSeq').setMaxAccess('readonly')
if mibBuilder.loadTexts:
statIflanEth_FrameCheckSeq.setStatus('mandatory')
stat_iflan_eth__align = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 3, 1, 22), counter32()).setLabel('statIflanEth-Align').setMaxAccess('readonly')
if mibBuilder.loadTexts:
statIflanEth_Align.setStatus('mandatory')
stat_iflan_eth__carrier_sense = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 3, 1, 23), counter32()).setLabel('statIflanEth-CarrierSense').setMaxAccess('readonly')
if mibBuilder.loadTexts:
statIflanEth_CarrierSense.setStatus('mandatory')
stat_ifvce_table = mib_table((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 10))
if mibBuilder.loadTexts:
statIfvceTable.setStatus('mandatory')
stat_ifvce_entry = mib_table_row((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 10, 1)).setIndexNames((0, 'CLEARTRAC7-MIB', 'statIfvceIndex'))
if mibBuilder.loadTexts:
statIfvceEntry.setStatus('mandatory')
stat_ifvce_index = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 10, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statIfvceIndex.setStatus('mandatory')
stat_ifvce_desc = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 10, 1, 2), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statIfvceDesc.setStatus('mandatory')
stat_ifvce_state = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 10, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5))).clone(namedValues=named_values(('inactive', 0), ('idle', 1), ('pause', 2), ('local', 3), ('online', 4), ('disconnect', 5)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statIfvceState.setStatus('mandatory')
stat_ifvce_protocol = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 10, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 21, 22, 23, 24, 26, 30))).clone(namedValues=named_values(('off', 1), ('acelp-8-kbs', 21), ('acelp-4-8-kbs', 22), ('pcm64k', 23), ('adpcm32k', 24), ('atc16k', 26), ('acelp-cn', 30)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statIfvceProtocol.setStatus('mandatory')
stat_ifvce_last_error = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 10, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12))).clone(namedValues=named_values(('none', 0), ('incompatibility', 1), ('new-parameters', 2), ('rerouting', 3), ('state-fault', 4), ('unreachable', 5), ('disconnect', 6), ('port-closure', 7), ('no-destination', 8), ('pvc-closure', 9), ('too-many-calls', 10), ('class-mismatch', 11), ('algo-mismatch', 12)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statIfvceLastError.setStatus('mandatory')
stat_ifvce_fax_rate = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 10, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4))).clone(namedValues=named_values(('none', 0), ('fx-2-4Kbps', 1), ('fx-4-8Kbps', 2), ('fx-7-2Kbps', 3), ('fx-9-6Kbps', 4)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statIfvceFaxRate.setStatus('mandatory')
stat_ifvce_fax_mode = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 10, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(255, 0, 1))).clone(namedValues=named_values(('none', 255), ('out-of-fax', 0), ('in-fax', 1)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statIfvceFaxMode.setStatus('mandatory')
stat_ifvce_overruns = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 10, 1, 8), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statIfvceOverruns.setStatus('mandatory')
stat_ifvce_underruns = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 10, 1, 9), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statIfvceUnderruns.setStatus('mandatory')
stat_ifvce_dvc_port_in_use = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 10, 1, 10), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statIfvceDvcPortInUse.setStatus('mandatory')
stat_pu_table = mib_table((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 4))
if mibBuilder.loadTexts:
statPuTable.setStatus('mandatory')
stat_pu_entry = mib_table_row((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 4, 1)).setIndexNames((0, 'CLEARTRAC7-MIB', 'statPuIndex'))
if mibBuilder.loadTexts:
statPuEntry.setStatus('mandatory')
stat_pu_index = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 4, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statPuIndex.setStatus('mandatory')
stat_pu_mode = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 4, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16))).clone(namedValues=named_values(('off', 1), ('sdlc-llc', 2), ('sdlc-sdlc', 3), ('sdlc-dlsw', 4), ('sdlc-links', 5), ('llc-dlsw', 6), ('llc-links', 7), ('dlsw-links', 8), ('sdlc-ban', 9), ('sdlc-bnn', 10), ('llc-ban', 11), ('llc-bnn', 12), ('dlsw-ban', 13), ('dlsw-bnn', 14), ('ban-link', 15), ('bnn-link', 16)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statPuMode.setStatus('mandatory')
stat_pu_connection_status = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 4, 1, 3), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statPuConnectionStatus.setStatus('mandatory')
stat_pu_comp_errs = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 4, 1, 4), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statPuCompErrs.setStatus('mandatory')
stat_pu_ch_overflows = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 4, 1, 5), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statPuChOverflows.setStatus('mandatory')
stat_pu_ch_aborts = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 4, 1, 6), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statPuChAborts.setStatus('mandatory')
stat_pu_ch_seq_errs = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 4, 1, 7), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statPuChSeqErrs.setStatus('mandatory')
stat_bridge = mib_identifier((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 5))
stat_bridge_bridge = mib_identifier((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 5, 1))
stat_bridge_port = mib_identifier((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 5, 2))
stat_bridge_bridge_address_discard = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 5, 1, 1), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statBridgeBridgeAddressDiscard.setStatus('mandatory')
stat_bridge_bridge_frame_discard = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 5, 1, 2), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statBridgeBridgeFrameDiscard.setStatus('mandatory')
stat_bridge_bridge_designated_root = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 5, 1, 3), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statBridgeBridgeDesignatedRoot.setStatus('mandatory')
stat_bridge_bridge_root_cost = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 5, 1, 4), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statBridgeBridgeRootCost.setStatus('mandatory')
stat_bridge_bridge_root_port = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 5, 1, 5), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statBridgeBridgeRootPort.setStatus('mandatory')
stat_bridge_bridge_frame_filtered = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 5, 1, 6), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statBridgeBridgeFrameFiltered.setStatus('mandatory')
stat_bridge_bridge_frame_timeout = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 5, 1, 7), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statBridgeBridgeFrameTimeout.setStatus('mandatory')
stat_bridge_port_table = mib_table((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 5, 2, 1))
if mibBuilder.loadTexts:
statBridgePortTable.setStatus('mandatory')
stat_bridge_port_entry = mib_table_row((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 5, 2, 1, 1)).setIndexNames((0, 'CLEARTRAC7-MIB', 'statBridgePortIndex'))
if mibBuilder.loadTexts:
statBridgePortEntry.setStatus('mandatory')
stat_bridge_port_index = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 5, 2, 1, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statBridgePortIndex.setStatus('mandatory')
stat_bridge_port_destination = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 5, 2, 1, 1, 2), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statBridgePortDestination.setStatus('mandatory')
stat_bridge_port_state = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 5, 2, 1, 1, 3), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statBridgePortState.setStatus('mandatory')
stat_bridge_port_designated_root = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 5, 2, 1, 1, 4), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statBridgePortDesignatedRoot.setStatus('mandatory')
stat_bridge_port_designated_cost = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 5, 2, 1, 1, 5), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statBridgePortDesignatedCost.setStatus('mandatory')
stat_bridge_port_designated_bridge = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 5, 2, 1, 1, 6), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statBridgePortDesignatedBridge.setStatus('mandatory')
stat_bridge_port_designated_port = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 5, 2, 1, 1, 7), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statBridgePortDesignatedPort.setStatus('mandatory')
stat_bridge_port_trsp_frame_in = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 5, 2, 1, 1, 8), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statBridgePortTrspFrameIn.setStatus('mandatory')
stat_bridge_port_trsp_frame_out = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 5, 2, 1, 1, 9), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statBridgePortTrspFrameOut.setStatus('mandatory')
stat_bridge_port_tr__spec_rte_frame_in = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 5, 2, 1, 1, 10), display_string()).setLabel('statBridgePortTr-SpecRteFrameIn').setMaxAccess('readonly')
if mibBuilder.loadTexts:
statBridgePortTr_SpecRteFrameIn.setStatus('mandatory')
stat_bridge_port_tr__spec_rte_frame_out = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 5, 2, 1, 1, 11), display_string()).setLabel('statBridgePortTr-SpecRteFrameOut').setMaxAccess('readonly')
if mibBuilder.loadTexts:
statBridgePortTr_SpecRteFrameOut.setStatus('mandatory')
stat_bridge_port_tr__all_rte_frame_in = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 5, 2, 1, 1, 12), display_string()).setLabel('statBridgePortTr-AllRteFrameIn').setMaxAccess('readonly')
if mibBuilder.loadTexts:
statBridgePortTr_AllRteFrameIn.setStatus('mandatory')
stat_bridge_port_tr__all_rte_frame_out = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 5, 2, 1, 1, 13), display_string()).setLabel('statBridgePortTr-AllRteFrameOut').setMaxAccess('readonly')
if mibBuilder.loadTexts:
statBridgePortTr_AllRteFrameOut.setStatus('mandatory')
stat_bridge_port_tr__single_rte_frame_in = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 5, 2, 1, 1, 14), display_string()).setLabel('statBridgePortTr-SingleRteFrameIn').setMaxAccess('readonly')
if mibBuilder.loadTexts:
statBridgePortTr_SingleRteFrameIn.setStatus('mandatory')
stat_bridge_port_tr__single_rte_frame_out = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 5, 2, 1, 1, 15), display_string()).setLabel('statBridgePortTr-SingleRteFrameOut').setMaxAccess('readonly')
if mibBuilder.loadTexts:
statBridgePortTr_SingleRteFrameOut.setStatus('mandatory')
stat_bridge_port_tr__segment_mismatch = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 5, 2, 1, 1, 16), display_string()).setLabel('statBridgePortTr-SegmentMismatch').setMaxAccess('readonly')
if mibBuilder.loadTexts:
statBridgePortTr_SegmentMismatch.setStatus('mandatory')
stat_bridge_port_tr__segment_duplicate = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 5, 2, 1, 1, 17), display_string()).setLabel('statBridgePortTr-SegmentDuplicate').setMaxAccess('readonly')
if mibBuilder.loadTexts:
statBridgePortTr_SegmentDuplicate.setStatus('mandatory')
stat_bridge_port_tr__hop_cnt_exceeded = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 5, 2, 1, 1, 18), display_string()).setLabel('statBridgePortTr-HopCntExceeded').setMaxAccess('readonly')
if mibBuilder.loadTexts:
statBridgePortTr_HopCntExceeded.setStatus('mandatory')
stat_bridge_port_tr__frm_lng_exceeded = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 5, 2, 1, 1, 19), display_string()).setLabel('statBridgePortTr-FrmLngExceeded').setMaxAccess('readonly')
if mibBuilder.loadTexts:
statBridgePortTr_FrmLngExceeded.setStatus('mandatory')
stat_pvc_table = mib_table((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 6))
if mibBuilder.loadTexts:
statPvcTable.setStatus('mandatory')
stat_pvc_entry = mib_table_row((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 6, 1)).setIndexNames((0, 'CLEARTRAC7-MIB', 'statPvcIndex'))
if mibBuilder.loadTexts:
statPvcEntry.setStatus('mandatory')
stat_pvc_index = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 6, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statPvcIndex.setStatus('mandatory')
stat_pvc_protocol = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 6, 1, 2), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statPvcProtocol.setStatus('mandatory')
stat_pvc_mode = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 6, 1, 3), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statPvcMode.setStatus('mandatory')
stat_pvc_info_signal = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 6, 1, 4), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statPvcInfoSignal.setStatus('mandatory')
stat_pvc_speed = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 6, 1, 5), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statPvcSpeed.setStatus('mandatory')
stat_pvc_state = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 6, 1, 6), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statPvcState.setStatus('mandatory')
stat_pvc_mean_tx = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 6, 1, 7), gauge32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statPvcMeanTx.setStatus('mandatory')
stat_pvc_mean_rx = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 6, 1, 8), gauge32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statPvcMeanRx.setStatus('mandatory')
stat_pvc_peak_tx = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 6, 1, 9), gauge32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statPvcPeakTx.setStatus('mandatory')
stat_pvc_peak_rx = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 6, 1, 10), gauge32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statPvcPeakRx.setStatus('mandatory')
stat_pvc_error = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 6, 1, 11), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statPvcError.setStatus('mandatory')
stat_pvc_restart = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 6, 1, 12), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statPvcRestart.setStatus('mandatory')
stat_pvc_frames_tx = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 6, 1, 13), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statPvcFramesTx.setStatus('mandatory')
stat_pvc_frames_rx = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 6, 1, 14), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statPvcFramesRx.setStatus('mandatory')
stat_pvc_octets_tx = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 6, 1, 15), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statPvcOctetsTx.setStatus('mandatory')
stat_pvc_octets_rx = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 6, 1, 16), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statPvcOctetsRx.setStatus('mandatory')
stat_pvc_bad_frames = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 6, 1, 17), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statPvcBadFrames.setStatus('mandatory')
stat_pvc_ovr_frames = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 6, 1, 18), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statPvcOvrFrames.setStatus('mandatory')
stat_pvc_bad_octets = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 6, 1, 19), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statPvcBadOctets.setStatus('mandatory')
stat_pvc_ovr_octets = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 6, 1, 20), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statPvcOvrOctets.setStatus('mandatory')
stat_pvc_dlci = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 6, 1, 21), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statPvcDlci.setStatus('mandatory')
stat_pvc_comp_errs = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 6, 1, 28), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statPvcCompErrs.setStatus('mandatory')
stat_pvc_ch_overflows = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 6, 1, 29), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statPvcChOverflows.setStatus('mandatory')
stat_pvc_ch_aborts = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 6, 1, 30), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statPvcChAborts.setStatus('mandatory')
stat_pvc_ch_seq_errs = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 6, 1, 31), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statPvcChSeqErrs.setStatus('mandatory')
stat_pvcr_route_table = mib_table((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 7))
if mibBuilder.loadTexts:
statPvcrRouteTable.setStatus('mandatory')
stat_pvcr_route_entry = mib_table_row((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 7, 1)).setIndexNames((0, 'CLEARTRAC7-MIB', 'statPvcrRouteName'), (0, 'CLEARTRAC7-MIB', 'statPvcrRouteNextHop'))
if mibBuilder.loadTexts:
statPvcrRouteEntry.setStatus('mandatory')
stat_pvcr_route_name = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 7, 1, 1), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statPvcrRouteName.setStatus('mandatory')
stat_pvcr_route_valid = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 7, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('no', 1), ('yes', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statPvcrRouteValid.setStatus('mandatory')
stat_pvcr_route_metric = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 7, 1, 3), gauge32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statPvcrRouteMetric.setStatus('mandatory')
stat_pvcr_route_intrf = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 7, 1, 4), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statPvcrRouteIntrf.setStatus('mandatory')
stat_pvcr_route_next_hop = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 7, 1, 5), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statPvcrRouteNextHop.setStatus('mandatory')
stat_pvcr_route_age = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 7, 1, 6), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statPvcrRouteAge.setStatus('mandatory')
stat_system = mib_identifier((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 20))
stat_system_alarm_number = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 20, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statSystemAlarmNumber.setStatus('mandatory')
stat_system_mean_comp_rate = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 20, 2), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statSystemMeanCompRate.setStatus('mandatory')
stat_system_mean_decomp_rate = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 20, 3), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statSystemMeanDecompRate.setStatus('mandatory')
stat_system_peak_comp_rate = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 20, 4), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statSystemPeakCompRate.setStatus('mandatory')
stat_system_peak_decomp_rate = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 20, 5), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statSystemPeakDecompRate.setStatus('mandatory')
stat_system_sa = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 20, 6), gauge32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statSystemSa.setStatus('mandatory')
stat_system_sp = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 20, 7), gauge32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statSystemSp.setStatus('mandatory')
stat_system_na = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 20, 8), octet_string().subtype(subtypeSpec=value_size_constraint(6, 6)).setFixedLength(6)).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statSystemNa.setStatus('mandatory')
stat_system_bia = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 20, 9), octet_string().subtype(subtypeSpec=value_size_constraint(6, 6)).setFixedLength(6)).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statSystemBia.setStatus('mandatory')
stat_system_tr__nan = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 20, 10), octet_string().subtype(subtypeSpec=value_size_constraint(6, 6)).setFixedLength(6)).setLabel('statSystemTr-Nan').setMaxAccess('readonly')
if mibBuilder.loadTexts:
statSystemTr_Nan.setStatus('mandatory')
stat_system_reset_counters = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 20, 11), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('no', 1), ('yes', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
statSystemResetCounters.setStatus('mandatory')
stat_system_clear_alarms = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 20, 12), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('no', 1), ('yes', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
statSystemClearAlarms.setStatus('mandatory')
stat_system_clear_error_led = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 20, 13), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('no', 1), ('yes', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
statSystemClearErrorLed.setStatus('mandatory')
stat_bootp = mib_identifier((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 21))
stat_bootp_nb_request_received = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 21, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statBootpNbRequestReceived.setStatus('mandatory')
stat_bootp_nb_request_send = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 21, 2), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statBootpNbRequestSend.setStatus('mandatory')
stat_bootp_nb_reply_received = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 21, 3), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statBootpNbReplyReceived.setStatus('mandatory')
stat_bootp_nb_reply_send = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 21, 4), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statBootpNbReplySend.setStatus('mandatory')
stat_bootp_reply_with_invalid_giaddr = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 21, 5), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statBootpReplyWithInvalidGiaddr.setStatus('mandatory')
stat_bootp_hops_limit_exceed = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 21, 6), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statBootpHopsLimitExceed.setStatus('mandatory')
stat_bootp_request_received_on_port_bootpc = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 21, 7), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statBootpRequestReceivedOnPortBootpc.setStatus('mandatory')
stat_bootp_reply_received_on_port_bootpc = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 21, 8), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statBootpReplyReceivedOnPortBootpc.setStatus('mandatory')
stat_bootp_invalid_op_code_field = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 21, 9), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statBootpInvalidOpCodeField.setStatus('mandatory')
stat_bootp_cannot_route_frame = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 21, 10), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statBootpCannotRouteFrame.setStatus('mandatory')
stat_bootp_frame_too_small_to_be_a_bootp_frame = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 21, 11), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statBootpFrameTooSmallToBeABootpFrame.setStatus('mandatory')
stat_bootp_cannot_receive_and_forward_on_the_same_port = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 21, 12), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statBootpCannotReceiveAndForwardOnTheSamePort.setStatus('mandatory')
stat_grp = mib_identifier((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 22))
stat_grp_number = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 22, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statGrpNumber.setStatus('mandatory')
stat_grp_table = mib_table((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 22, 2))
if mibBuilder.loadTexts:
statGrpTable.setStatus('mandatory')
stat_grp_entry = mib_table_row((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 22, 2, 1)).setIndexNames((0, 'CLEARTRAC7-MIB', 'statGrpIndex'))
if mibBuilder.loadTexts:
statGrpEntry.setStatus('mandatory')
stat_grp_index = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 22, 2, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statGrpIndex.setStatus('mandatory')
stat_grp_dest_name = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 22, 2, 1, 2), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statGrpDestName.setStatus('mandatory')
stat_grp_out_of_seq_errs = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 22, 2, 1, 3), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statGrpOutOfSeqErrs.setStatus('mandatory')
stat_grp_sorter_timeouts = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 22, 2, 1, 4), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statGrpSorterTimeouts.setStatus('mandatory')
stat_grp_sorter_overruns = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 22, 2, 1, 5), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statGrpSorterOverruns.setStatus('mandatory')
stat_timep = mib_identifier((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 23))
stat_time_nb_frame_received = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 23, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statTimeNbFrameReceived.setStatus('mandatory')
stat_time_nb_frame_sent = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 23, 2), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statTimeNbFrameSent.setStatus('mandatory')
stat_time_nb_request_received = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 23, 3), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statTimeNbRequestReceived.setStatus('mandatory')
stat_time_nb_reply_sent = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 23, 4), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statTimeNbReplySent.setStatus('mandatory')
stat_time_nb_request_sent = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 23, 5), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statTimeNbRequestSent.setStatus('mandatory')
stat_time_nb_reply_received = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 23, 6), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statTimeNbReplyReceived.setStatus('mandatory')
stat_time_client_retransmissions = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 23, 7), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statTimeClientRetransmissions.setStatus('mandatory')
stat_time_client_sync_failures = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 23, 8), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statTimeClientSyncFailures.setStatus('mandatory')
stat_time_invalid_local_ip_address = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 23, 9), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statTimeInvalidLocalIpAddress.setStatus('mandatory')
stat_time_invalid_port_numbers = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 23, 10), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statTimeInvalidPortNumbers.setStatus('mandatory')
stat_q922counters = mib_identifier((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 24))
stat_tx_retransmissions = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 24, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statTxRetransmissions.setStatus('mandatory')
stat_release_indications = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 24, 2), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statReleaseIndications.setStatus('mandatory')
stat_establish_indications = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 24, 3), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statEstablishIndications.setStatus('mandatory')
stat_link_established = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 24, 4), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statLinkEstablished.setStatus('mandatory')
stat_tx_iframe_qdiscards = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 24, 5), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statTxIframeQdiscards.setStatus('mandatory')
stat_rxframes = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 24, 6), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statRxframes.setStatus('mandatory')
stat_txframes = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 24, 7), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statTxframes.setStatus('mandatory')
stat_rx_bytes = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 24, 8), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statRxBytes.setStatus('mandatory')
stat_tx_bytes = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 24, 9), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statTxBytes.setStatus('mandatory')
stat_q922errors = mib_identifier((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 25))
stat_invalid_rx_sizes = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 25, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statInvalidRxSizes.setStatus('mandatory')
stat_missing_control_blocks = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 25, 2), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statMissingControlBlocks.setStatus('mandatory')
stat_rx_acknowledge_expiry = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 25, 3), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statRxAcknowledgeExpiry.setStatus('mandatory')
stat_tx_acknowledge_expiry = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 25, 4), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statTxAcknowledgeExpiry.setStatus('mandatory')
stat_q933counters = mib_identifier((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 26))
stat_tx_setup_messages = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 26, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statTxSetupMessages.setStatus('mandatory')
stat_rx_setup_messages = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 26, 2), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statRxSetupMessages.setStatus('mandatory')
stat_tx_call_proceeding_messages = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 26, 3), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statTxCallProceedingMessages.setStatus('mandatory')
stat_rx_call_proceeding_messages = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 26, 4), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statRxCallProceedingMessages.setStatus('mandatory')
stat_tx_connect_messages = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 26, 5), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statTxConnectMessages.setStatus('mandatory')
stat_rx_connect_messages = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 26, 6), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statRxConnectMessages.setStatus('mandatory')
stat_tx_release_messages = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 26, 7), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statTxReleaseMessages.setStatus('mandatory')
stat_rx_release_messages = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 26, 8), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statRxReleaseMessages.setStatus('mandatory')
stat_tx_release_complete_messages = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 26, 9), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statTxReleaseCompleteMessages.setStatus('mandatory')
stat_rx_release_complete_messages = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 26, 10), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statRxReleaseCompleteMessages.setStatus('mandatory')
stat_tx_disconnect_messages = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 26, 11), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statTxDisconnectMessages.setStatus('mandatory')
stat_rx_disconnect_messages = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 26, 12), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statRxDisconnectMessages.setStatus('mandatory')
stat_tx_status_messages = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 26, 13), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statTxStatusMessages.setStatus('mandatory')
stat_rx_status_messages = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 26, 14), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statRxStatusMessages.setStatus('mandatory')
stat_tx_status_enquiry_messages = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 26, 15), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statTxStatusEnquiryMessages.setStatus('mandatory')
stat_rx_status_enquiry_messages = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 26, 16), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statRxStatusEnquiryMessages.setStatus('mandatory')
stat_protocol_timeouts = mib_scalar((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 26, 17), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statProtocolTimeouts.setStatus('mandatory')
stat_svc_table = mib_table((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 27))
if mibBuilder.loadTexts:
statSvcTable.setStatus('mandatory')
stat_svc_entry = mib_table_row((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 27, 1)).setIndexNames((0, 'CLEARTRAC7-MIB', 'statSvcIndex'))
if mibBuilder.loadTexts:
statSvcEntry.setStatus('mandatory')
stat_svc_index = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 27, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statSvcIndex.setStatus('mandatory')
stat_svc_protocol = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 27, 1, 2), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statSvcProtocol.setStatus('mandatory')
stat_svc_mode = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 27, 1, 3), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statSvcMode.setStatus('mandatory')
stat_svc_info_signal = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 27, 1, 4), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statSvcInfoSignal.setStatus('mandatory')
stat_svc_speed = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 27, 1, 5), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statSvcSpeed.setStatus('mandatory')
stat_svc_state = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 27, 1, 6), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statSvcState.setStatus('mandatory')
stat_svc_mean_tx = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 27, 1, 7), gauge32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statSvcMeanTx.setStatus('mandatory')
stat_svc_mean_rx = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 27, 1, 8), gauge32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statSvcMeanRx.setStatus('mandatory')
stat_svc_peak_tx = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 27, 1, 9), gauge32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statSvcPeakTx.setStatus('mandatory')
stat_svc_peak_rx = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 27, 1, 10), gauge32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statSvcPeakRx.setStatus('mandatory')
stat_svc_error = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 27, 1, 11), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statSvcError.setStatus('mandatory')
stat_svc_restart = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 27, 1, 12), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statSvcRestart.setStatus('mandatory')
stat_svc_frames_tx = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 27, 1, 13), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statSvcFramesTx.setStatus('mandatory')
stat_svc_frames_rx = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 27, 1, 14), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statSvcFramesRx.setStatus('mandatory')
stat_svc_octets_tx = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 27, 1, 15), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statSvcOctetsTx.setStatus('mandatory')
stat_svc_octets_rx = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 27, 1, 16), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statSvcOctetsRx.setStatus('mandatory')
stat_svc_bad_frames = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 27, 1, 17), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statSvcBadFrames.setStatus('mandatory')
stat_svc_ovr_frames = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 27, 1, 18), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statSvcOvrFrames.setStatus('mandatory')
stat_svc_bad_octets = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 27, 1, 19), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statSvcBadOctets.setStatus('mandatory')
stat_svc_ovr_octets = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 27, 1, 20), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statSvcOvrOctets.setStatus('mandatory')
stat_svc_dlci = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 27, 1, 21), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statSvcDlci.setStatus('mandatory')
stat_ifcem_table = mib_table((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 28))
if mibBuilder.loadTexts:
statIfcemTable.setStatus('mandatory')
stat_ifcem_entry = mib_table_row((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 28, 1)).setIndexNames((0, 'CLEARTRAC7-MIB', 'statIfcemIndex'))
if mibBuilder.loadTexts:
statIfcemEntry.setStatus('mandatory')
stat_ifcem_index = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 28, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statIfcemIndex.setStatus('mandatory')
stat_ifcem_desc = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 28, 1, 2), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statIfcemDesc.setStatus('mandatory')
stat_ifcem_clock_state = mib_table_column((1, 3, 6, 1, 4, 1, 727, 7, 2, 20, 28, 1, 3), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
statIfcemClockState.setStatus('mandatory')
connection_down = notification_type((1, 3, 6, 1, 4, 1, 727) + (0, 600)).setObjects(('CLEARTRAC7-MIB', 'puIndex'))
link_down = notification_type((1, 3, 6, 1, 4, 1, 727) + (0, 601)).setObjects(('CLEARTRAC7-MIB', 'ifwanIndex'))
pvc_down = notification_type((1, 3, 6, 1, 4, 1, 727) + (0, 602)).setObjects(('CLEARTRAC7-MIB', 'pvcIndex'))
card_down = notification_type((1, 3, 6, 1, 4, 1, 727) + (0, 603)).setObjects(('CLEARTRAC7-MIB', 'sysTrapRackandPos'))
connection_up = notification_type((1, 3, 6, 1, 4, 1, 727) + (0, 604)).setObjects(('CLEARTRAC7-MIB', 'puIndex'))
link_up = notification_type((1, 3, 6, 1, 4, 1, 727) + (0, 605)).setObjects(('CLEARTRAC7-MIB', 'ifwanIndex'))
pvc_up = notification_type((1, 3, 6, 1, 4, 1, 727) + (0, 606)).setObjects(('CLEARTRAC7-MIB', 'pvcIndex'))
cardup = notification_type((1, 3, 6, 1, 4, 1, 727) + (0, 607)).setObjects(('CLEARTRAC7-MIB', 'sysTrapRackandPos'))
period_started = notification_type((1, 3, 6, 1, 4, 1, 727) + (0, 608)).setObjects(('CLEARTRAC7-MIB', 'schedulePeriod'))
period_ended = notification_type((1, 3, 6, 1, 4, 1, 727) + (0, 609)).setObjects(('CLEARTRAC7-MIB', 'schedulePeriod'))
bad_dest_port = notification_type((1, 3, 6, 1, 4, 1, 727) + (0, 610)).setObjects(('CLEARTRAC7-MIB', 'ifwanIndex'))
bad_dest_pvc = notification_type((1, 3, 6, 1, 4, 1, 727) + (0, 611)).setObjects(('CLEARTRAC7-MIB', 'ifwanIndex'))
backup_call = notification_type((1, 3, 6, 1, 4, 1, 727) + (0, 612))
backup_hang = notification_type((1, 3, 6, 1, 4, 1, 727) + (0, 613))
manual_call = notification_type((1, 3, 6, 1, 4, 1, 727) + (0, 614))
manual_hang = notification_type((1, 3, 6, 1, 4, 1, 727) + (0, 615))
bond_trig = notification_type((1, 3, 6, 1, 4, 1, 727) + (0, 616))
bond_de_trig = notification_type((1, 3, 6, 1, 4, 1, 727) + (0, 617))
firmware_stored = notification_type((1, 3, 6, 1, 4, 1, 727) + (0, 618))
cfg_stored = notification_type((1, 3, 6, 1, 4, 1, 727) + (0, 619))
no_trap = notification_type((1, 3, 6, 1, 4, 1, 727) + (0, 620))
fatal_trap = notification_type((1, 3, 6, 1, 4, 1, 727) + (0, 621))
not_memory = notification_type((1, 3, 6, 1, 4, 1, 727) + (0, 622))
setup_reset = notification_type((1, 3, 6, 1, 4, 1, 727) + (0, 623))
bad_checksum = notification_type((1, 3, 6, 1, 4, 1, 727) + (0, 624))
fatal_msg = notification_type((1, 3, 6, 1, 4, 1, 727) + (0, 625))
no_msg = notification_type((1, 3, 6, 1, 4, 1, 727) + (0, 626))
both_ps_up = notification_type((1, 3, 6, 1, 4, 1, 727) + (0, 627))
one_ps_down = notification_type((1, 3, 6, 1, 4, 1, 727) + (0, 628))
both_fans_up = notification_type((1, 3, 6, 1, 4, 1, 727) + (0, 629))
one_or_more_fan_down = notification_type((1, 3, 6, 1, 4, 1, 727) + (0, 630))
accounting_file_full = notification_type((1, 3, 6, 1, 4, 1, 727) + (0, 631))
fr_link_up = notification_type((1, 3, 6, 1, 4, 1, 727) + (0, 665)).setObjects(('CLEARTRAC7-MIB', 'ifwanIndex'))
fr_link_down = notification_type((1, 3, 6, 1, 4, 1, 727) + (0, 666)).setObjects(('CLEARTRAC7-MIB', 'ifwanIndex'))
q922_up = notification_type((1, 3, 6, 1, 4, 1, 727) + (0, 667)).setObjects(('CLEARTRAC7-MIB', 'ifwanIndex'))
q922_down = notification_type((1, 3, 6, 1, 4, 1, 727) + (0, 668)).setObjects(('CLEARTRAC7-MIB', 'ifwanIndex'))
accounting_file_overflow = notification_type((1, 3, 6, 1, 4, 1, 727) + (0, 669))
mibBuilder.exportSymbols('CLEARTRAC7-MIB', timepClientUpdateInterval=timepClientUpdateInterval, statIflanSpeed=statIflanSpeed, ifvceHuntGroup=ifvceHuntGroup, statBridgePortDesignatedCost=statBridgePortDesignatedCost, statSvcPeakRx=statSvcPeakRx, statSvcDlci=statSvcDlci, backupHang=backupHang, phoneNumber=phoneNumber, statSystem=statSystem, ifvceNumber=ifvceNumber, ifwanTxStart=ifwanTxStart, puDlsDsap=puDlsDsap, ifvceRate5k8x2=ifvceRate5k8x2, ospfVLinkTable=ospfVLinkTable, ifwanPppAcceptableAccmChar=ifwanPppAcceptableAccmChar, statBridgePortTr_HopCntExceeded=statBridgePortTr_HopCntExceeded, sysPosTable=sysPosTable, ifwanMode=ifwanMode, statIfwanProtocol=statIfwanProtocol, ospfRangeMask=ospfRangeMask, statIfwanBadFrames=statIfwanBadFrames, statIfvceLastError=statIfvceLastError, filterNumber=filterNumber, statTxIframeQdiscards=statTxIframeQdiscards, ipstaticTable=ipstaticTable, ifvceRate6kx3=ifvceRate6kx3, statPvcBadFrames=statPvcBadFrames, ifwanFormat=ifwanFormat, ifwanProtocol=ifwanProtocol, statAlarmTable=statAlarmTable, slotPortInSlotEntry=slotPortInSlotEntry, frLinkUp=frLinkUp, proxyIndex=proxyIndex, ifvceProtocol=ifvceProtocol, slotPortInSlot=slotPortInSlot, ipxInternalNetNum=ipxInternalNetNum, iflanSpeed=iflanSpeed, timepClientProtocol=timepClientProtocol, ifwanSvcDisconnectTimeoutT305=ifwanSvcDisconnectTimeoutT305, iflanOspfMetricCost=iflanOspfMetricCost, statIfvceState=statIfvceState, ifwanTeiMode=ifwanTeiMode, pvcNetworkPort=pvcNetworkPort, ipaddr=ipaddr, intfType=intfType, ifvceLocalInbound=ifvceLocalInbound, ifwanPortToBack=ifwanPortToBack, iflanDesc=iflanDesc, phoneRemoteUnit=phoneRemoteUnit, ifwanSfCarrierId=ifwanSfCarrierId, ifwanT1E1Status=ifwanT1E1Status, statIfvceProtocol=statIfvceProtocol, sysSpeedDialNumLength=sysSpeedDialNumLength, statPuEntry=statPuEntry, pvcIpxNetNum=pvcIpxNetNum, puBanBnnNw=puBanBnnNw, ifwanDesc=ifwanDesc, statIfwanIndex=statIfwanIndex, sysSnmpTrapIpAddr3=sysSnmpTrapIpAddr3, statTimeNbFrameReceived=statTimeNbFrameReceived, ipRouterEnable=ipRouterEnable, sysClock=sysClock, ifvceToneOff_ms=ifvceToneOff_ms, bridgeTr_MaxHop=bridgeTr_MaxHop, ipstaticIpDest=ipstaticIpDest, iflanSubnetMask=iflanSubnetMask, iflanIpRip=iflanIpRip, statIfwanChOverflows=statIfwanChOverflows, statIfcemEntry=statIfcemEntry, ospfVLinkTransitAreaId=ospfVLinkTransitAreaId, ifwanRetry=ifwanRetry, bridgeMaxAge_s=bridgeMaxAge_s, filterDefinition=filterDefinition, intfNumInSlot=intfNumInSlot, iflanNumber=iflanNumber, sysPosIpAddr=sysPosIpAddr, statIfwanT1E1BES=statIfwanT1E1BES, timepGetServerTimeNow=timepGetServerTimeNow, statSystemSp=statSystemSp, statIfwanChSeqErrs=statIfwanChSeqErrs, linkDown=linkDown, badDestPvc=badDestPvc, pvcDown=pvcDown, pvcInfoRate=pvcInfoRate, statBootpCannotReceiveAndForwardOnTheSamePort=statBootpCannotReceiveAndForwardOnTheSamePort, puRole=puRole, statIflanEth_ThreeAndMoreCol=statIflanEth_ThreeAndMoreCol, ifwanDropSyncCounter=ifwanDropSyncCounter, ifwanOspfAreaId=ifwanOspfAreaId, statQ922counters=statQ922counters, firmwareStored=firmwareStored, statSvcOctetsTx=statSvcOctetsTx, statGrpTable=statGrpTable, scheduleEndTime=scheduleEndTime, statRxCallProceedingMessages=statRxCallProceedingMessages, statBridgePortTr_SpecRteFrameOut=statBridgePortTr_SpecRteFrameOut, ifwanTable=ifwanTable, puSdlcAddress2=puSdlcAddress2, statTimeNbReplyReceived=statTimeNbReplyReceived, ifwanFrameDelay=ifwanFrameDelay, iflanMaxFrame=iflanMaxFrame, statIfwanEntry=statIfwanEntry, statGrpOutOfSeqErrs=statGrpOutOfSeqErrs, statQ922errors=statQ922errors, statBridgeBridgeFrameTimeout=statBridgeBridgeFrameTimeout, intfModuleType=intfModuleType, statIfcemDesc=statIfcemDesc, proxyDefaultGateway=proxyDefaultGateway, puMode=puMode, ifvceRate6kx2=ifvceRate6kx2, backupCall=backupCall, statIfwanRetries=statIfwanRetries, ifvceActivationType=ifvceActivationType, iflanOspfPassword=iflanOspfPassword, ifwanPriority=ifwanPriority, ospfAreaAreaId=ospfAreaAreaId, ifvceDelDigits=ifvceDelDigits, puSdlcPort2=puSdlcPort2, ifwanDestExtNumber=ifwanDestExtNumber, ifvceRate6kx1=ifvceRate6kx1, statGrpSorterTimeouts=statGrpSorterTimeouts, ifwanLineBuild=ifwanLineBuild, puLlcDsap=puLlcDsap, q922Up=q922Up, ifwanNumber=ifwanNumber, manualHang=manualHang, ospfRangeNet=ospfRangeNet, ipxfilterEntry=ipxfilterEntry, statSystemNa=statSystemNa, statBridgePortEntry=statBridgePortEntry, ospfRangeNumber=ospfRangeNumber, ospfVLinkEntry=ospfVLinkEntry, puBnnFid=puBnnFid, ifwanOspfEnable=ifwanOspfEnable, statPuChAborts=statPuChAborts, intfNumInType=intfNumInType, ifvceRemotePort=ifvceRemotePort, linkUp=linkUp, statIflanTr_ReceiveCongestion=statIflanTr_ReceiveCongestion, statIfwanDesc=statIfwanDesc, sysDefaultGateway=sysDefaultGateway, pvcIpRipAuthType=pvcIpRipAuthType, ipxfilterNumber=ipxfilterNumber, statPuTable=statPuTable, ifvceR2Group2Digit=ifvceR2Group2Digit, sysHuntForwardingADLCI=sysHuntForwardingADLCI, statReleaseIndications=statReleaseIndications, sysDefaultIpMask=sysDefaultIpMask, ifwanEncodingLaw=ifwanEncodingLaw, sysDay=sysDay, iflanIpxNetNum=iflanIpxNetNum, ifvceFwdDigits=ifvceFwdDigits, statIfwanT1E1PCV=statIfwanT1E1PCV, statPvcrRouteValid=statPvcrRouteValid, pvcUserDlci=pvcUserDlci, ipxfilter=ipxfilter, statIflanEth_FrameCheckSeq=statIflanEth_FrameCheckSeq, statBridgePortTr_AllRteFrameOut=statBridgePortTr_AllRteFrameOut, puBanBnnSsap=puBanBnnSsap, timepServerProtocol=timepServerProtocol, ospfArea=ospfArea, statBridgePortTrspFrameOut=statBridgePortTrspFrameOut, statGrpNumber=statGrpNumber, bondTrig=bondTrig, sysName=sysName, statIfwanT1E1UAS=statIfwanT1E1UAS, statIfwanT1E1ESS=statIfwanT1E1ESS, pvcCost=pvcCost, ospfVLink=ospfVLink, statBridgeBridgeAddressDiscard=statBridgeBridgeAddressDiscard, statBridgePortState=statBridgePortState, statSystemPeakDecompRate=statSystemPeakDecompRate, ifvceDVCSilenceSuppress=ifvceDVCSilenceSuppress, statBootpNbRequestSend=statBootpNbRequestSend, intfSlotType=intfSlotType, sysPosProduct=sysPosProduct, statPvcRestart=statPvcRestart, pu=pu, puLlcDynamicWindow=puLlcDynamicWindow, statGrpEntry=statGrpEntry, ospfAreaStubMetric=ospfAreaStubMetric, ifwanX25Encapsulation=ifwanX25Encapsulation, statTxAcknowledgeExpiry=statTxAcknowledgeExpiry, statSvcOvrFrames=statSvcOvrFrames, sysLocation=sysLocation, statSvcMeanRx=statSvcMeanRx, ifwanOspfTransitDelay=ifwanOspfTransitDelay, sysRingFreq=sysRingFreq, iflanEth_LinkIntegrity=iflanEth_LinkIntegrity, pvcProxyAddr=pvcProxyAddr, classPrefRoute=classPrefRoute, ifwanGroupAddress=ifwanGroupAddress, scheduleEnable=scheduleEnable, phoneCost=phoneCost, statPvcPeakRx=statPvcPeakRx, sysLinkTimeout_s=sysLinkTimeout_s, timep=timep, iflanOspfAreaId=iflanOspfAreaId, pvcIpRipPassword=pvcIpRipPassword, statIflanPeakRx_kbps=statIflanPeakRx_kbps, statIfwanOvrFrames=statIfwanOvrFrames, ifvceSpeedDialNum=ifvceSpeedDialNum, ifwanPppAcceptMagicNum=ifwanPppAcceptMagicNum, pvcRingNumber=pvcRingNumber, pvcRemoteUnit=pvcRemoteUnit, statSystemTr_Nan=statSystemTr_Nan, statIflanEth_DeferredTrans=statIflanEth_DeferredTrans, ospfVLinkRetransmitInt=ospfVLinkRetransmitInt, puBnnPvc=puBnnPvc, statPvcOctetsTx=statPvcOctetsTx, statPvcError=statPvcError, statAlarmAlarm=statAlarmAlarm, statSvcEntry=statSvcEntry, notMemory=notMemory, stat=stat, pvcOspfMetricCost=pvcOspfMetricCost, sysPosId=sysPosId, pvcOspfPassword=pvcOspfPassword, iflanIpRipTxRx=iflanIpRipTxRx, statIfwanRestart=statIfwanRestart, bootpIpDestAddr2=bootpIpDestAddr2, statBridgePortTable=statBridgePortTable, ifvceInterface=ifvceInterface, connectionUp=connectionUp, ifvceRate8kx1=ifvceRate8kx1, ifvceRate8kx2=ifvceRate8kx2, statIfwanTable=statIfwanTable, ifwanTimeout=ifwanTimeout, bridgeLanType=bridgeLanType, puSdlcAddress=puSdlcAddress, intfSlot=intfSlot, statIflanOperatingMode=statIflanOperatingMode, statTxRetransmissions=statTxRetransmissions, ifwanDropSyncCharacter=ifwanDropSyncCharacter, ifwanSvcSetupTimeoutT303=ifwanSvcSetupTimeoutT303, ifvceSignaling=ifvceSignaling, ifvceBroadcastDir=ifvceBroadcastDir, statIfwanInterface=statIfwanInterface, ifvceDtmfOnTime=ifvceDtmfOnTime, statPvcrRouteEntry=statPvcrRouteEntry, statSystemBia=statSystemBia, ospfRange=ospfRange, mgmt=mgmt, statSystemClearErrorLed=statSystemClearErrorLed, ifwanSvcMaxTxTimeoutT200=ifwanSvcMaxTxTimeoutT200, iflanOspfDeadInt=iflanOspfDeadInt, ifwanPppSilent=ifwanPppSilent, statAlarmModule=statAlarmModule, puSdlcRetry=puSdlcRetry, statIfwanDropInsert=statIfwanDropInsert, intfTable=intfTable, ifwanIdleCode=ifwanIdleCode, ifwanPppNegociateAccm=ifwanPppNegociateAccm, ifwanIpRipPassword=ifwanIpRipPassword)
mibBuilder.exportSymbols('CLEARTRAC7-MIB', puDlsDa=puDlsDa, pvcMode=pvcMode, ifwanSvcAddressType=ifwanSvcAddressType, statPvcrRouteAge=statPvcrRouteAge, ifwanPppRequestedAccmChar=ifwanPppRequestedAccmChar, pvcOspfAreaId=pvcOspfAreaId, slotSlot=slotSlot, ifvceLinkDwnBusy=ifvceLinkDwnBusy, bridgeTr_SteSpan=bridgeTr_SteSpan, ifwanPppAcceptOldIpAddNeg=ifwanPppAcceptOldIpAddNeg, ipxRouterEnable=ipxRouterEnable, intf=intf, classNumber=classNumber, ifwanOspfDeadInt=ifwanOspfDeadInt, ipaddrNr=ipaddrNr, statPvcInfoSignal=statPvcInfoSignal, statIfwanBadOctets=statIfwanBadOctets, statBridgePortTr_AllRteFrameIn=statBridgePortTr_AllRteFrameIn, statSvcBadFrames=statSvcBadFrames, statIfvceFaxRate=statIfvceFaxRate, puLlcWindow=puLlcWindow, statBootpHopsLimitExceed=statBootpHopsLimitExceed, statBootpCannotRouteFrame=statBootpCannotRouteFrame, statTimeNbFrameSent=statTimeNbFrameSent, statAlarmIndex=statAlarmIndex, ifvceFxoTimeout_s=ifvceFxoTimeout_s, statIfcemTable=statIfcemTable, ifwanIpRip=ifwanIpRip, pvcIpxSap=pvcIpxSap, statIfwanCompErrs=statIfwanCompErrs, sysPosEntry=sysPosEntry, statIflanEntry=statIflanEntry, ifwanQsigPbxXy=ifwanQsigPbxXy, statRxReleaseCompleteMessages=statRxReleaseCompleteMessages, puSdlcTimeout_ms=puSdlcTimeout_ms, accountingFileFull=accountingFileFull, ospfAreaEnable=ospfAreaEnable, puBanBnnDsap=puBanBnnDsap, ifwanOspfMetricCost=ifwanOspfMetricCost, system=system, ifwanIpAddress=ifwanIpAddress, ospfAreaAuthType=ospfAreaAuthType, statPuConnectionStatus=statPuConnectionStatus, puDlsIpDst=puDlsIpDst, puBanBnnTimeout_ms=puBanBnnTimeout_ms, ipaddrAddr=ipaddrAddr, ifwanSync=ifwanSync, ifvceDTalkThreshold=ifvceDTalkThreshold, ifwanDsOSpeed_bps=ifwanDsOSpeed_bps, ifwanChannelCompressed=ifwanChannelCompressed, pvcIpRip=pvcIpRip, timepDaylightSaving=timepDaylightSaving, bootpEnable=bootpEnable, timepClientUdpRetransmissions=timepClientUdpRetransmissions, ifwanMultiframing=ifwanMultiframing, statIfvceUnderruns=statIfvceUnderruns, iflanOspfPriority=iflanOspfPriority, timepServerIpAddress=timepServerIpAddress, statIflanEth_Interface=statIflanEth_Interface, ifwanDigitNumber=ifwanDigitNumber, ifvceR2CompleteDigit=ifvceR2CompleteDigit, ifwanPppLocalMru=ifwanPppLocalMru, pvcIpRipTxRx=pvcIpRipTxRx, schedulePort7=schedulePort7, statBootpNbRequestReceived=statBootpNbRequestReceived, ifvceFaxModemRelay=ifvceFaxModemRelay, ospfVLinkEnable=ospfVLinkEnable, statIfwanMeanRx=statIfwanMeanRx, statPvcFramesRx=statPvcFramesRx, statSvcProtocol=statSvcProtocol, filterTable=filterTable, ospfRangeEntry=ospfRangeEntry, statBridgePortTr_SingleRteFrameIn=statBridgePortTr_SingleRteFrameIn, sysVoiceClass=sysVoiceClass, schedulePort1=schedulePort1, filterIndex=filterIndex, iflanIpxSap=iflanIpxSap, puDelayBeforeConn_s=puDelayBeforeConn_s, statIfvceTable=statIfvceTable, iflanIndex=iflanIndex, puLlcSsap=puLlcSsap, statRxBytes=statRxBytes, statSvcBadOctets=statSvcBadOctets, bondDeTrig=bondDeTrig, proxyEntry=proxyEntry, ifvceToneEnergyDetec=ifvceToneEnergyDetec, statPvcMode=statPvcMode, statTxStatusEnquiryMessages=statTxStatusEnquiryMessages, classTable=classTable, iflanIpRipAuthType=iflanIpRipAuthType, manualCall=manualCall, statSvcOvrOctets=statSvcOvrOctets, statGrpSorterOverruns=statGrpSorterOverruns, ifwanReportCycle=ifwanReportCycle, pvcRetry=pvcRetry, phoneTable=phoneTable, statIfwanPeakTx=statIfwanPeakTx, ifvceRate5k8x1=ifvceRate5k8x1, ospfAreaIndex=ospfAreaIndex, ifwanPppNegociateLocalMru=ifwanPppNegociateLocalMru, sysUnitRoutingVersion=sysUnitRoutingVersion, ifvceSilenceSuppress=ifvceSilenceSuppress, filterEntry=filterEntry, pvcUserPort=pvcUserPort, statPvcOctetsRx=statPvcOctetsRx, statBootpReplyReceivedOnPortBootpc=statBootpReplyReceivedOnPortBootpc, ipaddrTable=ipaddrTable, ifwanPppPeerMruUpTo=ifwanPppPeerMruUpTo, ifvceBroadcastPvc=ifvceBroadcastPvc, ifwanFallBackSpeed_bps=ifwanFallBackSpeed_bps, ipx=ipx, ifvceRate4k8x2=ifvceRate4k8x2, iflanTable=iflanTable, pvcEntry=pvcEntry, statTimeInvalidLocalIpAddress=statTimeInvalidLocalIpAddress, ifwanMsn2=ifwanMsn2, statIfwanChAborts=statIfwanChAborts, statRxStatusMessages=statRxStatusMessages, ifwanTxStartPass=ifwanTxStartPass, puBanBnnMaxFrame=puBanBnnMaxFrame, statQ933counters=statQ933counters, statRxReleaseMessages=statRxReleaseMessages, pvcRemoteFpUnit=pvcRemoteFpUnit, ifvceTable=ifvceTable, iflanIpxLanType=iflanIpxLanType, statAlarmDesc=statAlarmDesc, statBridgeBridgeDesignatedRoot=statBridgeBridgeDesignatedRoot, phoneNextHop=phoneNextHop, ifvceTeTimer_s=ifvceTeTimer_s, statPvcMeanRx=statPvcMeanRx, statPvcDlci=statPvcDlci, statTxframes=statTxframes, statPvcTable=statPvcTable, statTxCallProceedingMessages=statTxCallProceedingMessages, ifwanSvcReleaseTimeoutT308=ifwanSvcReleaseTimeoutT308, statPvcCompErrs=statPvcCompErrs, statBridgePortIndex=statBridgePortIndex, statSvcRestart=statSvcRestart, statRxDisconnectMessages=statRxDisconnectMessages, ifvceToneType=ifvceToneType, statPvcChAborts=statPvcChAborts, pvcNumber=pvcNumber, pvcBackupCall_s=pvcBackupCall_s, statInvalidRxSizes=statInvalidRxSizes, slotPortInSlotTable=slotPortInSlotTable, statSvcTable=statSvcTable, schedulePeriod=schedulePeriod, statPvcBadOctets=statPvcBadOctets, ifwanFraming=ifwanFraming, ospfRangeTable=ospfRangeTable, ipstaticEntry=ipstaticEntry, ifvceEnableDtmfOnTime=ifvceEnableDtmfOnTime, ospfAreaNumber=ospfAreaNumber, statTxReleaseCompleteMessages=statTxReleaseCompleteMessages, puBanRouting=puBanRouting, statBridgePortTr_SegmentMismatch=statBridgePortTr_SegmentMismatch, fatalTrap=fatalTrap, bridgeEnable=bridgeEnable, ifwanIpxSap=ifwanIpxSap, pvcOspfTransitDelay=pvcOspfTransitDelay, ospfVLinkDeadInt=ospfVLinkDeadInt, statBootpNbReplyReceived=statBootpNbReplyReceived, ifwanPppNegociatePeerMru=ifwanPppNegociatePeerMru, statPvcrRouteTable=statPvcrRouteTable, pvcPort=pvcPort, statSystemResetCounters=statSystemResetCounters, cfgStored=cfgStored, ifwanSvcStatusTimeoutT322=ifwanSvcStatusTimeoutT322, ifwanSubnetMask=ifwanSubnetMask, statPvcProtocol=statPvcProtocol, statSystemMeanCompRate=statSystemMeanCompRate, ifvceExtNumber=ifvceExtNumber, pvcMaxChannels=pvcMaxChannels, sysDesc=sysDesc, statPvcState=statPvcState, puNumber=puNumber, scheduleEntry=scheduleEntry, puXid=puXid, pvcOspfHelloInt=pvcOspfHelloInt, ifwanMaxChannels=ifwanMaxChannels, ifwanTerminating=ifwanTerminating, ifvceFwdType=ifvceFwdType, bootp=bootp, classDefaultClass=classDefaultClass, statIfwanModemSignal=statIfwanModemSignal, statPuChOverflows=statPuChOverflows, bridgeTr_Number=bridgeTr_Number, ospfGlobalRouterId=ospfGlobalRouterId, ifwan=ifwan, pysmi_class=pysmi_class, connectionDown=connectionDown, ifwanPppRemoteIpAddress=ifwanPppRemoteIpAddress, statIfwanUnderruns=statIfwanUnderruns, sysVoiceEncoding=sysVoiceEncoding, proxyNumber=proxyNumber, ifwanIndex=ifwanIndex, iflanCost=iflanCost, sysExtendedDigitsLength=sysExtendedDigitsLength, ifvceR2BusyDigit=ifvceR2BusyDigit, lucent=lucent, ifwanRemotePort=ifwanRemotePort, statIfwanOctetsRx=statIfwanOctetsRx, ifwanEntry=ifwanEntry, statIfwanFramesTx=statIfwanFramesTx, proxyComm=proxyComm, ipstaticIndex=ipstaticIndex, statIfwanT1E1LES=statIfwanT1E1LES, puSdlcPort=puSdlcPort, ifwanDialTimeout_s=ifwanDialTimeout_s, sysCountry=sysCountry, sysTransitDelay_s=sysTransitDelay_s, sysHuntForwardingBDLCI=sysHuntForwardingBDLCI, statIfvceDesc=statIfvceDesc, pvcTimeout_ms=pvcTimeout_ms, proxy=proxy, statIfwanState=statIfwanState, ifvceEntry=ifvceEntry, pvcBroadcastGroup=pvcBroadcastGroup, bootpIpDestAddr3=bootpIpDestAddr3, statBridgePortTrspFrameIn=statBridgePortTrspFrameIn, puActive=puActive, statBridgePortTr_FrmLngExceeded=statBridgePortTr_FrmLngExceeded, ifvcePulseMakeBreak_ms=ifvcePulseMakeBreak_ms, statAlarmEntry=statAlarmEntry, statIfwanMeanTx=statIfwanMeanTx, statBootpReplyWithInvalidGiaddr=statBootpReplyWithInvalidGiaddr, pvcOspfRetransmitInt=pvcOspfRetransmitInt, ifvceRemoteUnit=ifvceRemoteUnit, statIfwanT1E1SEF=statIfwanT1E1SEF, ifwanConnTimeout_s=ifwanConnTimeout_s, ifwanCompression=ifwanCompression, periodEnded=periodEnded, ifwanIpRipAuthType=ifwanIpRipAuthType, puXidId=puXidId, ifwanGainLimit=ifwanGainLimit, statBridgePortDesignatedPort=statBridgePortDesignatedPort, sysHuntForwardingAUnit=sysHuntForwardingAUnit, ifwanPppConfigRetries=ifwanPppConfigRetries, ifwanBodCall_s=ifwanBodCall_s, statSvcMode=statSvcMode, statBridgeBridgeFrameDiscard=statBridgeBridgeFrameDiscard, statSvcMeanTx=statSvcMeanTx, ifwanPppConfigRestartTimer=ifwanPppConfigRestartTimer, statMissingControlBlocks=statMissingControlBlocks, ifwanGroupPoll=ifwanGroupPoll, puTable=puTable, noTrap=noTrap, ipaddrEntry=ipaddrEntry, puLinkRemPu=puLinkRemPu, ifvceDVCLocalInbound=ifvceDVCLocalInbound, puBanBnnWindow=puBanBnnWindow, classIndex=classIndex, statPvcChOverflows=statPvcChOverflows, statIflanConnectionStatus=statIflanConnectionStatus)
mibBuilder.exportSymbols('CLEARTRAC7-MIB', setupReset=setupReset, ifwanTxHold_s=ifwanTxHold_s, badChecksum=badChecksum, sysDLCI=sysDLCI, ifwanSpeed_bps=ifwanSpeed_bps, ifwanClocking=ifwanClocking, ifvceDesc=ifvceDesc, statTxReleaseMessages=statTxReleaseMessages, ifwanPvcNumber=ifwanPvcNumber, statTimeNbReplySent=statTimeNbReplySent, bothFansUp=bothFansUp, ifwanCrc4=ifwanCrc4, statTimeClientSyncFailures=statTimeClientSyncFailures, statTxDisconnectMessages=statTxDisconnectMessages, cardDown=cardDown, statBridgePortDestination=statBridgePortDestination, sysPosNr=sysPosNr, schedulePort4=schedulePort4, phone=phone, bridgeAgingTime_s=bridgeAgingTime_s, statIfwanTrspLastError=statIfwanTrspLastError, sysRacksNr=sysRacksNr, statPvcSpeed=statPvcSpeed, ifwanIpxNetNum=ifwanIpxNetNum, statBridgeBridge=statBridgeBridge, pvcDlciAddress=pvcDlciAddress, statAlarmTime=statAlarmTime, statIflanProtocol=statIflanProtocol, statPvcMeanTx=statPvcMeanTx, pvcOspfEnable=pvcOspfEnable, statGrpDestName=statGrpDestName, ipstaticValid=ipstaticValid, ifwanHighPriorityTransparentClass=ifwanHighPriorityTransparentClass, ipstaticMask=ipstaticMask, ifvce=ifvce, sysVoiceHighestPriority=sysVoiceHighestPriority, ifwanFallBackSpeedEnable=ifwanFallBackSpeedEnable, statIflanBadFlags=statIflanBadFlags, iflanIpAddress=iflanIpAddress, iflanOspfEnable=iflanOspfEnable, statPvcOvrFrames=statPvcOvrFrames, bootpIpDestAddr1=bootpIpDestAddr1, statPvcrRouteNextHop=statPvcrRouteNextHop, puLinkRemoteUnit=puLinkRemoteUnit, proxyTrapIpAddr=proxyTrapIpAddr, sysRackId=sysRackId, bridge=bridge, statIfvceEntry=statIfvceEntry, statSystemAlarmNumber=statSystemAlarmNumber, ipstatic=ipstatic, ipstaticNumber=ipstaticNumber, statBootpNbReplySend=statBootpNbReplySend, ospfAreaTable=ospfAreaTable, proxyIpAddr=proxyIpAddr, pvcType=pvcType, sysThisPosId=sysThisPosId, iflanTr_Etr=iflanTr_Etr, statIfvceIndex=statIfvceIndex, statEstablishIndications=statEstablishIndications, schedule=schedule, filter=filter, classEntry=classEntry, statPvcrRouteIntrf=statPvcrRouteIntrf, ipaddrIfIndex=ipaddrIfIndex, puSdlcWindow=puSdlcWindow, ospfRangeEnable=ospfRangeEnable, statBridge=statBridge, sysDefaultIpAddr=sysDefaultIpAddr, puLlcTimeout_ms=puLlcTimeout_ms, statIfvceFaxMode=statIfvceFaxMode, statPuChSeqErrs=statPuChSeqErrs, statRxStatusEnquiryMessages=statRxStatusEnquiryMessages, statIflanMeanTx_kbps=statIflanMeanTx_kbps, ifwanLineCoding=ifwanLineCoding, statSystemMeanDecompRate=statSystemMeanDecompRate, statIflanIndex=statIflanIndex, ifwanPppNegociateIpAddress=ifwanPppNegociateIpAddress, ifwanSfType=ifwanSfType, sysAcceptLoop=sysAcceptLoop, bridgePriority=bridgePriority, statBridgePortTr_SegmentDuplicate=statBridgePortTr_SegmentDuplicate, pvcIpConnection=pvcIpConnection, schedulePort3=schedulePort3, pvcIpxConnection=pvcIpxConnection, fatalMsg=fatalMsg, sysVoiceClocking=sysVoiceClocking, iflan=iflan, ifwanMaxFrame=ifwanMaxFrame, puLlcDa=puLlcDa, ipstaticNextHop=ipstaticNextHop, statRxConnectMessages=statRxConnectMessages, ospfGlobalAutoVLink=ospfGlobalAutoVLink, bootpIpDestAddr4=bootpIpDestAddr4, ifwanMgmtInterface=ifwanMgmtInterface, ifwanBackupHang_s=ifwanBackupHang_s, ifwanChUse=ifwanChUse, pvcHuntForwardingBUnit=pvcHuntForwardingBUnit, cardup=cardup, ifwanCoding=ifwanCoding, pvcSubnetMask=pvcSubnetMask, statIfwanT1E1LCV=statIfwanT1E1LCV, statTxBytes=statTxBytes, slotIfIndex=slotIfIndex, statTimeNbRequestSent=statTimeNbRequestSent, iflanPriority=iflanPriority, ifwanRingNumber=ifwanRingNumber, statSystemSa=statSystemSa, ifwanInterface=ifwanInterface, filterActive=filterActive, puDlsSsap=puDlsSsap, ospfVLinkIndex=ospfVLinkIndex, statPvcFramesTx=statPvcFramesTx, pvcPriority=pvcPriority, sysHuntForwardingASvcAddress=sysHuntForwardingASvcAddress, ifvceIndex=ifvceIndex, ifwanPppAcceptAccmPeer=ifwanPppAcceptAccmPeer, puXidFormat=puXidFormat, sysPsMonitoring=sysPsMonitoring, sysTrapRackandPos=sysTrapRackandPos, statIfwanPeakRx=statIfwanPeakRx, statIflanEth_OneCollision=statIflanEth_OneCollision, ospfGlobal=ospfGlobal, statIflanRetries=statIflanRetries, statIfwanOvrOctets=statIfwanOvrOctets, sysVoiceLog=sysVoiceLog, ifvceLocalOutbound=ifvceLocalOutbound, pvcNetworkDlci=pvcNetworkDlci, pvcOspfDeadInt=pvcOspfDeadInt, iflanOspfHelloInt=iflanOspfHelloInt, statSystemPeakCompRate=statSystemPeakCompRate, statIfcemIndex=statIfcemIndex, ipxfilterType=ipxfilterType, ospfVLinkHelloInt=ospfVLinkHelloInt, iflanOspfRetransmitInt=iflanOspfRetransmitInt, slot=slot, iflanProtocol=iflanProtocol, schedulePort2=schedulePort2, ospfAreaEntry=ospfAreaEntry, sysBackplaneRipVersion=sysBackplaneRipVersion, pvcIpAddress=pvcIpAddress, statIflanPeakTx_kbps=statIflanPeakTx_kbps, pvcLlcConnection=pvcLlcConnection, statIflanBadFrames=statIflanBadFrames, statBridgePortTr_SingleRteFrameOut=statBridgePortTr_SingleRteFrameOut, puLlcMaxFrame=puLlcMaxFrame, periodStarted=periodStarted, statTxSetupMessages=statTxSetupMessages, statSvcOctetsRx=statSvcOctetsRx, ifvceDVCLocalOutbound=ifvceDVCLocalOutbound, intfDesc=intfDesc, statProtocolTimeouts=statProtocolTimeouts, q922Down=q922Down, ifwanBChannels=ifwanBChannels, ip=ip, ifwanSvcIframeRetransmissionsN200=ifwanSvcIframeRetransmissionsN200, statRxAcknowledgeExpiry=statRxAcknowledgeExpiry, ifwanT1E1InterBit=ifwanT1E1InterBit, phonePhoneNumber=phonePhoneNumber, ifwanEnquiryTimer_s=ifwanEnquiryTimer_s, ifvceRate8kx3=ifvceRate8kx3, statIfwanT1E1CSS=statIfwanT1E1CSS, statIfwanT1E1DM=statIfwanT1E1DM, ifvceRate4k8x1=ifvceRate4k8x1, statIfwanFramesRx=statIfwanFramesRx, pvcIndex=pvcIndex, pvcCompression=pvcCompression, statIflanEth_ExcessiveCollision=statIflanEth_ExcessiveCollision, ospf=ospf, bridgeStpEnable=bridgeStpEnable, ifwanBodLevel=ifwanBodLevel, ospfGlobalGlobalAreaId=ospfGlobalGlobalAreaId, ospfRangeIndex=ospfRangeIndex, puDlsIpSrc=puDlsIpSrc, intfEntry=intfEntry, ifwanIpxRip=ifwanIpxRip, ifwanOspfPassword=ifwanOspfPassword, pvc=pvc, statGrp=statGrp, ifwanQsigPbxAb=ifwanQsigPbxAb, ifvceFwdDelay_ms=ifvceFwdDelay_ms, pvcBackup=pvcBackup, ifwanIpRipTxRx=ifwanIpRipTxRx, statRxframes=statRxframes, ifwanSvcInactiveTimeoutT203=ifwanSvcInactiveTimeoutT203, statIflanEth_Align=statIflanEth_Align, ipaddrType=ipaddrType, ospfVLinkPassword=ospfVLinkPassword, iflanTr_Monitor=iflanTr_Monitor, ifvceAnalogLinkDwnBusy=ifvceAnalogLinkDwnBusy, statSvcPeakTx=statSvcPeakTx, iflanIpRipPassword=iflanIpRipPassword, sysSnmpTrapIpAddr4=sysSnmpTrapIpAddr4, ifwanTransparentClassNumber=ifwanTransparentClassNumber, puEntry=puEntry, statRxSetupMessages=statRxSetupMessages, statIflanEth_LateCollision=statIflanEth_LateCollision, pvcBrgConnection=pvcBrgConnection, iflanIpxRip=iflanIpxRip, ospfGlobalRackAreaId=ospfGlobalRackAreaId, statPvcIndex=statPvcIndex, badDestPort=badDestPort, statTxConnectMessages=statTxConnectMessages, statSvcFramesTx=statSvcFramesTx, scheduleNumber=scheduleNumber, ifwanT1E1LoopBack=ifwanT1E1LoopBack, ipxfilterIndex=ipxfilterIndex, statIflanEth_TwoCollisions=statIflanEth_TwoCollisions, sysDialTimer=sysDialTimer, sysSnmpTrapIpAddr1=sysSnmpTrapIpAddr1, schedulePort5=schedulePort5, ifwanOspfRetransmitInt=ifwanOspfRetransmitInt, ipaddrIndex=ipaddrIndex, ifwanPppAcceptIpAddress=ifwanPppAcceptIpAddress, statBootpFrameTooSmallToBeABootpFrame=statBootpFrameTooSmallToBeABootpFrame, statLinkEstablished=statLinkEstablished, sysHuntForwardingBUnit=sysHuntForwardingBUnit, ifwanModem=ifwanModem, phoneEntry=phoneEntry, statSvcFramesRx=statSvcFramesRx, statPuIndex=statPuIndex, puIndex=puIndex, ospfVLinkTransitDelay=ospfVLinkTransitDelay, ifwanSvcCallProceedingTimeoutT310=ifwanSvcCallProceedingTimeoutT310, intfIndex=intfIndex, ifwanIdle=ifwanIdle, ifvceMaxFaxModemRate=ifvceMaxFaxModemRate, pvcRemotePvc=pvcRemotePvc, ospfAreaImportASExt=ospfAreaImportASExt, bridgeHelloTime_s=bridgeHelloTime_s, statSvcError=statSvcError, timepTimeZoneSign=timepTimeZoneSign, ifwanExtNumber=ifwanExtNumber, ipxfilterTable=ipxfilterTable, statPvcEntry=statPvcEntry, intfSlotNumber=intfSlotNumber, statPvcChSeqErrs=statPvcChSeqErrs, statBootpInvalidOpCodeField=statBootpInvalidOpCodeField, ifvceR2ExtendedDigitSrc=ifvceR2ExtendedDigitSrc, puXidPuType=puXidPuType, ospfRangeStatus=ospfRangeStatus, onePsDown=onePsDown, statIfwanT1E1SES=statIfwanT1E1SES, statPvcPeakTx=statPvcPeakTx, statTimeInvalidPortNumbers=statTimeInvalidPortNumbers, schedulePort8=schedulePort8, statPvcrRouteName=statPvcrRouteName, puDlsMaxFrame=puDlsMaxFrame, statTimep=statTimep, intfNumber=intfNumber, statSvcSpeed=statSvcSpeed, pvcPvcClass=pvcPvcClass, cleartrac7=cleartrac7, statSvcIndex=statSvcIndex, sysPosRackId=sysPosRackId)
mibBuilder.exportSymbols('CLEARTRAC7-MIB', ifwanPppRemoteSubnetMask=ifwanPppRemoteSubnetMask, ifwanDialer=ifwanDialer, pvcHuntForwardingAUnit=pvcHuntForwardingAUnit, statIfvceDvcPortInUse=statIfvceDvcPortInUse, ifwanSvcNetworkAddress=ifwanSvcNetworkAddress, statTxStatusMessages=statTxStatusMessages, statBootpRequestReceivedOnPortBootpc=statBootpRequestReceivedOnPortBootpc, ipxfilterSap=ipxfilterSap, statBridgePortDesignatedRoot=statBridgePortDesignatedRoot, ifwanChExp=ifwanChExp, scheduleTable=scheduleTable, statSystemClearAlarms=statSystemClearAlarms, statBridgeBridgeFrameFiltered=statBridgeBridgeFrameFiltered, accountingFileOverflow=accountingFileOverflow, scheduleBeginTime=scheduleBeginTime, sysJitterBuf=sysJitterBuf, ifwanPollDelay_ms=ifwanPollDelay_ms, puLlcRetry=puLlcRetry, statAlarmDate=statAlarmDate, puLinkClassNumber=puLinkClassNumber, ifwanClassNumber=ifwanClassNumber, ospfVLinkNeighborRtrId=ospfVLinkNeighborRtrId, statPvcOvrOctets=statPvcOvrOctets, ifwanRxFlow=ifwanRxFlow, statIfwanTrspState=statIfwanTrspState, ifwanCllm=ifwanCllm, statAlarmArg=statAlarmArg, bridgeForwardDelay_s=bridgeForwardDelay_s, sysSnmpTrapIpAddr2=sysSnmpTrapIpAddr2, ifwanOspfHelloInt=ifwanOspfHelloInt, sysPsAndFansMonitoring=sysPsAndFansMonitoring, frLinkDown=frLinkDown, statIfwanOctetsTx=statIfwanOctetsTx, ifwanBodHang_s=ifwanBodHang_s, puBanDa=puBanDa, statIfwanBadFlags=statIfwanBadFlags, statPuMode=statPuMode, ifwanCondLMIPort=ifwanCondLMIPort, statBridgePortDesignatedBridge=statBridgePortDesignatedBridge, sysRingVolt=sysRingVolt, phoneIndex=phoneIndex, statTimeClientRetransmissions=statTimeClientRetransmissions, proxyTable=proxyTable, ifwanTxStartCop=ifwanTxStartCop, statIfwanQ922State=statIfwanQ922State, proxyIpMask=proxyIpMask, iflanOspfTransitDelay=iflanOspfTransitDelay, statBootp=statBootp, timepClientUdpTimeout=timepClientUdpTimeout, iflanEntry=iflanEntry, ifvceToneDetectRegen_s=ifvceToneDetectRegen_s, statIflanTable=statIflanTable, ospfRangeAddToArea=ospfRangeAddToArea, ospfVLinkNumber=ospfVLinkNumber, ifwanTxFlow=ifwanTxFlow, sysDate=sysDate, statPvcrRouteMetric=statPvcrRouteMetric, bothPsUp=bothPsUp, pvcMaxFrame=pvcMaxFrame, puBanBnnRetry=puBanBnnRetry, ifwanCellPacketization=ifwanCellPacketization, iflanTr_RingNumber=iflanTr_RingNumber, statBridgePortTr_SpecRteFrameIn=statBridgePortTr_SpecRteFrameIn, timepTimeZone=timepTimeZone, ifwanSignaling=ifwanSignaling, ifwanMsn3=ifwanMsn3, noMsg=noMsg, ifvceExtendedDigitSrc=ifvceExtendedDigitSrc, iflanPhysAddr=iflanPhysAddr, statBridgeBridgeRootCost=statBridgeBridgeRootCost, ipxfilterEnable=ipxfilterEnable, ifwanRemoteUnit=ifwanRemoteUnit, statTimeNbRequestReceived=statTimeNbRequestReceived, ifvceToneOn_ms=ifvceToneOn_ms, sysContact=sysContact, statIfcemClockState=statIfcemClockState, pvcDialTimeout=pvcDialTimeout, schedulePort6=schedulePort6, sysHuntForwardingBSvcAddress=sysHuntForwardingBSvcAddress, sysAutoSaveDelay=sysAutoSaveDelay, pvcTable=pvcTable, statBridgeBridgeRootPort=statBridgeBridgeRootPort, ifwanSfMode=ifwanSfMode, puLlcTr_Routing=puLlcTr_Routing, statIflanEth_CarrierSense=statIflanEth_CarrierSense, ifwanBackupCall_s=ifwanBackupCall_s, statSvcInfoSignal=statSvcInfoSignal, classWeight=classWeight, pvcBurstInfoRate=pvcBurstInfoRate, puSdlcMaxFrame=puSdlcMaxFrame, pvcUp=pvcUp, statIfwanSpeed=statIfwanSpeed, statIflanMeanRx_kbps=statIflanMeanRx_kbps, statGrpIndex=statGrpIndex, oneOrMoreFanDown=oneOrMoreFanDown, pvcIpxRip=pvcIpxRip, statSvcState=statSvcState, ifwanDuplex=ifwanDuplex, bootpMaxHops=bootpMaxHops, ifwanFlowControl=ifwanFlowControl, sysExtensionNumLength=sysExtensionNumLength, statPuCompErrs=statPuCompErrs, ifwanPppRequestMagicNum=ifwanPppRequestMagicNum, scheduleDay=scheduleDay, statIfvceOverruns=statIfvceOverruns, pvcBackupHang_s=pvcBackupHang_s, statBridgePort=statBridgePort, ifwanMsn1=ifwanMsn1) |
# Author: Stephen Mugisha
# FSM exceptions
class InitializationError(Exception):
"""
State Machine InitializationError
exception raised.
"""
def __init__(self, message, payload=None):
self.message = message
self.payload = payload #more exception args
def __str__(self):
return str(self.message)
| class Initializationerror(Exception):
"""
State Machine InitializationError
exception raised.
"""
def __init__(self, message, payload=None):
self.message = message
self.payload = payload
def __str__(self):
return str(self.message) |
def generate_associated_dt_annotation(
associations, orig_col, primary_time=False, description="", qualifies=None
):
"""if associated with another col through dt also annotate that col"""
cols = [associations[x] for x in associations.keys() if x.find("_format") == -1]
entry = {}
for col in cols:
for x in associations.keys():
if associations[x] == col:
t_type = x.replace("associated_", "")
t_format = associations[f"associated_{t_type}_format"]
entry[col] = {
"Name": col,
"Description": "",
"Type": "Date",
"Time": t_type,
"primary_time": primary_time,
"dateAssociation": True,
"format": t_format,
"associated_columns": {},
}
for x in associations.keys():
if x.find("_format") == -1:
if col == associations[x]:
continue
entry[col]["associated_columns"][
x.replace("associated_", "")
] = associations[x]
if col != orig_col:
if qualifies != None:
entry[col]["qualifies"] = qualifies
entry[col]["redir_col"] = orig_col
entry[col]["Description"] = description
return entry
def generate_associated_coord_annotation(
col, geo_type, associated_column, pg=False, description=""
):
return {
col: {
"Name": col,
"Description": description,
"Type": "Geo",
"Geo": geo_type,
"primary_geo": pg,
"isGeoPair": True,
"Coord_Pair_Form": associated_column,
"redir_col": associated_column,
}
}
def one_primary(annotations):
primary_time_exists = False
primary_country_exists = False
primary_admin1_exists = False
primary_admin2_exists = False
primary_admin3_exists = False
primary_coord_exists = False
for x in annotations.keys():
if "primary_time" in annotations[x]:
primary_time_exists = True
if "primary_geo" in annotations[x] and "Geo" in annotations[x]:
if annotations[x]["Geo"] in ["Country", "ISO2", "ISO3"]:
primary_country_exists = True
elif annotations[x]["Geo"] == "State/Territory":
primary_admin1_exists = True
elif annotations[x]["Geo"] == "County/District":
primary_admin2_exists = True
elif annotations[x]["Geo"] == "Municipality/Town":
primary_admin3_exists = True
elif annotations[x]["Geo"] in ["Latitude", "Longitude", "Coordinates"]:
primary_coord_exists = True
return (
primary_time_exists,
primary_country_exists,
primary_admin1_exists,
primary_admin2_exists,
primary_admin3_exists,
primary_coord_exists,
)
| def generate_associated_dt_annotation(associations, orig_col, primary_time=False, description='', qualifies=None):
"""if associated with another col through dt also annotate that col"""
cols = [associations[x] for x in associations.keys() if x.find('_format') == -1]
entry = {}
for col in cols:
for x in associations.keys():
if associations[x] == col:
t_type = x.replace('associated_', '')
t_format = associations[f'associated_{t_type}_format']
entry[col] = {'Name': col, 'Description': '', 'Type': 'Date', 'Time': t_type, 'primary_time': primary_time, 'dateAssociation': True, 'format': t_format, 'associated_columns': {}}
for x in associations.keys():
if x.find('_format') == -1:
if col == associations[x]:
continue
entry[col]['associated_columns'][x.replace('associated_', '')] = associations[x]
if col != orig_col:
if qualifies != None:
entry[col]['qualifies'] = qualifies
entry[col]['redir_col'] = orig_col
entry[col]['Description'] = description
return entry
def generate_associated_coord_annotation(col, geo_type, associated_column, pg=False, description=''):
return {col: {'Name': col, 'Description': description, 'Type': 'Geo', 'Geo': geo_type, 'primary_geo': pg, 'isGeoPair': True, 'Coord_Pair_Form': associated_column, 'redir_col': associated_column}}
def one_primary(annotations):
primary_time_exists = False
primary_country_exists = False
primary_admin1_exists = False
primary_admin2_exists = False
primary_admin3_exists = False
primary_coord_exists = False
for x in annotations.keys():
if 'primary_time' in annotations[x]:
primary_time_exists = True
if 'primary_geo' in annotations[x] and 'Geo' in annotations[x]:
if annotations[x]['Geo'] in ['Country', 'ISO2', 'ISO3']:
primary_country_exists = True
elif annotations[x]['Geo'] == 'State/Territory':
primary_admin1_exists = True
elif annotations[x]['Geo'] == 'County/District':
primary_admin2_exists = True
elif annotations[x]['Geo'] == 'Municipality/Town':
primary_admin3_exists = True
elif annotations[x]['Geo'] in ['Latitude', 'Longitude', 'Coordinates']:
primary_coord_exists = True
return (primary_time_exists, primary_country_exists, primary_admin1_exists, primary_admin2_exists, primary_admin3_exists, primary_coord_exists) |
# -*- coding: utf-8 -*-
print ("Hello World!")
print ("Hello Again")
print ("I like Typing this.")
print ("This is fun.")
print ('Yay! Printing.')
print ("I'd much rather you 'not'.")
print ('I "said" do not touch this.') | print('Hello World!')
print('Hello Again')
print('I like Typing this.')
print('This is fun.')
print('Yay! Printing.')
print("I'd much rather you 'not'.")
print('I "said" do not touch this.') |
#!/usr/bin/env python
polyCorners = 4
poly_1_x = [22.017965, 22.017852, 22.016992, 22.017187]
poly_1_y = [85.432761, 85.433074, 85.432577, 85.432243]
poly_2_x = [22.017187, 22.016992, 22.015849, 22.015982]
poly_2_y = [85.432243, 85.432577, 85.431865, 85.431574]
poly_3_x = [22.015850, 22.015636, 22.015874, 22.016053]
poly_3_y = [85.431406, 85.43173, 85.431889, 85.431516]
def main():
point_M = (22.017603, 85.432641)
point_L = (22.016598, 85.432157)
point_O = (22.015838, 85.431621)
print("Does the point{} lie in the polygon? {}".format(str(point_O), pointInPolygon(point_O, poly_3_x, poly_3_y)))
def pointInPolygon(point, polyX, polyY):
i = 0
j = polyCorners-1
x = point[0]
y = point[1]
oddNodes = False
print(polyX)
print(polyY)
for i in range(0, polyCorners):
if((polyY[i]<y and polyY[j]>=y) or (polyY[j]<y and polyY[i]>=y)):
if (polyX[i]+(y-polyY[i])/(polyY[j]-polyY[i])*(polyX[j]-polyX[i])<x):
oddNodes = not oddNodes
j=i
return oddNodes
if __name__=="__main__":
main() | poly_corners = 4
poly_1_x = [22.017965, 22.017852, 22.016992, 22.017187]
poly_1_y = [85.432761, 85.433074, 85.432577, 85.432243]
poly_2_x = [22.017187, 22.016992, 22.015849, 22.015982]
poly_2_y = [85.432243, 85.432577, 85.431865, 85.431574]
poly_3_x = [22.01585, 22.015636, 22.015874, 22.016053]
poly_3_y = [85.431406, 85.43173, 85.431889, 85.431516]
def main():
point_m = (22.017603, 85.432641)
point_l = (22.016598, 85.432157)
point_o = (22.015838, 85.431621)
print('Does the point{} lie in the polygon? {}'.format(str(point_O), point_in_polygon(point_O, poly_3_x, poly_3_y)))
def point_in_polygon(point, polyX, polyY):
i = 0
j = polyCorners - 1
x = point[0]
y = point[1]
odd_nodes = False
print(polyX)
print(polyY)
for i in range(0, polyCorners):
if polyY[i] < y and polyY[j] >= y or (polyY[j] < y and polyY[i] >= y):
if polyX[i] + (y - polyY[i]) / (polyY[j] - polyY[i]) * (polyX[j] - polyX[i]) < x:
odd_nodes = not oddNodes
j = i
return oddNodes
if __name__ == '__main__':
main() |
print (True and True)
print (True and False)
print (False and True)
print (False and False)
print (True or True)
print (True or False)
print (False or True)
print (False or False)
| print(True and True)
print(True and False)
print(False and True)
print(False and False)
print(True or True)
print(True or False)
print(False or True)
print(False or False) |
#!/usr/bin/env python3
print("hello")
f = open('python file.txt', 'a+')
f.write("Hello")
f.close() | print('hello')
f = open('python file.txt', 'a+')
f.write('Hello')
f.close() |
class Person(dict):
def __init__(self, person_id, sex, phenotype, studies):
self.person_id = str(person_id)
self.sex = sex
self.phenotype = phenotype
self.studies = studies
def __repr__(self):
return f'Person("{self.person_id}", "{self.sex}", {self.phenotype}, {self.studies})'
def __str__(self):
return f'{self.person_id}\t{self.sex}\t{",".join(self.phenotype)}\t{",".join(self.studies)}'
def __hash__(self):
return hash(f'{self.person_id}')
def __eq__(self, other):
return hash(self) == hash(other)
def __gt__(self, other):
return self.person_id > other.person_id
| class Person(dict):
def __init__(self, person_id, sex, phenotype, studies):
self.person_id = str(person_id)
self.sex = sex
self.phenotype = phenotype
self.studies = studies
def __repr__(self):
return f'Person("{self.person_id}", "{self.sex}", {self.phenotype}, {self.studies})'
def __str__(self):
return f"{self.person_id}\t{self.sex}\t{','.join(self.phenotype)}\t{','.join(self.studies)}"
def __hash__(self):
return hash(f'{self.person_id}')
def __eq__(self, other):
return hash(self) == hash(other)
def __gt__(self, other):
return self.person_id > other.person_id |
""" A file designed to have lines of similarity when compared to similar_lines_b
We use lorm-ipsum to generate 'random' code. """
# Copyright (c) 2020 Frank Harrison <frank@doublethefish.com>
def adipiscing(elit):
etiam = "id"
dictum = "purus,"
vitae = "pretium"
neque = "Vivamus"
nec = "ornare"
tortor = "sit"
return etiam, dictum, vitae, neque, nec, tortor
class Amet:
def similar_function_3_lines(self, tellus): # line same #1
agittis = 10 # line same #2
tellus *= 300 # line same #3
return agittis, tellus # line diff
def lorem(self, ipsum):
dolor = "sit"
amet = "consectetur"
return (lorem, dolor, amet)
def similar_function_5_lines(self, similar): # line same #1
some_var = 10 # line same #2
someother_var *= 300 # line same #3
fusce = "sit" # line same #4
amet = "tortor" # line same #5
return some_var, someother_var, fusce, amet # line diff
def __init__(self, moleskie, lectus="Mauris", ac="pellentesque"):
metus = "ut"
lobortis = "urna."
Integer = "nisl"
(mauris,) = "interdum"
non = "odio"
semper = "aliquam"
malesuada = "nunc."
iaculis = "dolor"
facilisis = "ultrices"
vitae = "ut."
return (
metus,
lobortis,
Integer,
mauris,
non,
semper,
malesuada,
iaculis,
facilisis,
vitae,
)
def similar_function_3_lines(self, tellus): # line same #1
agittis = 10 # line same #2
tellus *= 300 # line same #3
return agittis, tellus # line diff
| """ A file designed to have lines of similarity when compared to similar_lines_b
We use lorm-ipsum to generate 'random' code. """
def adipiscing(elit):
etiam = 'id'
dictum = 'purus,'
vitae = 'pretium'
neque = 'Vivamus'
nec = 'ornare'
tortor = 'sit'
return (etiam, dictum, vitae, neque, nec, tortor)
class Amet:
def similar_function_3_lines(self, tellus):
agittis = 10
tellus *= 300
return (agittis, tellus)
def lorem(self, ipsum):
dolor = 'sit'
amet = 'consectetur'
return (lorem, dolor, amet)
def similar_function_5_lines(self, similar):
some_var = 10
someother_var *= 300
fusce = 'sit'
amet = 'tortor'
return (some_var, someother_var, fusce, amet)
def __init__(self, moleskie, lectus='Mauris', ac='pellentesque'):
metus = 'ut'
lobortis = 'urna.'
integer = 'nisl'
(mauris,) = 'interdum'
non = 'odio'
semper = 'aliquam'
malesuada = 'nunc.'
iaculis = 'dolor'
facilisis = 'ultrices'
vitae = 'ut.'
return (metus, lobortis, Integer, mauris, non, semper, malesuada, iaculis, facilisis, vitae)
def similar_function_3_lines(self, tellus):
agittis = 10
tellus *= 300
return (agittis, tellus) |
"""
Configuration variables
"""
start_test_items_map = {
'first': 0,
'second': 1,
'third': 2,
'fourth': 3,
'fifth': 4,
'sixth': 5,
'seventh': 6,
'eighth': 7,
'ninth': 8,
'tenth': 9,
}
end_test_items_map = {
'tenth_to_last': 0,
'ninth_to_last': 1,
'eighth_to_last': 2,
'seventh_to_last': 3,
'sixth_to_last': 4,
'fifth_to_last': 5,
'fourth_to_last': 6,
'third_to_last': 7,
'second_to_last': 8,
'last': 9,
}
special_test_items = list(start_test_items_map.keys()) + list(end_test_items_map.keys())
| """
Configuration variables
"""
start_test_items_map = {'first': 0, 'second': 1, 'third': 2, 'fourth': 3, 'fifth': 4, 'sixth': 5, 'seventh': 6, 'eighth': 7, 'ninth': 8, 'tenth': 9}
end_test_items_map = {'tenth_to_last': 0, 'ninth_to_last': 1, 'eighth_to_last': 2, 'seventh_to_last': 3, 'sixth_to_last': 4, 'fifth_to_last': 5, 'fourth_to_last': 6, 'third_to_last': 7, 'second_to_last': 8, 'last': 9}
special_test_items = list(start_test_items_map.keys()) + list(end_test_items_map.keys()) |
A,B = map(int,input().split())
if A >= 13:
print(B)
elif A >= 6:
print(B//2)
else:
print(0)
| (a, b) = map(int, input().split())
if A >= 13:
print(B)
elif A >= 6:
print(B // 2)
else:
print(0) |
#SQL Server details
SQL_HOST = 'localhost'
SQL_USERNAME = 'root'
SQL_PASSWORD = ''
#Cache details - whether to call a URL once an ingestion script is finished
RESET_CACHE = False
RESET_CACHE_URL = 'http://example.com/visualization_reload/'
#Fab - configuration for deploying to a remote server
FAB_HOSTS = []
FAB_GITHUB_URL = 'https://github.com/UQ-UQx/injestor.git'
FAB_REMOTE_PATH = '/file/to/your/deployment/location'
#Ignored services
IGNORE_SERVICES = ['extractsample', 'personcourse']
#File output
OUTPUT_DIRECTORY = '/tmp' | sql_host = 'localhost'
sql_username = 'root'
sql_password = ''
reset_cache = False
reset_cache_url = 'http://example.com/visualization_reload/'
fab_hosts = []
fab_github_url = 'https://github.com/UQ-UQx/injestor.git'
fab_remote_path = '/file/to/your/deployment/location'
ignore_services = ['extractsample', 'personcourse']
output_directory = '/tmp' |
__description__ = 'Wordpress Two-Factor Authentication Brute-forcer'
__title__ = 'WPBiff'
__version_info__ = ('0', '1', '1')
__version__ = '.'.join(__version_info__)
__author__ = 'Gabor Szathmari'
__credits__ = ['Gabor Szathmari']
__maintainer__ = 'Gabor Szathmari'
__email__ = 'gszathmari@gmail.com'
__status__ = 'beta'
__license__ = 'MIT'
__copyright__ = 'Copyright (c) 2015 Gabor Szathmari'
__website__ = 'http://github.com/gszathmari/wpbiff'
| __description__ = 'Wordpress Two-Factor Authentication Brute-forcer'
__title__ = 'WPBiff'
__version_info__ = ('0', '1', '1')
__version__ = '.'.join(__version_info__)
__author__ = 'Gabor Szathmari'
__credits__ = ['Gabor Szathmari']
__maintainer__ = 'Gabor Szathmari'
__email__ = 'gszathmari@gmail.com'
__status__ = 'beta'
__license__ = 'MIT'
__copyright__ = 'Copyright (c) 2015 Gabor Szathmari'
__website__ = 'http://github.com/gszathmari/wpbiff' |
"""
Link:
Language: Python
Written by: Mostofa Adib Shakib
Time complexity: O(n)
Space Complexity: O(1)
"""
T = int(input())
for x in range(1, T + 1):
N, M, Q = map(int, input().split())
min1 = (M-Q) + (N-Q+1) + (M-1)
min2 = (M-1) + 1 + N
y = min(min1, min2)
print("Case #{}: {}".format(x, y), flush = True) | """
Link:
Language: Python
Written by: Mostofa Adib Shakib
Time complexity: O(n)
Space Complexity: O(1)
"""
t = int(input())
for x in range(1, T + 1):
(n, m, q) = map(int, input().split())
min1 = M - Q + (N - Q + 1) + (M - 1)
min2 = M - 1 + 1 + N
y = min(min1, min2)
print('Case #{}: {}'.format(x, y), flush=True) |
N = int(input())
NG = set([int(input()) for _ in range(3)])
if N in NG:
print("NO")
exit(0)
for _ in range(100):
if 0 <= N <= 3:
print("YES")
break
if N - 3 not in NG:
N -= 3
elif N - 2 not in NG:
N -= 2
elif N - 1 not in NG:
N -= 1
else:
print("NO")
| n = int(input())
ng = set([int(input()) for _ in range(3)])
if N in NG:
print('NO')
exit(0)
for _ in range(100):
if 0 <= N <= 3:
print('YES')
break
if N - 3 not in NG:
n -= 3
elif N - 2 not in NG:
n -= 2
elif N - 1 not in NG:
n -= 1
else:
print('NO') |
def master_plan():
yield from bps.mvr(giantxy.x,x_range/2)
yield from bps.mvr(giantxy.y,y_range/2)
for _ in range(6):
yield from bps.mvr(giantxy.x,-x_range)
yield from bps.mvr(giantxy.y,-1)
yield from bps.mvr(giantxy.x,+x_range)
yield from bps.mvr(giantxy.y,-1)
yield from bps.mvr(giantxy.x,-x_range)
yield from bps.mvr(giantxy.y,-1)
yield from bps.mvr(giantxy.x,+x_range)
yield from bps.mvr(giantxy.x,-x_range/2)
yield from bps.mvr(giantxy.y,y_range/2)
| def master_plan():
yield from bps.mvr(giantxy.x, x_range / 2)
yield from bps.mvr(giantxy.y, y_range / 2)
for _ in range(6):
yield from bps.mvr(giantxy.x, -x_range)
yield from bps.mvr(giantxy.y, -1)
yield from bps.mvr(giantxy.x, +x_range)
yield from bps.mvr(giantxy.y, -1)
yield from bps.mvr(giantxy.x, -x_range)
yield from bps.mvr(giantxy.y, -1)
yield from bps.mvr(giantxy.x, +x_range)
yield from bps.mvr(giantxy.x, -x_range / 2)
yield from bps.mvr(giantxy.y, y_range / 2) |
def extractAquaScans(item):
"""
"""
if 'Manga' in item['tags']:
return None
vol, chp, frag, postfix = extractVolChapterFragmentPostfix(item['title'])
if not (chp or vol or frag) or 'preview' in item['title'].lower():
return None
bad_tags = [
'Majo no Shinzou',
'Kanata no Togabito ga Tatakau Riyuu',
'Usotsuki Wakusei',
'Shichifuku Mafia',
'Rose Guns Days',
'Dangan Honey',
'Komomo Confiserie',
'Moekoi',
'Higan no Ishi',
]
if any([bad in item['tags'] for bad in bad_tags]):
return None
tagmap = [
('Okobore Hime to Entaku no Kishi', 'Okoborehime to Entaku no Kishi', 'translated'),
('Sugar Apple Fairy Tale', 'Sugar Apple Fairy Tale', 'translated'),
]
for tagname, name, tl_type in tagmap:
if tagname in item['tags']:
return buildReleaseMessageWithType(item, name, vol, chp, frag=frag, postfix=postfix, tl_type=tl_type)
return False | def extract_aqua_scans(item):
"""
"""
if 'Manga' in item['tags']:
return None
(vol, chp, frag, postfix) = extract_vol_chapter_fragment_postfix(item['title'])
if not (chp or vol or frag) or 'preview' in item['title'].lower():
return None
bad_tags = ['Majo no Shinzou', 'Kanata no Togabito ga Tatakau Riyuu', 'Usotsuki Wakusei', 'Shichifuku Mafia', 'Rose Guns Days', 'Dangan Honey', 'Komomo Confiserie', 'Moekoi', 'Higan no Ishi']
if any([bad in item['tags'] for bad in bad_tags]):
return None
tagmap = [('Okobore Hime to Entaku no Kishi', 'Okoborehime to Entaku no Kishi', 'translated'), ('Sugar Apple Fairy Tale', 'Sugar Apple Fairy Tale', 'translated')]
for (tagname, name, tl_type) in tagmap:
if tagname in item['tags']:
return build_release_message_with_type(item, name, vol, chp, frag=frag, postfix=postfix, tl_type=tl_type)
return False |
number =int(raw_input("enter number:"))
word =str(raw_input("enter word:"))
if number == 0 or number > 1:
print ("%s %ss." % (number,word))
else:
print("%s %s." % (number,word))
if word[-3:] == "ife":
print( word[:-3] + "ives")
elif word[-2:] == "sh":
print(word[:-2] + "shes" )
elif word[-2:] == "ch":
print(word[:-2] + "ches")
elif word[-2:] == "us":
print(word[:-2] + "i")
elif word[-2:] == "ay":
print(word[:-2] + "ays")
elif word[-2:] == "oy":
print(word[:-2] + "oys")
elif word[-2:] == "ey":
print(word[:-2] + "eys")
elif word[-2:] == "uy":
print(word[:-2] + "uys")
elif word[-1:] == "y":
print(word[:-1] + "ies")
else:
print(word + "s")
| number = int(raw_input('enter number:'))
word = str(raw_input('enter word:'))
if number == 0 or number > 1:
print('%s %ss.' % (number, word))
else:
print('%s %s.' % (number, word))
if word[-3:] == 'ife':
print(word[:-3] + 'ives')
elif word[-2:] == 'sh':
print(word[:-2] + 'shes')
elif word[-2:] == 'ch':
print(word[:-2] + 'ches')
elif word[-2:] == 'us':
print(word[:-2] + 'i')
elif word[-2:] == 'ay':
print(word[:-2] + 'ays')
elif word[-2:] == 'oy':
print(word[:-2] + 'oys')
elif word[-2:] == 'ey':
print(word[:-2] + 'eys')
elif word[-2:] == 'uy':
print(word[:-2] + 'uys')
elif word[-1:] == 'y':
print(word[:-1] + 'ies')
else:
print(word + 's') |
FIELDS_EN = {
'title': lambda **kwargs: ' renamed project from "{from}" to "{to}"'.format(**kwargs),
'short': lambda **kwargs: ' changed short name of project from "{from}" to "{to}"'.format(**kwargs),
'description': lambda **kwargs: ' changed description of project from "{from}" to "{to}"'.format(**kwargs),
'creator': lambda **kwargs: ' changed creator of project from "@{from}" to "@{to}"'.format(**kwargs),
'telegramChannel': lambda **kwargs: ' changed Telegram channel setting from "{from}" to "{to}"'.format(**kwargs),
'slackChannel': lambda **kwargs: ' changed Slack channel setting from "{from}" to "{to}"'.format(**kwargs),
}
| fields_en = {'title': lambda **kwargs: ' renamed project from "{from}" to "{to}"'.format(**kwargs), 'short': lambda **kwargs: ' changed short name of project from "{from}" to "{to}"'.format(**kwargs), 'description': lambda **kwargs: ' changed description of project from "{from}" to "{to}"'.format(**kwargs), 'creator': lambda **kwargs: ' changed creator of project from "@{from}" to "@{to}"'.format(**kwargs), 'telegramChannel': lambda **kwargs: ' changed Telegram channel setting from "{from}" to "{to}"'.format(**kwargs), 'slackChannel': lambda **kwargs: ' changed Slack channel setting from "{from}" to "{to}"'.format(**kwargs)} |
# -*- coding: utf-8 -*-
class PeekableGenerator(object):
def __init__(self, generator):
self.__generator = generator
self.__element = None
self.__isset = False
self.__more = False
try:
self.__element = generator.next()
self.__more = True
self.__isset = True
except StopIteration:
pass
def hasMore(self):
return self.__more or self.__isset
def peek(self):
if not self.hasMore():
assert "Shouldn't happen"
raise StopIteration
return self.__element
def next(self):
if not self.hasMore():
assert "Shouldn't happen"
raise StopIteration
self.__more == self.__isset
element = self.__element
self.__isset = False
try:
self.__element = self.__generator.next()
self.__isset = True
except StopIteration:
self.__isset = False
return element | class Peekablegenerator(object):
def __init__(self, generator):
self.__generator = generator
self.__element = None
self.__isset = False
self.__more = False
try:
self.__element = generator.next()
self.__more = True
self.__isset = True
except StopIteration:
pass
def has_more(self):
return self.__more or self.__isset
def peek(self):
if not self.hasMore():
assert "Shouldn't happen"
raise StopIteration
return self.__element
def next(self):
if not self.hasMore():
assert "Shouldn't happen"
raise StopIteration
self.__more == self.__isset
element = self.__element
self.__isset = False
try:
self.__element = self.__generator.next()
self.__isset = True
except StopIteration:
self.__isset = False
return element |
def get_member_guaranteed(ctx, lookup):
if len(ctx.message.mentions) > 0:
return ctx.message.mentions[0]
if lookup.isdigit():
result = ctx.guild.get_member(int(lookup))
if result:
return result
if "#" in lookup:
result = ctx.guild.get_member_named(lookup)
if result:
return result
for member in ctx.guild.members:
if member.display_name.lower() == lookup.lower():
return member
return None
def get_member_guaranteed_custom_guild(ctx, guild, lookup):
if len(ctx.message.mentions) > 0:
return ctx.message.mentions[0]
if lookup.isdigit():
result = guild.get_member(int(lookup))
if result:
return result
if "#" in lookup:
result = guild.get_member_named(lookup)
if result:
return result
for member in guild.members:
if member.display_name.lower() == lookup.lower():
return member
return None
| def get_member_guaranteed(ctx, lookup):
if len(ctx.message.mentions) > 0:
return ctx.message.mentions[0]
if lookup.isdigit():
result = ctx.guild.get_member(int(lookup))
if result:
return result
if '#' in lookup:
result = ctx.guild.get_member_named(lookup)
if result:
return result
for member in ctx.guild.members:
if member.display_name.lower() == lookup.lower():
return member
return None
def get_member_guaranteed_custom_guild(ctx, guild, lookup):
if len(ctx.message.mentions) > 0:
return ctx.message.mentions[0]
if lookup.isdigit():
result = guild.get_member(int(lookup))
if result:
return result
if '#' in lookup:
result = guild.get_member_named(lookup)
if result:
return result
for member in guild.members:
if member.display_name.lower() == lookup.lower():
return member
return None |
class Solution:
def isIsomorphic(self, s: str, t: str) -> bool:
if len(s) != len(t):
return False
s_t_dic = {}
t_s_dic = {}
n = len(s)
for i in range(n):
if (s[i] not in s_t_dic) and (t[i] not in t_s_dic):
s_t_dic[s[i]] = t[i]
t_s_dic[t[i]] = s[i]
elif s_t_dic.get(s[i]) != t[i] or t_s_dic.get(t[i]) != s[i]:
return False
return True
s = Solution()
print(s.isIsomorphic("egg", "add"))
print(s.isIsomorphic("foo", "bar"))
print(s.isIsomorphic("paper", "title"))
| class Solution:
def is_isomorphic(self, s: str, t: str) -> bool:
if len(s) != len(t):
return False
s_t_dic = {}
t_s_dic = {}
n = len(s)
for i in range(n):
if s[i] not in s_t_dic and t[i] not in t_s_dic:
s_t_dic[s[i]] = t[i]
t_s_dic[t[i]] = s[i]
elif s_t_dic.get(s[i]) != t[i] or t_s_dic.get(t[i]) != s[i]:
return False
return True
s = solution()
print(s.isIsomorphic('egg', 'add'))
print(s.isIsomorphic('foo', 'bar'))
print(s.isIsomorphic('paper', 'title')) |
class RandomListNode():
def __init__(self, x: int):
self.label = x
self.next = None
self.random = None
class Solution():
def copy_random_list(self, root: RandomListNode) -> RandomListNode:
head = None
if root is not None:
pointers = {}
new_root = RandomListNode(root.label)
pointers[id(root)] = new_root
head = new_root
while (root is not None and
(root.next is not None or root.random is not None)):
if root.next is not None:
if id(root.next) not in pointers:
new_root.next = RandomListNode(root.next.label)
pointers[id(root.next)] = new_root.next
else:
new_root.next = pointers[id(root.next)]
if root.random is not None:
if id(root.random) not in pointers:
new_root.random = RandomListNode(root.random.label)
pointers[id(root.random)] = new_root.random
else:
new_root.random = pointers[id(root.random)]
root = root.next
new_root = new_root.next
return head
| class Randomlistnode:
def __init__(self, x: int):
self.label = x
self.next = None
self.random = None
class Solution:
def copy_random_list(self, root: RandomListNode) -> RandomListNode:
head = None
if root is not None:
pointers = {}
new_root = random_list_node(root.label)
pointers[id(root)] = new_root
head = new_root
while root is not None and (root.next is not None or root.random is not None):
if root.next is not None:
if id(root.next) not in pointers:
new_root.next = random_list_node(root.next.label)
pointers[id(root.next)] = new_root.next
else:
new_root.next = pointers[id(root.next)]
if root.random is not None:
if id(root.random) not in pointers:
new_root.random = random_list_node(root.random.label)
pointers[id(root.random)] = new_root.random
else:
new_root.random = pointers[id(root.random)]
root = root.next
new_root = new_root.next
return head |
# Copyright 2016 The Chromium OS Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
# These devices are ina3221 (3-channels/i2c address) devices
inas = [('0x40:0', 'pp3300_edp_dx', 3.30, 0.020, 'rem', True), #R367
('0x40:1', 'pp3300_a', 3.30, 0.002, 'rem', True), #R422
('0x40:2', 'pp1800_a', 1.80, 0.020, 'rem', True), #R416
#
('0x41:0', 'pp1240_a', 1.24, 0.020, 'rem', True), #R417
('0x41:1', 'pp1800_dram_u', 1.80, 0.020, 'rem', True), #R403
('0x41:2', 'pp1050_s', 1.05, 0.010, 'rem', True), #R412
#
('0x42:0', 'pp3300_pd_a', 3.30, 0.100, 'rem', True), #R384
('0x42:1', 'pp3300_wlan_dx', 3.30, 0.020, 'rem', True), #R389
('0x42:2', 'pp3300_soc_a', 3.30, 0.020, 'rem', True), #R383
#
('0x43:0', 'pp1100_vddq', 1.10, 0.002, 'rem', True), #R425
('0x43:1', 'pp3300_ec', 3.30, 2.200, 'rem', True), #R415
('0x43:2', 'pp5000_a', 5.00, 0.002, 'rem', True), #R421
]
| inas = [('0x40:0', 'pp3300_edp_dx', 3.3, 0.02, 'rem', True), ('0x40:1', 'pp3300_a', 3.3, 0.002, 'rem', True), ('0x40:2', 'pp1800_a', 1.8, 0.02, 'rem', True), ('0x41:0', 'pp1240_a', 1.24, 0.02, 'rem', True), ('0x41:1', 'pp1800_dram_u', 1.8, 0.02, 'rem', True), ('0x41:2', 'pp1050_s', 1.05, 0.01, 'rem', True), ('0x42:0', 'pp3300_pd_a', 3.3, 0.1, 'rem', True), ('0x42:1', 'pp3300_wlan_dx', 3.3, 0.02, 'rem', True), ('0x42:2', 'pp3300_soc_a', 3.3, 0.02, 'rem', True), ('0x43:0', 'pp1100_vddq', 1.1, 0.002, 'rem', True), ('0x43:1', 'pp3300_ec', 3.3, 2.2, 'rem', True), ('0x43:2', 'pp5000_a', 5.0, 0.002, 'rem', True)] |
class _PortfolioMemberships:
"""This object determines if a user is a member of a portfolio.
"""
def __init__(self, client=None):
self.client = client
def find_all(self, params={}, **options):
"""Returns the compact portfolio membership records for the portfolio. You must
specify `portfolio`, `portfolio` and `user`, or `workspace` and `user`.
Parameters
----------
[params] : {Object} Parameters for the request
- [portfolio] : {Gid} The portfolio for which to fetch memberships.
- [workspace] : {Gid} The workspace for which to fetch memberships.
- [user] : {String} The user to filter the memberships to.
"""
return self.client.get_collection("/portfolio_memberships", params, **options)
def find_by_portfolio(self, portfolio, params={}, **options):
"""Returns the compact portfolio membership records for the portfolio.
Parameters
----------
portfolio : {Gid} The portfolio for which to fetch memberships.
[params] : {Object} Parameters for the request
- [user] : {String} If present, the user to filter the memberships to.
"""
path = "/portfolios/%s/portfolio_memberships" % (portfolio)
return self.client.get_collection(path, params, **options)
def find_by_id(self, portfolio_membership, params={}, **options):
"""Returns the portfolio membership record.
Parameters
----------
portfolio_membership : {Gid} Globally unique identifier for the portfolio membership.
[params] : {Object} Parameters for the request
"""
path = "/portfolio_memberships/%s" % (portfolio_membership)
return self.client.get(path, params, **options)
| class _Portfoliomemberships:
"""This object determines if a user is a member of a portfolio.
"""
def __init__(self, client=None):
self.client = client
def find_all(self, params={}, **options):
"""Returns the compact portfolio membership records for the portfolio. You must
specify `portfolio`, `portfolio` and `user`, or `workspace` and `user`.
Parameters
----------
[params] : {Object} Parameters for the request
- [portfolio] : {Gid} The portfolio for which to fetch memberships.
- [workspace] : {Gid} The workspace for which to fetch memberships.
- [user] : {String} The user to filter the memberships to.
"""
return self.client.get_collection('/portfolio_memberships', params, **options)
def find_by_portfolio(self, portfolio, params={}, **options):
"""Returns the compact portfolio membership records for the portfolio.
Parameters
----------
portfolio : {Gid} The portfolio for which to fetch memberships.
[params] : {Object} Parameters for the request
- [user] : {String} If present, the user to filter the memberships to.
"""
path = '/portfolios/%s/portfolio_memberships' % portfolio
return self.client.get_collection(path, params, **options)
def find_by_id(self, portfolio_membership, params={}, **options):
"""Returns the portfolio membership record.
Parameters
----------
portfolio_membership : {Gid} Globally unique identifier for the portfolio membership.
[params] : {Object} Parameters for the request
"""
path = '/portfolio_memberships/%s' % portfolio_membership
return self.client.get(path, params, **options) |
n = int(input())
lst = []
for _ in range(n):
a, b = [int(i) for i in input().split()]
lst.append((a,b))
lst.sort(key = lambda x: x[1])
index = 0
coordinates = []
while index < n:
curr = lst[index]
while index < n-1 and curr[1]>=lst[index+1][0]:
index += 1
coordinates.append(curr[1])
index += 1
print(len(coordinates))
print(' '.join([str(i) for i in coordinates]))
| n = int(input())
lst = []
for _ in range(n):
(a, b) = [int(i) for i in input().split()]
lst.append((a, b))
lst.sort(key=lambda x: x[1])
index = 0
coordinates = []
while index < n:
curr = lst[index]
while index < n - 1 and curr[1] >= lst[index + 1][0]:
index += 1
coordinates.append(curr[1])
index += 1
print(len(coordinates))
print(' '.join([str(i) for i in coordinates])) |
# -*- coding: utf-8 -*-
class Solution:
def numDifferentIntegers(self, word: str) -> int:
result = set()
number = None
for char in word:
if char.isdigit() and number is None:
number = int(char)
elif char.isdigit() and number is not None:
number = 10 * number + int(char)
elif number is not None:
result.add(number)
number = None
if number is not None:
result.add(number)
number = None
return len(result)
if __name__ == '__main__':
solution = Solution()
assert 3 == solution.numDifferentIntegers('a123bc34d8ef34')
assert 2 == solution.numDifferentIntegers('leet1234code234')
assert 1 == solution.numDifferentIntegers('a1b01c001')
| class Solution:
def num_different_integers(self, word: str) -> int:
result = set()
number = None
for char in word:
if char.isdigit() and number is None:
number = int(char)
elif char.isdigit() and number is not None:
number = 10 * number + int(char)
elif number is not None:
result.add(number)
number = None
if number is not None:
result.add(number)
number = None
return len(result)
if __name__ == '__main__':
solution = solution()
assert 3 == solution.numDifferentIntegers('a123bc34d8ef34')
assert 2 == solution.numDifferentIntegers('leet1234code234')
assert 1 == solution.numDifferentIntegers('a1b01c001') |
def fibo(n):
return n if n <= 1 else (fibo(n-1) + fibo(n-2))
nums = [1,2,3,4,5,6]
[fibo(x) for x in nums]
# [1, 1, 2 ,3 ,5, 8]
[y for x in nums if (y:= fibo(x)) % 2 == 0]
# [2, 8]
| def fibo(n):
return n if n <= 1 else fibo(n - 1) + fibo(n - 2)
nums = [1, 2, 3, 4, 5, 6]
[fibo(x) for x in nums]
[y for x in nums if (y := fibo(x)) % 2 == 0] |
#!/usr/bin/env python
# encoding: utf-8
name = "Singlet_Carbene_Intra_Disproportionation/rules"
shortDesc = u"Convert a singlet carbene to a closed-shell molecule through a concerted 1,2-H shift + 1,2-bond formation"
longDesc = u"""
Reaction site *1 should always be a singlet in this family.
"""
| name = 'Singlet_Carbene_Intra_Disproportionation/rules'
short_desc = u'Convert a singlet carbene to a closed-shell molecule through a concerted 1,2-H shift + 1,2-bond formation'
long_desc = u'\nReaction site *1 should always be a singlet in this family.\n' |
BUTTON_LEFT = 0
BUTTON_MIDDLE = 1
BUTTON_RIGHT = 2
| button_left = 0
button_middle = 1
button_right = 2 |
def main():
file_log = open("hostapd.log",'r').read()
address = file_log.find("AP-STA-CONNECTED")
mac = set()
while address >= 0:
mac.add(file_log[address+17:address+34])
address=file_log.find("AP-STA-CONNECTED",address+1)
for addr in mac:
print(addr)
# For the sake of not using global variables
if __name__ == "__main__":
main() | def main():
file_log = open('hostapd.log', 'r').read()
address = file_log.find('AP-STA-CONNECTED')
mac = set()
while address >= 0:
mac.add(file_log[address + 17:address + 34])
address = file_log.find('AP-STA-CONNECTED', address + 1)
for addr in mac:
print(addr)
if __name__ == '__main__':
main() |
COURSE = "Python for Everybody"
def which_course_is_this():
print("The course is:", COURSE)
| course = 'Python for Everybody'
def which_course_is_this():
print('The course is:', COURSE) |
DATASOURCE_NAME = "Coderepos"
GITHUB_DATASOURCE_NAME = "github"
| datasource_name = 'Coderepos'
github_datasource_name = 'github' |
def readDataIntoMatrix(fileName):
f = open(fileName, 'r')
i = 0
data = []
for line in f.readlines():
j = 0
row = []
values = line.split()
for value in values:
row.append(int(value))
j += 1
data.append(row)
i += 1
return data | def read_data_into_matrix(fileName):
f = open(fileName, 'r')
i = 0
data = []
for line in f.readlines():
j = 0
row = []
values = line.split()
for value in values:
row.append(int(value))
j += 1
data.append(row)
i += 1
return data |
# -*- coding: UTF-8 -*-
logger.info("Loading 2 objects to table invoicing_tariff...")
# fields: id, designation, number_of_events, min_asset, max_asset
loader.save(create_invoicing_tariff(1,['By presence', 'Pro Anwesenheit', 'By presence'],1,None,None))
loader.save(create_invoicing_tariff(2,['Maximum 10', 'Maximum 10', 'Maximum 10'],1,None,10))
loader.flush_deferred_objects()
| logger.info('Loading 2 objects to table invoicing_tariff...')
loader.save(create_invoicing_tariff(1, ['By presence', 'Pro Anwesenheit', 'By presence'], 1, None, None))
loader.save(create_invoicing_tariff(2, ['Maximum 10', 'Maximum 10', 'Maximum 10'], 1, None, 10))
loader.flush_deferred_objects() |
#!/usr/bin/env python3
# Write a program that computes the GC% of a DNA sequence
# Format the output for 2 decimal places
# Use all three formatting methods
print('Method 1: printf()')
seq = 'ACAGAGCCAGCAGATATACAGCAGATACTAT' # feel free to change
gc_count = 0
for i in range(0, len(seq)):
if seq[i] == 'G' or seq[i] == 'C':
gc_count += 1
print ('%.2f' % (gc_count / len(seq)))
print('-----')
print('Method 2: str.format()')
gc_count = 0
for i in range(0, len(seq)):
if seq[i] == 'G' or seq[i] == 'C':
gc_count += 1
print ('{:.2f}'.format (gc_count / len(seq)))
print('------')
print('Method 3: f-strings')
gc_count = 0
for i in range(0, len(seq)):
if seq[i] == 'G' or seq[i] == 'C':
gc_count += 1
print (f'{gc_count / len(seq):.2f}')
print('------')
print('Korfs method')
gc_count = 0
for c in seq:
if c == 'G' or c == 'C':
gc_count += 1
print(f'{gc_count / len(seq):.2f}')
'''
0.42
0.42
0.42
''' | print('Method 1: printf()')
seq = 'ACAGAGCCAGCAGATATACAGCAGATACTAT'
gc_count = 0
for i in range(0, len(seq)):
if seq[i] == 'G' or seq[i] == 'C':
gc_count += 1
print('%.2f' % (gc_count / len(seq)))
print('-----')
print('Method 2: str.format()')
gc_count = 0
for i in range(0, len(seq)):
if seq[i] == 'G' or seq[i] == 'C':
gc_count += 1
print('{:.2f}'.format(gc_count / len(seq)))
print('------')
print('Method 3: f-strings')
gc_count = 0
for i in range(0, len(seq)):
if seq[i] == 'G' or seq[i] == 'C':
gc_count += 1
print(f'{gc_count / len(seq):.2f}')
print('------')
print('Korfs method')
gc_count = 0
for c in seq:
if c == 'G' or c == 'C':
gc_count += 1
print(f'{gc_count / len(seq):.2f}')
'\n0.42\n0.42\n0.42\n' |
'''
solve amazing problem:
Given a 2D array of mines, replace the question mark with the number of mines that immediately surround it.
This includes the diagonals, meaning it is possible for it to be surrounded by 8 mines maximum.
The key is as follows:
An empty space: "-"
A mine: "#"
Number showing number of mines surrounding it: "?"
sample:
(["-","#","-"],
["-","?","-"],
["-","-","-"])
(["-","#","#"],
["?","#",""],
["#","?","-"])
output:
[["-","#","-"],
["-","1","-"],
["-","-","-"]]
[["-","#","#"],
["3","#",""],
["#","2","-"]]
'''
tupli1 = (["-","#","-"],
["-","?","-"],
["-","-","-"])
tupli2 = (["-","#","-"],
["#","-","?"],
["#","#","-"])
tupli3 = (["-","#","#"],
["?","#",""],
["#","?","-"])
tupli4 = (["-","?","#"],
["?","#","?"],
["#","?","-"])
tupli5 = (["#","?","#"],
["#","#","?"],
["#","?","-"])
tupli6 = (["#","#","#"],
["#","?","#"],
["#","#","#"])
tupli7 = (["#","#","#"],
["#","#","#"],
["#","?","#"])
tupli8 = (["#","#","#"],
["#","#","?"],
["#","#","#"])
print()
result = [[],[],[]]
count = 0
liicount = []
def solveProblem(tp):
global count, liicount
for i in tp:
if '?' in i:
if tp[0][0] == '?':
if tp[0][1] == '#':
count += 1
if tp[1][0] == '#':
count += 1
if tp[1][1] == '#':
count += 1
liicount.append(count)
if tp[0][1] == '?':
count = 0
if tp[0][0] == '#':
count += 1
if tp[0][2] == '#':
count += 1
if tp[1][0] == '#':
count += 1
if tp[1][1] == '#':
count += 1
if tp[1][2] == '#':
count += 1
liicount.append(count)
if tp[0][2] == '?':
count = 0
if tp[0][1] == '#':
count += 1
if tp[1][1] == '#':
count += 1
if tp[1][2] == '#':
count += 1
liicount.append(count)
# ========================================= 1
if tp[1][0] == '?':
count = 0
if tp[0][0] == '#':
count += 1
if tp[0][1] == '#':
count += 1
if tp[1][1] == '#':
count += 1
if tp[2][0] == '#':
count += 1
if tp[2][1] == '#':
count += 1
liicount.append(count)
if tp[1][1] == '?':
count = 0
if tp[0][0] == '#':
count += 1
if tp[0][1] == '#':
count += 1
if tp[0][2] == '#':
count += 1
if tp[1][0] == '#':
count += 1
if tp[1][2] == '#':
count += 1
if tp[2][0] == '#':
count += 1
if tp[2][1] == '#':
count += 1
if tp[2][2] == '#':
count += 1
liicount.append(count)
if tp[1][2] == '?':
count = 0
if tp[0][1] == '#':
count += 1
if tp[0][2] == '#':
count += 1
if tp[1][1] == '#':
count += 1
if tp[2][1] == '#':
count += 1
if tp[2][2] == '#':
count += 1
liicount.append(count)
# ========================================= 2
if tp[2][0] == '?':
count = 0
if tp[1][0] == '#':
count += 1
if tp[1][1] == '#':
count += 1
if tp[2][1] == '#':
count += 1
liicount.append(count)
if tp[2][1] == '?':
count = 0
if tp[1][0] == '#':
count += 1
if tp[1][1] == '#':
count += 1
if tp[1][2] == '#':
count += 1
if tp[2][0] == '#':
count += 1
if tp[2][2] == '#':
count += 1
liicount.append(count)
if tp[2][2] == '?':
count = 0
if tp[1][1] == '#':
count += 1
if tp[1][2] == '#':
count += 1
if tp[2][1] == '#':
count += 1
liicount.append(count)
def numOfQuest(numq):
o = 0
for i in numq:
for g in i:
if g == '?':
o += 1
else:
pass
return o
liicount = [liicount[i] for i in range(numOfQuest(numq=tp))]
def replace_questionMark(tup):
solveProblem(tup)
y = 0
m = 0
for u in tup:
for a in u:
if a == '?':
result[y].append(a.replace('?', str(liicount[m])))
m += 1
else: result[y].append(a)
y += 1
return result
if __name__ == '__main__':
#print(replace_questionMark(tup=tupli1))
#print(replace_questionMark(tup=tupli2))
#print(replace_questionMark(tup=tupli3))
#print(replace_questionMark(tup=tupli4))
#print(replace_questionMark(tup=tupli5))
#print(replace_questionMark(tup=tupli6))
#print(replace_questionMark(tup=tupli7))
print(replace_questionMark(tup=tupli8))
| """
solve amazing problem:
Given a 2D array of mines, replace the question mark with the number of mines that immediately surround it.
This includes the diagonals, meaning it is possible for it to be surrounded by 8 mines maximum.
The key is as follows:
An empty space: "-"
A mine: "#"
Number showing number of mines surrounding it: "?"
sample:
(["-","#","-"],
["-","?","-"],
["-","-","-"])
(["-","#","#"],
["?","#",""],
["#","?","-"])
output:
[["-","#","-"],
["-","1","-"],
["-","-","-"]]
[["-","#","#"],
["3","#",""],
["#","2","-"]]
"""
tupli1 = (['-', '#', '-'], ['-', '?', '-'], ['-', '-', '-'])
tupli2 = (['-', '#', '-'], ['#', '-', '?'], ['#', '#', '-'])
tupli3 = (['-', '#', '#'], ['?', '#', ''], ['#', '?', '-'])
tupli4 = (['-', '?', '#'], ['?', '#', '?'], ['#', '?', '-'])
tupli5 = (['#', '?', '#'], ['#', '#', '?'], ['#', '?', '-'])
tupli6 = (['#', '#', '#'], ['#', '?', '#'], ['#', '#', '#'])
tupli7 = (['#', '#', '#'], ['#', '#', '#'], ['#', '?', '#'])
tupli8 = (['#', '#', '#'], ['#', '#', '?'], ['#', '#', '#'])
print()
result = [[], [], []]
count = 0
liicount = []
def solve_problem(tp):
global count, liicount
for i in tp:
if '?' in i:
if tp[0][0] == '?':
if tp[0][1] == '#':
count += 1
if tp[1][0] == '#':
count += 1
if tp[1][1] == '#':
count += 1
liicount.append(count)
if tp[0][1] == '?':
count = 0
if tp[0][0] == '#':
count += 1
if tp[0][2] == '#':
count += 1
if tp[1][0] == '#':
count += 1
if tp[1][1] == '#':
count += 1
if tp[1][2] == '#':
count += 1
liicount.append(count)
if tp[0][2] == '?':
count = 0
if tp[0][1] == '#':
count += 1
if tp[1][1] == '#':
count += 1
if tp[1][2] == '#':
count += 1
liicount.append(count)
if tp[1][0] == '?':
count = 0
if tp[0][0] == '#':
count += 1
if tp[0][1] == '#':
count += 1
if tp[1][1] == '#':
count += 1
if tp[2][0] == '#':
count += 1
if tp[2][1] == '#':
count += 1
liicount.append(count)
if tp[1][1] == '?':
count = 0
if tp[0][0] == '#':
count += 1
if tp[0][1] == '#':
count += 1
if tp[0][2] == '#':
count += 1
if tp[1][0] == '#':
count += 1
if tp[1][2] == '#':
count += 1
if tp[2][0] == '#':
count += 1
if tp[2][1] == '#':
count += 1
if tp[2][2] == '#':
count += 1
liicount.append(count)
if tp[1][2] == '?':
count = 0
if tp[0][1] == '#':
count += 1
if tp[0][2] == '#':
count += 1
if tp[1][1] == '#':
count += 1
if tp[2][1] == '#':
count += 1
if tp[2][2] == '#':
count += 1
liicount.append(count)
if tp[2][0] == '?':
count = 0
if tp[1][0] == '#':
count += 1
if tp[1][1] == '#':
count += 1
if tp[2][1] == '#':
count += 1
liicount.append(count)
if tp[2][1] == '?':
count = 0
if tp[1][0] == '#':
count += 1
if tp[1][1] == '#':
count += 1
if tp[1][2] == '#':
count += 1
if tp[2][0] == '#':
count += 1
if tp[2][2] == '#':
count += 1
liicount.append(count)
if tp[2][2] == '?':
count = 0
if tp[1][1] == '#':
count += 1
if tp[1][2] == '#':
count += 1
if tp[2][1] == '#':
count += 1
liicount.append(count)
def num_of_quest(numq):
o = 0
for i in numq:
for g in i:
if g == '?':
o += 1
else:
pass
return o
liicount = [liicount[i] for i in range(num_of_quest(numq=tp))]
def replace_question_mark(tup):
solve_problem(tup)
y = 0
m = 0
for u in tup:
for a in u:
if a == '?':
result[y].append(a.replace('?', str(liicount[m])))
m += 1
else:
result[y].append(a)
y += 1
return result
if __name__ == '__main__':
print(replace_question_mark(tup=tupli8)) |
#when many condition fullfil use all.
subs = 1000
likes = 400
comments = 500
condition = [subs>150,likes>150,comments>50]
if all(condition):
print('Great Content') | subs = 1000
likes = 400
comments = 500
condition = [subs > 150, likes > 150, comments > 50]
if all(condition):
print('Great Content') |
class Solution:
def findMedianSortedArrays(self, nums1, nums2):
"""
:type nums1: List[int]
:type nums2: List[int]
:rtype: float
"""
tmp = nums1 + nums2
tmp.sort()
if len(tmp)%2 == 0:
# print(tmp[len(tmp)//2 - 1] + tmp[len(tmp)//2] / 2)
return (tmp[len(tmp)//2 - 1] + tmp[len(tmp)//2]) / 2
else:
# print(tmp[(len(tmp)-1) // 2])
return tmp[(len(tmp)-1) // 2]
| class Solution:
def find_median_sorted_arrays(self, nums1, nums2):
"""
:type nums1: List[int]
:type nums2: List[int]
:rtype: float
"""
tmp = nums1 + nums2
tmp.sort()
if len(tmp) % 2 == 0:
return (tmp[len(tmp) // 2 - 1] + tmp[len(tmp) // 2]) / 2
else:
return tmp[(len(tmp) - 1) // 2] |
def write_to(filename:str,text:str):
with open(f'{filename}.txt','w') as file1:
file1.write(text)
write_to('players','zarinaemirbaizak')
| def write_to(filename: str, text: str):
with open(f'{filename}.txt', 'w') as file1:
file1.write(text)
write_to('players', 'zarinaemirbaizak') |
def main():
# input
S = input()
N, M = map(int, input().split())
# compute
# output
print(S[:N-1] + S[M-1] + S[N:M-1] + S[N-1] + S[M:])
if __name__ == '__main__':
main()
| def main():
s = input()
(n, m) = map(int, input().split())
print(S[:N - 1] + S[M - 1] + S[N:M - 1] + S[N - 1] + S[M:])
if __name__ == '__main__':
main() |
class PropertyMonitor(object):
__slots__ = (
'_lock', # concurrency control
'_state', # currently active state
'_pool', # MsgRecord deque to hold temporary records
'witness', # MsgRecord list of observed events
'on_enter_scope', # callback upon entering the scope
'on_exit_scope', # callback upon exiting the scope
'on_violation', # callback upon verdict of False
'on_success', # callback upon verdict of True
'time_launch', # when was the monitor launched
'time_shutdown', # when was the monitor shutdown
'time_state', # when did the last state transition occur
'cb_map', # mapping of topic names to callback functions
)
PROP_ID = 'None'
PROP_TITLE = '''None'''
PROP_DESC = '''None'''
HPL_PROPERTY = r'''globally: /a { True } forbids /b { True }'''
def __init__(self):
self._lock = Lock()
self._reset()
self.on_enter_scope = self._noop
self.on_exit_scope = self._noop
self.on_violation = self._noop
self.on_success = self._noop
self._state = 0
self.cb_map = {
'/b': self.on_msg__b,
'/a': self.on_msg__a,
}
@property
def verdict(self):
with self._lock:
if self._state == -1:
return True
if self._state == -2:
return False
return None
def on_launch(self, stamp):
with self._lock:
if self._state != 0:
raise RuntimeError('monitor is already turned on')
self._reset()
self.time_launch = stamp
self._state = 3
self.time_state = stamp
self.on_enter_scope(stamp)
return True
def on_shutdown(self, stamp):
with self._lock:
if self._state == 0:
raise RuntimeError('monitor is already turned off')
self.time_shutdown = stamp
self._state = 0
self.time_state = stamp
return True
def on_timer(self, stamp):
return True
def on_msg__b(self, msg, stamp):
with self._lock:
if self._state == 2:
assert len(self._pool) >= 1, 'missing trigger event'
rec = self._pool[0]
self.witness.append(rec)
self.witness.append(MsgRecord('/b', stamp, msg))
self._pool.clear()
self._state = -2
self.time_state = stamp
self.on_violation(stamp, self.witness)
return True
return False
def on_msg__a(self, msg, stamp):
with self._lock:
if self._state == 2:
return False # nothing to do
if self._state == 3:
self._pool.append(MsgRecord('/a', stamp, msg))
self._state = 2
self.time_state = stamp
return True
return False
def _reset(self):
self.witness = []
self._pool = deque((), 1)
self.time_launch = -1
self.time_shutdown = -1
self.time_state = -1
def _noop(self, *args):
pass
class PropertyMonitor(object):
__slots__ = (
'_lock', # concurrency control
'_state', # currently active state
'_pool', # MsgRecord deque to hold temporary records
'witness', # MsgRecord list of observed events
'on_enter_scope', # callback upon entering the scope
'on_exit_scope', # callback upon exiting the scope
'on_violation', # callback upon verdict of False
'on_success', # callback upon verdict of True
'time_launch', # when was the monitor launched
'time_shutdown', # when was the monitor shutdown
'time_state', # when did the last state transition occur
'cb_map', # mapping of topic names to callback functions
)
PROP_ID = 'None'
PROP_TITLE = '''None'''
PROP_DESC = '''None'''
HPL_PROPERTY = r'''globally: /a { True } forbids /b { True } within 0.1s'''
def __init__(self):
self._lock = Lock()
self._reset()
self.on_enter_scope = self._noop
self.on_exit_scope = self._noop
self.on_violation = self._noop
self.on_success = self._noop
self._state = 0
self.cb_map = {
'/b': self.on_msg__b,
'/a': self.on_msg__a,
}
@property
def verdict(self):
with self._lock:
if self._state == -1:
return True
if self._state == -2:
return False
return None
def on_launch(self, stamp):
with self._lock:
if self._state != 0:
raise RuntimeError('monitor is already turned on')
self._reset()
self.time_launch = stamp
self._state = 3
self.time_state = stamp
self.on_enter_scope(stamp)
return True
def on_shutdown(self, stamp):
with self._lock:
if self._state == 0:
raise RuntimeError('monitor is already turned off')
self.time_shutdown = stamp
self._state = 0
self.time_state = stamp
return True
def on_timer(self, stamp):
with self._lock:
if self._state == 2:
assert len(self._pool) >= 1, 'missing trigger event'
while self._pool and (stamp - self._pool[0].timestamp) >= 0.1:
self._pool.popleft()
if not self._pool:
self._state = 3
self.time_state = stamp
return True
def on_msg__b(self, msg, stamp):
with self._lock:
if self._state == 2:
assert len(self._pool) >= 1, 'missing trigger event'
while self._pool and (stamp - self._pool[0].timestamp) >= 0.1:
self._pool.popleft()
if not self._pool:
self._state = 3
self.time_state = stamp
if self._state == 2:
assert len(self._pool) >= 1, 'missing trigger event'
rec = self._pool[0]
self.witness.append(rec)
self.witness.append(MsgRecord('/b', stamp, msg))
self._pool.clear()
self._state = -2
self.time_state = stamp
self.on_violation(stamp, self.witness)
return True
return False
def on_msg__a(self, msg, stamp):
with self._lock:
if self._state == 2:
assert len(self._pool) >= 1, 'missing trigger event'
while self._pool and (stamp - self._pool[0].timestamp) >= 0.1:
self._pool.popleft()
if not self._pool:
self._state = 3
self.time_state = stamp
if self._state == 2:
self._pool.append(MsgRecord('/a', stamp, msg))
return True
if self._state == 3:
self._pool.append(MsgRecord('/a', stamp, msg))
self._state = 2
self.time_state = stamp
return True
return False
def _reset(self):
self.witness = []
self._pool = deque((), 1)
self.time_launch = -1
self.time_shutdown = -1
self.time_state = -1
def _noop(self, *args):
pass
class PropertyMonitor(object):
__slots__ = (
'_lock', # concurrency control
'_state', # currently active state
'_pool', # MsgRecord deque to hold temporary records
'witness', # MsgRecord list of observed events
'on_enter_scope', # callback upon entering the scope
'on_exit_scope', # callback upon exiting the scope
'on_violation', # callback upon verdict of False
'on_success', # callback upon verdict of True
'time_launch', # when was the monitor launched
'time_shutdown', # when was the monitor shutdown
'time_state', # when did the last state transition occur
'cb_map', # mapping of topic names to callback functions
)
PROP_ID = 'None'
PROP_TITLE = '''None'''
PROP_DESC = '''None'''
HPL_PROPERTY = r'''globally: /a { (data > 0) } forbids /b { (data < 0) }'''
def __init__(self):
self._lock = Lock()
self._reset()
self.on_enter_scope = self._noop
self.on_exit_scope = self._noop
self.on_violation = self._noop
self.on_success = self._noop
self._state = 0
self.cb_map = {
'/b': self.on_msg__b,
'/a': self.on_msg__a,
}
@property
def verdict(self):
with self._lock:
if self._state == -1:
return True
if self._state == -2:
return False
return None
def on_launch(self, stamp):
with self._lock:
if self._state != 0:
raise RuntimeError('monitor is already turned on')
self._reset()
self.time_launch = stamp
self._state = 3
self.time_state = stamp
self.on_enter_scope(stamp)
return True
def on_shutdown(self, stamp):
with self._lock:
if self._state == 0:
raise RuntimeError('monitor is already turned off')
self.time_shutdown = stamp
self._state = 0
self.time_state = stamp
return True
def on_timer(self, stamp):
return True
def on_msg__b(self, msg, stamp):
with self._lock:
if self._state == 2:
assert len(self._pool) >= 1, 'missing trigger event'
rec = self._pool[0]
if (msg.data < 0):
self.witness.append(rec)
self.witness.append(MsgRecord('/b', stamp, msg))
self._pool.clear()
self._state = -2
self.time_state = stamp
self.on_violation(stamp, self.witness)
return True
return False
def on_msg__a(self, msg, stamp):
with self._lock:
if self._state == 2:
return False # nothing to do
if self._state == 3:
if (msg.data > 0):
self._pool.append(MsgRecord('/a', stamp, msg))
self._state = 2
self.time_state = stamp
return True
return False
def _reset(self):
self.witness = []
self._pool = deque((), 1)
self.time_launch = -1
self.time_shutdown = -1
self.time_state = -1
def _noop(self, *args):
pass
class PropertyMonitor(object):
__slots__ = (
'_lock', # concurrency control
'_state', # currently active state
'_pool', # MsgRecord deque to hold temporary records
'witness', # MsgRecord list of observed events
'on_enter_scope', # callback upon entering the scope
'on_exit_scope', # callback upon exiting the scope
'on_violation', # callback upon verdict of False
'on_success', # callback upon verdict of True
'time_launch', # when was the monitor launched
'time_shutdown', # when was the monitor shutdown
'time_state', # when did the last state transition occur
'cb_map', # mapping of topic names to callback functions
)
PROP_ID = 'None'
PROP_TITLE = '''None'''
PROP_DESC = '''None'''
HPL_PROPERTY = r'''globally: /a { (data > 0) } forbids /b { (data < 0) } within 0.1s'''
def __init__(self):
self._lock = Lock()
self._reset()
self.on_enter_scope = self._noop
self.on_exit_scope = self._noop
self.on_violation = self._noop
self.on_success = self._noop
self._state = 0
self.cb_map = {
'/b': self.on_msg__b,
'/a': self.on_msg__a,
}
@property
def verdict(self):
with self._lock:
if self._state == -1:
return True
if self._state == -2:
return False
return None
def on_launch(self, stamp):
with self._lock:
if self._state != 0:
raise RuntimeError('monitor is already turned on')
self._reset()
self.time_launch = stamp
self._state = 3
self.time_state = stamp
self.on_enter_scope(stamp)
return True
def on_shutdown(self, stamp):
with self._lock:
if self._state == 0:
raise RuntimeError('monitor is already turned off')
self.time_shutdown = stamp
self._state = 0
self.time_state = stamp
return True
def on_timer(self, stamp):
with self._lock:
if self._state == 2:
assert len(self._pool) >= 1, 'missing trigger event'
while self._pool and (stamp - self._pool[0].timestamp) >= 0.1:
self._pool.popleft()
if not self._pool:
self._state = 3
self.time_state = stamp
return True
def on_msg__b(self, msg, stamp):
with self._lock:
if self._state == 2:
assert len(self._pool) >= 1, 'missing trigger event'
while self._pool and (stamp - self._pool[0].timestamp) >= 0.1:
self._pool.popleft()
if not self._pool:
self._state = 3
self.time_state = stamp
if self._state == 2:
assert len(self._pool) >= 1, 'missing trigger event'
rec = self._pool[0]
if (msg.data < 0):
self.witness.append(rec)
self.witness.append(MsgRecord('/b', stamp, msg))
self._pool.clear()
self._state = -2
self.time_state = stamp
self.on_violation(stamp, self.witness)
return True
return False
def on_msg__a(self, msg, stamp):
with self._lock:
if self._state == 2:
assert len(self._pool) >= 1, 'missing trigger event'
while self._pool and (stamp - self._pool[0].timestamp) >= 0.1:
self._pool.popleft()
if not self._pool:
self._state = 3
self.time_state = stamp
if self._state == 2:
if (msg.data > 0):
self._pool.append(MsgRecord('/a', stamp, msg))
return True
if self._state == 3:
if (msg.data > 0):
self._pool.append(MsgRecord('/a', stamp, msg))
self._state = 2
self.time_state = stamp
return True
return False
def _reset(self):
self.witness = []
self._pool = deque((), 1)
self.time_launch = -1
self.time_shutdown = -1
self.time_state = -1
def _noop(self, *args):
pass
class PropertyMonitor(object):
__slots__ = (
'_lock', # concurrency control
'_state', # currently active state
'_pool', # MsgRecord deque to hold temporary records
'witness', # MsgRecord list of observed events
'on_enter_scope', # callback upon entering the scope
'on_exit_scope', # callback upon exiting the scope
'on_violation', # callback upon verdict of False
'on_success', # callback upon verdict of True
'time_launch', # when was the monitor launched
'time_shutdown', # when was the monitor shutdown
'time_state', # when did the last state transition occur
'cb_map', # mapping of topic names to callback functions
)
PROP_ID = 'None'
PROP_TITLE = '''None'''
PROP_DESC = '''None'''
HPL_PROPERTY = r'''globally: (/a1 { (data > 0) } or /a2 { (data < 0) }) forbids /b { True } within 0.1s'''
def __init__(self):
self._lock = Lock()
self._reset()
self.on_enter_scope = self._noop
self.on_exit_scope = self._noop
self.on_violation = self._noop
self.on_success = self._noop
self._state = 0
self.cb_map = {
'/b': self.on_msg__b,
'/a1': self.on_msg__a1,
'/a2': self.on_msg__a2,
}
@property
def verdict(self):
with self._lock:
if self._state == -1:
return True
if self._state == -2:
return False
return None
def on_launch(self, stamp):
with self._lock:
if self._state != 0:
raise RuntimeError('monitor is already turned on')
self._reset()
self.time_launch = stamp
self._state = 3
self.time_state = stamp
self.on_enter_scope(stamp)
return True
def on_shutdown(self, stamp):
with self._lock:
if self._state == 0:
raise RuntimeError('monitor is already turned off')
self.time_shutdown = stamp
self._state = 0
self.time_state = stamp
return True
def on_timer(self, stamp):
with self._lock:
if self._state == 2:
assert len(self._pool) >= 1, 'missing trigger event'
while self._pool and (stamp - self._pool[0].timestamp) >= 0.1:
self._pool.popleft()
if not self._pool:
self._state = 3
self.time_state = stamp
return True
def on_msg__b(self, msg, stamp):
with self._lock:
if self._state == 2:
assert len(self._pool) >= 1, 'missing trigger event'
while self._pool and (stamp - self._pool[0].timestamp) >= 0.1:
self._pool.popleft()
if not self._pool:
self._state = 3
self.time_state = stamp
if self._state == 2:
assert len(self._pool) >= 1, 'missing trigger event'
rec = self._pool[0]
self.witness.append(rec)
self.witness.append(MsgRecord('/b', stamp, msg))
self._pool.clear()
self._state = -2
self.time_state = stamp
self.on_violation(stamp, self.witness)
return True
return False
def on_msg__a1(self, msg, stamp):
with self._lock:
if self._state == 2:
assert len(self._pool) >= 1, 'missing trigger event'
while self._pool and (stamp - self._pool[0].timestamp) >= 0.1:
self._pool.popleft()
if not self._pool:
self._state = 3
self.time_state = stamp
if self._state == 2:
if (msg.data > 0):
self._pool.append(MsgRecord('/a1', stamp, msg))
return True
if self._state == 3:
if (msg.data > 0):
self._pool.append(MsgRecord('/a1', stamp, msg))
self._state = 2
self.time_state = stamp
return True
return False
def on_msg__a2(self, msg, stamp):
with self._lock:
if self._state == 2:
assert len(self._pool) >= 1, 'missing trigger event'
while self._pool and (stamp - self._pool[0].timestamp) >= 0.1:
self._pool.popleft()
if not self._pool:
self._state = 3
self.time_state = stamp
if self._state == 2:
if (msg.data < 0):
self._pool.append(MsgRecord('/a2', stamp, msg))
return True
if self._state == 3:
if (msg.data < 0):
self._pool.append(MsgRecord('/a2', stamp, msg))
self._state = 2
self.time_state = stamp
return True
return False
def _reset(self):
self.witness = []
self._pool = deque((), 1)
self.time_launch = -1
self.time_shutdown = -1
self.time_state = -1
def _noop(self, *args):
pass
class PropertyMonitor(object):
__slots__ = (
'_lock', # concurrency control
'_state', # currently active state
'_pool', # MsgRecord deque to hold temporary records
'witness', # MsgRecord list of observed events
'on_enter_scope', # callback upon entering the scope
'on_exit_scope', # callback upon exiting the scope
'on_violation', # callback upon verdict of False
'on_success', # callback upon verdict of True
'time_launch', # when was the monitor launched
'time_shutdown', # when was the monitor shutdown
'time_state', # when did the last state transition occur
'cb_map', # mapping of topic names to callback functions
)
PROP_ID = 'None'
PROP_TITLE = '''None'''
PROP_DESC = '''None'''
HPL_PROPERTY = r'''globally: /a { True } forbids (/b1 { (data > 0) } or /b2 { (data < 0) }) within 0.1s'''
def __init__(self):
self._lock = Lock()
self._reset()
self.on_enter_scope = self._noop
self.on_exit_scope = self._noop
self.on_violation = self._noop
self.on_success = self._noop
self._state = 0
self.cb_map = {
'/b2': self.on_msg__b2,
'/a': self.on_msg__a,
'/b1': self.on_msg__b1,
}
@property
def verdict(self):
with self._lock:
if self._state == -1:
return True
if self._state == -2:
return False
return None
def on_launch(self, stamp):
with self._lock:
if self._state != 0:
raise RuntimeError('monitor is already turned on')
self._reset()
self.time_launch = stamp
self._state = 3
self.time_state = stamp
self.on_enter_scope(stamp)
return True
def on_shutdown(self, stamp):
with self._lock:
if self._state == 0:
raise RuntimeError('monitor is already turned off')
self.time_shutdown = stamp
self._state = 0
self.time_state = stamp
return True
def on_timer(self, stamp):
with self._lock:
if self._state == 2:
assert len(self._pool) >= 1, 'missing trigger event'
while self._pool and (stamp - self._pool[0].timestamp) >= 0.1:
self._pool.popleft()
if not self._pool:
self._state = 3
self.time_state = stamp
return True
def on_msg__b2(self, msg, stamp):
with self._lock:
if self._state == 2:
assert len(self._pool) >= 1, 'missing trigger event'
while self._pool and (stamp - self._pool[0].timestamp) >= 0.1:
self._pool.popleft()
if not self._pool:
self._state = 3
self.time_state = stamp
if self._state == 2:
assert len(self._pool) >= 1, 'missing trigger event'
rec = self._pool[0]
if (msg.data < 0):
self.witness.append(rec)
self.witness.append(MsgRecord('/b2', stamp, msg))
self._pool.clear()
self._state = -2
self.time_state = stamp
self.on_violation(stamp, self.witness)
return True
return False
def on_msg__a(self, msg, stamp):
with self._lock:
if self._state == 2:
assert len(self._pool) >= 1, 'missing trigger event'
while self._pool and (stamp - self._pool[0].timestamp) >= 0.1:
self._pool.popleft()
if not self._pool:
self._state = 3
self.time_state = stamp
if self._state == 2:
self._pool.append(MsgRecord('/a', stamp, msg))
return True
if self._state == 3:
self._pool.append(MsgRecord('/a', stamp, msg))
self._state = 2
self.time_state = stamp
return True
return False
def on_msg__b1(self, msg, stamp):
with self._lock:
if self._state == 2:
assert len(self._pool) >= 1, 'missing trigger event'
while self._pool and (stamp - self._pool[0].timestamp) >= 0.1:
self._pool.popleft()
if not self._pool:
self._state = 3
self.time_state = stamp
if self._state == 2:
assert len(self._pool) >= 1, 'missing trigger event'
rec = self._pool[0]
if (msg.data > 0):
self.witness.append(rec)
self.witness.append(MsgRecord('/b1', stamp, msg))
self._pool.clear()
self._state = -2
self.time_state = stamp
self.on_violation(stamp, self.witness)
return True
return False
def _reset(self):
self.witness = []
self._pool = deque((), 1)
self.time_launch = -1
self.time_shutdown = -1
self.time_state = -1
def _noop(self, *args):
pass
class PropertyMonitor(object):
__slots__ = (
'_lock', # concurrency control
'_state', # currently active state
'_pool', # MsgRecord deque to hold temporary records
'witness', # MsgRecord list of observed events
'on_enter_scope', # callback upon entering the scope
'on_exit_scope', # callback upon exiting the scope
'on_violation', # callback upon verdict of False
'on_success', # callback upon verdict of True
'time_launch', # when was the monitor launched
'time_shutdown', # when was the monitor shutdown
'time_state', # when did the last state transition occur
'cb_map', # mapping of topic names to callback functions
)
PROP_ID = 'None'
PROP_TITLE = '''None'''
PROP_DESC = '''None'''
HPL_PROPERTY = r'''after /p { True }: /a { True } forbids /b { True } within 0.1s'''
def __init__(self):
self._lock = Lock()
self._reset()
self.on_enter_scope = self._noop
self.on_exit_scope = self._noop
self.on_violation = self._noop
self.on_success = self._noop
self._state = 0
self.cb_map = {
'/b': self.on_msg__b,
'/a': self.on_msg__a,
'/p': self.on_msg__p,
}
@property
def verdict(self):
with self._lock:
if self._state == -1:
return True
if self._state == -2:
return False
return None
def on_launch(self, stamp):
with self._lock:
if self._state != 0:
raise RuntimeError('monitor is already turned on')
self._reset()
self.time_launch = stamp
self._state = 1
self.time_state = stamp
return True
def on_shutdown(self, stamp):
with self._lock:
if self._state == 0:
raise RuntimeError('monitor is already turned off')
self.time_shutdown = stamp
self._state = 0
self.time_state = stamp
return True
def on_timer(self, stamp):
with self._lock:
if self._state == 2:
assert len(self._pool) >= 1, 'missing trigger event'
while self._pool and (stamp - self._pool[0].timestamp) >= 0.1:
self._pool.popleft()
if not self._pool:
self._state = 3
self.time_state = stamp
return True
def on_msg__b(self, msg, stamp):
with self._lock:
if self._state == 2:
assert len(self._pool) >= 1, 'missing trigger event'
while self._pool and (stamp - self._pool[0].timestamp) >= 0.1:
self._pool.popleft()
if not self._pool:
self._state = 3
self.time_state = stamp
if self._state == 2:
assert len(self._pool) >= 1, 'missing trigger event'
rec = self._pool[0]
self.witness.append(rec)
self.witness.append(MsgRecord('/b', stamp, msg))
self._pool.clear()
self._state = -2
self.time_state = stamp
self.on_violation(stamp, self.witness)
return True
return False
def on_msg__a(self, msg, stamp):
with self._lock:
if self._state == 2:
assert len(self._pool) >= 1, 'missing trigger event'
while self._pool and (stamp - self._pool[0].timestamp) >= 0.1:
self._pool.popleft()
if not self._pool:
self._state = 3
self.time_state = stamp
if self._state == 2:
self._pool.append(MsgRecord('/a', stamp, msg))
return True
if self._state == 3:
self._pool.append(MsgRecord('/a', stamp, msg))
self._state = 2
self.time_state = stamp
return True
return False
def on_msg__p(self, msg, stamp):
with self._lock:
if self._state == 2:
assert len(self._pool) >= 1, 'missing trigger event'
while self._pool and (stamp - self._pool[0].timestamp) >= 0.1:
self._pool.popleft()
if not self._pool:
self._state = 3
self.time_state = stamp
if self._state == 1:
self.witness.append(MsgRecord('/p', stamp, msg))
self._state = 3
self.time_state = stamp
self.on_enter_scope(stamp)
return True
return False
def _reset(self):
self.witness = []
self._pool = deque((), 1)
self.time_launch = -1
self.time_shutdown = -1
self.time_state = -1
def _noop(self, *args):
pass
class PropertyMonitor(object):
__slots__ = (
'_lock', # concurrency control
'_state', # currently active state
'_pool', # MsgRecord deque to hold temporary records
'witness', # MsgRecord list of observed events
'on_enter_scope', # callback upon entering the scope
'on_exit_scope', # callback upon exiting the scope
'on_violation', # callback upon verdict of False
'on_success', # callback upon verdict of True
'time_launch', # when was the monitor launched
'time_shutdown', # when was the monitor shutdown
'time_state', # when did the last state transition occur
'cb_map', # mapping of topic names to callback functions
)
PROP_ID = 'None'
PROP_TITLE = '''None'''
PROP_DESC = '''None'''
HPL_PROPERTY = r'''after /p { phi }: /a { (data > 0) } forbids /b { (data < 0) } within 0.1s'''
def __init__(self):
self._lock = Lock()
self._reset()
self.on_enter_scope = self._noop
self.on_exit_scope = self._noop
self.on_violation = self._noop
self.on_success = self._noop
self._state = 0
self.cb_map = {
'/b': self.on_msg__b,
'/a': self.on_msg__a,
'/p': self.on_msg__p,
}
@property
def verdict(self):
with self._lock:
if self._state == -1:
return True
if self._state == -2:
return False
return None
def on_launch(self, stamp):
with self._lock:
if self._state != 0:
raise RuntimeError('monitor is already turned on')
self._reset()
self.time_launch = stamp
self._state = 1
self.time_state = stamp
return True
def on_shutdown(self, stamp):
with self._lock:
if self._state == 0:
raise RuntimeError('monitor is already turned off')
self.time_shutdown = stamp
self._state = 0
self.time_state = stamp
return True
def on_timer(self, stamp):
with self._lock:
if self._state == 2:
assert len(self._pool) >= 1, 'missing trigger event'
while self._pool and (stamp - self._pool[0].timestamp) >= 0.1:
self._pool.popleft()
if not self._pool:
self._state = 3
self.time_state = stamp
return True
def on_msg__b(self, msg, stamp):
with self._lock:
if self._state == 2:
assert len(self._pool) >= 1, 'missing trigger event'
while self._pool and (stamp - self._pool[0].timestamp) >= 0.1:
self._pool.popleft()
if not self._pool:
self._state = 3
self.time_state = stamp
if self._state == 2:
assert len(self._pool) >= 1, 'missing trigger event'
rec = self._pool[0]
if (msg.data < 0):
self.witness.append(rec)
self.witness.append(MsgRecord('/b', stamp, msg))
self._pool.clear()
self._state = -2
self.time_state = stamp
self.on_violation(stamp, self.witness)
return True
return False
def on_msg__a(self, msg, stamp):
with self._lock:
if self._state == 2:
assert len(self._pool) >= 1, 'missing trigger event'
while self._pool and (stamp - self._pool[0].timestamp) >= 0.1:
self._pool.popleft()
if not self._pool:
self._state = 3
self.time_state = stamp
if self._state == 2:
if (msg.data > 0):
self._pool.append(MsgRecord('/a', stamp, msg))
return True
if self._state == 3:
if (msg.data > 0):
self._pool.append(MsgRecord('/a', stamp, msg))
self._state = 2
self.time_state = stamp
return True
return False
def on_msg__p(self, msg, stamp):
with self._lock:
if self._state == 2:
assert len(self._pool) >= 1, 'missing trigger event'
while self._pool and (stamp - self._pool[0].timestamp) >= 0.1:
self._pool.popleft()
if not self._pool:
self._state = 3
self.time_state = stamp
if self._state == 1:
if msg.phi:
self.witness.append(MsgRecord('/p', stamp, msg))
self._state = 3
self.time_state = stamp
self.on_enter_scope(stamp)
return True
return False
def _reset(self):
self.witness = []
self._pool = deque((), 1)
self.time_launch = -1
self.time_shutdown = -1
self.time_state = -1
def _noop(self, *args):
pass
class PropertyMonitor(object):
__slots__ = (
'_lock', # concurrency control
'_state', # currently active state
'_pool', # MsgRecord deque to hold temporary records
'witness', # MsgRecord list of observed events
'on_enter_scope', # callback upon entering the scope
'on_exit_scope', # callback upon exiting the scope
'on_violation', # callback upon verdict of False
'on_success', # callback upon verdict of True
'time_launch', # when was the monitor launched
'time_shutdown', # when was the monitor shutdown
'time_state', # when did the last state transition occur
'cb_map', # mapping of topic names to callback functions
)
PROP_ID = 'None'
PROP_TITLE = '''None'''
PROP_DESC = '''None'''
HPL_PROPERTY = r'''until /q { True }: /a { phi } forbids /b { psi } within 0.1s'''
def __init__(self):
self._lock = Lock()
self._reset()
self.on_enter_scope = self._noop
self.on_exit_scope = self._noop
self.on_violation = self._noop
self.on_success = self._noop
self._state = 0
self.cb_map = {
'/b': self.on_msg__b,
'/q': self.on_msg__q,
'/a': self.on_msg__a,
}
@property
def verdict(self):
with self._lock:
if self._state == -1:
return True
if self._state == -2:
return False
return None
def on_launch(self, stamp):
with self._lock:
if self._state != 0:
raise RuntimeError('monitor is already turned on')
self._reset()
self.time_launch = stamp
self._state = 3
self.time_state = stamp
self.on_enter_scope(stamp)
return True
def on_shutdown(self, stamp):
with self._lock:
if self._state == 0:
raise RuntimeError('monitor is already turned off')
self.time_shutdown = stamp
self._state = 0
self.time_state = stamp
return True
def on_timer(self, stamp):
with self._lock:
if self._state == 2:
assert len(self._pool) >= 1, 'missing trigger event'
while self._pool and (stamp - self._pool[0].timestamp) >= 0.1:
self._pool.popleft()
if not self._pool:
self._state = 3
self.time_state = stamp
return True
def on_msg__b(self, msg, stamp):
with self._lock:
if self._state == 2:
assert len(self._pool) >= 1, 'missing trigger event'
while self._pool and (stamp - self._pool[0].timestamp) >= 0.1:
self._pool.popleft()
if not self._pool:
self._state = 3
self.time_state = stamp
if self._state == 2:
assert len(self._pool) >= 1, 'missing trigger event'
rec = self._pool[0]
if msg.psi:
self.witness.append(rec)
self.witness.append(MsgRecord('/b', stamp, msg))
self._pool.clear()
self._state = -2
self.time_state = stamp
self.on_violation(stamp, self.witness)
return True
return False
def on_msg__q(self, msg, stamp):
with self._lock:
if self._state == 2:
assert len(self._pool) >= 1, 'missing trigger event'
while self._pool and (stamp - self._pool[0].timestamp) >= 0.1:
self._pool.popleft()
if not self._pool:
self._state = 3
self.time_state = stamp
if self._state == 2:
self._pool.clear()
self.witness.append(MsgRecord('/q', stamp, msg))
self._state = -1
self.time_state = stamp
self.on_exit_scope(stamp)
self.on_success(stamp, self.witness)
return True
if self._state == 3:
self._pool.clear()
self.witness.append(MsgRecord('/q', stamp, msg))
self._state = -1
self.time_state = stamp
self.on_exit_scope(stamp)
self.on_success(stamp, self.witness)
return True
return False
def on_msg__a(self, msg, stamp):
with self._lock:
if self._state == 2:
assert len(self._pool) >= 1, 'missing trigger event'
while self._pool and (stamp - self._pool[0].timestamp) >= 0.1:
self._pool.popleft()
if not self._pool:
self._state = 3
self.time_state = stamp
if self._state == 2:
if msg.phi:
self._pool.append(MsgRecord('/a', stamp, msg))
return True
if self._state == 3:
if msg.phi:
self._pool.append(MsgRecord('/a', stamp, msg))
self._state = 2
self.time_state = stamp
return True
return False
def _reset(self):
self.witness = []
self._pool = deque((), 1)
self.time_launch = -1
self.time_shutdown = -1
self.time_state = -1
def _noop(self, *args):
pass
class PropertyMonitor(object):
__slots__ = (
'_lock', # concurrency control
'_state', # currently active state
'_pool', # MsgRecord deque to hold temporary records
'witness', # MsgRecord list of observed events
'on_enter_scope', # callback upon entering the scope
'on_exit_scope', # callback upon exiting the scope
'on_violation', # callback upon verdict of False
'on_success', # callback upon verdict of True
'time_launch', # when was the monitor launched
'time_shutdown', # when was the monitor shutdown
'time_state', # when did the last state transition occur
'cb_map', # mapping of topic names to callback functions
)
PROP_ID = 'None'
PROP_TITLE = '''None'''
PROP_DESC = '''None'''
HPL_PROPERTY = r'''until /b { True }: /a { True } forbids /b { True } within 0.1s'''
def __init__(self):
self._lock = Lock()
self._reset()
self.on_enter_scope = self._noop
self.on_exit_scope = self._noop
self.on_violation = self._noop
self.on_success = self._noop
self._state = 0
self.cb_map = {
'/b': self.on_msg__b,
'/a': self.on_msg__a,
}
@property
def verdict(self):
with self._lock:
if self._state == -1:
return True
if self._state == -2:
return False
return None
def on_launch(self, stamp):
with self._lock:
if self._state != 0:
raise RuntimeError('monitor is already turned on')
self._reset()
self.time_launch = stamp
self._state = 3
self.time_state = stamp
self.on_enter_scope(stamp)
return True
def on_shutdown(self, stamp):
with self._lock:
if self._state == 0:
raise RuntimeError('monitor is already turned off')
self.time_shutdown = stamp
self._state = 0
self.time_state = stamp
return True
def on_timer(self, stamp):
with self._lock:
if self._state == 2:
assert len(self._pool) >= 1, 'missing trigger event'
while self._pool and (stamp - self._pool[0].timestamp) >= 0.1:
self._pool.popleft()
if not self._pool:
self._state = 3
self.time_state = stamp
return True
def on_msg__b(self, msg, stamp):
with self._lock:
if self._state == 2:
assert len(self._pool) >= 1, 'missing trigger event'
while self._pool and (stamp - self._pool[0].timestamp) >= 0.1:
self._pool.popleft()
if not self._pool:
self._state = 3
self.time_state = stamp
if self._state == 2:
self._pool.clear()
self.witness.append(MsgRecord('/b', stamp, msg))
self._state = -1
self.time_state = stamp
self.on_exit_scope(stamp)
self.on_success(stamp, self.witness)
return True
assert len(self._pool) >= 1, 'missing trigger event'
rec = self._pool[0]
self.witness.append(rec)
self.witness.append(MsgRecord('/b', stamp, msg))
self._pool.clear()
self._state = -2
self.time_state = stamp
self.on_violation(stamp, self.witness)
return True
if self._state == 3:
self._pool.clear()
self.witness.append(MsgRecord('/b', stamp, msg))
self._state = -1
self.time_state = stamp
self.on_exit_scope(stamp)
self.on_success(stamp, self.witness)
return True
return False
def on_msg__a(self, msg, stamp):
with self._lock:
if self._state == 2:
assert len(self._pool) >= 1, 'missing trigger event'
while self._pool and (stamp - self._pool[0].timestamp) >= 0.1:
self._pool.popleft()
if not self._pool:
self._state = 3
self.time_state = stamp
if self._state == 2:
self._pool.append(MsgRecord('/a', stamp, msg))
return True
if self._state == 3:
self._pool.append(MsgRecord('/a', stamp, msg))
self._state = 2
self.time_state = stamp
return True
return False
def _reset(self):
self.witness = []
self._pool = deque((), 1)
self.time_launch = -1
self.time_shutdown = -1
self.time_state = -1
def _noop(self, *args):
pass
class PropertyMonitor(object):
__slots__ = (
'_lock', # concurrency control
'_state', # currently active state
'_pool', # MsgRecord deque to hold temporary records
'witness', # MsgRecord list of observed events
'on_enter_scope', # callback upon entering the scope
'on_exit_scope', # callback upon exiting the scope
'on_violation', # callback upon verdict of False
'on_success', # callback upon verdict of True
'time_launch', # when was the monitor launched
'time_shutdown', # when was the monitor shutdown
'time_state', # when did the last state transition occur
'cb_map', # mapping of topic names to callback functions
)
PROP_ID = 'None'
PROP_TITLE = '''None'''
PROP_DESC = '''None'''
HPL_PROPERTY = r'''until /a { True }: /a { True } forbids /b { True } within 0.1s'''
def __init__(self):
self._lock = Lock()
self._reset()
self.on_enter_scope = self._noop
self.on_exit_scope = self._noop
self.on_violation = self._noop
self.on_success = self._noop
self._state = 0
self.cb_map = {
'/b': self.on_msg__b,
'/a': self.on_msg__a,
}
@property
def verdict(self):
with self._lock:
if self._state == -1:
return True
if self._state == -2:
return False
return None
def on_launch(self, stamp):
with self._lock:
if self._state != 0:
raise RuntimeError('monitor is already turned on')
self._reset()
self.time_launch = stamp
self._state = 3
self.time_state = stamp
self.on_enter_scope(stamp)
return True
def on_shutdown(self, stamp):
with self._lock:
if self._state == 0:
raise RuntimeError('monitor is already turned off')
self.time_shutdown = stamp
self._state = 0
self.time_state = stamp
return True
def on_timer(self, stamp):
with self._lock:
if self._state == 2:
assert len(self._pool) >= 1, 'missing trigger event'
while self._pool and (stamp - self._pool[0].timestamp) >= 0.1:
self._pool.popleft()
if not self._pool:
self._state = 3
self.time_state = stamp
return True
def on_msg__b(self, msg, stamp):
with self._lock:
if self._state == 2:
assert len(self._pool) >= 1, 'missing trigger event'
while self._pool and (stamp - self._pool[0].timestamp) >= 0.1:
self._pool.popleft()
if not self._pool:
self._state = 3
self.time_state = stamp
if self._state == 2:
assert len(self._pool) >= 1, 'missing trigger event'
rec = self._pool[0]
self.witness.append(rec)
self.witness.append(MsgRecord('/b', stamp, msg))
self._pool.clear()
self._state = -2
self.time_state = stamp
self.on_violation(stamp, self.witness)
return True
return False
def on_msg__a(self, msg, stamp):
with self._lock:
if self._state == 2:
assert len(self._pool) >= 1, 'missing trigger event'
while self._pool and (stamp - self._pool[0].timestamp) >= 0.1:
self._pool.popleft()
if not self._pool:
self._state = 3
self.time_state = stamp
if self._state == 2:
self._pool.clear()
self.witness.append(MsgRecord('/a', stamp, msg))
self._state = -1
self.time_state = stamp
self.on_exit_scope(stamp)
self.on_success(stamp, self.witness)
return True
self._pool.append(MsgRecord('/a', stamp, msg))
return True
if self._state == 3:
self._pool.clear()
self.witness.append(MsgRecord('/a', stamp, msg))
self._state = -1
self.time_state = stamp
self.on_exit_scope(stamp)
self.on_success(stamp, self.witness)
return True
self._pool.append(MsgRecord('/a', stamp, msg))
self._state = 2
self.time_state = stamp
return True
return False
def _reset(self):
self.witness = []
self._pool = deque((), 1)
self.time_launch = -1
self.time_shutdown = -1
self.time_state = -1
def _noop(self, *args):
pass
class PropertyMonitor(object):
__slots__ = (
'_lock', # concurrency control
'_state', # currently active state
'_pool', # MsgRecord deque to hold temporary records
'witness', # MsgRecord list of observed events
'on_enter_scope', # callback upon entering the scope
'on_exit_scope', # callback upon exiting the scope
'on_violation', # callback upon verdict of False
'on_success', # callback upon verdict of True
'time_launch', # when was the monitor launched
'time_shutdown', # when was the monitor shutdown
'time_state', # when did the last state transition occur
'cb_map', # mapping of topic names to callback functions
)
PROP_ID = 'None'
PROP_TITLE = '''None'''
PROP_DESC = '''None'''
HPL_PROPERTY = r'''after /p { phi } until /q { psi }: /a { alpha } forbids /b { beta }'''
def __init__(self):
self._lock = Lock()
self._reset()
self.on_enter_scope = self._noop
self.on_exit_scope = self._noop
self.on_violation = self._noop
self.on_success = self._noop
self._state = 0
self.cb_map = {
'/a': self.on_msg__a,
'/b': self.on_msg__b,
'/q': self.on_msg__q,
'/p': self.on_msg__p,
}
@property
def verdict(self):
with self._lock:
if self._state == -1:
return True
if self._state == -2:
return False
return None
def on_launch(self, stamp):
with self._lock:
if self._state != 0:
raise RuntimeError('monitor is already turned on')
self._reset()
self.time_launch = stamp
self._state = 1
self.time_state = stamp
return True
def on_shutdown(self, stamp):
with self._lock:
if self._state == 0:
raise RuntimeError('monitor is already turned off')
self.time_shutdown = stamp
self._state = 0
self.time_state = stamp
return True
def on_timer(self, stamp):
return True
def on_msg__a(self, msg, stamp):
with self._lock:
if self._state == 2:
return False # nothing to do
if self._state == 3:
if msg.alpha:
self._pool.append(MsgRecord('/a', stamp, msg))
self._state = 2
self.time_state = stamp
return True
return False
def on_msg__b(self, msg, stamp):
with self._lock:
if self._state == 2:
assert len(self._pool) >= 1, 'missing trigger event'
rec = self._pool[0]
if msg.beta:
self.witness.append(rec)
self.witness.append(MsgRecord('/b', stamp, msg))
self._pool.clear()
self._state = -2
self.time_state = stamp
self.on_violation(stamp, self.witness)
return True
return False
def on_msg__q(self, msg, stamp):
with self._lock:
if self._state == 2:
if msg.psi:
self._pool.clear()
self.witness = []
self._state = 1
self.time_state = stamp
self.on_exit_scope(stamp)
return True
if self._state == 3:
if msg.psi:
self._pool.clear()
self.witness = []
self._state = 1
self.time_state = stamp
self.on_exit_scope(stamp)
return True
return False
def on_msg__p(self, msg, stamp):
with self._lock:
if self._state == 1:
if msg.phi:
self.witness.append(MsgRecord('/p', stamp, msg))
self._state = 3
self.time_state = stamp
self.on_enter_scope(stamp)
return True
return False
def _reset(self):
self.witness = []
self._pool = deque((), 1)
self.time_launch = -1
self.time_shutdown = -1
self.time_state = -1
def _noop(self, *args):
pass
class PropertyMonitor(object):
__slots__ = (
'_lock', # concurrency control
'_state', # currently active state
'_pool', # MsgRecord deque to hold temporary records
'witness', # MsgRecord list of observed events
'on_enter_scope', # callback upon entering the scope
'on_exit_scope', # callback upon exiting the scope
'on_violation', # callback upon verdict of False
'on_success', # callback upon verdict of True
'time_launch', # when was the monitor launched
'time_shutdown', # when was the monitor shutdown
'time_state', # when did the last state transition occur
'cb_map', # mapping of topic names to callback functions
)
PROP_ID = 'None'
PROP_TITLE = '''None'''
PROP_DESC = '''None'''
HPL_PROPERTY = r'''after /p { phi } until /q { psi }: /a { alpha } forbids /b { beta } within 0.1s'''
def __init__(self):
self._lock = Lock()
self._reset()
self.on_enter_scope = self._noop
self.on_exit_scope = self._noop
self.on_violation = self._noop
self.on_success = self._noop
self._state = 0
self.cb_map = {
'/a': self.on_msg__a,
'/b': self.on_msg__b,
'/q': self.on_msg__q,
'/p': self.on_msg__p,
}
@property
def verdict(self):
with self._lock:
if self._state == -1:
return True
if self._state == -2:
return False
return None
def on_launch(self, stamp):
with self._lock:
if self._state != 0:
raise RuntimeError('monitor is already turned on')
self._reset()
self.time_launch = stamp
self._state = 1
self.time_state = stamp
return True
def on_shutdown(self, stamp):
with self._lock:
if self._state == 0:
raise RuntimeError('monitor is already turned off')
self.time_shutdown = stamp
self._state = 0
self.time_state = stamp
return True
def on_timer(self, stamp):
with self._lock:
if self._state == 2:
assert len(self._pool) >= 1, 'missing trigger event'
while self._pool and (stamp - self._pool[0].timestamp) >= 0.1:
self._pool.popleft()
if not self._pool:
self._state = 3
self.time_state = stamp
return True
def on_msg__a(self, msg, stamp):
with self._lock:
if self._state == 2:
assert len(self._pool) >= 1, 'missing trigger event'
while self._pool and (stamp - self._pool[0].timestamp) >= 0.1:
self._pool.popleft()
if not self._pool:
self._state = 3
self.time_state = stamp
if self._state == 2:
if msg.alpha:
self._pool.append(MsgRecord('/a', stamp, msg))
return True
if self._state == 3:
if msg.alpha:
self._pool.append(MsgRecord('/a', stamp, msg))
self._state = 2
self.time_state = stamp
return True
return False
def on_msg__b(self, msg, stamp):
with self._lock:
if self._state == 2:
assert len(self._pool) >= 1, 'missing trigger event'
while self._pool and (stamp - self._pool[0].timestamp) >= 0.1:
self._pool.popleft()
if not self._pool:
self._state = 3
self.time_state = stamp
if self._state == 2:
assert len(self._pool) >= 1, 'missing trigger event'
rec = self._pool[0]
if msg.beta:
self.witness.append(rec)
self.witness.append(MsgRecord('/b', stamp, msg))
self._pool.clear()
self._state = -2
self.time_state = stamp
self.on_violation(stamp, self.witness)
return True
return False
def on_msg__q(self, msg, stamp):
with self._lock:
if self._state == 2:
assert len(self._pool) >= 1, 'missing trigger event'
while self._pool and (stamp - self._pool[0].timestamp) >= 0.1:
self._pool.popleft()
if not self._pool:
self._state = 3
self.time_state = stamp
if self._state == 2:
if msg.psi:
self._pool.clear()
self.witness = []
self._state = 1
self.time_state = stamp
self.on_exit_scope(stamp)
return True
if self._state == 3:
if msg.psi:
self._pool.clear()
self.witness = []
self._state = 1
self.time_state = stamp
self.on_exit_scope(stamp)
return True
return False
def on_msg__p(self, msg, stamp):
with self._lock:
if self._state == 2:
assert len(self._pool) >= 1, 'missing trigger event'
while self._pool and (stamp - self._pool[0].timestamp) >= 0.1:
self._pool.popleft()
if not self._pool:
self._state = 3
self.time_state = stamp
if self._state == 1:
if msg.phi:
self.witness.append(MsgRecord('/p', stamp, msg))
self._state = 3
self.time_state = stamp
self.on_enter_scope(stamp)
return True
return False
def _reset(self):
self.witness = []
self._pool = deque((), 1)
self.time_launch = -1
self.time_shutdown = -1
self.time_state = -1
def _noop(self, *args):
pass
class PropertyMonitor(object):
__slots__ = (
'_lock', # concurrency control
'_state', # currently active state
'_pool', # MsgRecord deque to hold temporary records
'witness', # MsgRecord list of observed events
'on_enter_scope', # callback upon entering the scope
'on_exit_scope', # callback upon exiting the scope
'on_violation', # callback upon verdict of False
'on_success', # callback upon verdict of True
'time_launch', # when was the monitor launched
'time_shutdown', # when was the monitor shutdown
'time_state', # when did the last state transition occur
'cb_map', # mapping of topic names to callback functions
)
PROP_ID = 'None'
PROP_TITLE = '''None'''
PROP_DESC = '''None'''
HPL_PROPERTY = r'''globally: /a as A { True } forbids /b { (x < @A.x) }'''
def __init__(self):
self._lock = Lock()
self._reset()
self.on_enter_scope = self._noop
self.on_exit_scope = self._noop
self.on_violation = self._noop
self.on_success = self._noop
self._state = 0
self.cb_map = {
'/b': self.on_msg__b,
'/a': self.on_msg__a,
}
@property
def verdict(self):
with self._lock:
if self._state == -1:
return True
if self._state == -2:
return False
return None
def on_launch(self, stamp):
with self._lock:
if self._state != 0:
raise RuntimeError('monitor is already turned on')
self._reset()
self.time_launch = stamp
self._state = 3
self.time_state = stamp
self.on_enter_scope(stamp)
return True
def on_shutdown(self, stamp):
with self._lock:
if self._state == 0:
raise RuntimeError('monitor is already turned off')
self.time_shutdown = stamp
self._state = 0
self.time_state = stamp
return True
def on_timer(self, stamp):
return True
def on_msg__b(self, msg, stamp):
with self._lock:
if self._state == 2:
assert len(self._pool) >= 1, 'missing trigger event'
for rec in self._pool:
v_A = rec.msg
if (msg.x < v_A.x):
self.witness.append(rec)
self.witness.append(MsgRecord('/b', stamp, msg))
self._pool.clear()
self._state = -2
self.time_state = stamp
self.on_violation(stamp, self.witness)
return True
return False
def on_msg__a(self, msg, stamp):
with self._lock:
if self._state == 2:
rec = MsgRecord('/a', stamp, msg)
self._pool_insert(rec)
return True
if self._state == 3:
rec = MsgRecord('/a', stamp, msg)
self._pool_insert(rec)
self._state = 2
self.time_state = stamp
return True
return False
def _reset(self):
self.witness = []
self._pool = deque()
self.time_launch = -1
self.time_shutdown = -1
self.time_state = -1
def _pool_insert(self, rec):
# this method is only needed to ensure Python 2.7 compatibility
if not self._pool:
return self._pool.append(rec)
stamp = rec.timestamp
if len(self._pool) == 1:
if stamp >= self._pool[0].timestamp:
return self._pool.append(rec)
return self._pool.appendleft(rec)
for i in range(len(self._pool), 0, -1):
if stamp >= self._pool[i-1].timestamp:
try:
self._pool.insert(i, rec) # Python >= 3.5
except AttributeError as e:
tmp = [self._pool.pop() for j in range(i, len(self._pool))]
self._pool.append(rec)
self._pool.extend(reversed(tmp))
break
else:
self._pool.appendleft(rec)
def _noop(self, *args):
pass
class PropertyMonitor(object):
__slots__ = (
'_lock', # concurrency control
'_state', # currently active state
'_pool', # MsgRecord deque to hold temporary records
'witness', # MsgRecord list of observed events
'on_enter_scope', # callback upon entering the scope
'on_exit_scope', # callback upon exiting the scope
'on_violation', # callback upon verdict of False
'on_success', # callback upon verdict of True
'time_launch', # when was the monitor launched
'time_shutdown', # when was the monitor shutdown
'time_state', # when did the last state transition occur
'cb_map', # mapping of topic names to callback functions
)
PROP_ID = 'None'
PROP_TITLE = '''None'''
PROP_DESC = '''None'''
HPL_PROPERTY = r'''globally: /a as A { (x > 0) } forbids /b { (x < @A.x) } within 0.1s'''
def __init__(self):
self._lock = Lock()
self._reset()
self.on_enter_scope = self._noop
self.on_exit_scope = self._noop
self.on_violation = self._noop
self.on_success = self._noop
self._state = 0
self.cb_map = {
'/b': self.on_msg__b,
'/a': self.on_msg__a,
}
@property
def verdict(self):
with self._lock:
if self._state == -1:
return True
if self._state == -2:
return False
return None
def on_launch(self, stamp):
with self._lock:
if self._state != 0:
raise RuntimeError('monitor is already turned on')
self._reset()
self.time_launch = stamp
self._state = 3
self.time_state = stamp
self.on_enter_scope(stamp)
return True
def on_shutdown(self, stamp):
with self._lock:
if self._state == 0:
raise RuntimeError('monitor is already turned off')
self.time_shutdown = stamp
self._state = 0
self.time_state = stamp
return True
def on_timer(self, stamp):
with self._lock:
if self._state == 2:
assert len(self._pool) >= 1, 'missing trigger event'
while self._pool and (stamp - self._pool[0].timestamp) >= 0.1:
self._pool.popleft()
if not self._pool:
self._state = 3
self.time_state = stamp
return True
def on_msg__b(self, msg, stamp):
with self._lock:
if self._state == 2:
assert len(self._pool) >= 1, 'missing trigger event'
while self._pool and (stamp - self._pool[0].timestamp) >= 0.1:
self._pool.popleft()
if not self._pool:
self._state = 3
self.time_state = stamp
if self._state == 2:
assert len(self._pool) >= 1, 'missing trigger event'
for rec in self._pool:
v_A = rec.msg
if (msg.x < v_A.x):
self.witness.append(rec)
self.witness.append(MsgRecord('/b', stamp, msg))
self._pool.clear()
self._state = -2
self.time_state = stamp
self.on_violation(stamp, self.witness)
return True
return False
def on_msg__a(self, msg, stamp):
with self._lock:
if self._state == 2:
assert len(self._pool) >= 1, 'missing trigger event'
while self._pool and (stamp - self._pool[0].timestamp) >= 0.1:
self._pool.popleft()
if not self._pool:
self._state = 3
self.time_state = stamp
if self._state == 2:
if (msg.x > 0):
rec = MsgRecord('/a', stamp, msg)
self._pool_insert(rec)
return True
if self._state == 3:
if (msg.x > 0):
rec = MsgRecord('/a', stamp, msg)
self._pool_insert(rec)
self._state = 2
self.time_state = stamp
return True
return False
def _reset(self):
self.witness = []
self._pool = deque()
self.time_launch = -1
self.time_shutdown = -1
self.time_state = -1
def _pool_insert(self, rec):
# this method is only needed to ensure Python 2.7 compatibility
if not self._pool:
return self._pool.append(rec)
stamp = rec.timestamp
if len(self._pool) == 1:
if stamp >= self._pool[0].timestamp:
return self._pool.append(rec)
return self._pool.appendleft(rec)
for i in range(len(self._pool), 0, -1):
if stamp >= self._pool[i-1].timestamp:
try:
self._pool.insert(i, rec) # Python >= 3.5
except AttributeError as e:
tmp = [self._pool.pop() for j in range(i, len(self._pool))]
self._pool.append(rec)
self._pool.extend(reversed(tmp))
break
else:
self._pool.appendleft(rec)
def _noop(self, *args):
pass
class PropertyMonitor(object):
__slots__ = (
'_lock', # concurrency control
'_state', # currently active state
'_pool', # MsgRecord deque to hold temporary records
'witness', # MsgRecord list of observed events
'on_enter_scope', # callback upon entering the scope
'on_exit_scope', # callback upon exiting the scope
'on_violation', # callback upon verdict of False
'on_success', # callback upon verdict of True
'time_launch', # when was the monitor launched
'time_shutdown', # when was the monitor shutdown
'time_state', # when did the last state transition occur
'cb_map', # mapping of topic names to callback functions
)
PROP_ID = 'None'
PROP_TITLE = '''None'''
PROP_DESC = '''None'''
HPL_PROPERTY = r'''globally: /a as A { (x > 0) } forbids (/b1 { (x < @A.x) } or /b2 { (y < @A.y) }) within 0.1s'''
def __init__(self):
self._lock = Lock()
self._reset()
self.on_enter_scope = self._noop
self.on_exit_scope = self._noop
self.on_violation = self._noop
self.on_success = self._noop
self._state = 0
self.cb_map = {
'/b2': self.on_msg__b2,
'/a': self.on_msg__a,
'/b1': self.on_msg__b1,
}
@property
def verdict(self):
with self._lock:
if self._state == -1:
return True
if self._state == -2:
return False
return None
def on_launch(self, stamp):
with self._lock:
if self._state != 0:
raise RuntimeError('monitor is already turned on')
self._reset()
self.time_launch = stamp
self._state = 3
self.time_state = stamp
self.on_enter_scope(stamp)
return True
def on_shutdown(self, stamp):
with self._lock:
if self._state == 0:
raise RuntimeError('monitor is already turned off')
self.time_shutdown = stamp
self._state = 0
self.time_state = stamp
return True
def on_timer(self, stamp):
with self._lock:
if self._state == 2:
assert len(self._pool) >= 1, 'missing trigger event'
while self._pool and (stamp - self._pool[0].timestamp) >= 0.1:
self._pool.popleft()
if not self._pool:
self._state = 3
self.time_state = stamp
return True
def on_msg__b2(self, msg, stamp):
with self._lock:
if self._state == 2:
assert len(self._pool) >= 1, 'missing trigger event'
while self._pool and (stamp - self._pool[0].timestamp) >= 0.1:
self._pool.popleft()
if not self._pool:
self._state = 3
self.time_state = stamp
if self._state == 2:
assert len(self._pool) >= 1, 'missing trigger event'
for rec in self._pool:
v_A = rec.msg
if (msg.y < v_A.y):
self.witness.append(rec)
self.witness.append(MsgRecord('/b2', stamp, msg))
self._pool.clear()
self._state = -2
self.time_state = stamp
self.on_violation(stamp, self.witness)
return True
return False
def on_msg__a(self, msg, stamp):
with self._lock:
if self._state == 2:
assert len(self._pool) >= 1, 'missing trigger event'
while self._pool and (stamp - self._pool[0].timestamp) >= 0.1:
self._pool.popleft()
if not self._pool:
self._state = 3
self.time_state = stamp
if self._state == 2:
if (msg.x > 0):
rec = MsgRecord('/a', stamp, msg)
self._pool_insert(rec)
return True
if self._state == 3:
if (msg.x > 0):
rec = MsgRecord('/a', stamp, msg)
self._pool_insert(rec)
self._state = 2
self.time_state = stamp
return True
return False
def on_msg__b1(self, msg, stamp):
with self._lock:
if self._state == 2:
assert len(self._pool) >= 1, 'missing trigger event'
while self._pool and (stamp - self._pool[0].timestamp) >= 0.1:
self._pool.popleft()
if not self._pool:
self._state = 3
self.time_state = stamp
if self._state == 2:
assert len(self._pool) >= 1, 'missing trigger event'
for rec in self._pool:
v_A = rec.msg
if (msg.x < v_A.x):
self.witness.append(rec)
self.witness.append(MsgRecord('/b1', stamp, msg))
self._pool.clear()
self._state = -2
self.time_state = stamp
self.on_violation(stamp, self.witness)
return True
return False
def _reset(self):
self.witness = []
self._pool = deque()
self.time_launch = -1
self.time_shutdown = -1
self.time_state = -1
def _pool_insert(self, rec):
# this method is only needed to ensure Python 2.7 compatibility
if not self._pool:
return self._pool.append(rec)
stamp = rec.timestamp
if len(self._pool) == 1:
if stamp >= self._pool[0].timestamp:
return self._pool.append(rec)
return self._pool.appendleft(rec)
for i in range(len(self._pool), 0, -1):
if stamp >= self._pool[i-1].timestamp:
try:
self._pool.insert(i, rec) # Python >= 3.5
except AttributeError as e:
tmp = [self._pool.pop() for j in range(i, len(self._pool))]
self._pool.append(rec)
self._pool.extend(reversed(tmp))
break
else:
self._pool.appendleft(rec)
def _noop(self, *args):
pass
class PropertyMonitor(object):
__slots__ = (
'_lock', # concurrency control
'_state', # currently active state
'_pool', # MsgRecord deque to hold temporary records
'witness', # MsgRecord list of observed events
'on_enter_scope', # callback upon entering the scope
'on_exit_scope', # callback upon exiting the scope
'on_violation', # callback upon verdict of False
'on_success', # callback upon verdict of True
'time_launch', # when was the monitor launched
'time_shutdown', # when was the monitor shutdown
'time_state', # when did the last state transition occur
'cb_map', # mapping of topic names to callback functions
)
PROP_ID = 'None'
PROP_TITLE = '''None'''
PROP_DESC = '''None'''
HPL_PROPERTY = r'''after /p as P { True } until /q { (x > @P.x) }: /a as A { (x = @P.x) } forbids (/b1 { (x < (@A.x + @P.x)) } or /b2 { (x in {@P.x, @A.x}) }) within 0.1s'''
def __init__(self):
self._lock = Lock()
self._reset()
self.on_enter_scope = self._noop
self.on_exit_scope = self._noop
self.on_violation = self._noop
self.on_success = self._noop
self._state = 0
self.cb_map = {
'/b1': self.on_msg__b1,
'/b2': self.on_msg__b2,
'/a': self.on_msg__a,
'/q': self.on_msg__q,
'/p': self.on_msg__p,
}
@property
def verdict(self):
with self._lock:
if self._state == -1:
return True
if self._state == -2:
return False
return None
def on_launch(self, stamp):
with self._lock:
if self._state != 0:
raise RuntimeError('monitor is already turned on')
self._reset()
self.time_launch = stamp
self._state = 1
self.time_state = stamp
return True
def on_shutdown(self, stamp):
with self._lock:
if self._state == 0:
raise RuntimeError('monitor is already turned off')
self.time_shutdown = stamp
self._state = 0
self.time_state = stamp
return True
def on_timer(self, stamp):
with self._lock:
if self._state == 2:
assert len(self._pool) >= 1, 'missing trigger event'
while self._pool and (stamp - self._pool[0].timestamp) >= 0.1:
self._pool.popleft()
if not self._pool:
self._state = 3
self.time_state = stamp
return True
def on_msg__b1(self, msg, stamp):
with self._lock:
if self._state == 2:
assert len(self._pool) >= 1, 'missing trigger event'
while self._pool and (stamp - self._pool[0].timestamp) >= 0.1:
self._pool.popleft()
if not self._pool:
self._state = 3
self.time_state = stamp
if self._state == 2:
assert len(self._pool) >= 1, 'missing trigger event'
assert len(self.witness) >= 1, 'missing activator event'
v_P = self.witness[0].msg
for rec in self._pool:
v_A = rec.msg
if (msg.x < (v_A.x + v_P.x)):
self.witness.append(rec)
self.witness.append(MsgRecord('/b1', stamp, msg))
self._pool.clear()
self._state = -2
self.time_state = stamp
self.on_violation(stamp, self.witness)
return True
return False
def on_msg__b2(self, msg, stamp):
with self._lock:
if self._state == 2:
assert len(self._pool) >= 1, 'missing trigger event'
while self._pool and (stamp - self._pool[0].timestamp) >= 0.1:
self._pool.popleft()
if not self._pool:
self._state = 3
self.time_state = stamp
if self._state == 2:
assert len(self._pool) >= 1, 'missing trigger event'
assert len(self.witness) >= 1, 'missing activator event'
v_P = self.witness[0].msg
for rec in self._pool:
v_A = rec.msg
if (msg.x in (v_P.x, v_A.x)):
self.witness.append(rec)
self.witness.append(MsgRecord('/b2', stamp, msg))
self._pool.clear()
self._state = -2
self.time_state = stamp
self.on_violation(stamp, self.witness)
return True
return False
def on_msg__a(self, msg, stamp):
with self._lock:
if self._state == 2:
assert len(self._pool) >= 1, 'missing trigger event'
while self._pool and (stamp - self._pool[0].timestamp) >= 0.1:
self._pool.popleft()
if not self._pool:
self._state = 3
self.time_state = stamp
if self._state == 2:
assert len(self.witness) >= 1, 'missing activator'
v_P = self.witness[0].msg
if (msg.x == v_P.x):
rec = MsgRecord('/a', stamp, msg)
self._pool_insert(rec)
return True
if self._state == 3:
assert len(self.witness) >= 1, 'missing activator'
v_P = self.witness[0].msg
if (msg.x == v_P.x):
rec = MsgRecord('/a', stamp, msg)
self._pool_insert(rec)
self._state = 2
self.time_state = stamp
return True
return False
def on_msg__q(self, msg, stamp):
with self._lock:
if self._state == 2:
assert len(self._pool) >= 1, 'missing trigger event'
while self._pool and (stamp - self._pool[0].timestamp) >= 0.1:
self._pool.popleft()
if not self._pool:
self._state = 3
self.time_state = stamp
if self._state == 2:
assert len(self.witness) >= 1, 'missing activator event'
v_P = self.witness[0].msg
if (msg.x > v_P.x):
self._pool.clear()
self.witness = []
self._state = 1
self.time_state = stamp
self.on_exit_scope(stamp)
return True
if self._state == 3:
assert len(self.witness) >= 1, 'missing activator event'
v_P = self.witness[0].msg
if (msg.x > v_P.x):
self._pool.clear()
self.witness = []
self._state = 1
self.time_state = stamp
self.on_exit_scope(stamp)
return True
return False
def on_msg__p(self, msg, stamp):
with self._lock:
if self._state == 2:
assert len(self._pool) >= 1, 'missing trigger event'
while self._pool and (stamp - self._pool[0].timestamp) >= 0.1:
self._pool.popleft()
if not self._pool:
self._state = 3
self.time_state = stamp
if self._state == 1:
self.witness.append(MsgRecord('/p', stamp, msg))
self._state = 3
self.time_state = stamp
self.on_enter_scope(stamp)
return True
return False
def _reset(self):
self.witness = []
self._pool = deque()
self.time_launch = -1
self.time_shutdown = -1
self.time_state = -1
def _pool_insert(self, rec):
# this method is only needed to ensure Python 2.7 compatibility
if not self._pool:
return self._pool.append(rec)
stamp = rec.timestamp
if len(self._pool) == 1:
if stamp >= self._pool[0].timestamp:
return self._pool.append(rec)
return self._pool.appendleft(rec)
for i in range(len(self._pool), 0, -1):
if stamp >= self._pool[i-1].timestamp:
try:
self._pool.insert(i, rec) # Python >= 3.5
except AttributeError as e:
tmp = [self._pool.pop() for j in range(i, len(self._pool))]
self._pool.append(rec)
self._pool.extend(reversed(tmp))
break
else:
self._pool.appendleft(rec)
def _noop(self, *args):
pass
| class Propertymonitor(object):
__slots__ = ('_lock', '_state', '_pool', 'witness', 'on_enter_scope', 'on_exit_scope', 'on_violation', 'on_success', 'time_launch', 'time_shutdown', 'time_state', 'cb_map')
prop_id = 'None'
prop_title = 'None'
prop_desc = 'None'
hpl_property = 'globally: /a { True } forbids /b { True }'
def __init__(self):
self._lock = lock()
self._reset()
self.on_enter_scope = self._noop
self.on_exit_scope = self._noop
self.on_violation = self._noop
self.on_success = self._noop
self._state = 0
self.cb_map = {'/b': self.on_msg__b, '/a': self.on_msg__a}
@property
def verdict(self):
with self._lock:
if self._state == -1:
return True
if self._state == -2:
return False
return None
def on_launch(self, stamp):
with self._lock:
if self._state != 0:
raise runtime_error('monitor is already turned on')
self._reset()
self.time_launch = stamp
self._state = 3
self.time_state = stamp
self.on_enter_scope(stamp)
return True
def on_shutdown(self, stamp):
with self._lock:
if self._state == 0:
raise runtime_error('monitor is already turned off')
self.time_shutdown = stamp
self._state = 0
self.time_state = stamp
return True
def on_timer(self, stamp):
return True
def on_msg__b(self, msg, stamp):
with self._lock:
if self._state == 2:
assert len(self._pool) >= 1, 'missing trigger event'
rec = self._pool[0]
self.witness.append(rec)
self.witness.append(msg_record('/b', stamp, msg))
self._pool.clear()
self._state = -2
self.time_state = stamp
self.on_violation(stamp, self.witness)
return True
return False
def on_msg__a(self, msg, stamp):
with self._lock:
if self._state == 2:
return False
if self._state == 3:
self._pool.append(msg_record('/a', stamp, msg))
self._state = 2
self.time_state = stamp
return True
return False
def _reset(self):
self.witness = []
self._pool = deque((), 1)
self.time_launch = -1
self.time_shutdown = -1
self.time_state = -1
def _noop(self, *args):
pass
class Propertymonitor(object):
__slots__ = ('_lock', '_state', '_pool', 'witness', 'on_enter_scope', 'on_exit_scope', 'on_violation', 'on_success', 'time_launch', 'time_shutdown', 'time_state', 'cb_map')
prop_id = 'None'
prop_title = 'None'
prop_desc = 'None'
hpl_property = 'globally: /a { True } forbids /b { True } within 0.1s'
def __init__(self):
self._lock = lock()
self._reset()
self.on_enter_scope = self._noop
self.on_exit_scope = self._noop
self.on_violation = self._noop
self.on_success = self._noop
self._state = 0
self.cb_map = {'/b': self.on_msg__b, '/a': self.on_msg__a}
@property
def verdict(self):
with self._lock:
if self._state == -1:
return True
if self._state == -2:
return False
return None
def on_launch(self, stamp):
with self._lock:
if self._state != 0:
raise runtime_error('monitor is already turned on')
self._reset()
self.time_launch = stamp
self._state = 3
self.time_state = stamp
self.on_enter_scope(stamp)
return True
def on_shutdown(self, stamp):
with self._lock:
if self._state == 0:
raise runtime_error('monitor is already turned off')
self.time_shutdown = stamp
self._state = 0
self.time_state = stamp
return True
def on_timer(self, stamp):
with self._lock:
if self._state == 2:
assert len(self._pool) >= 1, 'missing trigger event'
while self._pool and stamp - self._pool[0].timestamp >= 0.1:
self._pool.popleft()
if not self._pool:
self._state = 3
self.time_state = stamp
return True
def on_msg__b(self, msg, stamp):
with self._lock:
if self._state == 2:
assert len(self._pool) >= 1, 'missing trigger event'
while self._pool and stamp - self._pool[0].timestamp >= 0.1:
self._pool.popleft()
if not self._pool:
self._state = 3
self.time_state = stamp
if self._state == 2:
assert len(self._pool) >= 1, 'missing trigger event'
rec = self._pool[0]
self.witness.append(rec)
self.witness.append(msg_record('/b', stamp, msg))
self._pool.clear()
self._state = -2
self.time_state = stamp
self.on_violation(stamp, self.witness)
return True
return False
def on_msg__a(self, msg, stamp):
with self._lock:
if self._state == 2:
assert len(self._pool) >= 1, 'missing trigger event'
while self._pool and stamp - self._pool[0].timestamp >= 0.1:
self._pool.popleft()
if not self._pool:
self._state = 3
self.time_state = stamp
if self._state == 2:
self._pool.append(msg_record('/a', stamp, msg))
return True
if self._state == 3:
self._pool.append(msg_record('/a', stamp, msg))
self._state = 2
self.time_state = stamp
return True
return False
def _reset(self):
self.witness = []
self._pool = deque((), 1)
self.time_launch = -1
self.time_shutdown = -1
self.time_state = -1
def _noop(self, *args):
pass
class Propertymonitor(object):
__slots__ = ('_lock', '_state', '_pool', 'witness', 'on_enter_scope', 'on_exit_scope', 'on_violation', 'on_success', 'time_launch', 'time_shutdown', 'time_state', 'cb_map')
prop_id = 'None'
prop_title = 'None'
prop_desc = 'None'
hpl_property = 'globally: /a { (data > 0) } forbids /b { (data < 0) }'
def __init__(self):
self._lock = lock()
self._reset()
self.on_enter_scope = self._noop
self.on_exit_scope = self._noop
self.on_violation = self._noop
self.on_success = self._noop
self._state = 0
self.cb_map = {'/b': self.on_msg__b, '/a': self.on_msg__a}
@property
def verdict(self):
with self._lock:
if self._state == -1:
return True
if self._state == -2:
return False
return None
def on_launch(self, stamp):
with self._lock:
if self._state != 0:
raise runtime_error('monitor is already turned on')
self._reset()
self.time_launch = stamp
self._state = 3
self.time_state = stamp
self.on_enter_scope(stamp)
return True
def on_shutdown(self, stamp):
with self._lock:
if self._state == 0:
raise runtime_error('monitor is already turned off')
self.time_shutdown = stamp
self._state = 0
self.time_state = stamp
return True
def on_timer(self, stamp):
return True
def on_msg__b(self, msg, stamp):
with self._lock:
if self._state == 2:
assert len(self._pool) >= 1, 'missing trigger event'
rec = self._pool[0]
if msg.data < 0:
self.witness.append(rec)
self.witness.append(msg_record('/b', stamp, msg))
self._pool.clear()
self._state = -2
self.time_state = stamp
self.on_violation(stamp, self.witness)
return True
return False
def on_msg__a(self, msg, stamp):
with self._lock:
if self._state == 2:
return False
if self._state == 3:
if msg.data > 0:
self._pool.append(msg_record('/a', stamp, msg))
self._state = 2
self.time_state = stamp
return True
return False
def _reset(self):
self.witness = []
self._pool = deque((), 1)
self.time_launch = -1
self.time_shutdown = -1
self.time_state = -1
def _noop(self, *args):
pass
class Propertymonitor(object):
__slots__ = ('_lock', '_state', '_pool', 'witness', 'on_enter_scope', 'on_exit_scope', 'on_violation', 'on_success', 'time_launch', 'time_shutdown', 'time_state', 'cb_map')
prop_id = 'None'
prop_title = 'None'
prop_desc = 'None'
hpl_property = 'globally: /a { (data > 0) } forbids /b { (data < 0) } within 0.1s'
def __init__(self):
self._lock = lock()
self._reset()
self.on_enter_scope = self._noop
self.on_exit_scope = self._noop
self.on_violation = self._noop
self.on_success = self._noop
self._state = 0
self.cb_map = {'/b': self.on_msg__b, '/a': self.on_msg__a}
@property
def verdict(self):
with self._lock:
if self._state == -1:
return True
if self._state == -2:
return False
return None
def on_launch(self, stamp):
with self._lock:
if self._state != 0:
raise runtime_error('monitor is already turned on')
self._reset()
self.time_launch = stamp
self._state = 3
self.time_state = stamp
self.on_enter_scope(stamp)
return True
def on_shutdown(self, stamp):
with self._lock:
if self._state == 0:
raise runtime_error('monitor is already turned off')
self.time_shutdown = stamp
self._state = 0
self.time_state = stamp
return True
def on_timer(self, stamp):
with self._lock:
if self._state == 2:
assert len(self._pool) >= 1, 'missing trigger event'
while self._pool and stamp - self._pool[0].timestamp >= 0.1:
self._pool.popleft()
if not self._pool:
self._state = 3
self.time_state = stamp
return True
def on_msg__b(self, msg, stamp):
with self._lock:
if self._state == 2:
assert len(self._pool) >= 1, 'missing trigger event'
while self._pool and stamp - self._pool[0].timestamp >= 0.1:
self._pool.popleft()
if not self._pool:
self._state = 3
self.time_state = stamp
if self._state == 2:
assert len(self._pool) >= 1, 'missing trigger event'
rec = self._pool[0]
if msg.data < 0:
self.witness.append(rec)
self.witness.append(msg_record('/b', stamp, msg))
self._pool.clear()
self._state = -2
self.time_state = stamp
self.on_violation(stamp, self.witness)
return True
return False
def on_msg__a(self, msg, stamp):
with self._lock:
if self._state == 2:
assert len(self._pool) >= 1, 'missing trigger event'
while self._pool and stamp - self._pool[0].timestamp >= 0.1:
self._pool.popleft()
if not self._pool:
self._state = 3
self.time_state = stamp
if self._state == 2:
if msg.data > 0:
self._pool.append(msg_record('/a', stamp, msg))
return True
if self._state == 3:
if msg.data > 0:
self._pool.append(msg_record('/a', stamp, msg))
self._state = 2
self.time_state = stamp
return True
return False
def _reset(self):
self.witness = []
self._pool = deque((), 1)
self.time_launch = -1
self.time_shutdown = -1
self.time_state = -1
def _noop(self, *args):
pass
class Propertymonitor(object):
__slots__ = ('_lock', '_state', '_pool', 'witness', 'on_enter_scope', 'on_exit_scope', 'on_violation', 'on_success', 'time_launch', 'time_shutdown', 'time_state', 'cb_map')
prop_id = 'None'
prop_title = 'None'
prop_desc = 'None'
hpl_property = 'globally: (/a1 { (data > 0) } or /a2 { (data < 0) }) forbids /b { True } within 0.1s'
def __init__(self):
self._lock = lock()
self._reset()
self.on_enter_scope = self._noop
self.on_exit_scope = self._noop
self.on_violation = self._noop
self.on_success = self._noop
self._state = 0
self.cb_map = {'/b': self.on_msg__b, '/a1': self.on_msg__a1, '/a2': self.on_msg__a2}
@property
def verdict(self):
with self._lock:
if self._state == -1:
return True
if self._state == -2:
return False
return None
def on_launch(self, stamp):
with self._lock:
if self._state != 0:
raise runtime_error('monitor is already turned on')
self._reset()
self.time_launch = stamp
self._state = 3
self.time_state = stamp
self.on_enter_scope(stamp)
return True
def on_shutdown(self, stamp):
with self._lock:
if self._state == 0:
raise runtime_error('monitor is already turned off')
self.time_shutdown = stamp
self._state = 0
self.time_state = stamp
return True
def on_timer(self, stamp):
with self._lock:
if self._state == 2:
assert len(self._pool) >= 1, 'missing trigger event'
while self._pool and stamp - self._pool[0].timestamp >= 0.1:
self._pool.popleft()
if not self._pool:
self._state = 3
self.time_state = stamp
return True
def on_msg__b(self, msg, stamp):
with self._lock:
if self._state == 2:
assert len(self._pool) >= 1, 'missing trigger event'
while self._pool and stamp - self._pool[0].timestamp >= 0.1:
self._pool.popleft()
if not self._pool:
self._state = 3
self.time_state = stamp
if self._state == 2:
assert len(self._pool) >= 1, 'missing trigger event'
rec = self._pool[0]
self.witness.append(rec)
self.witness.append(msg_record('/b', stamp, msg))
self._pool.clear()
self._state = -2
self.time_state = stamp
self.on_violation(stamp, self.witness)
return True
return False
def on_msg__a1(self, msg, stamp):
with self._lock:
if self._state == 2:
assert len(self._pool) >= 1, 'missing trigger event'
while self._pool and stamp - self._pool[0].timestamp >= 0.1:
self._pool.popleft()
if not self._pool:
self._state = 3
self.time_state = stamp
if self._state == 2:
if msg.data > 0:
self._pool.append(msg_record('/a1', stamp, msg))
return True
if self._state == 3:
if msg.data > 0:
self._pool.append(msg_record('/a1', stamp, msg))
self._state = 2
self.time_state = stamp
return True
return False
def on_msg__a2(self, msg, stamp):
with self._lock:
if self._state == 2:
assert len(self._pool) >= 1, 'missing trigger event'
while self._pool and stamp - self._pool[0].timestamp >= 0.1:
self._pool.popleft()
if not self._pool:
self._state = 3
self.time_state = stamp
if self._state == 2:
if msg.data < 0:
self._pool.append(msg_record('/a2', stamp, msg))
return True
if self._state == 3:
if msg.data < 0:
self._pool.append(msg_record('/a2', stamp, msg))
self._state = 2
self.time_state = stamp
return True
return False
def _reset(self):
self.witness = []
self._pool = deque((), 1)
self.time_launch = -1
self.time_shutdown = -1
self.time_state = -1
def _noop(self, *args):
pass
class Propertymonitor(object):
__slots__ = ('_lock', '_state', '_pool', 'witness', 'on_enter_scope', 'on_exit_scope', 'on_violation', 'on_success', 'time_launch', 'time_shutdown', 'time_state', 'cb_map')
prop_id = 'None'
prop_title = 'None'
prop_desc = 'None'
hpl_property = 'globally: /a { True } forbids (/b1 { (data > 0) } or /b2 { (data < 0) }) within 0.1s'
def __init__(self):
self._lock = lock()
self._reset()
self.on_enter_scope = self._noop
self.on_exit_scope = self._noop
self.on_violation = self._noop
self.on_success = self._noop
self._state = 0
self.cb_map = {'/b2': self.on_msg__b2, '/a': self.on_msg__a, '/b1': self.on_msg__b1}
@property
def verdict(self):
with self._lock:
if self._state == -1:
return True
if self._state == -2:
return False
return None
def on_launch(self, stamp):
with self._lock:
if self._state != 0:
raise runtime_error('monitor is already turned on')
self._reset()
self.time_launch = stamp
self._state = 3
self.time_state = stamp
self.on_enter_scope(stamp)
return True
def on_shutdown(self, stamp):
with self._lock:
if self._state == 0:
raise runtime_error('monitor is already turned off')
self.time_shutdown = stamp
self._state = 0
self.time_state = stamp
return True
def on_timer(self, stamp):
with self._lock:
if self._state == 2:
assert len(self._pool) >= 1, 'missing trigger event'
while self._pool and stamp - self._pool[0].timestamp >= 0.1:
self._pool.popleft()
if not self._pool:
self._state = 3
self.time_state = stamp
return True
def on_msg__b2(self, msg, stamp):
with self._lock:
if self._state == 2:
assert len(self._pool) >= 1, 'missing trigger event'
while self._pool and stamp - self._pool[0].timestamp >= 0.1:
self._pool.popleft()
if not self._pool:
self._state = 3
self.time_state = stamp
if self._state == 2:
assert len(self._pool) >= 1, 'missing trigger event'
rec = self._pool[0]
if msg.data < 0:
self.witness.append(rec)
self.witness.append(msg_record('/b2', stamp, msg))
self._pool.clear()
self._state = -2
self.time_state = stamp
self.on_violation(stamp, self.witness)
return True
return False
def on_msg__a(self, msg, stamp):
with self._lock:
if self._state == 2:
assert len(self._pool) >= 1, 'missing trigger event'
while self._pool and stamp - self._pool[0].timestamp >= 0.1:
self._pool.popleft()
if not self._pool:
self._state = 3
self.time_state = stamp
if self._state == 2:
self._pool.append(msg_record('/a', stamp, msg))
return True
if self._state == 3:
self._pool.append(msg_record('/a', stamp, msg))
self._state = 2
self.time_state = stamp
return True
return False
def on_msg__b1(self, msg, stamp):
with self._lock:
if self._state == 2:
assert len(self._pool) >= 1, 'missing trigger event'
while self._pool and stamp - self._pool[0].timestamp >= 0.1:
self._pool.popleft()
if not self._pool:
self._state = 3
self.time_state = stamp
if self._state == 2:
assert len(self._pool) >= 1, 'missing trigger event'
rec = self._pool[0]
if msg.data > 0:
self.witness.append(rec)
self.witness.append(msg_record('/b1', stamp, msg))
self._pool.clear()
self._state = -2
self.time_state = stamp
self.on_violation(stamp, self.witness)
return True
return False
def _reset(self):
self.witness = []
self._pool = deque((), 1)
self.time_launch = -1
self.time_shutdown = -1
self.time_state = -1
def _noop(self, *args):
pass
class Propertymonitor(object):
__slots__ = ('_lock', '_state', '_pool', 'witness', 'on_enter_scope', 'on_exit_scope', 'on_violation', 'on_success', 'time_launch', 'time_shutdown', 'time_state', 'cb_map')
prop_id = 'None'
prop_title = 'None'
prop_desc = 'None'
hpl_property = 'after /p { True }: /a { True } forbids /b { True } within 0.1s'
def __init__(self):
self._lock = lock()
self._reset()
self.on_enter_scope = self._noop
self.on_exit_scope = self._noop
self.on_violation = self._noop
self.on_success = self._noop
self._state = 0
self.cb_map = {'/b': self.on_msg__b, '/a': self.on_msg__a, '/p': self.on_msg__p}
@property
def verdict(self):
with self._lock:
if self._state == -1:
return True
if self._state == -2:
return False
return None
def on_launch(self, stamp):
with self._lock:
if self._state != 0:
raise runtime_error('monitor is already turned on')
self._reset()
self.time_launch = stamp
self._state = 1
self.time_state = stamp
return True
def on_shutdown(self, stamp):
with self._lock:
if self._state == 0:
raise runtime_error('monitor is already turned off')
self.time_shutdown = stamp
self._state = 0
self.time_state = stamp
return True
def on_timer(self, stamp):
with self._lock:
if self._state == 2:
assert len(self._pool) >= 1, 'missing trigger event'
while self._pool and stamp - self._pool[0].timestamp >= 0.1:
self._pool.popleft()
if not self._pool:
self._state = 3
self.time_state = stamp
return True
def on_msg__b(self, msg, stamp):
with self._lock:
if self._state == 2:
assert len(self._pool) >= 1, 'missing trigger event'
while self._pool and stamp - self._pool[0].timestamp >= 0.1:
self._pool.popleft()
if not self._pool:
self._state = 3
self.time_state = stamp
if self._state == 2:
assert len(self._pool) >= 1, 'missing trigger event'
rec = self._pool[0]
self.witness.append(rec)
self.witness.append(msg_record('/b', stamp, msg))
self._pool.clear()
self._state = -2
self.time_state = stamp
self.on_violation(stamp, self.witness)
return True
return False
def on_msg__a(self, msg, stamp):
with self._lock:
if self._state == 2:
assert len(self._pool) >= 1, 'missing trigger event'
while self._pool and stamp - self._pool[0].timestamp >= 0.1:
self._pool.popleft()
if not self._pool:
self._state = 3
self.time_state = stamp
if self._state == 2:
self._pool.append(msg_record('/a', stamp, msg))
return True
if self._state == 3:
self._pool.append(msg_record('/a', stamp, msg))
self._state = 2
self.time_state = stamp
return True
return False
def on_msg__p(self, msg, stamp):
with self._lock:
if self._state == 2:
assert len(self._pool) >= 1, 'missing trigger event'
while self._pool and stamp - self._pool[0].timestamp >= 0.1:
self._pool.popleft()
if not self._pool:
self._state = 3
self.time_state = stamp
if self._state == 1:
self.witness.append(msg_record('/p', stamp, msg))
self._state = 3
self.time_state = stamp
self.on_enter_scope(stamp)
return True
return False
def _reset(self):
self.witness = []
self._pool = deque((), 1)
self.time_launch = -1
self.time_shutdown = -1
self.time_state = -1
def _noop(self, *args):
pass
class Propertymonitor(object):
__slots__ = ('_lock', '_state', '_pool', 'witness', 'on_enter_scope', 'on_exit_scope', 'on_violation', 'on_success', 'time_launch', 'time_shutdown', 'time_state', 'cb_map')
prop_id = 'None'
prop_title = 'None'
prop_desc = 'None'
hpl_property = 'after /p { phi }: /a { (data > 0) } forbids /b { (data < 0) } within 0.1s'
def __init__(self):
self._lock = lock()
self._reset()
self.on_enter_scope = self._noop
self.on_exit_scope = self._noop
self.on_violation = self._noop
self.on_success = self._noop
self._state = 0
self.cb_map = {'/b': self.on_msg__b, '/a': self.on_msg__a, '/p': self.on_msg__p}
@property
def verdict(self):
with self._lock:
if self._state == -1:
return True
if self._state == -2:
return False
return None
def on_launch(self, stamp):
with self._lock:
if self._state != 0:
raise runtime_error('monitor is already turned on')
self._reset()
self.time_launch = stamp
self._state = 1
self.time_state = stamp
return True
def on_shutdown(self, stamp):
with self._lock:
if self._state == 0:
raise runtime_error('monitor is already turned off')
self.time_shutdown = stamp
self._state = 0
self.time_state = stamp
return True
def on_timer(self, stamp):
with self._lock:
if self._state == 2:
assert len(self._pool) >= 1, 'missing trigger event'
while self._pool and stamp - self._pool[0].timestamp >= 0.1:
self._pool.popleft()
if not self._pool:
self._state = 3
self.time_state = stamp
return True
def on_msg__b(self, msg, stamp):
with self._lock:
if self._state == 2:
assert len(self._pool) >= 1, 'missing trigger event'
while self._pool and stamp - self._pool[0].timestamp >= 0.1:
self._pool.popleft()
if not self._pool:
self._state = 3
self.time_state = stamp
if self._state == 2:
assert len(self._pool) >= 1, 'missing trigger event'
rec = self._pool[0]
if msg.data < 0:
self.witness.append(rec)
self.witness.append(msg_record('/b', stamp, msg))
self._pool.clear()
self._state = -2
self.time_state = stamp
self.on_violation(stamp, self.witness)
return True
return False
def on_msg__a(self, msg, stamp):
with self._lock:
if self._state == 2:
assert len(self._pool) >= 1, 'missing trigger event'
while self._pool and stamp - self._pool[0].timestamp >= 0.1:
self._pool.popleft()
if not self._pool:
self._state = 3
self.time_state = stamp
if self._state == 2:
if msg.data > 0:
self._pool.append(msg_record('/a', stamp, msg))
return True
if self._state == 3:
if msg.data > 0:
self._pool.append(msg_record('/a', stamp, msg))
self._state = 2
self.time_state = stamp
return True
return False
def on_msg__p(self, msg, stamp):
with self._lock:
if self._state == 2:
assert len(self._pool) >= 1, 'missing trigger event'
while self._pool and stamp - self._pool[0].timestamp >= 0.1:
self._pool.popleft()
if not self._pool:
self._state = 3
self.time_state = stamp
if self._state == 1:
if msg.phi:
self.witness.append(msg_record('/p', stamp, msg))
self._state = 3
self.time_state = stamp
self.on_enter_scope(stamp)
return True
return False
def _reset(self):
self.witness = []
self._pool = deque((), 1)
self.time_launch = -1
self.time_shutdown = -1
self.time_state = -1
def _noop(self, *args):
pass
class Propertymonitor(object):
__slots__ = ('_lock', '_state', '_pool', 'witness', 'on_enter_scope', 'on_exit_scope', 'on_violation', 'on_success', 'time_launch', 'time_shutdown', 'time_state', 'cb_map')
prop_id = 'None'
prop_title = 'None'
prop_desc = 'None'
hpl_property = 'until /q { True }: /a { phi } forbids /b { psi } within 0.1s'
def __init__(self):
self._lock = lock()
self._reset()
self.on_enter_scope = self._noop
self.on_exit_scope = self._noop
self.on_violation = self._noop
self.on_success = self._noop
self._state = 0
self.cb_map = {'/b': self.on_msg__b, '/q': self.on_msg__q, '/a': self.on_msg__a}
@property
def verdict(self):
with self._lock:
if self._state == -1:
return True
if self._state == -2:
return False
return None
def on_launch(self, stamp):
with self._lock:
if self._state != 0:
raise runtime_error('monitor is already turned on')
self._reset()
self.time_launch = stamp
self._state = 3
self.time_state = stamp
self.on_enter_scope(stamp)
return True
def on_shutdown(self, stamp):
with self._lock:
if self._state == 0:
raise runtime_error('monitor is already turned off')
self.time_shutdown = stamp
self._state = 0
self.time_state = stamp
return True
def on_timer(self, stamp):
with self._lock:
if self._state == 2:
assert len(self._pool) >= 1, 'missing trigger event'
while self._pool and stamp - self._pool[0].timestamp >= 0.1:
self._pool.popleft()
if not self._pool:
self._state = 3
self.time_state = stamp
return True
def on_msg__b(self, msg, stamp):
with self._lock:
if self._state == 2:
assert len(self._pool) >= 1, 'missing trigger event'
while self._pool and stamp - self._pool[0].timestamp >= 0.1:
self._pool.popleft()
if not self._pool:
self._state = 3
self.time_state = stamp
if self._state == 2:
assert len(self._pool) >= 1, 'missing trigger event'
rec = self._pool[0]
if msg.psi:
self.witness.append(rec)
self.witness.append(msg_record('/b', stamp, msg))
self._pool.clear()
self._state = -2
self.time_state = stamp
self.on_violation(stamp, self.witness)
return True
return False
def on_msg__q(self, msg, stamp):
with self._lock:
if self._state == 2:
assert len(self._pool) >= 1, 'missing trigger event'
while self._pool and stamp - self._pool[0].timestamp >= 0.1:
self._pool.popleft()
if not self._pool:
self._state = 3
self.time_state = stamp
if self._state == 2:
self._pool.clear()
self.witness.append(msg_record('/q', stamp, msg))
self._state = -1
self.time_state = stamp
self.on_exit_scope(stamp)
self.on_success(stamp, self.witness)
return True
if self._state == 3:
self._pool.clear()
self.witness.append(msg_record('/q', stamp, msg))
self._state = -1
self.time_state = stamp
self.on_exit_scope(stamp)
self.on_success(stamp, self.witness)
return True
return False
def on_msg__a(self, msg, stamp):
with self._lock:
if self._state == 2:
assert len(self._pool) >= 1, 'missing trigger event'
while self._pool and stamp - self._pool[0].timestamp >= 0.1:
self._pool.popleft()
if not self._pool:
self._state = 3
self.time_state = stamp
if self._state == 2:
if msg.phi:
self._pool.append(msg_record('/a', stamp, msg))
return True
if self._state == 3:
if msg.phi:
self._pool.append(msg_record('/a', stamp, msg))
self._state = 2
self.time_state = stamp
return True
return False
def _reset(self):
self.witness = []
self._pool = deque((), 1)
self.time_launch = -1
self.time_shutdown = -1
self.time_state = -1
def _noop(self, *args):
pass
class Propertymonitor(object):
__slots__ = ('_lock', '_state', '_pool', 'witness', 'on_enter_scope', 'on_exit_scope', 'on_violation', 'on_success', 'time_launch', 'time_shutdown', 'time_state', 'cb_map')
prop_id = 'None'
prop_title = 'None'
prop_desc = 'None'
hpl_property = 'until /b { True }: /a { True } forbids /b { True } within 0.1s'
def __init__(self):
self._lock = lock()
self._reset()
self.on_enter_scope = self._noop
self.on_exit_scope = self._noop
self.on_violation = self._noop
self.on_success = self._noop
self._state = 0
self.cb_map = {'/b': self.on_msg__b, '/a': self.on_msg__a}
@property
def verdict(self):
with self._lock:
if self._state == -1:
return True
if self._state == -2:
return False
return None
def on_launch(self, stamp):
with self._lock:
if self._state != 0:
raise runtime_error('monitor is already turned on')
self._reset()
self.time_launch = stamp
self._state = 3
self.time_state = stamp
self.on_enter_scope(stamp)
return True
def on_shutdown(self, stamp):
with self._lock:
if self._state == 0:
raise runtime_error('monitor is already turned off')
self.time_shutdown = stamp
self._state = 0
self.time_state = stamp
return True
def on_timer(self, stamp):
with self._lock:
if self._state == 2:
assert len(self._pool) >= 1, 'missing trigger event'
while self._pool and stamp - self._pool[0].timestamp >= 0.1:
self._pool.popleft()
if not self._pool:
self._state = 3
self.time_state = stamp
return True
def on_msg__b(self, msg, stamp):
with self._lock:
if self._state == 2:
assert len(self._pool) >= 1, 'missing trigger event'
while self._pool and stamp - self._pool[0].timestamp >= 0.1:
self._pool.popleft()
if not self._pool:
self._state = 3
self.time_state = stamp
if self._state == 2:
self._pool.clear()
self.witness.append(msg_record('/b', stamp, msg))
self._state = -1
self.time_state = stamp
self.on_exit_scope(stamp)
self.on_success(stamp, self.witness)
return True
assert len(self._pool) >= 1, 'missing trigger event'
rec = self._pool[0]
self.witness.append(rec)
self.witness.append(msg_record('/b', stamp, msg))
self._pool.clear()
self._state = -2
self.time_state = stamp
self.on_violation(stamp, self.witness)
return True
if self._state == 3:
self._pool.clear()
self.witness.append(msg_record('/b', stamp, msg))
self._state = -1
self.time_state = stamp
self.on_exit_scope(stamp)
self.on_success(stamp, self.witness)
return True
return False
def on_msg__a(self, msg, stamp):
with self._lock:
if self._state == 2:
assert len(self._pool) >= 1, 'missing trigger event'
while self._pool and stamp - self._pool[0].timestamp >= 0.1:
self._pool.popleft()
if not self._pool:
self._state = 3
self.time_state = stamp
if self._state == 2:
self._pool.append(msg_record('/a', stamp, msg))
return True
if self._state == 3:
self._pool.append(msg_record('/a', stamp, msg))
self._state = 2
self.time_state = stamp
return True
return False
def _reset(self):
self.witness = []
self._pool = deque((), 1)
self.time_launch = -1
self.time_shutdown = -1
self.time_state = -1
def _noop(self, *args):
pass
class Propertymonitor(object):
__slots__ = ('_lock', '_state', '_pool', 'witness', 'on_enter_scope', 'on_exit_scope', 'on_violation', 'on_success', 'time_launch', 'time_shutdown', 'time_state', 'cb_map')
prop_id = 'None'
prop_title = 'None'
prop_desc = 'None'
hpl_property = 'until /a { True }: /a { True } forbids /b { True } within 0.1s'
def __init__(self):
self._lock = lock()
self._reset()
self.on_enter_scope = self._noop
self.on_exit_scope = self._noop
self.on_violation = self._noop
self.on_success = self._noop
self._state = 0
self.cb_map = {'/b': self.on_msg__b, '/a': self.on_msg__a}
@property
def verdict(self):
with self._lock:
if self._state == -1:
return True
if self._state == -2:
return False
return None
def on_launch(self, stamp):
with self._lock:
if self._state != 0:
raise runtime_error('monitor is already turned on')
self._reset()
self.time_launch = stamp
self._state = 3
self.time_state = stamp
self.on_enter_scope(stamp)
return True
def on_shutdown(self, stamp):
with self._lock:
if self._state == 0:
raise runtime_error('monitor is already turned off')
self.time_shutdown = stamp
self._state = 0
self.time_state = stamp
return True
def on_timer(self, stamp):
with self._lock:
if self._state == 2:
assert len(self._pool) >= 1, 'missing trigger event'
while self._pool and stamp - self._pool[0].timestamp >= 0.1:
self._pool.popleft()
if not self._pool:
self._state = 3
self.time_state = stamp
return True
def on_msg__b(self, msg, stamp):
with self._lock:
if self._state == 2:
assert len(self._pool) >= 1, 'missing trigger event'
while self._pool and stamp - self._pool[0].timestamp >= 0.1:
self._pool.popleft()
if not self._pool:
self._state = 3
self.time_state = stamp
if self._state == 2:
assert len(self._pool) >= 1, 'missing trigger event'
rec = self._pool[0]
self.witness.append(rec)
self.witness.append(msg_record('/b', stamp, msg))
self._pool.clear()
self._state = -2
self.time_state = stamp
self.on_violation(stamp, self.witness)
return True
return False
def on_msg__a(self, msg, stamp):
with self._lock:
if self._state == 2:
assert len(self._pool) >= 1, 'missing trigger event'
while self._pool and stamp - self._pool[0].timestamp >= 0.1:
self._pool.popleft()
if not self._pool:
self._state = 3
self.time_state = stamp
if self._state == 2:
self._pool.clear()
self.witness.append(msg_record('/a', stamp, msg))
self._state = -1
self.time_state = stamp
self.on_exit_scope(stamp)
self.on_success(stamp, self.witness)
return True
self._pool.append(msg_record('/a', stamp, msg))
return True
if self._state == 3:
self._pool.clear()
self.witness.append(msg_record('/a', stamp, msg))
self._state = -1
self.time_state = stamp
self.on_exit_scope(stamp)
self.on_success(stamp, self.witness)
return True
self._pool.append(msg_record('/a', stamp, msg))
self._state = 2
self.time_state = stamp
return True
return False
def _reset(self):
self.witness = []
self._pool = deque((), 1)
self.time_launch = -1
self.time_shutdown = -1
self.time_state = -1
def _noop(self, *args):
pass
class Propertymonitor(object):
__slots__ = ('_lock', '_state', '_pool', 'witness', 'on_enter_scope', 'on_exit_scope', 'on_violation', 'on_success', 'time_launch', 'time_shutdown', 'time_state', 'cb_map')
prop_id = 'None'
prop_title = 'None'
prop_desc = 'None'
hpl_property = 'after /p { phi } until /q { psi }: /a { alpha } forbids /b { beta }'
def __init__(self):
self._lock = lock()
self._reset()
self.on_enter_scope = self._noop
self.on_exit_scope = self._noop
self.on_violation = self._noop
self.on_success = self._noop
self._state = 0
self.cb_map = {'/a': self.on_msg__a, '/b': self.on_msg__b, '/q': self.on_msg__q, '/p': self.on_msg__p}
@property
def verdict(self):
with self._lock:
if self._state == -1:
return True
if self._state == -2:
return False
return None
def on_launch(self, stamp):
with self._lock:
if self._state != 0:
raise runtime_error('monitor is already turned on')
self._reset()
self.time_launch = stamp
self._state = 1
self.time_state = stamp
return True
def on_shutdown(self, stamp):
with self._lock:
if self._state == 0:
raise runtime_error('monitor is already turned off')
self.time_shutdown = stamp
self._state = 0
self.time_state = stamp
return True
def on_timer(self, stamp):
return True
def on_msg__a(self, msg, stamp):
with self._lock:
if self._state == 2:
return False
if self._state == 3:
if msg.alpha:
self._pool.append(msg_record('/a', stamp, msg))
self._state = 2
self.time_state = stamp
return True
return False
def on_msg__b(self, msg, stamp):
with self._lock:
if self._state == 2:
assert len(self._pool) >= 1, 'missing trigger event'
rec = self._pool[0]
if msg.beta:
self.witness.append(rec)
self.witness.append(msg_record('/b', stamp, msg))
self._pool.clear()
self._state = -2
self.time_state = stamp
self.on_violation(stamp, self.witness)
return True
return False
def on_msg__q(self, msg, stamp):
with self._lock:
if self._state == 2:
if msg.psi:
self._pool.clear()
self.witness = []
self._state = 1
self.time_state = stamp
self.on_exit_scope(stamp)
return True
if self._state == 3:
if msg.psi:
self._pool.clear()
self.witness = []
self._state = 1
self.time_state = stamp
self.on_exit_scope(stamp)
return True
return False
def on_msg__p(self, msg, stamp):
with self._lock:
if self._state == 1:
if msg.phi:
self.witness.append(msg_record('/p', stamp, msg))
self._state = 3
self.time_state = stamp
self.on_enter_scope(stamp)
return True
return False
def _reset(self):
self.witness = []
self._pool = deque((), 1)
self.time_launch = -1
self.time_shutdown = -1
self.time_state = -1
def _noop(self, *args):
pass
class Propertymonitor(object):
__slots__ = ('_lock', '_state', '_pool', 'witness', 'on_enter_scope', 'on_exit_scope', 'on_violation', 'on_success', 'time_launch', 'time_shutdown', 'time_state', 'cb_map')
prop_id = 'None'
prop_title = 'None'
prop_desc = 'None'
hpl_property = 'after /p { phi } until /q { psi }: /a { alpha } forbids /b { beta } within 0.1s'
def __init__(self):
self._lock = lock()
self._reset()
self.on_enter_scope = self._noop
self.on_exit_scope = self._noop
self.on_violation = self._noop
self.on_success = self._noop
self._state = 0
self.cb_map = {'/a': self.on_msg__a, '/b': self.on_msg__b, '/q': self.on_msg__q, '/p': self.on_msg__p}
@property
def verdict(self):
with self._lock:
if self._state == -1:
return True
if self._state == -2:
return False
return None
def on_launch(self, stamp):
with self._lock:
if self._state != 0:
raise runtime_error('monitor is already turned on')
self._reset()
self.time_launch = stamp
self._state = 1
self.time_state = stamp
return True
def on_shutdown(self, stamp):
with self._lock:
if self._state == 0:
raise runtime_error('monitor is already turned off')
self.time_shutdown = stamp
self._state = 0
self.time_state = stamp
return True
def on_timer(self, stamp):
with self._lock:
if self._state == 2:
assert len(self._pool) >= 1, 'missing trigger event'
while self._pool and stamp - self._pool[0].timestamp >= 0.1:
self._pool.popleft()
if not self._pool:
self._state = 3
self.time_state = stamp
return True
def on_msg__a(self, msg, stamp):
with self._lock:
if self._state == 2:
assert len(self._pool) >= 1, 'missing trigger event'
while self._pool and stamp - self._pool[0].timestamp >= 0.1:
self._pool.popleft()
if not self._pool:
self._state = 3
self.time_state = stamp
if self._state == 2:
if msg.alpha:
self._pool.append(msg_record('/a', stamp, msg))
return True
if self._state == 3:
if msg.alpha:
self._pool.append(msg_record('/a', stamp, msg))
self._state = 2
self.time_state = stamp
return True
return False
def on_msg__b(self, msg, stamp):
with self._lock:
if self._state == 2:
assert len(self._pool) >= 1, 'missing trigger event'
while self._pool and stamp - self._pool[0].timestamp >= 0.1:
self._pool.popleft()
if not self._pool:
self._state = 3
self.time_state = stamp
if self._state == 2:
assert len(self._pool) >= 1, 'missing trigger event'
rec = self._pool[0]
if msg.beta:
self.witness.append(rec)
self.witness.append(msg_record('/b', stamp, msg))
self._pool.clear()
self._state = -2
self.time_state = stamp
self.on_violation(stamp, self.witness)
return True
return False
def on_msg__q(self, msg, stamp):
with self._lock:
if self._state == 2:
assert len(self._pool) >= 1, 'missing trigger event'
while self._pool and stamp - self._pool[0].timestamp >= 0.1:
self._pool.popleft()
if not self._pool:
self._state = 3
self.time_state = stamp
if self._state == 2:
if msg.psi:
self._pool.clear()
self.witness = []
self._state = 1
self.time_state = stamp
self.on_exit_scope(stamp)
return True
if self._state == 3:
if msg.psi:
self._pool.clear()
self.witness = []
self._state = 1
self.time_state = stamp
self.on_exit_scope(stamp)
return True
return False
def on_msg__p(self, msg, stamp):
with self._lock:
if self._state == 2:
assert len(self._pool) >= 1, 'missing trigger event'
while self._pool and stamp - self._pool[0].timestamp >= 0.1:
self._pool.popleft()
if not self._pool:
self._state = 3
self.time_state = stamp
if self._state == 1:
if msg.phi:
self.witness.append(msg_record('/p', stamp, msg))
self._state = 3
self.time_state = stamp
self.on_enter_scope(stamp)
return True
return False
def _reset(self):
self.witness = []
self._pool = deque((), 1)
self.time_launch = -1
self.time_shutdown = -1
self.time_state = -1
def _noop(self, *args):
pass
class Propertymonitor(object):
__slots__ = ('_lock', '_state', '_pool', 'witness', 'on_enter_scope', 'on_exit_scope', 'on_violation', 'on_success', 'time_launch', 'time_shutdown', 'time_state', 'cb_map')
prop_id = 'None'
prop_title = 'None'
prop_desc = 'None'
hpl_property = 'globally: /a as A { True } forbids /b { (x < @A.x) }'
def __init__(self):
self._lock = lock()
self._reset()
self.on_enter_scope = self._noop
self.on_exit_scope = self._noop
self.on_violation = self._noop
self.on_success = self._noop
self._state = 0
self.cb_map = {'/b': self.on_msg__b, '/a': self.on_msg__a}
@property
def verdict(self):
with self._lock:
if self._state == -1:
return True
if self._state == -2:
return False
return None
def on_launch(self, stamp):
with self._lock:
if self._state != 0:
raise runtime_error('monitor is already turned on')
self._reset()
self.time_launch = stamp
self._state = 3
self.time_state = stamp
self.on_enter_scope(stamp)
return True
def on_shutdown(self, stamp):
with self._lock:
if self._state == 0:
raise runtime_error('monitor is already turned off')
self.time_shutdown = stamp
self._state = 0
self.time_state = stamp
return True
def on_timer(self, stamp):
return True
def on_msg__b(self, msg, stamp):
with self._lock:
if self._state == 2:
assert len(self._pool) >= 1, 'missing trigger event'
for rec in self._pool:
v_a = rec.msg
if msg.x < v_A.x:
self.witness.append(rec)
self.witness.append(msg_record('/b', stamp, msg))
self._pool.clear()
self._state = -2
self.time_state = stamp
self.on_violation(stamp, self.witness)
return True
return False
def on_msg__a(self, msg, stamp):
with self._lock:
if self._state == 2:
rec = msg_record('/a', stamp, msg)
self._pool_insert(rec)
return True
if self._state == 3:
rec = msg_record('/a', stamp, msg)
self._pool_insert(rec)
self._state = 2
self.time_state = stamp
return True
return False
def _reset(self):
self.witness = []
self._pool = deque()
self.time_launch = -1
self.time_shutdown = -1
self.time_state = -1
def _pool_insert(self, rec):
if not self._pool:
return self._pool.append(rec)
stamp = rec.timestamp
if len(self._pool) == 1:
if stamp >= self._pool[0].timestamp:
return self._pool.append(rec)
return self._pool.appendleft(rec)
for i in range(len(self._pool), 0, -1):
if stamp >= self._pool[i - 1].timestamp:
try:
self._pool.insert(i, rec)
except AttributeError as e:
tmp = [self._pool.pop() for j in range(i, len(self._pool))]
self._pool.append(rec)
self._pool.extend(reversed(tmp))
break
else:
self._pool.appendleft(rec)
def _noop(self, *args):
pass
class Propertymonitor(object):
__slots__ = ('_lock', '_state', '_pool', 'witness', 'on_enter_scope', 'on_exit_scope', 'on_violation', 'on_success', 'time_launch', 'time_shutdown', 'time_state', 'cb_map')
prop_id = 'None'
prop_title = 'None'
prop_desc = 'None'
hpl_property = 'globally: /a as A { (x > 0) } forbids /b { (x < @A.x) } within 0.1s'
def __init__(self):
self._lock = lock()
self._reset()
self.on_enter_scope = self._noop
self.on_exit_scope = self._noop
self.on_violation = self._noop
self.on_success = self._noop
self._state = 0
self.cb_map = {'/b': self.on_msg__b, '/a': self.on_msg__a}
@property
def verdict(self):
with self._lock:
if self._state == -1:
return True
if self._state == -2:
return False
return None
def on_launch(self, stamp):
with self._lock:
if self._state != 0:
raise runtime_error('monitor is already turned on')
self._reset()
self.time_launch = stamp
self._state = 3
self.time_state = stamp
self.on_enter_scope(stamp)
return True
def on_shutdown(self, stamp):
with self._lock:
if self._state == 0:
raise runtime_error('monitor is already turned off')
self.time_shutdown = stamp
self._state = 0
self.time_state = stamp
return True
def on_timer(self, stamp):
with self._lock:
if self._state == 2:
assert len(self._pool) >= 1, 'missing trigger event'
while self._pool and stamp - self._pool[0].timestamp >= 0.1:
self._pool.popleft()
if not self._pool:
self._state = 3
self.time_state = stamp
return True
def on_msg__b(self, msg, stamp):
with self._lock:
if self._state == 2:
assert len(self._pool) >= 1, 'missing trigger event'
while self._pool and stamp - self._pool[0].timestamp >= 0.1:
self._pool.popleft()
if not self._pool:
self._state = 3
self.time_state = stamp
if self._state == 2:
assert len(self._pool) >= 1, 'missing trigger event'
for rec in self._pool:
v_a = rec.msg
if msg.x < v_A.x:
self.witness.append(rec)
self.witness.append(msg_record('/b', stamp, msg))
self._pool.clear()
self._state = -2
self.time_state = stamp
self.on_violation(stamp, self.witness)
return True
return False
def on_msg__a(self, msg, stamp):
with self._lock:
if self._state == 2:
assert len(self._pool) >= 1, 'missing trigger event'
while self._pool and stamp - self._pool[0].timestamp >= 0.1:
self._pool.popleft()
if not self._pool:
self._state = 3
self.time_state = stamp
if self._state == 2:
if msg.x > 0:
rec = msg_record('/a', stamp, msg)
self._pool_insert(rec)
return True
if self._state == 3:
if msg.x > 0:
rec = msg_record('/a', stamp, msg)
self._pool_insert(rec)
self._state = 2
self.time_state = stamp
return True
return False
def _reset(self):
self.witness = []
self._pool = deque()
self.time_launch = -1
self.time_shutdown = -1
self.time_state = -1
def _pool_insert(self, rec):
if not self._pool:
return self._pool.append(rec)
stamp = rec.timestamp
if len(self._pool) == 1:
if stamp >= self._pool[0].timestamp:
return self._pool.append(rec)
return self._pool.appendleft(rec)
for i in range(len(self._pool), 0, -1):
if stamp >= self._pool[i - 1].timestamp:
try:
self._pool.insert(i, rec)
except AttributeError as e:
tmp = [self._pool.pop() for j in range(i, len(self._pool))]
self._pool.append(rec)
self._pool.extend(reversed(tmp))
break
else:
self._pool.appendleft(rec)
def _noop(self, *args):
pass
class Propertymonitor(object):
__slots__ = ('_lock', '_state', '_pool', 'witness', 'on_enter_scope', 'on_exit_scope', 'on_violation', 'on_success', 'time_launch', 'time_shutdown', 'time_state', 'cb_map')
prop_id = 'None'
prop_title = 'None'
prop_desc = 'None'
hpl_property = 'globally: /a as A { (x > 0) } forbids (/b1 { (x < @A.x) } or /b2 { (y < @A.y) }) within 0.1s'
def __init__(self):
self._lock = lock()
self._reset()
self.on_enter_scope = self._noop
self.on_exit_scope = self._noop
self.on_violation = self._noop
self.on_success = self._noop
self._state = 0
self.cb_map = {'/b2': self.on_msg__b2, '/a': self.on_msg__a, '/b1': self.on_msg__b1}
@property
def verdict(self):
with self._lock:
if self._state == -1:
return True
if self._state == -2:
return False
return None
def on_launch(self, stamp):
with self._lock:
if self._state != 0:
raise runtime_error('monitor is already turned on')
self._reset()
self.time_launch = stamp
self._state = 3
self.time_state = stamp
self.on_enter_scope(stamp)
return True
def on_shutdown(self, stamp):
with self._lock:
if self._state == 0:
raise runtime_error('monitor is already turned off')
self.time_shutdown = stamp
self._state = 0
self.time_state = stamp
return True
def on_timer(self, stamp):
with self._lock:
if self._state == 2:
assert len(self._pool) >= 1, 'missing trigger event'
while self._pool and stamp - self._pool[0].timestamp >= 0.1:
self._pool.popleft()
if not self._pool:
self._state = 3
self.time_state = stamp
return True
def on_msg__b2(self, msg, stamp):
with self._lock:
if self._state == 2:
assert len(self._pool) >= 1, 'missing trigger event'
while self._pool and stamp - self._pool[0].timestamp >= 0.1:
self._pool.popleft()
if not self._pool:
self._state = 3
self.time_state = stamp
if self._state == 2:
assert len(self._pool) >= 1, 'missing trigger event'
for rec in self._pool:
v_a = rec.msg
if msg.y < v_A.y:
self.witness.append(rec)
self.witness.append(msg_record('/b2', stamp, msg))
self._pool.clear()
self._state = -2
self.time_state = stamp
self.on_violation(stamp, self.witness)
return True
return False
def on_msg__a(self, msg, stamp):
with self._lock:
if self._state == 2:
assert len(self._pool) >= 1, 'missing trigger event'
while self._pool and stamp - self._pool[0].timestamp >= 0.1:
self._pool.popleft()
if not self._pool:
self._state = 3
self.time_state = stamp
if self._state == 2:
if msg.x > 0:
rec = msg_record('/a', stamp, msg)
self._pool_insert(rec)
return True
if self._state == 3:
if msg.x > 0:
rec = msg_record('/a', stamp, msg)
self._pool_insert(rec)
self._state = 2
self.time_state = stamp
return True
return False
def on_msg__b1(self, msg, stamp):
with self._lock:
if self._state == 2:
assert len(self._pool) >= 1, 'missing trigger event'
while self._pool and stamp - self._pool[0].timestamp >= 0.1:
self._pool.popleft()
if not self._pool:
self._state = 3
self.time_state = stamp
if self._state == 2:
assert len(self._pool) >= 1, 'missing trigger event'
for rec in self._pool:
v_a = rec.msg
if msg.x < v_A.x:
self.witness.append(rec)
self.witness.append(msg_record('/b1', stamp, msg))
self._pool.clear()
self._state = -2
self.time_state = stamp
self.on_violation(stamp, self.witness)
return True
return False
def _reset(self):
self.witness = []
self._pool = deque()
self.time_launch = -1
self.time_shutdown = -1
self.time_state = -1
def _pool_insert(self, rec):
if not self._pool:
return self._pool.append(rec)
stamp = rec.timestamp
if len(self._pool) == 1:
if stamp >= self._pool[0].timestamp:
return self._pool.append(rec)
return self._pool.appendleft(rec)
for i in range(len(self._pool), 0, -1):
if stamp >= self._pool[i - 1].timestamp:
try:
self._pool.insert(i, rec)
except AttributeError as e:
tmp = [self._pool.pop() for j in range(i, len(self._pool))]
self._pool.append(rec)
self._pool.extend(reversed(tmp))
break
else:
self._pool.appendleft(rec)
def _noop(self, *args):
pass
class Propertymonitor(object):
__slots__ = ('_lock', '_state', '_pool', 'witness', 'on_enter_scope', 'on_exit_scope', 'on_violation', 'on_success', 'time_launch', 'time_shutdown', 'time_state', 'cb_map')
prop_id = 'None'
prop_title = 'None'
prop_desc = 'None'
hpl_property = 'after /p as P { True } until /q { (x > @P.x) }: /a as A { (x = @P.x) } forbids (/b1 { (x < (@A.x + @P.x)) } or /b2 { (x in {@P.x, @A.x}) }) within 0.1s'
def __init__(self):
self._lock = lock()
self._reset()
self.on_enter_scope = self._noop
self.on_exit_scope = self._noop
self.on_violation = self._noop
self.on_success = self._noop
self._state = 0
self.cb_map = {'/b1': self.on_msg__b1, '/b2': self.on_msg__b2, '/a': self.on_msg__a, '/q': self.on_msg__q, '/p': self.on_msg__p}
@property
def verdict(self):
with self._lock:
if self._state == -1:
return True
if self._state == -2:
return False
return None
def on_launch(self, stamp):
with self._lock:
if self._state != 0:
raise runtime_error('monitor is already turned on')
self._reset()
self.time_launch = stamp
self._state = 1
self.time_state = stamp
return True
def on_shutdown(self, stamp):
with self._lock:
if self._state == 0:
raise runtime_error('monitor is already turned off')
self.time_shutdown = stamp
self._state = 0
self.time_state = stamp
return True
def on_timer(self, stamp):
with self._lock:
if self._state == 2:
assert len(self._pool) >= 1, 'missing trigger event'
while self._pool and stamp - self._pool[0].timestamp >= 0.1:
self._pool.popleft()
if not self._pool:
self._state = 3
self.time_state = stamp
return True
def on_msg__b1(self, msg, stamp):
with self._lock:
if self._state == 2:
assert len(self._pool) >= 1, 'missing trigger event'
while self._pool and stamp - self._pool[0].timestamp >= 0.1:
self._pool.popleft()
if not self._pool:
self._state = 3
self.time_state = stamp
if self._state == 2:
assert len(self._pool) >= 1, 'missing trigger event'
assert len(self.witness) >= 1, 'missing activator event'
v_p = self.witness[0].msg
for rec in self._pool:
v_a = rec.msg
if msg.x < v_A.x + v_P.x:
self.witness.append(rec)
self.witness.append(msg_record('/b1', stamp, msg))
self._pool.clear()
self._state = -2
self.time_state = stamp
self.on_violation(stamp, self.witness)
return True
return False
def on_msg__b2(self, msg, stamp):
with self._lock:
if self._state == 2:
assert len(self._pool) >= 1, 'missing trigger event'
while self._pool and stamp - self._pool[0].timestamp >= 0.1:
self._pool.popleft()
if not self._pool:
self._state = 3
self.time_state = stamp
if self._state == 2:
assert len(self._pool) >= 1, 'missing trigger event'
assert len(self.witness) >= 1, 'missing activator event'
v_p = self.witness[0].msg
for rec in self._pool:
v_a = rec.msg
if msg.x in (v_P.x, v_A.x):
self.witness.append(rec)
self.witness.append(msg_record('/b2', stamp, msg))
self._pool.clear()
self._state = -2
self.time_state = stamp
self.on_violation(stamp, self.witness)
return True
return False
def on_msg__a(self, msg, stamp):
with self._lock:
if self._state == 2:
assert len(self._pool) >= 1, 'missing trigger event'
while self._pool and stamp - self._pool[0].timestamp >= 0.1:
self._pool.popleft()
if not self._pool:
self._state = 3
self.time_state = stamp
if self._state == 2:
assert len(self.witness) >= 1, 'missing activator'
v_p = self.witness[0].msg
if msg.x == v_P.x:
rec = msg_record('/a', stamp, msg)
self._pool_insert(rec)
return True
if self._state == 3:
assert len(self.witness) >= 1, 'missing activator'
v_p = self.witness[0].msg
if msg.x == v_P.x:
rec = msg_record('/a', stamp, msg)
self._pool_insert(rec)
self._state = 2
self.time_state = stamp
return True
return False
def on_msg__q(self, msg, stamp):
with self._lock:
if self._state == 2:
assert len(self._pool) >= 1, 'missing trigger event'
while self._pool and stamp - self._pool[0].timestamp >= 0.1:
self._pool.popleft()
if not self._pool:
self._state = 3
self.time_state = stamp
if self._state == 2:
assert len(self.witness) >= 1, 'missing activator event'
v_p = self.witness[0].msg
if msg.x > v_P.x:
self._pool.clear()
self.witness = []
self._state = 1
self.time_state = stamp
self.on_exit_scope(stamp)
return True
if self._state == 3:
assert len(self.witness) >= 1, 'missing activator event'
v_p = self.witness[0].msg
if msg.x > v_P.x:
self._pool.clear()
self.witness = []
self._state = 1
self.time_state = stamp
self.on_exit_scope(stamp)
return True
return False
def on_msg__p(self, msg, stamp):
with self._lock:
if self._state == 2:
assert len(self._pool) >= 1, 'missing trigger event'
while self._pool and stamp - self._pool[0].timestamp >= 0.1:
self._pool.popleft()
if not self._pool:
self._state = 3
self.time_state = stamp
if self._state == 1:
self.witness.append(msg_record('/p', stamp, msg))
self._state = 3
self.time_state = stamp
self.on_enter_scope(stamp)
return True
return False
def _reset(self):
self.witness = []
self._pool = deque()
self.time_launch = -1
self.time_shutdown = -1
self.time_state = -1
def _pool_insert(self, rec):
if not self._pool:
return self._pool.append(rec)
stamp = rec.timestamp
if len(self._pool) == 1:
if stamp >= self._pool[0].timestamp:
return self._pool.append(rec)
return self._pool.appendleft(rec)
for i in range(len(self._pool), 0, -1):
if stamp >= self._pool[i - 1].timestamp:
try:
self._pool.insert(i, rec)
except AttributeError as e:
tmp = [self._pool.pop() for j in range(i, len(self._pool))]
self._pool.append(rec)
self._pool.extend(reversed(tmp))
break
else:
self._pool.appendleft(rec)
def _noop(self, *args):
pass |
le = 0
notas = 0
while le != 2:
n = float(input())
if 0 <= n <= 10:
notas = notas+n
le += 1
else:
print('nota invalida')
print('media = {:.2f}'.format((notas/2)))
| le = 0
notas = 0
while le != 2:
n = float(input())
if 0 <= n <= 10:
notas = notas + n
le += 1
else:
print('nota invalida')
print('media = {:.2f}'.format(notas / 2)) |
class CustomHandling:
"""
A decorator that wraps the passed in function. Will push exceptions to
a queue.
"""
def __init__(self, queue):
self.queue = queue
def __call__(self, func):
def wrapper(*args, **kwargs):
try:
return func(*args, **kwargs)
except (KeyboardInterrupt, SystemExit):
pass
except Exception as error:
err = func.__name__
self.queue.put((err, error))
raise
return wrapper
| class Customhandling:
"""
A decorator that wraps the passed in function. Will push exceptions to
a queue.
"""
def __init__(self, queue):
self.queue = queue
def __call__(self, func):
def wrapper(*args, **kwargs):
try:
return func(*args, **kwargs)
except (KeyboardInterrupt, SystemExit):
pass
except Exception as error:
err = func.__name__
self.queue.put((err, error))
raise
return wrapper |
def ipaddr(interface=None):
'''
Returns the IP address for a given interface
CLI Example::
salt '*' network.ipaddr eth0
'''
iflist = interfaces()
out = None
if interface:
data = iflist.get(interface) or dict()
if data.get('inet'):
return data.get('inet')[0]['address']
if data.get('inet6'):
return data.get('inet6')[0]['address']
return out
out = dict()
for iface, data in iflist.items():
if data.get('inet'):
out[iface] = data.get('inet')[0]['address']
continue
if data.get('inet6'):
out[iface] = data.get('inet6')[0]['address']
continue
return out
def netmask(interface):
'''
Returns the netmask for a given interface
CLI Example::
salt '*' network.netmask eth0
'''
out = list()
data = interfaces().get(interface)
if data.get('inet'):
for addrinfo in data.get('inet'):
if addrinfo.get('netmask'):
out.append(addrinfo['netmask'])
if data.get('inet6'):
# TODO: This should return the prefix for the address
pass
return out or None
def hwaddr(interface):
'''
Returns the hwaddr for a given interface
CLI Example::
salt '*' network.hwaddr eth0
'''
data = interfaces().get(interface) or {}
return data.get('hwaddr')
def up(interface):
'''
Returns True if interface is up, otherwise returns False
CLI Example::
salt '*' network.up eth0
'''
data = interfaces().get(interface) or {}
return data.get('up')
| def ipaddr(interface=None):
"""
Returns the IP address for a given interface
CLI Example::
salt '*' network.ipaddr eth0
"""
iflist = interfaces()
out = None
if interface:
data = iflist.get(interface) or dict()
if data.get('inet'):
return data.get('inet')[0]['address']
if data.get('inet6'):
return data.get('inet6')[0]['address']
return out
out = dict()
for (iface, data) in iflist.items():
if data.get('inet'):
out[iface] = data.get('inet')[0]['address']
continue
if data.get('inet6'):
out[iface] = data.get('inet6')[0]['address']
continue
return out
def netmask(interface):
"""
Returns the netmask for a given interface
CLI Example::
salt '*' network.netmask eth0
"""
out = list()
data = interfaces().get(interface)
if data.get('inet'):
for addrinfo in data.get('inet'):
if addrinfo.get('netmask'):
out.append(addrinfo['netmask'])
if data.get('inet6'):
pass
return out or None
def hwaddr(interface):
"""
Returns the hwaddr for a given interface
CLI Example::
salt '*' network.hwaddr eth0
"""
data = interfaces().get(interface) or {}
return data.get('hwaddr')
def up(interface):
"""
Returns True if interface is up, otherwise returns False
CLI Example::
salt '*' network.up eth0
"""
data = interfaces().get(interface) or {}
return data.get('up') |
def generate(env, **kw):
if not kw.get('depsOnly',0):
env.Tool('addLibrary', library=['astro'], package = 'astro')
if env['PLATFORM'] == 'win32'and env.get('CONTAINERNAME','')=='GlastRelease':
env.Tool('findPkgPath', package = 'astro')
env.Tool('facilitiesLib')
env.Tool('tipLib')
env.Tool('addLibrary', library=env['clhepLibs'])
env.Tool('addLibrary', library=env['cfitsioLibs'])
# EAC, add wcslib and healpix as externals
env.Tool('addLibrary', library=env['wcslibs'])
env.Tool('addLibrary', library=env['healpixlibs'])
def exists(env):
return 1
| def generate(env, **kw):
if not kw.get('depsOnly', 0):
env.Tool('addLibrary', library=['astro'], package='astro')
if env['PLATFORM'] == 'win32' and env.get('CONTAINERNAME', '') == 'GlastRelease':
env.Tool('findPkgPath', package='astro')
env.Tool('facilitiesLib')
env.Tool('tipLib')
env.Tool('addLibrary', library=env['clhepLibs'])
env.Tool('addLibrary', library=env['cfitsioLibs'])
env.Tool('addLibrary', library=env['wcslibs'])
env.Tool('addLibrary', library=env['healpixlibs'])
def exists(env):
return 1 |
def cvt(s):
if isinstance(s, str):
return unicode(s)
return s
class GWTCanvasImplDefault:
def createElement(self):
e = DOM.createElement("CANVAS")
try:
# This results occasionally in an error:
# AttributeError: XPCOM component '<unknown>' has no attribute 'MozGetIPCContext'
self.setCanvasContext(e.MozGetIPCContext(u'2d'))
except AttributeError:
# In which case this seems to work:
self.setCanvasContext(e.getContext('2d'))
return e
| def cvt(s):
if isinstance(s, str):
return unicode(s)
return s
class Gwtcanvasimpldefault:
def create_element(self):
e = DOM.createElement('CANVAS')
try:
self.setCanvasContext(e.MozGetIPCContext(u'2d'))
except AttributeError:
self.setCanvasContext(e.getContext('2d'))
return e |
def create_category(base_cls):
class Category(base_cls):
__tablename__ = 'category'
__table_args__ = {'autoload': True}
@property
def serialize(self):
"""Return object data in easily serializeable format"""
return {
'Category_name': self.name,
'Category_id': self.id
}
return Category | def create_category(base_cls):
class Category(base_cls):
__tablename__ = 'category'
__table_args__ = {'autoload': True}
@property
def serialize(self):
"""Return object data in easily serializeable format"""
return {'Category_name': self.name, 'Category_id': self.id}
return Category |
"""
File: boggle.py
Name:
----------------------------------------
TODO:
"""
# This is the file name of the dictionary txt file
# we will be checking if a word exists by searching through it
FILE = 'dictionary.txt'
lst = []
enter_lst = []
d = {} # A dict contain the alphabets in boggle games
ans_lst = []
found_words = 0
def main():
"""
TODO:
# """
global lst, enter_lst, d
read_dictionary()
row_num = 1
while True:
if row_num <= 4:
enter = input(f'{row_num} row of letters: ')
if enter == '-1':
break
enter = enter.lower() # Case Insensitive
enter = enter.split(' ')
if illegal_input(enter):
print('Illegal input')
break
enter_lst += enter
row_num += 1
else:
break
created_boggle(enter_lst)
for key in d:
x = key[0]
y = key[1]
play_boggle(x, y, d[(x, y)], [(x, y)])
print(f'There are {found_words} words in total.')
def play_boggle(x, y, ans, previous_lst):
global lst, ans_lst, found_words
if len(ans) >= 4:
if ans in lst:
# Base Case
if ans not in ans_lst:
print(f'Found: "{ans}"')
ans_lst.append(ans)
found_words += 1
if has_prefix(ans):
# For ans has prefix e.g room -> roomy
b_lst = beside_dict(x, y, previous_lst)
for i in range(len(b_lst)):
ans += d[b_lst[i]]
new_x = b_lst[i][0]
new_y = b_lst[i][1]
previous_lst.append((new_x, new_y))
play_boggle(new_x, new_y, ans, previous_lst)
previous_lst.pop()
ans = ans[:len(ans) - 1]
return ans_lst
else:
if has_prefix(ans):
b_lst = beside_dict(x, y, previous_lst)
for i in range(len(b_lst)):
ans += d[b_lst[i]]
new_x = b_lst[i][0]
new_y = b_lst[i][1]
previous_lst.append((new_x, new_y))
play_boggle(new_x, new_y, ans, previous_lst)
previous_lst.pop()
ans = ans[:len(ans) - 1]
return ans_lst
else:
if has_prefix(ans):
b_lst = beside_dict(x, y, previous_lst)
# chose
for i in range(len(b_lst)):
ans += d[b_lst[i]]
# Update the new x, y position
new_x = b_lst[i][0]
new_y = b_lst[i][1]
previous_lst.append((new_x, new_y))
# explore
play_boggle(new_x, new_y, ans, previous_lst)
# Un-choose
previous_lst.pop()
ans = ans[:len(ans) - 1]
return ans_lst
def beside_dict(x, y, previous_lst):
"""
:param x: x position in boggle
:param y: y position in boggle
:param previous_lst: to save the alphabet already use
:return: a list of position need to be explore in boggle game
"""
beside_lst = []
for i in range(-1, 2, 1):
for j in range(-1, 2, 1):
if i == 0 and j == 0:
# For the self position
pass
else:
position_x = x + i
position_y = y + j
if 0 <= position_x < 4:
if 0 <= position_y < 4:
if (position_x, position_y) in previous_lst:
# To prevent adding the alphabet that already used
pass
else:
beside_lst.append((position_x, position_y))
return beside_lst
def created_boggle(e_lst):
"""
:param e_lst: List which contains the enter 16 alphabets
:return: A dict contain the alphabets in boggle games and also thew position for each alphabets
"""
global d
for j in range(4):
for i in range(4):
d[(i, j)] = e_lst[4*j + i]
return d
def illegal_input(enter):
if len(enter) != 4:
return True
for ch in enter:
if len(ch) != 1:
return True
return False
def read_dictionary():
"""
This function reads file "dictionary.txt" stored in FILE
and appends words in each line into a Python list
"""
global lst
with open(FILE, 'r') as f:
for line in f:
line = line.split()
lst += line
def has_prefix(sub_s):
"""
:param sub_s: (str) A substring that is constructed by neighboring letters on a 4x4 square grid
:return: (bool) If there is any words with prefix stored in sub_s
"""
global lst
for word in lst:
if word.startswith(sub_s):
return True
return False
if __name__ == '__main__':
main()
| """
File: boggle.py
Name:
----------------------------------------
TODO:
"""
file = 'dictionary.txt'
lst = []
enter_lst = []
d = {}
ans_lst = []
found_words = 0
def main():
"""
TODO:
# """
global lst, enter_lst, d
read_dictionary()
row_num = 1
while True:
if row_num <= 4:
enter = input(f'{row_num} row of letters: ')
if enter == '-1':
break
enter = enter.lower()
enter = enter.split(' ')
if illegal_input(enter):
print('Illegal input')
break
enter_lst += enter
row_num += 1
else:
break
created_boggle(enter_lst)
for key in d:
x = key[0]
y = key[1]
play_boggle(x, y, d[x, y], [(x, y)])
print(f'There are {found_words} words in total.')
def play_boggle(x, y, ans, previous_lst):
global lst, ans_lst, found_words
if len(ans) >= 4:
if ans in lst:
if ans not in ans_lst:
print(f'Found: "{ans}"')
ans_lst.append(ans)
found_words += 1
if has_prefix(ans):
b_lst = beside_dict(x, y, previous_lst)
for i in range(len(b_lst)):
ans += d[b_lst[i]]
new_x = b_lst[i][0]
new_y = b_lst[i][1]
previous_lst.append((new_x, new_y))
play_boggle(new_x, new_y, ans, previous_lst)
previous_lst.pop()
ans = ans[:len(ans) - 1]
return ans_lst
else:
if has_prefix(ans):
b_lst = beside_dict(x, y, previous_lst)
for i in range(len(b_lst)):
ans += d[b_lst[i]]
new_x = b_lst[i][0]
new_y = b_lst[i][1]
previous_lst.append((new_x, new_y))
play_boggle(new_x, new_y, ans, previous_lst)
previous_lst.pop()
ans = ans[:len(ans) - 1]
return ans_lst
else:
if has_prefix(ans):
b_lst = beside_dict(x, y, previous_lst)
for i in range(len(b_lst)):
ans += d[b_lst[i]]
new_x = b_lst[i][0]
new_y = b_lst[i][1]
previous_lst.append((new_x, new_y))
play_boggle(new_x, new_y, ans, previous_lst)
previous_lst.pop()
ans = ans[:len(ans) - 1]
return ans_lst
def beside_dict(x, y, previous_lst):
"""
:param x: x position in boggle
:param y: y position in boggle
:param previous_lst: to save the alphabet already use
:return: a list of position need to be explore in boggle game
"""
beside_lst = []
for i in range(-1, 2, 1):
for j in range(-1, 2, 1):
if i == 0 and j == 0:
pass
else:
position_x = x + i
position_y = y + j
if 0 <= position_x < 4:
if 0 <= position_y < 4:
if (position_x, position_y) in previous_lst:
pass
else:
beside_lst.append((position_x, position_y))
return beside_lst
def created_boggle(e_lst):
"""
:param e_lst: List which contains the enter 16 alphabets
:return: A dict contain the alphabets in boggle games and also thew position for each alphabets
"""
global d
for j in range(4):
for i in range(4):
d[i, j] = e_lst[4 * j + i]
return d
def illegal_input(enter):
if len(enter) != 4:
return True
for ch in enter:
if len(ch) != 1:
return True
return False
def read_dictionary():
"""
This function reads file "dictionary.txt" stored in FILE
and appends words in each line into a Python list
"""
global lst
with open(FILE, 'r') as f:
for line in f:
line = line.split()
lst += line
def has_prefix(sub_s):
"""
:param sub_s: (str) A substring that is constructed by neighboring letters on a 4x4 square grid
:return: (bool) If there is any words with prefix stored in sub_s
"""
global lst
for word in lst:
if word.startswith(sub_s):
return True
return False
if __name__ == '__main__':
main() |
# DSAME prob #40
class Node:
def __init__(self, data=None, next=None):
self.data = data
self.next = next
def get_josephus_pos():
q = p = Node()
n = int(input("Enter no of players: "))
m = int(input("Enter which player needs to be eliminated each time:"))
# create cll containing all players
p.data = 1
p.next = Node()
for i in range(2, n):
p.next = Node()
p = p.next
p.data = i
p.next = q
for count in range (n, 1, -1):
for i in range(0, m-1):
p = p.next
p.next = p.next.next
print("Last player standing is {}".format(p.data))
if __name__ == '__main__':
get_josephus_pos()
| class Node:
def __init__(self, data=None, next=None):
self.data = data
self.next = next
def get_josephus_pos():
q = p = node()
n = int(input('Enter no of players: '))
m = int(input('Enter which player needs to be eliminated each time:'))
p.data = 1
p.next = node()
for i in range(2, n):
p.next = node()
p = p.next
p.data = i
p.next = q
for count in range(n, 1, -1):
for i in range(0, m - 1):
p = p.next
p.next = p.next.next
print('Last player standing is {}'.format(p.data))
if __name__ == '__main__':
get_josephus_pos() |
'''LC459:Repeated Substr pattern
https://leetcode.com/problems/repeated-substring-pattern/
Given a non-empty string check if it can be constructed by
taking a substring of it and appending multiple copies of the
substring together. You may assume the given string consists
of lowercase English letters only and its length will not exceed 10000.
Example 1:
Input: "abab"
Output: True
Explanation: It's the substring "ab" twice.
Example 2:
Input: "aba"
Output: False
Example 3:
Input: "abcabcabcabc"
Output: True
Explanation: It's the substring "abc" four times. (And the substring "abcabc" twice.)'''
class Sln:
def repeatedSubstringPattern(self, str):
"""
:type str: str
:rtype: bool
"""
if not str:
return False
ss = (str + str)[1:-1]
return ss.find(str) != -1 | """LC459:Repeated Substr pattern
https://leetcode.com/problems/repeated-substring-pattern/
Given a non-empty string check if it can be constructed by
taking a substring of it and appending multiple copies of the
substring together. You may assume the given string consists
of lowercase English letters only and its length will not exceed 10000.
Example 1:
Input: "abab"
Output: True
Explanation: It's the substring "ab" twice.
Example 2:
Input: "aba"
Output: False
Example 3:
Input: "abcabcabcabc"
Output: True
Explanation: It's the substring "abc" four times. (And the substring "abcabc" twice.)"""
class Sln:
def repeated_substring_pattern(self, str):
"""
:type str: str
:rtype: bool
"""
if not str:
return False
ss = (str + str)[1:-1]
return ss.find(str) != -1 |
a=float(input())
b=float(input())
if a<b:
print(a)
else:
print(b) | a = float(input())
b = float(input())
if a < b:
print(a)
else:
print(b) |
def grammar():
return [
'progStructure',
'name',
'body',
'instruction',
'moreInstruction',
'functionCall',
'parameter',
'moreParameter',
'parameterType'
]
def progStructure(self):
self.name()
self.match( ('reserved_word', 'INICIO') )
self.body()
self.match( ('reserved_word', 'FIN') )
def name(self):
self.match( ('reserved_word', 'PROGRAMA') )
self.match( 'id' )
def body(self):
self.instruction()
self.moreInstruction()
def instruction(self):
self.functionCall()
def moreInstruction(self):
if( self.token['type'] == 'function' ):
self.body()
def functionCall(self):
func_call = {}
self.logger.info('function')
func_call['type'] = self.token['type']
func_call['name'] = self.token['lexeme']
self.match('function')
self.match('parentesis_a')
func_call['parameters'] = self.parameter()
self.match('parentesis_c')
self.semantic.analyze(func_call)
def parameter(self):
parameters = []
parameters.append( self.parameterType() )
if(self.token['type'] == 'coma'):
self.match('coma')
parameters.extend( self.moreParameter() )
print(parameters)
return parameters
def moreParameter(self):
if( self.token['type'] in ['entero', 'cadena', 'id'] ):
return self.parameter()
def parameterType(self):
value = (self.token['type'], self.token['lexeme'])
self.match( ['entero', 'cadena', 'id'] )
return value
| def grammar():
return ['progStructure', 'name', 'body', 'instruction', 'moreInstruction', 'functionCall', 'parameter', 'moreParameter', 'parameterType']
def prog_structure(self):
self.name()
self.match(('reserved_word', 'INICIO'))
self.body()
self.match(('reserved_word', 'FIN'))
def name(self):
self.match(('reserved_word', 'PROGRAMA'))
self.match('id')
def body(self):
self.instruction()
self.moreInstruction()
def instruction(self):
self.functionCall()
def more_instruction(self):
if self.token['type'] == 'function':
self.body()
def function_call(self):
func_call = {}
self.logger.info('function')
func_call['type'] = self.token['type']
func_call['name'] = self.token['lexeme']
self.match('function')
self.match('parentesis_a')
func_call['parameters'] = self.parameter()
self.match('parentesis_c')
self.semantic.analyze(func_call)
def parameter(self):
parameters = []
parameters.append(self.parameterType())
if self.token['type'] == 'coma':
self.match('coma')
parameters.extend(self.moreParameter())
print(parameters)
return parameters
def more_parameter(self):
if self.token['type'] in ['entero', 'cadena', 'id']:
return self.parameter()
def parameter_type(self):
value = (self.token['type'], self.token['lexeme'])
self.match(['entero', 'cadena', 'id'])
return value |
class GeneratorCache(object):
"""Cache for cached_generator to store SharedGenerators and exception info.
"""
# Private attributes:
# list<dict> _shared_generators - A list of the SharedGenerator and
# exception info maps stored in this GeneratorCache.
def __init__(self):
self._shared_generators = []
def clear(self):
"""Clear the SharedGenerators from all functions using this.
Clear the SharedGenerators and exception info we are using for
all of the functions decorated with this GeneratorCache. This
clears any cached results of such functions.
"""
for shared_generators in self._shared_generators:
shared_generators.clear()
self._shared_generators = []
def _create_shared_generators_map(self):
"""Return a new map for storing SharedGenerators and exception info.
"""
shared_generators = {}
self._shared_generators.append(shared_generators)
return shared_generators
| class Generatorcache(object):
"""Cache for cached_generator to store SharedGenerators and exception info.
"""
def __init__(self):
self._shared_generators = []
def clear(self):
"""Clear the SharedGenerators from all functions using this.
Clear the SharedGenerators and exception info we are using for
all of the functions decorated with this GeneratorCache. This
clears any cached results of such functions.
"""
for shared_generators in self._shared_generators:
shared_generators.clear()
self._shared_generators = []
def _create_shared_generators_map(self):
"""Return a new map for storing SharedGenerators and exception info.
"""
shared_generators = {}
self._shared_generators.append(shared_generators)
return shared_generators |
n,m=map(int,input().split())
l1=list(map(int,input().split()))
minindex=l1.index(min(l1))
l2=list(map(int,input().split()))
maxindex=l2.index(max(l2))
for i in range(0,m):
print(minindex,i)
for j in range(0,minindex):
print(j,maxindex)
for j in range(minindex+1,n):
print(j,maxindex)
| (n, m) = map(int, input().split())
l1 = list(map(int, input().split()))
minindex = l1.index(min(l1))
l2 = list(map(int, input().split()))
maxindex = l2.index(max(l2))
for i in range(0, m):
print(minindex, i)
for j in range(0, minindex):
print(j, maxindex)
for j in range(minindex + 1, n):
print(j, maxindex) |
class TempSensor:
__sensor_path = '/sys/bus/w1/devices/28-00000652b8e4/w1_slave'
def __init__(self):
self.__recent_values = []
def read(self):
data = self.__read_sensor_file()
temp_value = self.__parse_sensor_data(data)
fahrenheit_value = self.__convert_to_fahrenheit(temp_value)
self.__recent_values.append(fahrenheit_value)
while len(self.__recent_values) > 5:
self.__recent_values.pop(0)
return sum(self.__recent_values) / float(len(self.__recent_values))
def __read_sensor_file(self):
f = open(TempSensor.__sensor_path,'r')
contents = f.read()
f.close()
return contents
def __parse_sensor_data(self, data):
return int(data.split('t=')[-1])/1000
def __convert_to_fahrenheit(self, celsius):
return (celsius * 1.8) + 32
| class Tempsensor:
__sensor_path = '/sys/bus/w1/devices/28-00000652b8e4/w1_slave'
def __init__(self):
self.__recent_values = []
def read(self):
data = self.__read_sensor_file()
temp_value = self.__parse_sensor_data(data)
fahrenheit_value = self.__convert_to_fahrenheit(temp_value)
self.__recent_values.append(fahrenheit_value)
while len(self.__recent_values) > 5:
self.__recent_values.pop(0)
return sum(self.__recent_values) / float(len(self.__recent_values))
def __read_sensor_file(self):
f = open(TempSensor.__sensor_path, 'r')
contents = f.read()
f.close()
return contents
def __parse_sensor_data(self, data):
return int(data.split('t=')[-1]) / 1000
def __convert_to_fahrenheit(self, celsius):
return celsius * 1.8 + 32 |
#Question 14
power = int(input('Enter power:'))
number = 2**power
print('Two last digits:', number%100)
| power = int(input('Enter power:'))
number = 2 ** power
print('Two last digits:', number % 100) |
def distance(strand_a, strand_b):
if len(strand_a) != len(strand_b):
raise ValueError('strands are not of equal length')
count = 0
for i in range(len(strand_a)):
if strand_a[i] != strand_b[i]:
count += 1
return count
| def distance(strand_a, strand_b):
if len(strand_a) != len(strand_b):
raise value_error('strands are not of equal length')
count = 0
for i in range(len(strand_a)):
if strand_a[i] != strand_b[i]:
count += 1
return count |
# 367. Valid Perfect Square
class Solution:
# Binary Search
def isPerfectSquare(self, num: int) -> bool:
if num < 2:
return True
left, right = 2, num // 2
while left <= right:
mid = left + (right - left) // 2
sqr = mid ** 2
if sqr == num:
return True
elif sqr < num:
left = mid + 1
else:
right = mid - 1
return False | class Solution:
def is_perfect_square(self, num: int) -> bool:
if num < 2:
return True
(left, right) = (2, num // 2)
while left <= right:
mid = left + (right - left) // 2
sqr = mid ** 2
if sqr == num:
return True
elif sqr < num:
left = mid + 1
else:
right = mid - 1
return False |
class BuySellEnum:
BUY_SELL_UNSET = 0
BUY = 1
SELL = 2
| class Buysellenum:
buy_sell_unset = 0
buy = 1
sell = 2 |
# -*- coding: utf-8 -*-
"""
logbook._termcolors
~~~~~~~~~~~~~~~~~~~
Provides terminal color mappings.
:copyright: (c) 2010 by Armin Ronacher, Georg Brandl.
:license: BSD, see LICENSE for more details.
"""
esc = "\x1b["
codes = {"": "", "reset": esc + "39;49;00m"}
dark_colors = ["black", "darkred", "darkgreen", "brown", "darkblue",
"purple", "teal", "lightgray"]
light_colors = ["darkgray", "red", "green", "yellow", "blue",
"fuchsia", "turquoise", "white"]
x = 30
for d, l in zip(dark_colors, light_colors):
codes[d] = esc + "%im" % x
codes[l] = esc + "%i;01m" % x
x += 1
del d, l, x
codes["darkteal"] = codes["turquoise"]
codes["darkyellow"] = codes["brown"]
codes["fuscia"] = codes["fuchsia"]
def _str_to_type(obj, strtype):
"""Helper for ansiformat and colorize"""
if isinstance(obj, type(strtype)):
return obj
return obj.encode('ascii')
def colorize(color_key, text):
"""Returns an ANSI formatted text with the given color."""
return (_str_to_type(codes[color_key], text) + text +
_str_to_type(codes["reset"], text))
| """
logbook._termcolors
~~~~~~~~~~~~~~~~~~~
Provides terminal color mappings.
:copyright: (c) 2010 by Armin Ronacher, Georg Brandl.
:license: BSD, see LICENSE for more details.
"""
esc = '\x1b['
codes = {'': '', 'reset': esc + '39;49;00m'}
dark_colors = ['black', 'darkred', 'darkgreen', 'brown', 'darkblue', 'purple', 'teal', 'lightgray']
light_colors = ['darkgray', 'red', 'green', 'yellow', 'blue', 'fuchsia', 'turquoise', 'white']
x = 30
for (d, l) in zip(dark_colors, light_colors):
codes[d] = esc + '%im' % x
codes[l] = esc + '%i;01m' % x
x += 1
del d, l, x
codes['darkteal'] = codes['turquoise']
codes['darkyellow'] = codes['brown']
codes['fuscia'] = codes['fuchsia']
def _str_to_type(obj, strtype):
"""Helper for ansiformat and colorize"""
if isinstance(obj, type(strtype)):
return obj
return obj.encode('ascii')
def colorize(color_key, text):
"""Returns an ANSI formatted text with the given color."""
return _str_to_type(codes[color_key], text) + text + _str_to_type(codes['reset'], text) |
STATS = [
{
"num_node_expansions": 653,
"plan_length": 167,
"search_time": 0.49,
"total_time": 0.49
},
{
"num_node_expansions": 978,
"plan_length": 167,
"search_time": 0.72,
"total_time": 0.72
},
{
"num_node_expansions": 1087,
"plan_length": 194,
"search_time": 17.44,
"total_time": 17.44
},
{
"num_node_expansions": 923,
"plan_length": 198,
"search_time": 14.63,
"total_time": 14.63
},
{
"num_node_expansions": 667,
"plan_length": 142,
"search_time": 14.3,
"total_time": 14.3
},
{
"num_node_expansions": 581,
"plan_length": 156,
"search_time": 13.29,
"total_time": 13.29
},
{
"num_node_expansions": 505,
"plan_length": 134,
"search_time": 3.04,
"total_time": 3.04
},
{
"num_node_expansions": 953,
"plan_length": 165,
"search_time": 6.84,
"total_time": 6.84
},
{
"num_node_expansions": 792,
"plan_length": 163,
"search_time": 0.45,
"total_time": 0.45
},
{
"num_node_expansions": 554,
"plan_length": 160,
"search_time": 0.44,
"total_time": 0.44
},
{
"num_node_expansions": 706,
"plan_length": 156,
"search_time": 4.71,
"total_time": 4.71
},
{
"num_node_expansions": 620,
"plan_length": 138,
"search_time": 3.2,
"total_time": 3.2
},
{
"num_node_expansions": 661,
"plan_length": 169,
"search_time": 0.41,
"total_time": 0.41
},
{
"num_node_expansions": 774,
"plan_length": 178,
"search_time": 0.66,
"total_time": 0.66
},
{
"num_node_expansions": 615,
"plan_length": 171,
"search_time": 0.76,
"total_time": 0.76
},
{
"num_node_expansions": 516,
"plan_length": 134,
"search_time": 0.93,
"total_time": 0.93
},
{
"num_node_expansions": 1077,
"plan_length": 221,
"search_time": 0.9,
"total_time": 0.9
},
{
"num_node_expansions": 1029,
"plan_length": 213,
"search_time": 0.93,
"total_time": 0.93
},
{
"num_node_expansions": 753,
"plan_length": 173,
"search_time": 0.71,
"total_time": 0.71
},
{
"num_node_expansions": 814,
"plan_length": 210,
"search_time": 0.66,
"total_time": 0.66
},
{
"num_node_expansions": 569,
"plan_length": 134,
"search_time": 4.8,
"total_time": 4.8
},
{
"num_node_expansions": 899,
"plan_length": 176,
"search_time": 6.19,
"total_time": 6.19
},
{
"num_node_expansions": 531,
"plan_length": 144,
"search_time": 3.85,
"total_time": 3.85
},
{
"num_node_expansions": 631,
"plan_length": 164,
"search_time": 4.22,
"total_time": 4.22
},
{
"num_node_expansions": 479,
"plan_length": 138,
"search_time": 0.11,
"total_time": 0.11
},
{
"num_node_expansions": 941,
"plan_length": 148,
"search_time": 0.21,
"total_time": 0.21
},
{
"num_node_expansions": 1023,
"plan_length": 197,
"search_time": 9.89,
"total_time": 9.89
},
{
"num_node_expansions": 1152,
"plan_length": 196,
"search_time": 12.89,
"total_time": 12.89
},
{
"num_node_expansions": 629,
"plan_length": 147,
"search_time": 3.24,
"total_time": 3.24
},
{
"num_node_expansions": 697,
"plan_length": 160,
"search_time": 2.33,
"total_time": 2.33
},
{
"num_node_expansions": 646,
"plan_length": 158,
"search_time": 3.94,
"total_time": 3.94
},
{
"num_node_expansions": 741,
"plan_length": 152,
"search_time": 4.03,
"total_time": 4.03
},
{
"num_node_expansions": 486,
"plan_length": 136,
"search_time": 1.99,
"total_time": 1.99
},
{
"num_node_expansions": 602,
"plan_length": 146,
"search_time": 3.41,
"total_time": 3.41
},
{
"num_node_expansions": 774,
"plan_length": 186,
"search_time": 1.47,
"total_time": 1.47
},
{
"num_node_expansions": 1512,
"plan_length": 209,
"search_time": 3.74,
"total_time": 3.74
},
{
"num_node_expansions": 791,
"plan_length": 180,
"search_time": 14.14,
"total_time": 14.14
},
{
"num_node_expansions": 1019,
"plan_length": 211,
"search_time": 21.35,
"total_time": 21.35
},
{
"num_node_expansions": 450,
"plan_length": 133,
"search_time": 1.76,
"total_time": 1.76
},
{
"num_node_expansions": 526,
"plan_length": 135,
"search_time": 1.98,
"total_time": 1.98
},
{
"num_node_expansions": 1329,
"plan_length": 182,
"search_time": 6.8,
"total_time": 6.8
},
{
"num_node_expansions": 655,
"plan_length": 134,
"search_time": 3.31,
"total_time": 3.31
},
{
"num_node_expansions": 636,
"plan_length": 159,
"search_time": 5.99,
"total_time": 5.99
},
{
"num_node_expansions": 1403,
"plan_length": 196,
"search_time": 13.75,
"total_time": 13.75
},
{
"num_node_expansions": 664,
"plan_length": 175,
"search_time": 3.62,
"total_time": 3.62
},
{
"num_node_expansions": 760,
"plan_length": 150,
"search_time": 5.2,
"total_time": 5.2
},
{
"num_node_expansions": 593,
"plan_length": 163,
"search_time": 8.61,
"total_time": 8.61
},
{
"num_node_expansions": 1043,
"plan_length": 179,
"search_time": 16.05,
"total_time": 16.05
},
{
"num_node_expansions": 390,
"plan_length": 103,
"search_time": 0.33,
"total_time": 0.33
},
{
"num_node_expansions": 419,
"plan_length": 120,
"search_time": 0.35,
"total_time": 0.35
},
{
"num_node_expansions": 606,
"plan_length": 160,
"search_time": 15.03,
"total_time": 15.03
},
{
"num_node_expansions": 525,
"plan_length": 146,
"search_time": 0.2,
"total_time": 0.2
},
{
"num_node_expansions": 522,
"plan_length": 147,
"search_time": 0.22,
"total_time": 0.22
},
{
"num_node_expansions": 652,
"plan_length": 165,
"search_time": 10.35,
"total_time": 10.35
},
{
"num_node_expansions": 1188,
"plan_length": 178,
"search_time": 13.19,
"total_time": 13.19
},
{
"num_node_expansions": 450,
"plan_length": 136,
"search_time": 1.56,
"total_time": 1.56
},
{
"num_node_expansions": 1179,
"plan_length": 209,
"search_time": 3.46,
"total_time": 3.46
},
{
"num_node_expansions": 834,
"plan_length": 204,
"search_time": 20.33,
"total_time": 20.33
},
{
"num_node_expansions": 1133,
"plan_length": 187,
"search_time": 12.76,
"total_time": 12.76
},
{
"num_node_expansions": 777,
"plan_length": 181,
"search_time": 8.97,
"total_time": 8.97
},
{
"num_node_expansions": 591,
"plan_length": 136,
"search_time": 1.58,
"total_time": 1.58
},
{
"num_node_expansions": 580,
"plan_length": 143,
"search_time": 1.56,
"total_time": 1.56
},
{
"num_node_expansions": 977,
"plan_length": 173,
"search_time": 5.94,
"total_time": 5.94
},
{
"num_node_expansions": 694,
"plan_length": 167,
"search_time": 5.26,
"total_time": 5.26
},
{
"num_node_expansions": 861,
"plan_length": 188,
"search_time": 1.15,
"total_time": 1.15
},
{
"num_node_expansions": 790,
"plan_length": 160,
"search_time": 0.81,
"total_time": 0.81
},
{
"num_node_expansions": 841,
"plan_length": 188,
"search_time": 4.87,
"total_time": 4.87
},
{
"num_node_expansions": 436,
"plan_length": 128,
"search_time": 1.77,
"total_time": 1.77
},
{
"num_node_expansions": 550,
"plan_length": 127,
"search_time": 0.03,
"total_time": 0.03
},
{
"num_node_expansions": 434,
"plan_length": 134,
"search_time": 0.03,
"total_time": 0.03
},
{
"num_node_expansions": 990,
"plan_length": 191,
"search_time": 26.16,
"total_time": 26.16
},
{
"num_node_expansions": 987,
"plan_length": 248,
"search_time": 27.03,
"total_time": 27.03
},
{
"num_node_expansions": 958,
"plan_length": 195,
"search_time": 6.81,
"total_time": 6.81
},
{
"num_node_expansions": 658,
"plan_length": 174,
"search_time": 4.83,
"total_time": 4.83
},
{
"num_node_expansions": 370,
"plan_length": 126,
"search_time": 0.06,
"total_time": 0.06
},
{
"num_node_expansions": 440,
"plan_length": 119,
"search_time": 0.06,
"total_time": 0.06
},
{
"num_node_expansions": 648,
"plan_length": 168,
"search_time": 7.05,
"total_time": 7.05
},
{
"num_node_expansions": 832,
"plan_length": 178,
"search_time": 9.96,
"total_time": 9.96
},
{
"num_node_expansions": 355,
"plan_length": 116,
"search_time": 0.6,
"total_time": 0.6
},
{
"num_node_expansions": 495,
"plan_length": 123,
"search_time": 0.73,
"total_time": 0.73
},
{
"num_node_expansions": 612,
"plan_length": 148,
"search_time": 2.91,
"total_time": 2.91
},
{
"num_node_expansions": 1067,
"plan_length": 174,
"search_time": 4.37,
"total_time": 4.37
},
{
"num_node_expansions": 821,
"plan_length": 185,
"search_time": 2.51,
"total_time": 2.51
},
{
"num_node_expansions": 625,
"plan_length": 153,
"search_time": 2.22,
"total_time": 2.22
},
{
"num_node_expansions": 304,
"plan_length": 99,
"search_time": 0.15,
"total_time": 0.15
},
{
"num_node_expansions": 477,
"plan_length": 133,
"search_time": 0.41,
"total_time": 0.41
},
{
"num_node_expansions": 651,
"plan_length": 160,
"search_time": 0.19,
"total_time": 0.19
},
{
"num_node_expansions": 594,
"plan_length": 147,
"search_time": 0.17,
"total_time": 0.17
},
{
"num_node_expansions": 524,
"plan_length": 134,
"search_time": 5.8,
"total_time": 5.8
},
{
"num_node_expansions": 400,
"plan_length": 127,
"search_time": 5.23,
"total_time": 5.23
},
{
"num_node_expansions": 825,
"plan_length": 185,
"search_time": 5.71,
"total_time": 5.71
},
{
"num_node_expansions": 613,
"plan_length": 156,
"search_time": 4.13,
"total_time": 4.13
},
{
"num_node_expansions": 427,
"plan_length": 121,
"search_time": 0.08,
"total_time": 0.08
},
{
"num_node_expansions": 362,
"plan_length": 116,
"search_time": 0.07,
"total_time": 0.07
},
{
"num_node_expansions": 459,
"plan_length": 119,
"search_time": 0.6,
"total_time": 0.6
},
{
"num_node_expansions": 501,
"plan_length": 132,
"search_time": 0.72,
"total_time": 0.72
},
{
"num_node_expansions": 697,
"plan_length": 156,
"search_time": 2.94,
"total_time": 2.94
},
{
"num_node_expansions": 1024,
"plan_length": 162,
"search_time": 6.43,
"total_time": 6.43
},
{
"num_node_expansions": 501,
"plan_length": 122,
"search_time": 4.23,
"total_time": 4.23
},
{
"num_node_expansions": 577,
"plan_length": 126,
"search_time": 4.8,
"total_time": 4.8
},
{
"num_node_expansions": 633,
"plan_length": 152,
"search_time": 15.85,
"total_time": 15.85
},
{
"num_node_expansions": 833,
"plan_length": 186,
"search_time": 20.61,
"total_time": 20.61
},
{
"num_node_expansions": 996,
"plan_length": 183,
"search_time": 3.53,
"total_time": 3.53
},
{
"num_node_expansions": 1246,
"plan_length": 206,
"search_time": 4.34,
"total_time": 4.34
},
{
"num_node_expansions": 466,
"plan_length": 137,
"search_time": 1.19,
"total_time": 1.19
},
{
"num_node_expansions": 530,
"plan_length": 142,
"search_time": 1.5,
"total_time": 1.5
},
{
"num_node_expansions": 923,
"plan_length": 189,
"search_time": 13.9,
"total_time": 13.9
},
{
"num_node_expansions": 799,
"plan_length": 167,
"search_time": 11.96,
"total_time": 11.96
},
{
"num_node_expansions": 651,
"plan_length": 173,
"search_time": 0.82,
"total_time": 0.82
},
{
"num_node_expansions": 590,
"plan_length": 159,
"search_time": 0.56,
"total_time": 0.56
},
{
"num_node_expansions": 542,
"plan_length": 155,
"search_time": 0.06,
"total_time": 0.06
},
{
"num_node_expansions": 418,
"plan_length": 130,
"search_time": 0.05,
"total_time": 0.05
},
{
"num_node_expansions": 881,
"plan_length": 182,
"search_time": 7.23,
"total_time": 7.23
},
{
"num_node_expansions": 1256,
"plan_length": 205,
"search_time": 11.35,
"total_time": 11.35
},
{
"num_node_expansions": 612,
"plan_length": 146,
"search_time": 1.83,
"total_time": 1.83
},
{
"num_node_expansions": 567,
"plan_length": 145,
"search_time": 2.49,
"total_time": 2.49
},
{
"num_node_expansions": 655,
"plan_length": 152,
"search_time": 6.73,
"total_time": 6.73
},
{
"num_node_expansions": 499,
"plan_length": 133,
"search_time": 4.83,
"total_time": 4.83
},
{
"num_node_expansions": 500,
"plan_length": 137,
"search_time": 0.24,
"total_time": 0.24
},
{
"num_node_expansions": 869,
"plan_length": 156,
"search_time": 0.35,
"total_time": 0.35
},
{
"num_node_expansions": 522,
"plan_length": 161,
"search_time": 0.05,
"total_time": 0.05
},
{
"num_node_expansions": 712,
"plan_length": 181,
"search_time": 0.07,
"total_time": 0.07
},
{
"num_node_expansions": 708,
"plan_length": 142,
"search_time": 3.52,
"total_time": 3.52
},
{
"num_node_expansions": 642,
"plan_length": 163,
"search_time": 3.84,
"total_time": 3.84
},
{
"num_node_expansions": 426,
"plan_length": 134,
"search_time": 0.11,
"total_time": 0.11
},
{
"num_node_expansions": 471,
"plan_length": 129,
"search_time": 0.12,
"total_time": 0.12
},
{
"num_node_expansions": 520,
"plan_length": 135,
"search_time": 1.06,
"total_time": 1.06
},
{
"num_node_expansions": 666,
"plan_length": 144,
"search_time": 1.74,
"total_time": 1.74
},
{
"num_node_expansions": 563,
"plan_length": 159,
"search_time": 1.27,
"total_time": 1.27
},
{
"num_node_expansions": 566,
"plan_length": 162,
"search_time": 1.71,
"total_time": 1.71
},
{
"num_node_expansions": 1356,
"plan_length": 212,
"search_time": 24.23,
"total_time": 24.23
},
{
"num_node_expansions": 836,
"plan_length": 203,
"search_time": 15.08,
"total_time": 15.08
},
{
"num_node_expansions": 604,
"plan_length": 145,
"search_time": 0.9,
"total_time": 0.9
},
{
"num_node_expansions": 506,
"plan_length": 124,
"search_time": 0.75,
"total_time": 0.75
},
{
"num_node_expansions": 851,
"plan_length": 203,
"search_time": 0.89,
"total_time": 0.89
},
{
"num_node_expansions": 603,
"plan_length": 166,
"search_time": 0.67,
"total_time": 0.67
},
{
"num_node_expansions": 497,
"plan_length": 118,
"search_time": 0.25,
"total_time": 0.25
},
{
"num_node_expansions": 590,
"plan_length": 117,
"search_time": 0.23,
"total_time": 0.23
},
{
"num_node_expansions": 409,
"plan_length": 129,
"search_time": 0.07,
"total_time": 0.07
},
{
"num_node_expansions": 669,
"plan_length": 165,
"search_time": 0.11,
"total_time": 0.11
},
{
"num_node_expansions": 786,
"plan_length": 161,
"search_time": 15.63,
"total_time": 15.63
},
{
"num_node_expansions": 474,
"plan_length": 144,
"search_time": 11.44,
"total_time": 11.44
},
{
"num_node_expansions": 579,
"plan_length": 165,
"search_time": 0.76,
"total_time": 0.76
},
{
"num_node_expansions": 620,
"plan_length": 160,
"search_time": 0.71,
"total_time": 0.71
},
{
"num_node_expansions": 1523,
"plan_length": 221,
"search_time": 26.01,
"total_time": 26.01
},
{
"num_node_expansions": 961,
"plan_length": 207,
"search_time": 15.01,
"total_time": 15.01
},
{
"num_node_expansions": 444,
"plan_length": 127,
"search_time": 3.52,
"total_time": 3.52
},
{
"num_node_expansions": 464,
"plan_length": 127,
"search_time": 4.44,
"total_time": 4.44
},
{
"num_node_expansions": 773,
"plan_length": 194,
"search_time": 0.8,
"total_time": 0.8
},
{
"num_node_expansions": 676,
"plan_length": 161,
"search_time": 0.86,
"total_time": 0.86
},
{
"num_node_expansions": 414,
"plan_length": 127,
"search_time": 0.43,
"total_time": 0.43
},
{
"num_node_expansions": 623,
"plan_length": 165,
"search_time": 0.47,
"total_time": 0.47
},
{
"num_node_expansions": 703,
"plan_length": 163,
"search_time": 0.89,
"total_time": 0.89
},
{
"num_node_expansions": 785,
"plan_length": 176,
"search_time": 0.99,
"total_time": 0.99
},
{
"num_node_expansions": 986,
"plan_length": 167,
"search_time": 13.69,
"total_time": 13.69
},
{
"num_node_expansions": 955,
"plan_length": 205,
"search_time": 12.42,
"total_time": 12.42
},
{
"num_node_expansions": 417,
"plan_length": 118,
"search_time": 0.05,
"total_time": 0.05
},
{
"num_node_expansions": 521,
"plan_length": 141,
"search_time": 0.07,
"total_time": 0.07
},
{
"num_node_expansions": 815,
"plan_length": 182,
"search_time": 23.26,
"total_time": 23.26
}
]
num_timeouts = 13
num_timeouts = 0
num_problems = 172
| stats = [{'num_node_expansions': 653, 'plan_length': 167, 'search_time': 0.49, 'total_time': 0.49}, {'num_node_expansions': 978, 'plan_length': 167, 'search_time': 0.72, 'total_time': 0.72}, {'num_node_expansions': 1087, 'plan_length': 194, 'search_time': 17.44, 'total_time': 17.44}, {'num_node_expansions': 923, 'plan_length': 198, 'search_time': 14.63, 'total_time': 14.63}, {'num_node_expansions': 667, 'plan_length': 142, 'search_time': 14.3, 'total_time': 14.3}, {'num_node_expansions': 581, 'plan_length': 156, 'search_time': 13.29, 'total_time': 13.29}, {'num_node_expansions': 505, 'plan_length': 134, 'search_time': 3.04, 'total_time': 3.04}, {'num_node_expansions': 953, 'plan_length': 165, 'search_time': 6.84, 'total_time': 6.84}, {'num_node_expansions': 792, 'plan_length': 163, 'search_time': 0.45, 'total_time': 0.45}, {'num_node_expansions': 554, 'plan_length': 160, 'search_time': 0.44, 'total_time': 0.44}, {'num_node_expansions': 706, 'plan_length': 156, 'search_time': 4.71, 'total_time': 4.71}, {'num_node_expansions': 620, 'plan_length': 138, 'search_time': 3.2, 'total_time': 3.2}, {'num_node_expansions': 661, 'plan_length': 169, 'search_time': 0.41, 'total_time': 0.41}, {'num_node_expansions': 774, 'plan_length': 178, 'search_time': 0.66, 'total_time': 0.66}, {'num_node_expansions': 615, 'plan_length': 171, 'search_time': 0.76, 'total_time': 0.76}, {'num_node_expansions': 516, 'plan_length': 134, 'search_time': 0.93, 'total_time': 0.93}, {'num_node_expansions': 1077, 'plan_length': 221, 'search_time': 0.9, 'total_time': 0.9}, {'num_node_expansions': 1029, 'plan_length': 213, 'search_time': 0.93, 'total_time': 0.93}, {'num_node_expansions': 753, 'plan_length': 173, 'search_time': 0.71, 'total_time': 0.71}, {'num_node_expansions': 814, 'plan_length': 210, 'search_time': 0.66, 'total_time': 0.66}, {'num_node_expansions': 569, 'plan_length': 134, 'search_time': 4.8, 'total_time': 4.8}, {'num_node_expansions': 899, 'plan_length': 176, 'search_time': 6.19, 'total_time': 6.19}, {'num_node_expansions': 531, 'plan_length': 144, 'search_time': 3.85, 'total_time': 3.85}, {'num_node_expansions': 631, 'plan_length': 164, 'search_time': 4.22, 'total_time': 4.22}, {'num_node_expansions': 479, 'plan_length': 138, 'search_time': 0.11, 'total_time': 0.11}, {'num_node_expansions': 941, 'plan_length': 148, 'search_time': 0.21, 'total_time': 0.21}, {'num_node_expansions': 1023, 'plan_length': 197, 'search_time': 9.89, 'total_time': 9.89}, {'num_node_expansions': 1152, 'plan_length': 196, 'search_time': 12.89, 'total_time': 12.89}, {'num_node_expansions': 629, 'plan_length': 147, 'search_time': 3.24, 'total_time': 3.24}, {'num_node_expansions': 697, 'plan_length': 160, 'search_time': 2.33, 'total_time': 2.33}, {'num_node_expansions': 646, 'plan_length': 158, 'search_time': 3.94, 'total_time': 3.94}, {'num_node_expansions': 741, 'plan_length': 152, 'search_time': 4.03, 'total_time': 4.03}, {'num_node_expansions': 486, 'plan_length': 136, 'search_time': 1.99, 'total_time': 1.99}, {'num_node_expansions': 602, 'plan_length': 146, 'search_time': 3.41, 'total_time': 3.41}, {'num_node_expansions': 774, 'plan_length': 186, 'search_time': 1.47, 'total_time': 1.47}, {'num_node_expansions': 1512, 'plan_length': 209, 'search_time': 3.74, 'total_time': 3.74}, {'num_node_expansions': 791, 'plan_length': 180, 'search_time': 14.14, 'total_time': 14.14}, {'num_node_expansions': 1019, 'plan_length': 211, 'search_time': 21.35, 'total_time': 21.35}, {'num_node_expansions': 450, 'plan_length': 133, 'search_time': 1.76, 'total_time': 1.76}, {'num_node_expansions': 526, 'plan_length': 135, 'search_time': 1.98, 'total_time': 1.98}, {'num_node_expansions': 1329, 'plan_length': 182, 'search_time': 6.8, 'total_time': 6.8}, {'num_node_expansions': 655, 'plan_length': 134, 'search_time': 3.31, 'total_time': 3.31}, {'num_node_expansions': 636, 'plan_length': 159, 'search_time': 5.99, 'total_time': 5.99}, {'num_node_expansions': 1403, 'plan_length': 196, 'search_time': 13.75, 'total_time': 13.75}, {'num_node_expansions': 664, 'plan_length': 175, 'search_time': 3.62, 'total_time': 3.62}, {'num_node_expansions': 760, 'plan_length': 150, 'search_time': 5.2, 'total_time': 5.2}, {'num_node_expansions': 593, 'plan_length': 163, 'search_time': 8.61, 'total_time': 8.61}, {'num_node_expansions': 1043, 'plan_length': 179, 'search_time': 16.05, 'total_time': 16.05}, {'num_node_expansions': 390, 'plan_length': 103, 'search_time': 0.33, 'total_time': 0.33}, {'num_node_expansions': 419, 'plan_length': 120, 'search_time': 0.35, 'total_time': 0.35}, {'num_node_expansions': 606, 'plan_length': 160, 'search_time': 15.03, 'total_time': 15.03}, {'num_node_expansions': 525, 'plan_length': 146, 'search_time': 0.2, 'total_time': 0.2}, {'num_node_expansions': 522, 'plan_length': 147, 'search_time': 0.22, 'total_time': 0.22}, {'num_node_expansions': 652, 'plan_length': 165, 'search_time': 10.35, 'total_time': 10.35}, {'num_node_expansions': 1188, 'plan_length': 178, 'search_time': 13.19, 'total_time': 13.19}, {'num_node_expansions': 450, 'plan_length': 136, 'search_time': 1.56, 'total_time': 1.56}, {'num_node_expansions': 1179, 'plan_length': 209, 'search_time': 3.46, 'total_time': 3.46}, {'num_node_expansions': 834, 'plan_length': 204, 'search_time': 20.33, 'total_time': 20.33}, {'num_node_expansions': 1133, 'plan_length': 187, 'search_time': 12.76, 'total_time': 12.76}, {'num_node_expansions': 777, 'plan_length': 181, 'search_time': 8.97, 'total_time': 8.97}, {'num_node_expansions': 591, 'plan_length': 136, 'search_time': 1.58, 'total_time': 1.58}, {'num_node_expansions': 580, 'plan_length': 143, 'search_time': 1.56, 'total_time': 1.56}, {'num_node_expansions': 977, 'plan_length': 173, 'search_time': 5.94, 'total_time': 5.94}, {'num_node_expansions': 694, 'plan_length': 167, 'search_time': 5.26, 'total_time': 5.26}, {'num_node_expansions': 861, 'plan_length': 188, 'search_time': 1.15, 'total_time': 1.15}, {'num_node_expansions': 790, 'plan_length': 160, 'search_time': 0.81, 'total_time': 0.81}, {'num_node_expansions': 841, 'plan_length': 188, 'search_time': 4.87, 'total_time': 4.87}, {'num_node_expansions': 436, 'plan_length': 128, 'search_time': 1.77, 'total_time': 1.77}, {'num_node_expansions': 550, 'plan_length': 127, 'search_time': 0.03, 'total_time': 0.03}, {'num_node_expansions': 434, 'plan_length': 134, 'search_time': 0.03, 'total_time': 0.03}, {'num_node_expansions': 990, 'plan_length': 191, 'search_time': 26.16, 'total_time': 26.16}, {'num_node_expansions': 987, 'plan_length': 248, 'search_time': 27.03, 'total_time': 27.03}, {'num_node_expansions': 958, 'plan_length': 195, 'search_time': 6.81, 'total_time': 6.81}, {'num_node_expansions': 658, 'plan_length': 174, 'search_time': 4.83, 'total_time': 4.83}, {'num_node_expansions': 370, 'plan_length': 126, 'search_time': 0.06, 'total_time': 0.06}, {'num_node_expansions': 440, 'plan_length': 119, 'search_time': 0.06, 'total_time': 0.06}, {'num_node_expansions': 648, 'plan_length': 168, 'search_time': 7.05, 'total_time': 7.05}, {'num_node_expansions': 832, 'plan_length': 178, 'search_time': 9.96, 'total_time': 9.96}, {'num_node_expansions': 355, 'plan_length': 116, 'search_time': 0.6, 'total_time': 0.6}, {'num_node_expansions': 495, 'plan_length': 123, 'search_time': 0.73, 'total_time': 0.73}, {'num_node_expansions': 612, 'plan_length': 148, 'search_time': 2.91, 'total_time': 2.91}, {'num_node_expansions': 1067, 'plan_length': 174, 'search_time': 4.37, 'total_time': 4.37}, {'num_node_expansions': 821, 'plan_length': 185, 'search_time': 2.51, 'total_time': 2.51}, {'num_node_expansions': 625, 'plan_length': 153, 'search_time': 2.22, 'total_time': 2.22}, {'num_node_expansions': 304, 'plan_length': 99, 'search_time': 0.15, 'total_time': 0.15}, {'num_node_expansions': 477, 'plan_length': 133, 'search_time': 0.41, 'total_time': 0.41}, {'num_node_expansions': 651, 'plan_length': 160, 'search_time': 0.19, 'total_time': 0.19}, {'num_node_expansions': 594, 'plan_length': 147, 'search_time': 0.17, 'total_time': 0.17}, {'num_node_expansions': 524, 'plan_length': 134, 'search_time': 5.8, 'total_time': 5.8}, {'num_node_expansions': 400, 'plan_length': 127, 'search_time': 5.23, 'total_time': 5.23}, {'num_node_expansions': 825, 'plan_length': 185, 'search_time': 5.71, 'total_time': 5.71}, {'num_node_expansions': 613, 'plan_length': 156, 'search_time': 4.13, 'total_time': 4.13}, {'num_node_expansions': 427, 'plan_length': 121, 'search_time': 0.08, 'total_time': 0.08}, {'num_node_expansions': 362, 'plan_length': 116, 'search_time': 0.07, 'total_time': 0.07}, {'num_node_expansions': 459, 'plan_length': 119, 'search_time': 0.6, 'total_time': 0.6}, {'num_node_expansions': 501, 'plan_length': 132, 'search_time': 0.72, 'total_time': 0.72}, {'num_node_expansions': 697, 'plan_length': 156, 'search_time': 2.94, 'total_time': 2.94}, {'num_node_expansions': 1024, 'plan_length': 162, 'search_time': 6.43, 'total_time': 6.43}, {'num_node_expansions': 501, 'plan_length': 122, 'search_time': 4.23, 'total_time': 4.23}, {'num_node_expansions': 577, 'plan_length': 126, 'search_time': 4.8, 'total_time': 4.8}, {'num_node_expansions': 633, 'plan_length': 152, 'search_time': 15.85, 'total_time': 15.85}, {'num_node_expansions': 833, 'plan_length': 186, 'search_time': 20.61, 'total_time': 20.61}, {'num_node_expansions': 996, 'plan_length': 183, 'search_time': 3.53, 'total_time': 3.53}, {'num_node_expansions': 1246, 'plan_length': 206, 'search_time': 4.34, 'total_time': 4.34}, {'num_node_expansions': 466, 'plan_length': 137, 'search_time': 1.19, 'total_time': 1.19}, {'num_node_expansions': 530, 'plan_length': 142, 'search_time': 1.5, 'total_time': 1.5}, {'num_node_expansions': 923, 'plan_length': 189, 'search_time': 13.9, 'total_time': 13.9}, {'num_node_expansions': 799, 'plan_length': 167, 'search_time': 11.96, 'total_time': 11.96}, {'num_node_expansions': 651, 'plan_length': 173, 'search_time': 0.82, 'total_time': 0.82}, {'num_node_expansions': 590, 'plan_length': 159, 'search_time': 0.56, 'total_time': 0.56}, {'num_node_expansions': 542, 'plan_length': 155, 'search_time': 0.06, 'total_time': 0.06}, {'num_node_expansions': 418, 'plan_length': 130, 'search_time': 0.05, 'total_time': 0.05}, {'num_node_expansions': 881, 'plan_length': 182, 'search_time': 7.23, 'total_time': 7.23}, {'num_node_expansions': 1256, 'plan_length': 205, 'search_time': 11.35, 'total_time': 11.35}, {'num_node_expansions': 612, 'plan_length': 146, 'search_time': 1.83, 'total_time': 1.83}, {'num_node_expansions': 567, 'plan_length': 145, 'search_time': 2.49, 'total_time': 2.49}, {'num_node_expansions': 655, 'plan_length': 152, 'search_time': 6.73, 'total_time': 6.73}, {'num_node_expansions': 499, 'plan_length': 133, 'search_time': 4.83, 'total_time': 4.83}, {'num_node_expansions': 500, 'plan_length': 137, 'search_time': 0.24, 'total_time': 0.24}, {'num_node_expansions': 869, 'plan_length': 156, 'search_time': 0.35, 'total_time': 0.35}, {'num_node_expansions': 522, 'plan_length': 161, 'search_time': 0.05, 'total_time': 0.05}, {'num_node_expansions': 712, 'plan_length': 181, 'search_time': 0.07, 'total_time': 0.07}, {'num_node_expansions': 708, 'plan_length': 142, 'search_time': 3.52, 'total_time': 3.52}, {'num_node_expansions': 642, 'plan_length': 163, 'search_time': 3.84, 'total_time': 3.84}, {'num_node_expansions': 426, 'plan_length': 134, 'search_time': 0.11, 'total_time': 0.11}, {'num_node_expansions': 471, 'plan_length': 129, 'search_time': 0.12, 'total_time': 0.12}, {'num_node_expansions': 520, 'plan_length': 135, 'search_time': 1.06, 'total_time': 1.06}, {'num_node_expansions': 666, 'plan_length': 144, 'search_time': 1.74, 'total_time': 1.74}, {'num_node_expansions': 563, 'plan_length': 159, 'search_time': 1.27, 'total_time': 1.27}, {'num_node_expansions': 566, 'plan_length': 162, 'search_time': 1.71, 'total_time': 1.71}, {'num_node_expansions': 1356, 'plan_length': 212, 'search_time': 24.23, 'total_time': 24.23}, {'num_node_expansions': 836, 'plan_length': 203, 'search_time': 15.08, 'total_time': 15.08}, {'num_node_expansions': 604, 'plan_length': 145, 'search_time': 0.9, 'total_time': 0.9}, {'num_node_expansions': 506, 'plan_length': 124, 'search_time': 0.75, 'total_time': 0.75}, {'num_node_expansions': 851, 'plan_length': 203, 'search_time': 0.89, 'total_time': 0.89}, {'num_node_expansions': 603, 'plan_length': 166, 'search_time': 0.67, 'total_time': 0.67}, {'num_node_expansions': 497, 'plan_length': 118, 'search_time': 0.25, 'total_time': 0.25}, {'num_node_expansions': 590, 'plan_length': 117, 'search_time': 0.23, 'total_time': 0.23}, {'num_node_expansions': 409, 'plan_length': 129, 'search_time': 0.07, 'total_time': 0.07}, {'num_node_expansions': 669, 'plan_length': 165, 'search_time': 0.11, 'total_time': 0.11}, {'num_node_expansions': 786, 'plan_length': 161, 'search_time': 15.63, 'total_time': 15.63}, {'num_node_expansions': 474, 'plan_length': 144, 'search_time': 11.44, 'total_time': 11.44}, {'num_node_expansions': 579, 'plan_length': 165, 'search_time': 0.76, 'total_time': 0.76}, {'num_node_expansions': 620, 'plan_length': 160, 'search_time': 0.71, 'total_time': 0.71}, {'num_node_expansions': 1523, 'plan_length': 221, 'search_time': 26.01, 'total_time': 26.01}, {'num_node_expansions': 961, 'plan_length': 207, 'search_time': 15.01, 'total_time': 15.01}, {'num_node_expansions': 444, 'plan_length': 127, 'search_time': 3.52, 'total_time': 3.52}, {'num_node_expansions': 464, 'plan_length': 127, 'search_time': 4.44, 'total_time': 4.44}, {'num_node_expansions': 773, 'plan_length': 194, 'search_time': 0.8, 'total_time': 0.8}, {'num_node_expansions': 676, 'plan_length': 161, 'search_time': 0.86, 'total_time': 0.86}, {'num_node_expansions': 414, 'plan_length': 127, 'search_time': 0.43, 'total_time': 0.43}, {'num_node_expansions': 623, 'plan_length': 165, 'search_time': 0.47, 'total_time': 0.47}, {'num_node_expansions': 703, 'plan_length': 163, 'search_time': 0.89, 'total_time': 0.89}, {'num_node_expansions': 785, 'plan_length': 176, 'search_time': 0.99, 'total_time': 0.99}, {'num_node_expansions': 986, 'plan_length': 167, 'search_time': 13.69, 'total_time': 13.69}, {'num_node_expansions': 955, 'plan_length': 205, 'search_time': 12.42, 'total_time': 12.42}, {'num_node_expansions': 417, 'plan_length': 118, 'search_time': 0.05, 'total_time': 0.05}, {'num_node_expansions': 521, 'plan_length': 141, 'search_time': 0.07, 'total_time': 0.07}, {'num_node_expansions': 815, 'plan_length': 182, 'search_time': 23.26, 'total_time': 23.26}]
num_timeouts = 13
num_timeouts = 0
num_problems = 172 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.