content stringlengths 7 1.05M | fixed_cases stringlengths 1 1.28M |
|---|---|
# https://www.interviewbit.com/problems/mathbug01/
# MATH_BUG01
class Solution:
# @param A : integer
# @return an integer
def isPrime(self,A):
upperLimit = int(A**0.5)
for i in range(2, upperLimit + 1):
if i < A and A % i == 0:
return 0
return 1
| class Solution:
def is_prime(self, A):
upper_limit = int(A ** 0.5)
for i in range(2, upperLimit + 1):
if i < A and A % i == 0:
return 0
return 1 |
n=7
mid=(n+1)/2
for i in range(1,n+1):
for j in range(1,n+1):
condition= i + j>=mid + 1 and i + j<=mid + n and i-j<=mid-1 and j-i<=mid-1 and j<=mid
if condition:
print("0",end="")
else:
print(" ",end="")
print() | n = 7
mid = (n + 1) / 2
for i in range(1, n + 1):
for j in range(1, n + 1):
condition = i + j >= mid + 1 and i + j <= mid + n and (i - j <= mid - 1) and (j - i <= mid - 1) and (j <= mid)
if condition:
print('0', end='')
else:
print(' ', end='')
print() |
_base_ = [
'../../_base_/models/vgg19bn.py',
'./dataset.py',
'./schedule.py',
'./default_runtime.py',
]
model = dict(
backbone=dict(
num_classes=20,
)
)
| _base_ = ['../../_base_/models/vgg19bn.py', './dataset.py', './schedule.py', './default_runtime.py']
model = dict(backbone=dict(num_classes=20)) |
def load(h):
return ({'abbr': 0, 'code': 0, 'title': 'Wave spectra (1)', 'units': '-'},
{'abbr': 1, 'code': 1, 'title': 'Wave spectra (2)', 'units': '-'},
{'abbr': 2, 'code': 2, 'title': 'Wave spectra (3)', 'units': '-'},
{'abbr': 3,
'code': 3,
'title': 'Significant height of combined wind waves and swell',
'units': 'm'},
{'abbr': 4,
'code': 4,
'title': 'Direction of wind waves',
'units': 'degree true'},
{'abbr': 5,
'code': 5,
'title': 'Significant height of wind waves',
'units': 'm'},
{'abbr': 6, 'code': 6, 'title': 'Mean period of wind waves', 'units': 's'},
{'abbr': 7,
'code': 7,
'title': 'Direction of swell waves',
'units': 'degree true'},
{'abbr': 8,
'code': 8,
'title': 'Significant height of swell waves',
'units': 'm'},
{'abbr': 9, 'code': 9, 'title': 'Mean period of swell waves', 'units': 's'},
{'abbr': 10,
'code': 10,
'title': 'Primary wave direction',
'units': 'degree true'},
{'abbr': 11, 'code': 11, 'title': 'Primary wave mean period', 'units': 's'},
{'abbr': 12,
'code': 12,
'title': 'Secondary wave direction',
'units': 'degree true'},
{'abbr': 13, 'code': 13, 'title': 'Secondary wave mean period', 'units': 's'},
{'abbr': 14,
'code': 14,
'title': 'Direction of combined wind waves and swell',
'units': 'degree true'},
{'abbr': 15,
'code': 15,
'title': 'Mean period of combined wind waves and swell',
'units': 's'},
{'abbr': 16,
'code': 16,
'title': 'Coefficient of drag with waves',
'units': '-'},
{'abbr': 17, 'code': 17, 'title': 'Friction velocity', 'units': 'm/s'},
{'abbr': 18, 'code': 18, 'title': 'Wave stress', 'units': 'N m-2'},
{'abbr': 19, 'code': 19, 'title': 'Normalized wave stress', 'units': '-'},
{'abbr': 20, 'code': 20, 'title': 'Mean square slope of waves', 'units': '-'},
{'abbr': 21,
'code': 21,
'title': 'u-component surface Stokes drift',
'units': 'm/s'},
{'abbr': 22,
'code': 22,
'title': 'v-component surface Stokes drift',
'units': 'm/s'},
{'abbr': 23,
'code': 23,
'title': 'Period of maximum individual wave height',
'units': 's'},
{'abbr': 24,
'code': 24,
'title': 'Maximum individual wave height',
'units': 'm'},
{'abbr': 25, 'code': 25, 'title': 'Inverse mean wave frequency', 'units': 's'},
{'abbr': 26,
'code': 26,
'title': 'Inverse mean frequency of wind waves',
'units': 's'},
{'abbr': 27,
'code': 27,
'title': 'Inverse mean frequency of total swell',
'units': 's'},
{'abbr': 28,
'code': 28,
'title': 'Mean zero-crossing wave period',
'units': 's'},
{'abbr': 29,
'code': 29,
'title': 'Mean zero-crossing period of wind waves',
'units': 's'},
{'abbr': 30,
'code': 30,
'title': 'Mean zero-crossing period of total swell',
'units': 's'},
{'abbr': 31, 'code': 31, 'title': 'Wave directional width', 'units': '-'},
{'abbr': 32,
'code': 32,
'title': 'Directional width of wind waves',
'units': '-'},
{'abbr': 33,
'code': 33,
'title': 'Directional width of total swell',
'units': '-'},
{'abbr': 34, 'code': 34, 'title': 'Peak wave period', 'units': 's'},
{'abbr': 35, 'code': 35, 'title': 'Peak period of wind waves', 'units': 's'},
{'abbr': 36, 'code': 36, 'title': 'Peak period of total swell', 'units': 's'},
{'abbr': 37, 'code': 37, 'title': 'Altimeter wave height', 'units': 'm'},
{'abbr': 38,
'code': 38,
'title': 'Altimeter corrected wave height',
'units': 'm'},
{'abbr': 39,
'code': 39,
'title': 'Altimeter range relative correction',
'units': '-'},
{'abbr': 40,
'code': 40,
'title': '10-metre neutral wind speed over waves',
'units': 'm/s'},
{'abbr': 41,
'code': 41,
'title': '10-metre wind direction over waves',
'units': 'deg'},
{'abbr': 42,
'code': 42,
'title': 'Wave energy spectrum',
'units': 'm2 s rad-1'},
{'abbr': 43,
'code': 43,
'title': 'Kurtosis of the sea-surface elevation due to waves',
'units': '-'},
{'abbr': 44, 'code': 44, 'title': 'Benjamin-Feir index', 'units': '-'},
{'abbr': 45, 'code': 45, 'title': 'Spectral peakedness factor', 'units': '/s'},
{'abbr': 46, 'code': 46, 'title': 'Peak wave direction', 'units': 'deg'},
{'abbr': 47,
'code': 47,
'title': 'Significant wave height of first swell partition',
'units': 'm'},
{'abbr': 48,
'code': 48,
'title': 'Significant wave height of second swell partition',
'units': 'm'},
{'abbr': 49,
'code': 49,
'title': 'Significant wave height of third swell partition',
'units': 'm'},
{'abbr': 50,
'code': 50,
'title': 'Mean wave period of first swell partition',
'units': 's'},
{'abbr': 51,
'code': 51,
'title': 'Mean wave period of second swell partition',
'units': 's'},
{'abbr': 52,
'code': 52,
'title': 'Mean wave period of third swell partition',
'units': 's'},
{'abbr': 53,
'code': 53,
'title': 'Mean wave direction of first swell partition',
'units': 'deg'},
{'abbr': 54,
'code': 54,
'title': 'Mean wave direction of second swell partition',
'units': 'deg'},
{'abbr': 55,
'code': 55,
'title': 'Mean wave direction of third swell partition',
'units': 'deg'},
{'abbr': 56,
'code': 56,
'title': 'Wave directional width of first swell partition',
'units': '-'},
{'abbr': 57,
'code': 57,
'title': 'Wave directional width of second swell partition',
'units': '-'},
{'abbr': 58,
'code': 58,
'title': 'Wave directional width of third swell partition',
'units': '-'},
{'abbr': 59,
'code': 59,
'title': 'Wave frequency width of first swell partition',
'units': '-'},
{'abbr': 60,
'code': 60,
'title': 'Wave frequency width of second swell partition',
'units': '-'},
{'abbr': 61,
'code': 61,
'title': 'Wave frequency width of third swell partition',
'units': '-'},
{'abbr': 62, 'code': 62, 'title': 'Wave frequency width', 'units': '-'},
{'abbr': 63,
'code': 63,
'title': 'Frequency width of wind waves',
'units': '-'},
{'abbr': 64,
'code': 64,
'title': 'Frequency width of total swell',
'units': '-'},
{'abbr': None, 'code': 255, 'title': 'Missing'})
| def load(h):
return ({'abbr': 0, 'code': 0, 'title': 'Wave spectra (1)', 'units': '-'}, {'abbr': 1, 'code': 1, 'title': 'Wave spectra (2)', 'units': '-'}, {'abbr': 2, 'code': 2, 'title': 'Wave spectra (3)', 'units': '-'}, {'abbr': 3, 'code': 3, 'title': 'Significant height of combined wind waves and swell', 'units': 'm'}, {'abbr': 4, 'code': 4, 'title': 'Direction of wind waves', 'units': 'degree true'}, {'abbr': 5, 'code': 5, 'title': 'Significant height of wind waves', 'units': 'm'}, {'abbr': 6, 'code': 6, 'title': 'Mean period of wind waves', 'units': 's'}, {'abbr': 7, 'code': 7, 'title': 'Direction of swell waves', 'units': 'degree true'}, {'abbr': 8, 'code': 8, 'title': 'Significant height of swell waves', 'units': 'm'}, {'abbr': 9, 'code': 9, 'title': 'Mean period of swell waves', 'units': 's'}, {'abbr': 10, 'code': 10, 'title': 'Primary wave direction', 'units': 'degree true'}, {'abbr': 11, 'code': 11, 'title': 'Primary wave mean period', 'units': 's'}, {'abbr': 12, 'code': 12, 'title': 'Secondary wave direction', 'units': 'degree true'}, {'abbr': 13, 'code': 13, 'title': 'Secondary wave mean period', 'units': 's'}, {'abbr': 14, 'code': 14, 'title': 'Direction of combined wind waves and swell', 'units': 'degree true'}, {'abbr': 15, 'code': 15, 'title': 'Mean period of combined wind waves and swell', 'units': 's'}, {'abbr': 16, 'code': 16, 'title': 'Coefficient of drag with waves', 'units': '-'}, {'abbr': 17, 'code': 17, 'title': 'Friction velocity', 'units': 'm/s'}, {'abbr': 18, 'code': 18, 'title': 'Wave stress', 'units': 'N m-2'}, {'abbr': 19, 'code': 19, 'title': 'Normalized wave stress', 'units': '-'}, {'abbr': 20, 'code': 20, 'title': 'Mean square slope of waves', 'units': '-'}, {'abbr': 21, 'code': 21, 'title': 'u-component surface Stokes drift', 'units': 'm/s'}, {'abbr': 22, 'code': 22, 'title': 'v-component surface Stokes drift', 'units': 'm/s'}, {'abbr': 23, 'code': 23, 'title': 'Period of maximum individual wave height', 'units': 's'}, {'abbr': 24, 'code': 24, 'title': 'Maximum individual wave height', 'units': 'm'}, {'abbr': 25, 'code': 25, 'title': 'Inverse mean wave frequency', 'units': 's'}, {'abbr': 26, 'code': 26, 'title': 'Inverse mean frequency of wind waves', 'units': 's'}, {'abbr': 27, 'code': 27, 'title': 'Inverse mean frequency of total swell', 'units': 's'}, {'abbr': 28, 'code': 28, 'title': 'Mean zero-crossing wave period', 'units': 's'}, {'abbr': 29, 'code': 29, 'title': 'Mean zero-crossing period of wind waves', 'units': 's'}, {'abbr': 30, 'code': 30, 'title': 'Mean zero-crossing period of total swell', 'units': 's'}, {'abbr': 31, 'code': 31, 'title': 'Wave directional width', 'units': '-'}, {'abbr': 32, 'code': 32, 'title': 'Directional width of wind waves', 'units': '-'}, {'abbr': 33, 'code': 33, 'title': 'Directional width of total swell', 'units': '-'}, {'abbr': 34, 'code': 34, 'title': 'Peak wave period', 'units': 's'}, {'abbr': 35, 'code': 35, 'title': 'Peak period of wind waves', 'units': 's'}, {'abbr': 36, 'code': 36, 'title': 'Peak period of total swell', 'units': 's'}, {'abbr': 37, 'code': 37, 'title': 'Altimeter wave height', 'units': 'm'}, {'abbr': 38, 'code': 38, 'title': 'Altimeter corrected wave height', 'units': 'm'}, {'abbr': 39, 'code': 39, 'title': 'Altimeter range relative correction', 'units': '-'}, {'abbr': 40, 'code': 40, 'title': '10-metre neutral wind speed over waves', 'units': 'm/s'}, {'abbr': 41, 'code': 41, 'title': '10-metre wind direction over waves', 'units': 'deg'}, {'abbr': 42, 'code': 42, 'title': 'Wave energy spectrum', 'units': 'm2 s rad-1'}, {'abbr': 43, 'code': 43, 'title': 'Kurtosis of the sea-surface elevation due to waves', 'units': '-'}, {'abbr': 44, 'code': 44, 'title': 'Benjamin-Feir index', 'units': '-'}, {'abbr': 45, 'code': 45, 'title': 'Spectral peakedness factor', 'units': '/s'}, {'abbr': 46, 'code': 46, 'title': 'Peak wave direction', 'units': 'deg'}, {'abbr': 47, 'code': 47, 'title': 'Significant wave height of first swell partition', 'units': 'm'}, {'abbr': 48, 'code': 48, 'title': 'Significant wave height of second swell partition', 'units': 'm'}, {'abbr': 49, 'code': 49, 'title': 'Significant wave height of third swell partition', 'units': 'm'}, {'abbr': 50, 'code': 50, 'title': 'Mean wave period of first swell partition', 'units': 's'}, {'abbr': 51, 'code': 51, 'title': 'Mean wave period of second swell partition', 'units': 's'}, {'abbr': 52, 'code': 52, 'title': 'Mean wave period of third swell partition', 'units': 's'}, {'abbr': 53, 'code': 53, 'title': 'Mean wave direction of first swell partition', 'units': 'deg'}, {'abbr': 54, 'code': 54, 'title': 'Mean wave direction of second swell partition', 'units': 'deg'}, {'abbr': 55, 'code': 55, 'title': 'Mean wave direction of third swell partition', 'units': 'deg'}, {'abbr': 56, 'code': 56, 'title': 'Wave directional width of first swell partition', 'units': '-'}, {'abbr': 57, 'code': 57, 'title': 'Wave directional width of second swell partition', 'units': '-'}, {'abbr': 58, 'code': 58, 'title': 'Wave directional width of third swell partition', 'units': '-'}, {'abbr': 59, 'code': 59, 'title': 'Wave frequency width of first swell partition', 'units': '-'}, {'abbr': 60, 'code': 60, 'title': 'Wave frequency width of second swell partition', 'units': '-'}, {'abbr': 61, 'code': 61, 'title': 'Wave frequency width of third swell partition', 'units': '-'}, {'abbr': 62, 'code': 62, 'title': 'Wave frequency width', 'units': '-'}, {'abbr': 63, 'code': 63, 'title': 'Frequency width of wind waves', 'units': '-'}, {'abbr': 64, 'code': 64, 'title': 'Frequency width of total swell', 'units': '-'}, {'abbr': None, 'code': 255, 'title': 'Missing'}) |
#SOLUTION FOR P32
'''P32 (**) Determine the greatest common divisor of two positive integer numbers.
Use Euclid's algorithm.
Example:
* (gcd 36 63)
9'''
num1 = int(input('enter first number = '))
num2 = int(input('enter second number = '))
#CREATE A FUNCTION TO CALCULATE GCD
def find_gcd(n1,n2):
while n2!=0: #BASE CASE IS - gcd(a,0) = a ; SO CHECK TILL N2 IS NOT ZERO
n1,n2= n2,n1%n2 #ACCORDING TO ALGORITH gcd(a,b)=gcd(b,r) where r=a%b
find_gcd(n1,n2) #CONTINUE TO CALCULATE GCD FOR NEW N1 AND N2
return n1 #WHEN BASE CASE SATISFIES, RETURN N1
res= find_gcd(num1,num2) #CALL THE FUNCTION AND PASS TWO NUMBERS
print(F'GCD of {num1} & {num2} = {res}') | """P32 (**) Determine the greatest common divisor of two positive integer numbers.
Use Euclid's algorithm.
Example:
* (gcd 36 63)
9"""
num1 = int(input('enter first number = '))
num2 = int(input('enter second number = '))
def find_gcd(n1, n2):
while n2 != 0:
(n1, n2) = (n2, n1 % n2)
find_gcd(n1, n2)
return n1
res = find_gcd(num1, num2)
print(f'GCD of {num1} & {num2} = {res}') |
class Type:
def __init__(self, name, members: list = None):
self.name = name
self.members = members or ['*']
| class Type:
def __init__(self, name, members: list=None):
self.name = name
self.members = members or ['*'] |
def calculation(command, b, c):
calculations = {
'multiply': b * c,
'divide': b / c,
'add': b + c,
'subtract': b - c,
}
return calculations[command]
operator = input()
parameter_one = int(input())
parameter_two = int(input())
print(calculation(operator, parameter_one, parameter_two))
| def calculation(command, b, c):
calculations = {'multiply': b * c, 'divide': b / c, 'add': b + c, 'subtract': b - c}
return calculations[command]
operator = input()
parameter_one = int(input())
parameter_two = int(input())
print(calculation(operator, parameter_one, parameter_two)) |
# -*- coding: utf-8 -*-
__version__ = '1.1.0'
default_app_config = 'aldryn_search.apps.AldrynSearchConfig'
| __version__ = '1.1.0'
default_app_config = 'aldryn_search.apps.AldrynSearchConfig' |
class Node:
pass
class Void(Node):
def __init__(self):
self.computedType = 'Void'
class ProgramNode(Node):
def __init__(self, classList):
self.classList = classList
class ExpressionNode(Node):
pass
class Arithmetic(ExpressionNode):
def __init__(self, left, right):
self.left = left
self.right = right
class Assignment(ExpressionNode): #llrga la variable en id
def __init__(self, asid, expr):
self.id = asid
self.expr = expr
class Conditional(ExpressionNode):
def __init__(self, ifexpr, thenexpr,elseexpr):
self.ifexpr = ifexpr
self.thenexpr = thenexpr
self.elseexpr = elseexpr
class Loop(ExpressionNode):
def __init__(self, whileexpr, loopexpr):
self.whileexpr = whileexpr
self.loopexpr = loopexpr
class Block(ExpressionNode):
def __init__(self, exprlist):
self.exprlist = exprlist
class Compare(ExpressionNode):
def __init__(self, left, right):
self.left = left
self.right = right
class Equal(Compare):
# def __init__(self, left, right):
# self.left = left
# self.right = right
pass
class CompareNotEqual(Compare):
pass
class LessThan(CompareNotEqual):
pass
class LessEqualThan(CompareNotEqual):
pass
class PlusNode(Arithmetic):
# def __init__(self, left, right):
# Arithmetic.__init__(self, left, right)
pass
class MinusNode(Arithmetic):
pass
class StarNode(Arithmetic):
pass
class DivNode(Arithmetic):
pass
class IsVoid(ExpressionNode):
def __init__(self, expr):
self.expr = expr
class New(ExpressionNode):
def __init__(self, newType):
self.newType = newType
class Not(ExpressionNode):
def __init__(self,expr):
self.expr = expr
class Neg(ExpressionNode):
def __init__(self, expr):
self.expr = expr
class Let(ExpressionNode):
def __init__(self, letAttrList,body):
self.letAttrList = letAttrList
self.body = body
# class LetAttr_Init(ExpressionNode):
# def __init__(self, name_AttrType, expr):
# self.name = name_AttrType[0]
# self.attrType = name_AttrType[1]
# self.expr = expr
# class LetAttr_Declaration(ExpressionNode):
# def __init__(self, name_attrType):
# self.name = name_attrType[0]
# self.attrType = name_attrType[1]
class Declaration(ExpressionNode):
def __init__(self, attrName, attrType, expr):
self.attrName = attrName
self.attrType = attrType
self.expr = expr
class DeclarationWithInitialization(Declaration):
def __init__(self, decl_only, expr):
super(DeclarationWithInitialization,self).__init__(decl_only.attrName,decl_only.attrType,expr)
# self.expr = expr
class DeclarationOnly(Declaration):
def __init__(self, name_attrType):
thetype = name_attrType[1]
default = Void()
if thetype == "Bool":
default = Ctes(False,"Bool")
elif thetype == "Int":
default = Ctes(0,"Int")
elif thetype == "String":
default = Ctes("","String")
super(DeclarationOnly,self).__init__(name_attrType[0],name_attrType[1],default)
class Case(ExpressionNode):
def __init__(self, case0,exprList):
self.case0 = case0
self.exprList = exprList
class CaseExpr(ExpressionNode):
def __init__(self, decl,expr):
self.decl = decl # tupla name,type
self.expr = expr
class CoolClass(ExpressionNode):
def __init__(self, name,parent,attrs,methods):
self.name = name
# self.expr = expr
self.attrs = attrs
self.methods = methods
self.parent = parent
class ClassDecl(CoolClass):
def __init__(self, name,attrs,methods):
super(ClassDecl,self).__init__(name,"Object",attrs,methods)
# self.name = name
# # self.expr = expr
# self.attrs = attrs
# self.methods = methods
class ClassInh(CoolClass):
pass
# def __init__(self, name,parent,methods,attrs):
# self.name = name
# # self.expr = expr
# self.attrs = attrs
# self.methods = methods
# self.parent = parent
class Method(ExpressionNode):
def __init__(self, name, paramsList, returnType, exprbody):
self.name = name
self.returnType = returnType
self.paramsList = paramsList
self.exprbody = exprbody
class DispatchSelf(ExpressionNode):
def __init__(self, methodName, paramsList):
self.methodName = methodName
self.paramsList = paramsList
class DispatchDot(ExpressionNode):
def __init__(self, expr0, methodName, paramsList):
self.expr0 = expr0
self.methodName = methodName
self.paramsList = paramsList
class StaticDispatch(ExpressionNode):
def __init__(self, dispObject, className,methodName,paramsList):
self.dispObject = dispObject
self.className = className
self.methodName = methodName
self.paramsList = paramsList
class Attribute(ExpressionNode):
def __init__(self, name_attrType,expr):
self.attrName = name_attrType.attrName
self.attrType = name_attrType.attrType
self.expr = expr
class Attr_Init(Attribute):
def __init__(self, name_attrType, expr):
super(Attr_Init,self).__init__(name_attrType,expr)
class Attr_Declaration(Attribute):
def __init__(self, name_attrType):
super(Attr_Declaration,self).__init__(name_attrType,name_attrType.expr)
class Ctes(ExpressionNode):
def __init__(self, value,ctetype):
self.value = value
self.type = ctetype
class Variable(ExpressionNode):
def __init__(self, name):
self.name = name
| class Node:
pass
class Void(Node):
def __init__(self):
self.computedType = 'Void'
class Programnode(Node):
def __init__(self, classList):
self.classList = classList
class Expressionnode(Node):
pass
class Arithmetic(ExpressionNode):
def __init__(self, left, right):
self.left = left
self.right = right
class Assignment(ExpressionNode):
def __init__(self, asid, expr):
self.id = asid
self.expr = expr
class Conditional(ExpressionNode):
def __init__(self, ifexpr, thenexpr, elseexpr):
self.ifexpr = ifexpr
self.thenexpr = thenexpr
self.elseexpr = elseexpr
class Loop(ExpressionNode):
def __init__(self, whileexpr, loopexpr):
self.whileexpr = whileexpr
self.loopexpr = loopexpr
class Block(ExpressionNode):
def __init__(self, exprlist):
self.exprlist = exprlist
class Compare(ExpressionNode):
def __init__(self, left, right):
self.left = left
self.right = right
class Equal(Compare):
pass
class Comparenotequal(Compare):
pass
class Lessthan(CompareNotEqual):
pass
class Lessequalthan(CompareNotEqual):
pass
class Plusnode(Arithmetic):
pass
class Minusnode(Arithmetic):
pass
class Starnode(Arithmetic):
pass
class Divnode(Arithmetic):
pass
class Isvoid(ExpressionNode):
def __init__(self, expr):
self.expr = expr
class New(ExpressionNode):
def __init__(self, newType):
self.newType = newType
class Not(ExpressionNode):
def __init__(self, expr):
self.expr = expr
class Neg(ExpressionNode):
def __init__(self, expr):
self.expr = expr
class Let(ExpressionNode):
def __init__(self, letAttrList, body):
self.letAttrList = letAttrList
self.body = body
class Declaration(ExpressionNode):
def __init__(self, attrName, attrType, expr):
self.attrName = attrName
self.attrType = attrType
self.expr = expr
class Declarationwithinitialization(Declaration):
def __init__(self, decl_only, expr):
super(DeclarationWithInitialization, self).__init__(decl_only.attrName, decl_only.attrType, expr)
class Declarationonly(Declaration):
def __init__(self, name_attrType):
thetype = name_attrType[1]
default = void()
if thetype == 'Bool':
default = ctes(False, 'Bool')
elif thetype == 'Int':
default = ctes(0, 'Int')
elif thetype == 'String':
default = ctes('', 'String')
super(DeclarationOnly, self).__init__(name_attrType[0], name_attrType[1], default)
class Case(ExpressionNode):
def __init__(self, case0, exprList):
self.case0 = case0
self.exprList = exprList
class Caseexpr(ExpressionNode):
def __init__(self, decl, expr):
self.decl = decl
self.expr = expr
class Coolclass(ExpressionNode):
def __init__(self, name, parent, attrs, methods):
self.name = name
self.attrs = attrs
self.methods = methods
self.parent = parent
class Classdecl(CoolClass):
def __init__(self, name, attrs, methods):
super(ClassDecl, self).__init__(name, 'Object', attrs, methods)
class Classinh(CoolClass):
pass
class Method(ExpressionNode):
def __init__(self, name, paramsList, returnType, exprbody):
self.name = name
self.returnType = returnType
self.paramsList = paramsList
self.exprbody = exprbody
class Dispatchself(ExpressionNode):
def __init__(self, methodName, paramsList):
self.methodName = methodName
self.paramsList = paramsList
class Dispatchdot(ExpressionNode):
def __init__(self, expr0, methodName, paramsList):
self.expr0 = expr0
self.methodName = methodName
self.paramsList = paramsList
class Staticdispatch(ExpressionNode):
def __init__(self, dispObject, className, methodName, paramsList):
self.dispObject = dispObject
self.className = className
self.methodName = methodName
self.paramsList = paramsList
class Attribute(ExpressionNode):
def __init__(self, name_attrType, expr):
self.attrName = name_attrType.attrName
self.attrType = name_attrType.attrType
self.expr = expr
class Attr_Init(Attribute):
def __init__(self, name_attrType, expr):
super(Attr_Init, self).__init__(name_attrType, expr)
class Attr_Declaration(Attribute):
def __init__(self, name_attrType):
super(Attr_Declaration, self).__init__(name_attrType, name_attrType.expr)
class Ctes(ExpressionNode):
def __init__(self, value, ctetype):
self.value = value
self.type = ctetype
class Variable(ExpressionNode):
def __init__(self, name):
self.name = name |
reddit = dict(
client_id="",
client_secret="",
username="",
password="",
user_agent="Daltonism Helper Bot (created by /u/OffDutyHuman)")
imgur = dict(
client_id="",
client_secret="",
access_token="",
refresh_token="")
| reddit = dict(client_id='', client_secret='', username='', password='', user_agent='Daltonism Helper Bot (created by /u/OffDutyHuman)')
imgur = dict(client_id='', client_secret='', access_token='', refresh_token='') |
class TestConfig:
def test_config(self, config):
pass
| class Testconfig:
def test_config(self, config):
pass |
COLOR_PALETTES = {
"lisk": {
"bg0": "#FEF1E2",
"bg1": "#FEDBAB",
"bg2": "#FEC478",
"fg0": "#FE9923",
"fg1": "#FE8821",
"fg2": "#E5741A",
"text0": "#827F85",
"text1": "#57555C",
"text2": "#3C3A41",
"accent0": "#21D8FF",
"accent1": "#185B66",
"gray0": "#DCC09B",
"gray1": "#9E8E7D",
"warning": "#FF3D14",
"error": "#FF0000",
},
"solarized": {
"bg0": "#FDF6E3",
"bg1": "#EEE8D5",
"bg2": "#DBD3BB",
"fg0": "#C2BBA5",
"fg1": "#A8A28F",
"fg2": "#8F8979",
"text0": "#586E75",
"text1": "#073642",
"text2": "#002B36",
"accent0": "#268BD2",
"accent1": "#2AA198",
"gray0": "#93A1A1",
"gray1": "#657B83",
"warning": "#CB4B16",
"error": "#DC322F",
},
}
COLOR_PALETTES["default"] = COLOR_PALETTES.get("lisk")
| color_palettes = {'lisk': {'bg0': '#FEF1E2', 'bg1': '#FEDBAB', 'bg2': '#FEC478', 'fg0': '#FE9923', 'fg1': '#FE8821', 'fg2': '#E5741A', 'text0': '#827F85', 'text1': '#57555C', 'text2': '#3C3A41', 'accent0': '#21D8FF', 'accent1': '#185B66', 'gray0': '#DCC09B', 'gray1': '#9E8E7D', 'warning': '#FF3D14', 'error': '#FF0000'}, 'solarized': {'bg0': '#FDF6E3', 'bg1': '#EEE8D5', 'bg2': '#DBD3BB', 'fg0': '#C2BBA5', 'fg1': '#A8A28F', 'fg2': '#8F8979', 'text0': '#586E75', 'text1': '#073642', 'text2': '#002B36', 'accent0': '#268BD2', 'accent1': '#2AA198', 'gray0': '#93A1A1', 'gray1': '#657B83', 'warning': '#CB4B16', 'error': '#DC322F'}}
COLOR_PALETTES['default'] = COLOR_PALETTES.get('lisk') |
#
# PySNMP MIB module Nortel-MsCarrier-MscPassport-CasTestMIB (http://snmplabs.com/pysmi)
# ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/Nortel-MsCarrier-MscPassport-CasTestMIB
# Produced by pysmi-0.3.4 at Wed May 1 14:29:34 2019
# On host DAVWANG4-M-1475 platform Darwin version 18.5.0 by user davwang4
# Using Python version 3.7.3 (default, Mar 27 2019, 09:23:15)
#
ObjectIdentifier, Integer, OctetString = mibBuilder.importSymbols("ASN1", "ObjectIdentifier", "Integer", "OctetString")
NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues")
ConstraintsUnion, ConstraintsIntersection, ValueRangeConstraint, SingleValueConstraint, ValueSizeConstraint = mibBuilder.importSymbols("ASN1-REFINEMENT", "ConstraintsUnion", "ConstraintsIntersection", "ValueRangeConstraint", "SingleValueConstraint", "ValueSizeConstraint")
RowStatus, StorageType, Counter32, Gauge32, DisplayString, TimeInterval, Unsigned32, RowPointer, Integer32 = mibBuilder.importSymbols("Nortel-MsCarrier-MscPassport-StandardTextualConventionsMIB", "RowStatus", "StorageType", "Counter32", "Gauge32", "DisplayString", "TimeInterval", "Unsigned32", "RowPointer", "Integer32")
PassportCounter64, HexString, WildcardedDigitString, IntegerSequence, Unsigned64, AsciiStringIndex, DashedHexString, AsciiString, FixedPoint1, DigitString, FixedPoint3, FixedPoint4, NonReplicated, Hex, Gauge64, Link, EnterpriseDateAndTime, ExtendedAsciiString, FixedPoint2 = mibBuilder.importSymbols("Nortel-MsCarrier-MscPassport-TextualConventionsMIB", "PassportCounter64", "HexString", "WildcardedDigitString", "IntegerSequence", "Unsigned64", "AsciiStringIndex", "DashedHexString", "AsciiString", "FixedPoint1", "DigitString", "FixedPoint3", "FixedPoint4", "NonReplicated", "Hex", "Gauge64", "Link", "EnterpriseDateAndTime", "ExtendedAsciiString", "FixedPoint2")
mscComponents, mscPassportMIBs = mibBuilder.importSymbols("Nortel-MsCarrier-MscPassport-UsefulDefinitionsMIB", "mscComponents", "mscPassportMIBs")
NotificationGroup, ModuleCompliance = mibBuilder.importSymbols("SNMPv2-CONF", "NotificationGroup", "ModuleCompliance")
iso, ObjectIdentity, Counter32, Bits, TimeTicks, Gauge32, Unsigned32, MibScalar, MibTable, MibTableRow, MibTableColumn, NotificationType, Counter64, IpAddress, Integer32, ModuleIdentity, MibIdentifier = mibBuilder.importSymbols("SNMPv2-SMI", "iso", "ObjectIdentity", "Counter32", "Bits", "TimeTicks", "Gauge32", "Unsigned32", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "NotificationType", "Counter64", "IpAddress", "Integer32", "ModuleIdentity", "MibIdentifier")
TextualConvention, DisplayString = mibBuilder.importSymbols("SNMPv2-TC", "TextualConvention", "DisplayString")
casTestMIB = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 2, 103))
mscExample = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000))
mscExampleRowStatusTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1), )
if mibBuilder.loadTexts: mscExampleRowStatusTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleRowStatusTable.setDescription('This entry controls the addition and deletion of mscExample components.')
mscExampleRowStatusEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"))
if mibBuilder.loadTexts: mscExampleRowStatusEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleRowStatusEntry.setDescription('A single entry in the table represents a single mscExample component.')
mscExampleRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1, 1, 1), RowStatus()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleRowStatus.setDescription('This variable is used as the basis for SNMP naming of mscExample components. These components can be added and deleted.')
mscExampleComponentName = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1, 1, 2), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mscExampleComponentName.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleComponentName.setDescription("This variable provides the component's string name for use with the ASCII Console Interface")
mscExampleStorageType = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1, 1, 4), StorageType()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mscExampleStorageType.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleStorageType.setDescription('This variable represents the storage type value for the mscExample tables.')
mscExampleIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1, 1, 10), NonReplicated())
if mibBuilder.loadTexts: mscExampleIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleIndex.setDescription('This variable represents the index for the mscExample tables.')
mscExampleOperationalTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 100), )
if mibBuilder.loadTexts: mscExampleOperationalTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleOperationalTable.setDescription('')
mscExampleOperationalEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 100, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"))
if mibBuilder.loadTexts: mscExampleOperationalEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleOperationalEntry.setDescription('An entry in the mscExampleOperationalTable.')
mscExampleOperMyComponentName = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 100, 1, 1), RowPointer()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleOperMyComponentName.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleOperMyComponentName.setDescription('')
mscExampleProvisionalTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 101), )
if mibBuilder.loadTexts: mscExampleProvisionalTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleProvisionalTable.setDescription('')
mscExampleProvisionalEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 101, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"))
if mibBuilder.loadTexts: mscExampleProvisionalEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleProvisionalEntry.setDescription('An entry in the mscExampleProvisionalTable.')
mscExampleProvMyComponentName = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 101, 1, 1), RowPointer()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleProvMyComponentName.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleProvMyComponentName.setDescription('')
mscExampleOperDecimalSubCreatedTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1002), )
if mibBuilder.loadTexts: mscExampleOperDecimalSubCreatedTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleOperDecimalSubCreatedTable.setDescription('')
mscExampleOperDecimalSubCreatedEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1002, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleOperDecimalSubCreatedValue"))
if mibBuilder.loadTexts: mscExampleOperDecimalSubCreatedEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleOperDecimalSubCreatedEntry.setDescription('An entry in the mscExampleOperDecimalSubCreatedTable.')
mscExampleOperDecimalSubCreatedValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1002, 1, 1), RowPointer()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleOperDecimalSubCreatedValue.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleOperDecimalSubCreatedValue.setDescription('This variable represents both the value and the index for the mscExampleOperDecimalSubCreatedTable.')
mscExampleOperDecimalSubCreatedRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1002, 1, 2), RowStatus()).setMaxAccess("writeonly")
if mibBuilder.loadTexts: mscExampleOperDecimalSubCreatedRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleOperDecimalSubCreatedRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleOperDecimalSubCreatedTable.')
mscExampleOperFixedPtSubcomponentsCreatedTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1003), )
if mibBuilder.loadTexts: mscExampleOperFixedPtSubcomponentsCreatedTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleOperFixedPtSubcomponentsCreatedTable.setDescription('')
mscExampleOperFixedPtSubcomponentsCreatedEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1003, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleOperFixedPtSubcomponentsCreatedValue"))
if mibBuilder.loadTexts: mscExampleOperFixedPtSubcomponentsCreatedEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleOperFixedPtSubcomponentsCreatedEntry.setDescription('An entry in the mscExampleOperFixedPtSubcomponentsCreatedTable.')
mscExampleOperFixedPtSubcomponentsCreatedValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1003, 1, 1), RowPointer()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleOperFixedPtSubcomponentsCreatedValue.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleOperFixedPtSubcomponentsCreatedValue.setDescription('This variable represents both the value and the index for the mscExampleOperFixedPtSubcomponentsCreatedTable.')
mscExampleOperFixedPtSubcomponentsCreatedRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1003, 1, 2), RowStatus()).setMaxAccess("writeonly")
if mibBuilder.loadTexts: mscExampleOperFixedPtSubcomponentsCreatedRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleOperFixedPtSubcomponentsCreatedRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleOperFixedPtSubcomponentsCreatedTable.')
mscExampleOperStringSubCreatedTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1004), )
if mibBuilder.loadTexts: mscExampleOperStringSubCreatedTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleOperStringSubCreatedTable.setDescription('')
mscExampleOperStringSubCreatedEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1004, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleOperStringSubCreatedValue"))
if mibBuilder.loadTexts: mscExampleOperStringSubCreatedEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleOperStringSubCreatedEntry.setDescription('An entry in the mscExampleOperStringSubCreatedTable.')
mscExampleOperStringSubCreatedValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1004, 1, 1), RowPointer()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleOperStringSubCreatedValue.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleOperStringSubCreatedValue.setDescription('This variable represents both the value and the index for the mscExampleOperStringSubCreatedTable.')
mscExampleOperStringSubCreatedRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1004, 1, 2), RowStatus()).setMaxAccess("writeonly")
if mibBuilder.loadTexts: mscExampleOperStringSubCreatedRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleOperStringSubCreatedRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleOperStringSubCreatedTable.')
mscExampleOperEnumSubCreatedTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1005), )
if mibBuilder.loadTexts: mscExampleOperEnumSubCreatedTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleOperEnumSubCreatedTable.setDescription('')
mscExampleOperEnumSubCreatedEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1005, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleOperEnumSubCreatedValue"))
if mibBuilder.loadTexts: mscExampleOperEnumSubCreatedEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleOperEnumSubCreatedEntry.setDescription('An entry in the mscExampleOperEnumSubCreatedTable.')
mscExampleOperEnumSubCreatedValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1005, 1, 1), RowPointer()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleOperEnumSubCreatedValue.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleOperEnumSubCreatedValue.setDescription('This variable represents both the value and the index for the mscExampleOperEnumSubCreatedTable.')
mscExampleOperEnumSubCreatedRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1005, 1, 2), RowStatus()).setMaxAccess("writeonly")
if mibBuilder.loadTexts: mscExampleOperEnumSubCreatedRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleOperEnumSubCreatedRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleOperEnumSubCreatedTable.')
mscExampleOperSignedSubCreatedTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1006), )
if mibBuilder.loadTexts: mscExampleOperSignedSubCreatedTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleOperSignedSubCreatedTable.setDescription('')
mscExampleOperSignedSubCreatedEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1006, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleOperSignedSubCreatedValue"))
if mibBuilder.loadTexts: mscExampleOperSignedSubCreatedEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleOperSignedSubCreatedEntry.setDescription('An entry in the mscExampleOperSignedSubCreatedTable.')
mscExampleOperSignedSubCreatedValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1006, 1, 1), RowPointer()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleOperSignedSubCreatedValue.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleOperSignedSubCreatedValue.setDescription('This variable represents both the value and the index for the mscExampleOperSignedSubCreatedTable.')
mscExampleOperSignedSubCreatedRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1006, 1, 2), RowStatus()).setMaxAccess("writeonly")
if mibBuilder.loadTexts: mscExampleOperSignedSubCreatedRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleOperSignedSubCreatedRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleOperSignedSubCreatedTable.')
mscExampleProvDecimalSubCreatedTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1007), )
if mibBuilder.loadTexts: mscExampleProvDecimalSubCreatedTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleProvDecimalSubCreatedTable.setDescription('')
mscExampleProvDecimalSubCreatedEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1007, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleProvDecimalSubCreatedValue"))
if mibBuilder.loadTexts: mscExampleProvDecimalSubCreatedEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleProvDecimalSubCreatedEntry.setDescription('An entry in the mscExampleProvDecimalSubCreatedTable.')
mscExampleProvDecimalSubCreatedValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1007, 1, 1), Link()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleProvDecimalSubCreatedValue.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleProvDecimalSubCreatedValue.setDescription('This variable represents both the value and the index for the mscExampleProvDecimalSubCreatedTable.')
mscExampleProvDecimalSubCreatedRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1007, 1, 2), RowStatus()).setMaxAccess("writeonly")
if mibBuilder.loadTexts: mscExampleProvDecimalSubCreatedRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleProvDecimalSubCreatedRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleProvDecimalSubCreatedTable.')
mscExampleProvFixedPtSubCreatedTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1008), )
if mibBuilder.loadTexts: mscExampleProvFixedPtSubCreatedTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleProvFixedPtSubCreatedTable.setDescription('')
mscExampleProvFixedPtSubCreatedEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1008, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleProvFixedPtSubCreatedValue"))
if mibBuilder.loadTexts: mscExampleProvFixedPtSubCreatedEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleProvFixedPtSubCreatedEntry.setDescription('An entry in the mscExampleProvFixedPtSubCreatedTable.')
mscExampleProvFixedPtSubCreatedValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1008, 1, 1), Link()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleProvFixedPtSubCreatedValue.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleProvFixedPtSubCreatedValue.setDescription('This variable represents both the value and the index for the mscExampleProvFixedPtSubCreatedTable.')
mscExampleProvFixedPtSubCreatedRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1008, 1, 2), RowStatus()).setMaxAccess("writeonly")
if mibBuilder.loadTexts: mscExampleProvFixedPtSubCreatedRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleProvFixedPtSubCreatedRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleProvFixedPtSubCreatedTable.')
mscExampleProvSignedSubCreatedTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1009), )
if mibBuilder.loadTexts: mscExampleProvSignedSubCreatedTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleProvSignedSubCreatedTable.setDescription('')
mscExampleProvSignedSubCreatedEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1009, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleProvSignedSubCreatedValue"))
if mibBuilder.loadTexts: mscExampleProvSignedSubCreatedEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleProvSignedSubCreatedEntry.setDescription('An entry in the mscExampleProvSignedSubCreatedTable.')
mscExampleProvSignedSubCreatedValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1009, 1, 1), Link()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleProvSignedSubCreatedValue.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleProvSignedSubCreatedValue.setDescription('This variable represents both the value and the index for the mscExampleProvSignedSubCreatedTable.')
mscExampleProvSignedSubCreatedRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1009, 1, 2), RowStatus()).setMaxAccess("writeonly")
if mibBuilder.loadTexts: mscExampleProvSignedSubCreatedRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleProvSignedSubCreatedRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleProvSignedSubCreatedTable.')
mscExampleProvStringSubCreatedTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1010), )
if mibBuilder.loadTexts: mscExampleProvStringSubCreatedTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleProvStringSubCreatedTable.setDescription('')
mscExampleProvStringSubCreatedEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1010, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleProvStringSubCreatedValue"))
if mibBuilder.loadTexts: mscExampleProvStringSubCreatedEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleProvStringSubCreatedEntry.setDescription('An entry in the mscExampleProvStringSubCreatedTable.')
mscExampleProvStringSubCreatedValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1010, 1, 1), Link()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleProvStringSubCreatedValue.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleProvStringSubCreatedValue.setDescription('This variable represents both the value and the index for the mscExampleProvStringSubCreatedTable.')
mscExampleProvStringSubCreatedRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1010, 1, 2), RowStatus()).setMaxAccess("writeonly")
if mibBuilder.loadTexts: mscExampleProvStringSubCreatedRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleProvStringSubCreatedRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleProvStringSubCreatedTable.')
mscExampleProvEnumSubCreatedTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1011), )
if mibBuilder.loadTexts: mscExampleProvEnumSubCreatedTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleProvEnumSubCreatedTable.setDescription('')
mscExampleProvEnumSubCreatedEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1011, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleProvEnumSubCreatedValue"))
if mibBuilder.loadTexts: mscExampleProvEnumSubCreatedEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleProvEnumSubCreatedEntry.setDescription('An entry in the mscExampleProvEnumSubCreatedTable.')
mscExampleProvEnumSubCreatedValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1011, 1, 1), Link()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleProvEnumSubCreatedValue.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleProvEnumSubCreatedValue.setDescription('This variable represents both the value and the index for the mscExampleProvEnumSubCreatedTable.')
mscExampleProvEnumSubCreatedRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1011, 1, 2), RowStatus()).setMaxAccess("writeonly")
if mibBuilder.loadTexts: mscExampleProvEnumSubCreatedRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleProvEnumSubCreatedRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleProvEnumSubCreatedTable.')
mscExampleDecimal = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2))
mscExampleDecimalRowStatusTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1), )
if mibBuilder.loadTexts: mscExampleDecimalRowStatusTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDecimalRowStatusTable.setDescription('This entry controls the addition and deletion of mscExampleDecimal components.')
mscExampleDecimalRowStatusEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleDecimalIndex"))
if mibBuilder.loadTexts: mscExampleDecimalRowStatusEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDecimalRowStatusEntry.setDescription('A single entry in the table represents a single mscExampleDecimal component.')
mscExampleDecimalRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1, 1, 1), RowStatus()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleDecimalRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDecimalRowStatus.setDescription('This variable is used as the basis for SNMP naming of mscExampleDecimal components. These components can be added and deleted.')
mscExampleDecimalComponentName = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1, 1, 2), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mscExampleDecimalComponentName.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDecimalComponentName.setDescription("This variable provides the component's string name for use with the ASCII Console Interface")
mscExampleDecimalStorageType = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1, 1, 4), StorageType()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mscExampleDecimalStorageType.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDecimalStorageType.setDescription('This variable represents the storage type value for the mscExampleDecimal tables.')
mscExampleDecimalIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1, 1, 10), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 1023)))
if mibBuilder.loadTexts: mscExampleDecimalIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDecimalIndex.setDescription('This variable represents the index for the mscExampleDecimal tables.')
mscExampleDecimalOperationalTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 10), )
if mibBuilder.loadTexts: mscExampleDecimalOperationalTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDecimalOperationalTable.setDescription('')
mscExampleDecimalOperationalEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 10, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleDecimalIndex"))
if mibBuilder.loadTexts: mscExampleDecimalOperationalEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDecimalOperationalEntry.setDescription('An entry in the mscExampleDecimalOperationalTable.')
mscExampleDecimalOperStructInteger = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 10, 1, 1), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 255))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleDecimalOperStructInteger.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDecimalOperStructInteger.setDescription('')
mscExampleDecimalOperStructIntSet = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 10, 1, 2), OctetString().subtype(subtypeSpec=ValueSizeConstraint(2, 2)).setFixedLength(2)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleDecimalOperStructIntSet.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDecimalOperStructIntSet.setDescription('Description of bits: n0(0) n1(1) n2(2) n3(3) n4(4) n5(5) n6(6) n7(7) n8(8) n9(9) n10(10) n11(11) n12(12) n13(13) n14(14) n15(15)')
mscExampleDecimalOperFreeInteger = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 10, 1, 3), Unsigned32().subtype(subtypeSpec=ConstraintsUnion(ValueRangeConstraint(0, 10), ValueRangeConstraint(100, 200), ))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleDecimalOperFreeInteger.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDecimalOperFreeInteger.setDescription('')
mscExampleDecimalOperFreeIntSet = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 10, 1, 4), OctetString().subtype(subtypeSpec=ValueSizeConstraint(1, 1)).setFixedLength(1)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleDecimalOperFreeIntSet.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDecimalOperFreeIntSet.setDescription('Description of bits: n0(0) n1(1) n2(2) n3(3) n4(4) n5(5)')
mscExampleDecimalOperFreeCounter32 = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 10, 1, 5), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mscExampleDecimalOperFreeCounter32.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDecimalOperFreeCounter32.setDescription('')
mscExampleDecimalOperFreeGauge32 = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 10, 1, 6), Gauge32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleDecimalOperFreeGauge32.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDecimalOperFreeGauge32.setDescription('')
mscExampleDecimalOperFreeTimeInterval = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 10, 1, 7), TimeInterval().subtype(subtypeSpec=ValueRangeConstraint(0, 2147483647))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleDecimalOperFreeTimeInterval.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDecimalOperFreeTimeInterval.setDescription('')
mscExampleDecimalProvisionalTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 11), )
if mibBuilder.loadTexts: mscExampleDecimalProvisionalTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDecimalProvisionalTable.setDescription('')
mscExampleDecimalProvisionalEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 11, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleDecimalIndex"))
if mibBuilder.loadTexts: mscExampleDecimalProvisionalEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDecimalProvisionalEntry.setDescription('An entry in the mscExampleDecimalProvisionalTable.')
mscExampleDecimalProvDecimalSub = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 11, 1, 1), Link()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleDecimalProvDecimalSub.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDecimalProvDecimalSub.setDescription('')
mscExampleDecimalProvStructInteger = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 11, 1, 2), Unsigned32().subtype(subtypeSpec=ConstraintsUnion(ValueRangeConstraint(0, 252), ValueRangeConstraint(253, 253), ValueRangeConstraint(254, 254), ValueRangeConstraint(255, 255), )).clone(253)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleDecimalProvStructInteger.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDecimalProvStructInteger.setDescription('VALUES ( 253 = infinity 254 = notApplicable 255 = notMeasured )')
mscExampleDecimalProvStructIntSet = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 11, 1, 3), OctetString().subtype(subtypeSpec=ValueSizeConstraint(2, 2)).setFixedLength(2).clone(hexValue="aaaa")).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleDecimalProvStructIntSet.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDecimalProvStructIntSet.setDescription('Description of bits: n0(0) n1(1) n2(2) n3(3) n4(4) n5(5) n6(6) n7(7) n8(8) n9(9) n10(10) n11(11) n12(12) n13(13) n14(14) n15(15)')
mscExampleDecimalProvFreeInteger = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 11, 1, 4), Unsigned32().subtype(subtypeSpec=ConstraintsUnion(ValueRangeConstraint(0, 10), ValueRangeConstraint(100, 200), )).clone(101)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleDecimalProvFreeInteger.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDecimalProvFreeInteger.setDescription('')
mscExampleDecimalProvFreeInteger1 = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 11, 1, 5), Unsigned32().subtype(subtypeSpec=ConstraintsUnion(ValueRangeConstraint(1, 10), ValueRangeConstraint(100, 200), )).clone(1)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleDecimalProvFreeInteger1.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDecimalProvFreeInteger1.setDescription('')
mscExampleDecimalProvFreeInteger2 = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 11, 1, 6), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleDecimalProvFreeInteger2.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDecimalProvFreeInteger2.setDescription('')
mscExampleDecimalProvFreeIntSet = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 11, 1, 7), OctetString().subtype(subtypeSpec=ValueSizeConstraint(2, 2)).setFixedLength(2).clone(hexValue="5555")).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleDecimalProvFreeIntSet.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDecimalProvFreeIntSet.setDescription('Description of bits: n0(0) n1(1) n2(2) n3(3) n4(4) n5(5) n6(6) n7(7) n8(8) n9(9) n10(10) n11(11) n12(12) n13(13) n14(14) n15(15)')
mscExampleDecimalProvFreeIntSet1 = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 11, 1, 8), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4).clone(hexValue="80000001")).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleDecimalProvFreeIntSet1.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDecimalProvFreeIntSet1.setDescription('Description of bits: n0(0) n1(1) n2(2) n3(3) n4(4) n5(5) n6(6) n7(7) n8(8) n9(9) n10(10) n11(11) n12(12) n13(13) n14(14) n15(15) n16(16) n17(17) n18(18) n19(19) n20(20) n21(21) n22(22) n23(23) n24(24) n25(25) n26(26) n27(27) n28(28) n29(29) n30(30) n31(31)')
mscExampleDecimalOsIntVectorTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1012), )
if mibBuilder.loadTexts: mscExampleDecimalOsIntVectorTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDecimalOsIntVectorTable.setDescription('')
mscExampleDecimalOsIntVectorEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1012, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleDecimalIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleDecimalOsIntVectorIndex"))
if mibBuilder.loadTexts: mscExampleDecimalOsIntVectorEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDecimalOsIntVectorEntry.setDescription('An entry in the mscExampleDecimalOsIntVectorTable.')
mscExampleDecimalOsIntVectorIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1012, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 9)))
if mibBuilder.loadTexts: mscExampleDecimalOsIntVectorIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDecimalOsIntVectorIndex.setDescription('This variable represents the mscExampleDecimalOsIntVectorTable specific index for the mscExampleDecimalOsIntVectorTable.')
mscExampleDecimalOsIntVectorValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1012, 1, 2), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 100))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleDecimalOsIntVectorValue.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDecimalOsIntVectorValue.setDescription('This variable represents an individual value for the mscExampleDecimalOsIntVectorTable.')
mscExampleDecimalOsIntArrayTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1013), )
if mibBuilder.loadTexts: mscExampleDecimalOsIntArrayTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDecimalOsIntArrayTable.setDescription('')
mscExampleDecimalOsIntArrayEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1013, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleDecimalIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleDecimalOsIntArrayRowIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleDecimalOsIntArrayColumnIndex"))
if mibBuilder.loadTexts: mscExampleDecimalOsIntArrayEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDecimalOsIntArrayEntry.setDescription('An entry in the mscExampleDecimalOsIntArrayTable.')
mscExampleDecimalOsIntArrayRowIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1013, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 2)))
if mibBuilder.loadTexts: mscExampleDecimalOsIntArrayRowIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDecimalOsIntArrayRowIndex.setDescription('This variable represents the next to last index for the mscExampleDecimalOsIntArrayTable.')
mscExampleDecimalOsIntArrayColumnIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1013, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 3)))
if mibBuilder.loadTexts: mscExampleDecimalOsIntArrayColumnIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDecimalOsIntArrayColumnIndex.setDescription('This variable represents the final index for the mscExampleDecimalOsIntArrayTable.')
mscExampleDecimalOsIntArrayValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1013, 1, 3), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 255))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleDecimalOsIntArrayValue.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDecimalOsIntArrayValue.setDescription('This variable represents an individual value for the mscExampleDecimalOsIntArrayTable.')
mscExampleDecimalOfIntVectorTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1014), )
if mibBuilder.loadTexts: mscExampleDecimalOfIntVectorTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDecimalOfIntVectorTable.setDescription('')
mscExampleDecimalOfIntVectorEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1014, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleDecimalIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleDecimalOfIntVectorIndex"))
if mibBuilder.loadTexts: mscExampleDecimalOfIntVectorEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDecimalOfIntVectorEntry.setDescription('An entry in the mscExampleDecimalOfIntVectorTable.')
mscExampleDecimalOfIntVectorIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1014, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 9)))
if mibBuilder.loadTexts: mscExampleDecimalOfIntVectorIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDecimalOfIntVectorIndex.setDescription('This variable represents the mscExampleDecimalOfIntVectorTable specific index for the mscExampleDecimalOfIntVectorTable.')
mscExampleDecimalOfIntVectorValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1014, 1, 2), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 100))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleDecimalOfIntVectorValue.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDecimalOfIntVectorValue.setDescription('This variable represents an individual value for the mscExampleDecimalOfIntVectorTable.')
mscExampleDecimalOfIntArrayTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1015), )
if mibBuilder.loadTexts: mscExampleDecimalOfIntArrayTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDecimalOfIntArrayTable.setDescription('')
mscExampleDecimalOfIntArrayEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1015, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleDecimalIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleDecimalOfIntArrayRowIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleDecimalOfIntArrayColumnIndex"))
if mibBuilder.loadTexts: mscExampleDecimalOfIntArrayEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDecimalOfIntArrayEntry.setDescription('An entry in the mscExampleDecimalOfIntArrayTable.')
mscExampleDecimalOfIntArrayRowIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1015, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 2)))
if mibBuilder.loadTexts: mscExampleDecimalOfIntArrayRowIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDecimalOfIntArrayRowIndex.setDescription('This variable represents the next to last index for the mscExampleDecimalOfIntArrayTable.')
mscExampleDecimalOfIntArrayColumnIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1015, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 3)))
if mibBuilder.loadTexts: mscExampleDecimalOfIntArrayColumnIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDecimalOfIntArrayColumnIndex.setDescription('This variable represents the final index for the mscExampleDecimalOfIntArrayTable.')
mscExampleDecimalOfIntArrayValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1015, 1, 3), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 255))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleDecimalOfIntArrayValue.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDecimalOfIntArrayValue.setDescription('This variable represents an individual value for the mscExampleDecimalOfIntArrayTable.')
mscExampleDecimalOfIntReplicatedTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1016), )
if mibBuilder.loadTexts: mscExampleDecimalOfIntReplicatedTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDecimalOfIntReplicatedTable.setDescription('')
mscExampleDecimalOfIntReplicatedEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1016, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleDecimalIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleDecimalOfIntReplicatedIndex"))
if mibBuilder.loadTexts: mscExampleDecimalOfIntReplicatedEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDecimalOfIntReplicatedEntry.setDescription('An entry in the mscExampleDecimalOfIntReplicatedTable.')
mscExampleDecimalOfIntReplicatedIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1016, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 9)))
if mibBuilder.loadTexts: mscExampleDecimalOfIntReplicatedIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDecimalOfIntReplicatedIndex.setDescription('This variable represents the index for the mscExampleDecimalOfIntReplicatedTable.')
mscExampleDecimalOfIntReplicatedValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1016, 1, 2), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleDecimalOfIntReplicatedValue.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDecimalOfIntReplicatedValue.setDescription('This variable represents an individual value for the mscExampleDecimalOfIntReplicatedTable.')
mscExampleDecimalOfIntReplicatedRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1016, 1, 3), RowStatus()).setMaxAccess("writeonly")
if mibBuilder.loadTexts: mscExampleDecimalOfIntReplicatedRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDecimalOfIntReplicatedRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleDecimalOfIntReplicatedTable.')
mscExampleDecimalOfIntListTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1017), )
if mibBuilder.loadTexts: mscExampleDecimalOfIntListTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDecimalOfIntListTable.setDescription('')
mscExampleDecimalOfIntListEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1017, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleDecimalIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleDecimalOfIntListValue"))
if mibBuilder.loadTexts: mscExampleDecimalOfIntListEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDecimalOfIntListEntry.setDescription('An entry in the mscExampleDecimalOfIntListTable.')
mscExampleDecimalOfIntListValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1017, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(ValueRangeConstraint(0, 10), ValueRangeConstraint(1000, 2000), ))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleDecimalOfIntListValue.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDecimalOfIntListValue.setDescription('This variable represents both the value and the index for the mscExampleDecimalOfIntListTable.')
mscExampleDecimalOfIntListRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1017, 1, 2), RowStatus()).setMaxAccess("writeonly")
if mibBuilder.loadTexts: mscExampleDecimalOfIntListRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDecimalOfIntListRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleDecimalOfIntListTable.')
mscExampleDecimalPsIntVectorTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1018), )
if mibBuilder.loadTexts: mscExampleDecimalPsIntVectorTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDecimalPsIntVectorTable.setDescription('')
mscExampleDecimalPsIntVectorEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1018, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleDecimalIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleDecimalPsIntVectorIndex"))
if mibBuilder.loadTexts: mscExampleDecimalPsIntVectorEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDecimalPsIntVectorEntry.setDescription('An entry in the mscExampleDecimalPsIntVectorTable.')
mscExampleDecimalPsIntVectorIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1018, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 9)))
if mibBuilder.loadTexts: mscExampleDecimalPsIntVectorIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDecimalPsIntVectorIndex.setDescription('This variable represents the mscExampleDecimalPsIntVectorTable specific index for the mscExampleDecimalPsIntVectorTable.')
mscExampleDecimalPsIntVectorValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1018, 1, 2), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 100))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleDecimalPsIntVectorValue.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDecimalPsIntVectorValue.setDescription('This variable represents an individual value for the mscExampleDecimalPsIntVectorTable.')
mscExampleDecimalPsIntArrayTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1019), )
if mibBuilder.loadTexts: mscExampleDecimalPsIntArrayTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDecimalPsIntArrayTable.setDescription('')
mscExampleDecimalPsIntArrayEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1019, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleDecimalIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleDecimalPsIntArrayRowIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleDecimalPsIntArrayColumnIndex"))
if mibBuilder.loadTexts: mscExampleDecimalPsIntArrayEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDecimalPsIntArrayEntry.setDescription('An entry in the mscExampleDecimalPsIntArrayTable.')
mscExampleDecimalPsIntArrayRowIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1019, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 2)))
if mibBuilder.loadTexts: mscExampleDecimalPsIntArrayRowIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDecimalPsIntArrayRowIndex.setDescription('This variable represents the next to last index for the mscExampleDecimalPsIntArrayTable.')
mscExampleDecimalPsIntArrayColumnIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1019, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 3)))
if mibBuilder.loadTexts: mscExampleDecimalPsIntArrayColumnIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDecimalPsIntArrayColumnIndex.setDescription('This variable represents the final index for the mscExampleDecimalPsIntArrayTable.')
mscExampleDecimalPsIntArrayValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1019, 1, 3), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 255))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleDecimalPsIntArrayValue.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDecimalPsIntArrayValue.setDescription('This variable represents an individual value for the mscExampleDecimalPsIntArrayTable.')
mscExampleDecimalPfIntVectorTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1020), )
if mibBuilder.loadTexts: mscExampleDecimalPfIntVectorTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDecimalPfIntVectorTable.setDescription('')
mscExampleDecimalPfIntVectorEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1020, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleDecimalIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleDecimalPfIntVectorIndex"))
if mibBuilder.loadTexts: mscExampleDecimalPfIntVectorEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDecimalPfIntVectorEntry.setDescription('An entry in the mscExampleDecimalPfIntVectorTable.')
mscExampleDecimalPfIntVectorIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1020, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 9)))
if mibBuilder.loadTexts: mscExampleDecimalPfIntVectorIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDecimalPfIntVectorIndex.setDescription('This variable represents the mscExampleDecimalPfIntVectorTable specific index for the mscExampleDecimalPfIntVectorTable.')
mscExampleDecimalPfIntVectorValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1020, 1, 2), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 100))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleDecimalPfIntVectorValue.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDecimalPfIntVectorValue.setDescription('This variable represents an individual value for the mscExampleDecimalPfIntVectorTable.')
mscExampleDecimalPfIntVector1Table = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1021), )
if mibBuilder.loadTexts: mscExampleDecimalPfIntVector1Table.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDecimalPfIntVector1Table.setDescription('')
mscExampleDecimalPfIntVector1Entry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1021, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleDecimalIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleDecimalPfIntVector1Index"))
if mibBuilder.loadTexts: mscExampleDecimalPfIntVector1Entry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDecimalPfIntVector1Entry.setDescription('An entry in the mscExampleDecimalPfIntVector1Table.')
mscExampleDecimalPfIntVector1Index = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1021, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 15)))
if mibBuilder.loadTexts: mscExampleDecimalPfIntVector1Index.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDecimalPfIntVector1Index.setDescription('This variable represents the mscExampleDecimalPfIntVector1Table specific index for the mscExampleDecimalPfIntVector1Table.')
mscExampleDecimalPfIntVector1Value = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1021, 1, 2), Unsigned32().subtype(subtypeSpec=ConstraintsUnion(ValueRangeConstraint(0, 50), ValueRangeConstraint(100, 150), ))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleDecimalPfIntVector1Value.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDecimalPfIntVector1Value.setDescription('This variable represents an individual value for the mscExampleDecimalPfIntVector1Table.')
mscExampleDecimalPfIntArrayTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1022), )
if mibBuilder.loadTexts: mscExampleDecimalPfIntArrayTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDecimalPfIntArrayTable.setDescription('')
mscExampleDecimalPfIntArrayEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1022, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleDecimalIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleDecimalPfIntArrayRowIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleDecimalPfIntArrayColumnIndex"))
if mibBuilder.loadTexts: mscExampleDecimalPfIntArrayEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDecimalPfIntArrayEntry.setDescription('An entry in the mscExampleDecimalPfIntArrayTable.')
mscExampleDecimalPfIntArrayRowIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1022, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 2)))
if mibBuilder.loadTexts: mscExampleDecimalPfIntArrayRowIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDecimalPfIntArrayRowIndex.setDescription('This variable represents the next to last index for the mscExampleDecimalPfIntArrayTable.')
mscExampleDecimalPfIntArrayColumnIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1022, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 3)))
if mibBuilder.loadTexts: mscExampleDecimalPfIntArrayColumnIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDecimalPfIntArrayColumnIndex.setDescription('This variable represents the final index for the mscExampleDecimalPfIntArrayTable.')
mscExampleDecimalPfIntArrayValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1022, 1, 3), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 255))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleDecimalPfIntArrayValue.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDecimalPfIntArrayValue.setDescription('This variable represents an individual value for the mscExampleDecimalPfIntArrayTable.')
mscExampleDecimalPfIntArray1Table = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1023), )
if mibBuilder.loadTexts: mscExampleDecimalPfIntArray1Table.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDecimalPfIntArray1Table.setDescription('')
mscExampleDecimalPfIntArray1Entry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1023, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleDecimalIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleDecimalPfIntArray1RowIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleDecimalPfIntArray1ColumnIndex"))
if mibBuilder.loadTexts: mscExampleDecimalPfIntArray1Entry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDecimalPfIntArray1Entry.setDescription('An entry in the mscExampleDecimalPfIntArray1Table.')
mscExampleDecimalPfIntArray1RowIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1023, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 2)))
if mibBuilder.loadTexts: mscExampleDecimalPfIntArray1RowIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDecimalPfIntArray1RowIndex.setDescription('This variable represents the next to last index for the mscExampleDecimalPfIntArray1Table.')
mscExampleDecimalPfIntArray1ColumnIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1023, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 3)))
if mibBuilder.loadTexts: mscExampleDecimalPfIntArray1ColumnIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDecimalPfIntArray1ColumnIndex.setDescription('This variable represents the final index for the mscExampleDecimalPfIntArray1Table.')
mscExampleDecimalPfIntArray1Value = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1023, 1, 3), Unsigned32().subtype(subtypeSpec=ConstraintsUnion(ValueRangeConstraint(0, 10), ValueRangeConstraint(20, 200), ))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleDecimalPfIntArray1Value.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDecimalPfIntArray1Value.setDescription('This variable represents an individual value for the mscExampleDecimalPfIntArray1Table.')
mscExampleDecimalPfIntReplicatedTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1024), )
if mibBuilder.loadTexts: mscExampleDecimalPfIntReplicatedTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDecimalPfIntReplicatedTable.setDescription('')
mscExampleDecimalPfIntReplicatedEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1024, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleDecimalIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleDecimalPfIntReplicatedIndex"))
if mibBuilder.loadTexts: mscExampleDecimalPfIntReplicatedEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDecimalPfIntReplicatedEntry.setDescription('An entry in the mscExampleDecimalPfIntReplicatedTable.')
mscExampleDecimalPfIntReplicatedIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1024, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 9)))
if mibBuilder.loadTexts: mscExampleDecimalPfIntReplicatedIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDecimalPfIntReplicatedIndex.setDescription('This variable represents the index for the mscExampleDecimalPfIntReplicatedTable.')
mscExampleDecimalPfIntReplicatedValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1024, 1, 2), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleDecimalPfIntReplicatedValue.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDecimalPfIntReplicatedValue.setDescription('This variable represents an individual value for the mscExampleDecimalPfIntReplicatedTable.')
mscExampleDecimalPfIntReplicatedRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1024, 1, 3), RowStatus()).setMaxAccess("writeonly")
if mibBuilder.loadTexts: mscExampleDecimalPfIntReplicatedRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDecimalPfIntReplicatedRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleDecimalPfIntReplicatedTable.')
mscExampleDecimalPfIntReplicated1Table = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1025), )
if mibBuilder.loadTexts: mscExampleDecimalPfIntReplicated1Table.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDecimalPfIntReplicated1Table.setDescription('')
mscExampleDecimalPfIntReplicated1Entry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1025, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleDecimalIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleDecimalPfIntReplicated1Index"))
if mibBuilder.loadTexts: mscExampleDecimalPfIntReplicated1Entry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDecimalPfIntReplicated1Entry.setDescription('An entry in the mscExampleDecimalPfIntReplicated1Table.')
mscExampleDecimalPfIntReplicated1Index = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1025, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(ValueRangeConstraint(0, 9), ValueRangeConstraint(11, 19), )))
if mibBuilder.loadTexts: mscExampleDecimalPfIntReplicated1Index.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDecimalPfIntReplicated1Index.setDescription('This variable represents the index for the mscExampleDecimalPfIntReplicated1Table.')
mscExampleDecimalPfIntReplicated1Value = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1025, 1, 2), Unsigned32().subtype(subtypeSpec=ConstraintsUnion(ValueRangeConstraint(0, 3), ValueRangeConstraint(30, 300), ))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleDecimalPfIntReplicated1Value.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDecimalPfIntReplicated1Value.setDescription('This variable represents an individual value for the mscExampleDecimalPfIntReplicated1Table.')
mscExampleDecimalPfIntReplicated1RowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1025, 1, 3), RowStatus()).setMaxAccess("writeonly")
if mibBuilder.loadTexts: mscExampleDecimalPfIntReplicated1RowStatus.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDecimalPfIntReplicated1RowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleDecimalPfIntReplicated1Table.')
mscExampleDecimalPfIntListTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1026), )
if mibBuilder.loadTexts: mscExampleDecimalPfIntListTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDecimalPfIntListTable.setDescription('')
mscExampleDecimalPfIntListEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1026, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleDecimalIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleDecimalPfIntListValue"))
if mibBuilder.loadTexts: mscExampleDecimalPfIntListEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDecimalPfIntListEntry.setDescription('An entry in the mscExampleDecimalPfIntListTable.')
mscExampleDecimalPfIntListValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1026, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 1000))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleDecimalPfIntListValue.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDecimalPfIntListValue.setDescription('This variable represents both the value and the index for the mscExampleDecimalPfIntListTable.')
mscExampleDecimalPfIntListRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1026, 1, 2), RowStatus()).setMaxAccess("writeonly")
if mibBuilder.loadTexts: mscExampleDecimalPfIntListRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDecimalPfIntListRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleDecimalPfIntListTable.')
mscExampleDecimalPfIntList1Table = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1027), )
if mibBuilder.loadTexts: mscExampleDecimalPfIntList1Table.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDecimalPfIntList1Table.setDescription('')
mscExampleDecimalPfIntList1Entry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1027, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleDecimalIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleDecimalPfIntList1Value"))
if mibBuilder.loadTexts: mscExampleDecimalPfIntList1Entry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDecimalPfIntList1Entry.setDescription('An entry in the mscExampleDecimalPfIntList1Table.')
mscExampleDecimalPfIntList1Value = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1027, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(ValueRangeConstraint(1, 10), ValueRangeConstraint(15, 50), ))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleDecimalPfIntList1Value.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDecimalPfIntList1Value.setDescription('This variable represents both the value and the index for the mscExampleDecimalPfIntList1Table.')
mscExampleDecimalPfIntList1RowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1027, 1, 2), RowStatus()).setMaxAccess("writeonly")
if mibBuilder.loadTexts: mscExampleDecimalPfIntList1RowStatus.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDecimalPfIntList1RowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleDecimalPfIntList1Table.')
mscExampleHex = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3))
mscExampleHexRowStatusTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1), )
if mibBuilder.loadTexts: mscExampleHexRowStatusTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleHexRowStatusTable.setDescription('This entry controls the addition and deletion of mscExampleHex components.')
mscExampleHexRowStatusEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleHexIndex"))
if mibBuilder.loadTexts: mscExampleHexRowStatusEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleHexRowStatusEntry.setDescription('A single entry in the table represents a single mscExampleHex component.')
mscExampleHexRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1, 1, 1), RowStatus()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleHexRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleHexRowStatus.setDescription('This variable is used as the basis for SNMP naming of mscExampleHex components. These components can be added and deleted.')
mscExampleHexComponentName = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1, 1, 2), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mscExampleHexComponentName.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleHexComponentName.setDescription("This variable provides the component's string name for use with the ASCII Console Interface")
mscExampleHexStorageType = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1, 1, 4), StorageType()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mscExampleHexStorageType.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleHexStorageType.setDescription('This variable represents the storage type value for the mscExampleHex tables.')
mscExampleHexIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1, 1, 10), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 255)))
if mibBuilder.loadTexts: mscExampleHexIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleHexIndex.setDescription('This variable represents the index for the mscExampleHex tables.')
mscExampleHexOperationalTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 10), )
if mibBuilder.loadTexts: mscExampleHexOperationalTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleHexOperationalTable.setDescription('')
mscExampleHexOperationalEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 10, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleHexIndex"))
if mibBuilder.loadTexts: mscExampleHexOperationalEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleHexOperationalEntry.setDescription('An entry in the mscExampleHexOperationalTable.')
mscExampleHexOperStructHex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 10, 1, 1), Hex().subtype(subtypeSpec=ValueRangeConstraint(0, 256))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleHexOperStructHex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleHexOperStructHex.setDescription('')
mscExampleHexOperFreeHex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 10, 1, 2), Hex().subtype(subtypeSpec=ValueRangeConstraint(0, 256))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleHexOperFreeHex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleHexOperFreeHex.setDescription('')
mscExampleHexProvisionalTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 11), )
if mibBuilder.loadTexts: mscExampleHexProvisionalTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleHexProvisionalTable.setDescription('')
mscExampleHexProvisionalEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 11, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleHexIndex"))
if mibBuilder.loadTexts: mscExampleHexProvisionalEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleHexProvisionalEntry.setDescription('An entry in the mscExampleHexProvisionalTable.')
mscExampleHexProvEnumSub = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 11, 1, 1), Link()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleHexProvEnumSub.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleHexProvEnumSub.setDescription('')
mscExampleHexProvStructHex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 11, 1, 2), Hex().subtype(subtypeSpec=ConstraintsUnion(ValueRangeConstraint(0, 256), ValueRangeConstraint(512, 512), ValueRangeConstraint(513, 513), ValueRangeConstraint(514, 514), )).clone(512)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleHexProvStructHex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleHexProvStructHex.setDescription('VALUES ( 512 = infinity 513 = notApplicable 514 = notMeasured )')
mscExampleHexProvFreeHex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 11, 1, 3), Hex().subtype(subtypeSpec=ValueRangeConstraint(0, 256)).clone(18)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleHexProvFreeHex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleHexProvFreeHex.setDescription('')
mscExampleHexProvFreeHex1 = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 11, 1, 4), Hex().subtype(subtypeSpec=ConstraintsUnion(ValueRangeConstraint(0, 16), ValueRangeConstraint(256, 4096), ))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleHexProvFreeHex1.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleHexProvFreeHex1.setDescription('')
mscExampleHexOsHexVectorTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1040), )
if mibBuilder.loadTexts: mscExampleHexOsHexVectorTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleHexOsHexVectorTable.setDescription('')
mscExampleHexOsHexVectorEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1040, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleHexIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleHexOsHexVectorIndex"))
if mibBuilder.loadTexts: mscExampleHexOsHexVectorEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleHexOsHexVectorEntry.setDescription('An entry in the mscExampleHexOsHexVectorTable.')
mscExampleHexOsHexVectorIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1040, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 9)))
if mibBuilder.loadTexts: mscExampleHexOsHexVectorIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleHexOsHexVectorIndex.setDescription('This variable represents the mscExampleHexOsHexVectorTable specific index for the mscExampleHexOsHexVectorTable.')
mscExampleHexOsHexVectorValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1040, 1, 2), Hex().subtype(subtypeSpec=ValueRangeConstraint(0, 255))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleHexOsHexVectorValue.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleHexOsHexVectorValue.setDescription('This variable represents an individual value for the mscExampleHexOsHexVectorTable.')
mscExampleHexOsHexArrayTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1041), )
if mibBuilder.loadTexts: mscExampleHexOsHexArrayTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleHexOsHexArrayTable.setDescription('')
mscExampleHexOsHexArrayEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1041, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleHexIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleHexOsHexArrayRowIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleHexOsHexArrayColumnIndex"))
if mibBuilder.loadTexts: mscExampleHexOsHexArrayEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleHexOsHexArrayEntry.setDescription('An entry in the mscExampleHexOsHexArrayTable.')
mscExampleHexOsHexArrayRowIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1041, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 2)))
if mibBuilder.loadTexts: mscExampleHexOsHexArrayRowIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleHexOsHexArrayRowIndex.setDescription('This variable represents the next to last index for the mscExampleHexOsHexArrayTable.')
mscExampleHexOsHexArrayColumnIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1041, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 3)))
if mibBuilder.loadTexts: mscExampleHexOsHexArrayColumnIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleHexOsHexArrayColumnIndex.setDescription('This variable represents the final index for the mscExampleHexOsHexArrayTable.')
mscExampleHexOsHexArrayValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1041, 1, 3), Hex().subtype(subtypeSpec=ValueRangeConstraint(0, 255))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleHexOsHexArrayValue.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleHexOsHexArrayValue.setDescription('This variable represents an individual value for the mscExampleHexOsHexArrayTable.')
mscExampleHexOfHexVectorTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1042), )
if mibBuilder.loadTexts: mscExampleHexOfHexVectorTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleHexOfHexVectorTable.setDescription('')
mscExampleHexOfHexVectorEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1042, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleHexIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleHexOfHexVectorIndex"))
if mibBuilder.loadTexts: mscExampleHexOfHexVectorEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleHexOfHexVectorEntry.setDescription('An entry in the mscExampleHexOfHexVectorTable.')
mscExampleHexOfHexVectorIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1042, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 9)))
if mibBuilder.loadTexts: mscExampleHexOfHexVectorIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleHexOfHexVectorIndex.setDescription('This variable represents the mscExampleHexOfHexVectorTable specific index for the mscExampleHexOfHexVectorTable.')
mscExampleHexOfHexVectorValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1042, 1, 2), Hex().subtype(subtypeSpec=ValueRangeConstraint(0, 256))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleHexOfHexVectorValue.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleHexOfHexVectorValue.setDescription('This variable represents an individual value for the mscExampleHexOfHexVectorTable.')
mscExampleHexOfHexArrayTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1043), )
if mibBuilder.loadTexts: mscExampleHexOfHexArrayTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleHexOfHexArrayTable.setDescription('')
mscExampleHexOfHexArrayEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1043, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleHexIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleHexOfHexArrayRowIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleHexOfHexArrayColumnIndex"))
if mibBuilder.loadTexts: mscExampleHexOfHexArrayEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleHexOfHexArrayEntry.setDescription('An entry in the mscExampleHexOfHexArrayTable.')
mscExampleHexOfHexArrayRowIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1043, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 2)))
if mibBuilder.loadTexts: mscExampleHexOfHexArrayRowIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleHexOfHexArrayRowIndex.setDescription('This variable represents the next to last index for the mscExampleHexOfHexArrayTable.')
mscExampleHexOfHexArrayColumnIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1043, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 3)))
if mibBuilder.loadTexts: mscExampleHexOfHexArrayColumnIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleHexOfHexArrayColumnIndex.setDescription('This variable represents the final index for the mscExampleHexOfHexArrayTable.')
mscExampleHexOfHexArrayValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1043, 1, 3), Hex().subtype(subtypeSpec=ValueRangeConstraint(0, 255))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleHexOfHexArrayValue.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleHexOfHexArrayValue.setDescription('This variable represents an individual value for the mscExampleHexOfHexArrayTable.')
mscExampleHexOfHexReplicatedTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1044), )
if mibBuilder.loadTexts: mscExampleHexOfHexReplicatedTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleHexOfHexReplicatedTable.setDescription('')
mscExampleHexOfHexReplicatedEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1044, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleHexIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleHexOfHexReplicatedIndex"))
if mibBuilder.loadTexts: mscExampleHexOfHexReplicatedEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleHexOfHexReplicatedEntry.setDescription('An entry in the mscExampleHexOfHexReplicatedTable.')
mscExampleHexOfHexReplicatedIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1044, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 9)))
if mibBuilder.loadTexts: mscExampleHexOfHexReplicatedIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleHexOfHexReplicatedIndex.setDescription('This variable represents the index for the mscExampleHexOfHexReplicatedTable.')
mscExampleHexOfHexReplicatedValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1044, 1, 2), Hex().subtype(subtypeSpec=ValueRangeConstraint(0, 256))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleHexOfHexReplicatedValue.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleHexOfHexReplicatedValue.setDescription('This variable represents an individual value for the mscExampleHexOfHexReplicatedTable.')
mscExampleHexOfHexReplicatedRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1044, 1, 3), RowStatus()).setMaxAccess("writeonly")
if mibBuilder.loadTexts: mscExampleHexOfHexReplicatedRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleHexOfHexReplicatedRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleHexOfHexReplicatedTable.')
mscExampleHexOfHexListTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1045), )
if mibBuilder.loadTexts: mscExampleHexOfHexListTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleHexOfHexListTable.setDescription('')
mscExampleHexOfHexListEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1045, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleHexIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleHexOfHexListValue"))
if mibBuilder.loadTexts: mscExampleHexOfHexListEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleHexOfHexListEntry.setDescription('An entry in the mscExampleHexOfHexListTable.')
mscExampleHexOfHexListValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1045, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 4096))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleHexOfHexListValue.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleHexOfHexListValue.setDescription('This variable represents both the value and the index for the mscExampleHexOfHexListTable.')
mscExampleHexOfHexListRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1045, 1, 2), RowStatus()).setMaxAccess("writeonly")
if mibBuilder.loadTexts: mscExampleHexOfHexListRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleHexOfHexListRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleHexOfHexListTable.')
mscExampleHexProvStructHexVectorTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1046), )
if mibBuilder.loadTexts: mscExampleHexProvStructHexVectorTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleHexProvStructHexVectorTable.setDescription('')
mscExampleHexProvStructHexVectorEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1046, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleHexIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleHexProvStructHexVectorIndex"))
if mibBuilder.loadTexts: mscExampleHexProvStructHexVectorEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleHexProvStructHexVectorEntry.setDescription('An entry in the mscExampleHexProvStructHexVectorTable.')
mscExampleHexProvStructHexVectorIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1046, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 9)))
if mibBuilder.loadTexts: mscExampleHexProvStructHexVectorIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleHexProvStructHexVectorIndex.setDescription('This variable represents the mscExampleHexProvStructHexVectorTable specific index for the mscExampleHexProvStructHexVectorTable.')
mscExampleHexProvStructHexVectorValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1046, 1, 2), Hex().subtype(subtypeSpec=ValueRangeConstraint(0, 255))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleHexProvStructHexVectorValue.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleHexProvStructHexVectorValue.setDescription('This variable represents an individual value for the mscExampleHexProvStructHexVectorTable.')
mscExampleHexProvStructHexArrayTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1047), )
if mibBuilder.loadTexts: mscExampleHexProvStructHexArrayTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleHexProvStructHexArrayTable.setDescription('')
mscExampleHexProvStructHexArrayEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1047, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleHexIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleHexProvStructHexArrayRowIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleHexProvStructHexArrayColumnIndex"))
if mibBuilder.loadTexts: mscExampleHexProvStructHexArrayEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleHexProvStructHexArrayEntry.setDescription('An entry in the mscExampleHexProvStructHexArrayTable.')
mscExampleHexProvStructHexArrayRowIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1047, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 2)))
if mibBuilder.loadTexts: mscExampleHexProvStructHexArrayRowIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleHexProvStructHexArrayRowIndex.setDescription('This variable represents the next to last index for the mscExampleHexProvStructHexArrayTable.')
mscExampleHexProvStructHexArrayColumnIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1047, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 3)))
if mibBuilder.loadTexts: mscExampleHexProvStructHexArrayColumnIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleHexProvStructHexArrayColumnIndex.setDescription('This variable represents the final index for the mscExampleHexProvStructHexArrayTable.')
mscExampleHexProvStructHexArrayValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1047, 1, 3), Hex().subtype(subtypeSpec=ValueRangeConstraint(0, 255))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleHexProvStructHexArrayValue.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleHexProvStructHexArrayValue.setDescription('This variable represents an individual value for the mscExampleHexProvStructHexArrayTable.')
mscExampleHexProvFreeHexVectorTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1048), )
if mibBuilder.loadTexts: mscExampleHexProvFreeHexVectorTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleHexProvFreeHexVectorTable.setDescription('')
mscExampleHexProvFreeHexVectorEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1048, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleHexIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleHexProvFreeHexVectorIndex"))
if mibBuilder.loadTexts: mscExampleHexProvFreeHexVectorEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleHexProvFreeHexVectorEntry.setDescription('An entry in the mscExampleHexProvFreeHexVectorTable.')
mscExampleHexProvFreeHexVectorIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1048, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 9)))
if mibBuilder.loadTexts: mscExampleHexProvFreeHexVectorIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleHexProvFreeHexVectorIndex.setDescription('This variable represents the mscExampleHexProvFreeHexVectorTable specific index for the mscExampleHexProvFreeHexVectorTable.')
mscExampleHexProvFreeHexVectorValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1048, 1, 2), Hex().subtype(subtypeSpec=ValueRangeConstraint(0, 256))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleHexProvFreeHexVectorValue.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleHexProvFreeHexVectorValue.setDescription('This variable represents an individual value for the mscExampleHexProvFreeHexVectorTable.')
mscExampleHexProvFreeHexVector1Table = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1049), )
if mibBuilder.loadTexts: mscExampleHexProvFreeHexVector1Table.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleHexProvFreeHexVector1Table.setDescription('')
mscExampleHexProvFreeHexVector1Entry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1049, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleHexIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleHexProvFreeHexVector1Index"))
if mibBuilder.loadTexts: mscExampleHexProvFreeHexVector1Entry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleHexProvFreeHexVector1Entry.setDescription('An entry in the mscExampleHexProvFreeHexVector1Table.')
mscExampleHexProvFreeHexVector1Index = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1049, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 9)))
if mibBuilder.loadTexts: mscExampleHexProvFreeHexVector1Index.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleHexProvFreeHexVector1Index.setDescription('This variable represents the mscExampleHexProvFreeHexVector1Table specific index for the mscExampleHexProvFreeHexVector1Table.')
mscExampleHexProvFreeHexVector1Value = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1049, 1, 2), Hex().subtype(subtypeSpec=ConstraintsUnion(ValueRangeConstraint(0, 16), ValueRangeConstraint(256, 4096), ))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleHexProvFreeHexVector1Value.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleHexProvFreeHexVector1Value.setDescription('This variable represents an individual value for the mscExampleHexProvFreeHexVector1Table.')
mscExampleHexProvFreeHexVector2Table = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1050), )
if mibBuilder.loadTexts: mscExampleHexProvFreeHexVector2Table.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleHexProvFreeHexVector2Table.setDescription('')
mscExampleHexProvFreeHexVector2Entry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1050, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleHexIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleHexProvFreeHexVector2Index"))
if mibBuilder.loadTexts: mscExampleHexProvFreeHexVector2Entry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleHexProvFreeHexVector2Entry.setDescription('An entry in the mscExampleHexProvFreeHexVector2Table.')
mscExampleHexProvFreeHexVector2Index = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1050, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 5)))
if mibBuilder.loadTexts: mscExampleHexProvFreeHexVector2Index.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleHexProvFreeHexVector2Index.setDescription('This variable represents the mscExampleHexProvFreeHexVector2Table specific index for the mscExampleHexProvFreeHexVector2Table.')
mscExampleHexProvFreeHexVector2Value = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1050, 1, 2), Hex().subtype(subtypeSpec=ConstraintsUnion(ValueRangeConstraint(0, 16), ValueRangeConstraint(256, 4096), ))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleHexProvFreeHexVector2Value.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleHexProvFreeHexVector2Value.setDescription('This variable represents an individual value for the mscExampleHexProvFreeHexVector2Table.')
mscExampleHexProvFreeHexArrayTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1051), )
if mibBuilder.loadTexts: mscExampleHexProvFreeHexArrayTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleHexProvFreeHexArrayTable.setDescription('')
mscExampleHexProvFreeHexArrayEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1051, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleHexIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleHexProvFreeHexArrayRowIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleHexProvFreeHexArrayColumnIndex"))
if mibBuilder.loadTexts: mscExampleHexProvFreeHexArrayEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleHexProvFreeHexArrayEntry.setDescription('An entry in the mscExampleHexProvFreeHexArrayTable.')
mscExampleHexProvFreeHexArrayRowIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1051, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 2)))
if mibBuilder.loadTexts: mscExampleHexProvFreeHexArrayRowIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleHexProvFreeHexArrayRowIndex.setDescription('This variable represents the next to last index for the mscExampleHexProvFreeHexArrayTable.')
mscExampleHexProvFreeHexArrayColumnIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1051, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 3)))
if mibBuilder.loadTexts: mscExampleHexProvFreeHexArrayColumnIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleHexProvFreeHexArrayColumnIndex.setDescription('This variable represents the final index for the mscExampleHexProvFreeHexArrayTable.')
mscExampleHexProvFreeHexArrayValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1051, 1, 3), Hex().subtype(subtypeSpec=ValueRangeConstraint(0, 255))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleHexProvFreeHexArrayValue.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleHexProvFreeHexArrayValue.setDescription('This variable represents an individual value for the mscExampleHexProvFreeHexArrayTable.')
mscExampleHexProvFreeHexArray1Table = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1052), )
if mibBuilder.loadTexts: mscExampleHexProvFreeHexArray1Table.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleHexProvFreeHexArray1Table.setDescription('')
mscExampleHexProvFreeHexArray1Entry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1052, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleHexIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleHexProvFreeHexArray1RowIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleHexProvFreeHexArray1ColumnIndex"))
if mibBuilder.loadTexts: mscExampleHexProvFreeHexArray1Entry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleHexProvFreeHexArray1Entry.setDescription('An entry in the mscExampleHexProvFreeHexArray1Table.')
mscExampleHexProvFreeHexArray1RowIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1052, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(ValueRangeConstraint(0, 1), ValueRangeConstraint(3, 4), )))
if mibBuilder.loadTexts: mscExampleHexProvFreeHexArray1RowIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleHexProvFreeHexArray1RowIndex.setDescription('This variable represents the next to last index for the mscExampleHexProvFreeHexArray1Table.')
mscExampleHexProvFreeHexArray1ColumnIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1052, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 3)))
if mibBuilder.loadTexts: mscExampleHexProvFreeHexArray1ColumnIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleHexProvFreeHexArray1ColumnIndex.setDescription('This variable represents the final index for the mscExampleHexProvFreeHexArray1Table.')
mscExampleHexProvFreeHexArray1Value = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1052, 1, 3), Hex().subtype(subtypeSpec=ConstraintsUnion(ValueRangeConstraint(0, 16), ValueRangeConstraint(80, 256), ))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleHexProvFreeHexArray1Value.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleHexProvFreeHexArray1Value.setDescription('This variable represents an individual value for the mscExampleHexProvFreeHexArray1Table.')
mscExampleHexProvFreeHexArray2Table = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1053), )
if mibBuilder.loadTexts: mscExampleHexProvFreeHexArray2Table.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleHexProvFreeHexArray2Table.setDescription('')
mscExampleHexProvFreeHexArray2Entry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1053, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleHexIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleHexProvFreeHexArray2RowIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleHexProvFreeHexArray2ColumnIndex"))
if mibBuilder.loadTexts: mscExampleHexProvFreeHexArray2Entry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleHexProvFreeHexArray2Entry.setDescription('An entry in the mscExampleHexProvFreeHexArray2Table.')
mscExampleHexProvFreeHexArray2RowIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1053, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 3)))
if mibBuilder.loadTexts: mscExampleHexProvFreeHexArray2RowIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleHexProvFreeHexArray2RowIndex.setDescription('This variable represents the next to last index for the mscExampleHexProvFreeHexArray2Table.')
mscExampleHexProvFreeHexArray2ColumnIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1053, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 3)))
if mibBuilder.loadTexts: mscExampleHexProvFreeHexArray2ColumnIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleHexProvFreeHexArray2ColumnIndex.setDescription('This variable represents the final index for the mscExampleHexProvFreeHexArray2Table.')
mscExampleHexProvFreeHexArray2Value = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1053, 1, 3), Hex().subtype(subtypeSpec=ConstraintsUnion(ValueRangeConstraint(0, 16), ValueRangeConstraint(80, 256), ))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleHexProvFreeHexArray2Value.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleHexProvFreeHexArray2Value.setDescription('This variable represents an individual value for the mscExampleHexProvFreeHexArray2Table.')
mscExampleHexProvFreeHexReplicatedTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1054), )
if mibBuilder.loadTexts: mscExampleHexProvFreeHexReplicatedTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleHexProvFreeHexReplicatedTable.setDescription('')
mscExampleHexProvFreeHexReplicatedEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1054, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleHexIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleHexProvFreeHexReplicatedIndex"))
if mibBuilder.loadTexts: mscExampleHexProvFreeHexReplicatedEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleHexProvFreeHexReplicatedEntry.setDescription('An entry in the mscExampleHexProvFreeHexReplicatedTable.')
mscExampleHexProvFreeHexReplicatedIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1054, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 9)))
if mibBuilder.loadTexts: mscExampleHexProvFreeHexReplicatedIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleHexProvFreeHexReplicatedIndex.setDescription('This variable represents the index for the mscExampleHexProvFreeHexReplicatedTable.')
mscExampleHexProvFreeHexReplicatedValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1054, 1, 2), Hex().subtype(subtypeSpec=ValueRangeConstraint(0, 256))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleHexProvFreeHexReplicatedValue.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleHexProvFreeHexReplicatedValue.setDescription('This variable represents an individual value for the mscExampleHexProvFreeHexReplicatedTable.')
mscExampleHexProvFreeHexReplicatedRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1054, 1, 3), RowStatus()).setMaxAccess("writeonly")
if mibBuilder.loadTexts: mscExampleHexProvFreeHexReplicatedRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleHexProvFreeHexReplicatedRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleHexProvFreeHexReplicatedTable.')
mscExampleHexProvFreeHexReplicated1Table = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1055), )
if mibBuilder.loadTexts: mscExampleHexProvFreeHexReplicated1Table.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleHexProvFreeHexReplicated1Table.setDescription('')
mscExampleHexProvFreeHexReplicated1Entry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1055, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleHexIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleHexProvFreeHexReplicated1Index"))
if mibBuilder.loadTexts: mscExampleHexProvFreeHexReplicated1Entry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleHexProvFreeHexReplicated1Entry.setDescription('An entry in the mscExampleHexProvFreeHexReplicated1Table.')
mscExampleHexProvFreeHexReplicated1Index = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1055, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(ValueRangeConstraint(0, 3), ValueRangeConstraint(5, 9), )))
if mibBuilder.loadTexts: mscExampleHexProvFreeHexReplicated1Index.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleHexProvFreeHexReplicated1Index.setDescription('This variable represents the index for the mscExampleHexProvFreeHexReplicated1Table.')
mscExampleHexProvFreeHexReplicated1Value = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1055, 1, 2), Hex().subtype(subtypeSpec=ConstraintsUnion(ValueRangeConstraint(0, 32), ValueRangeConstraint(80, 256), ))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleHexProvFreeHexReplicated1Value.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleHexProvFreeHexReplicated1Value.setDescription('This variable represents an individual value for the mscExampleHexProvFreeHexReplicated1Table.')
mscExampleHexProvFreeHexReplicated1RowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1055, 1, 3), RowStatus()).setMaxAccess("writeonly")
if mibBuilder.loadTexts: mscExampleHexProvFreeHexReplicated1RowStatus.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleHexProvFreeHexReplicated1RowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleHexProvFreeHexReplicated1Table.')
mscExampleHexProvFreeHexListTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1056), )
if mibBuilder.loadTexts: mscExampleHexProvFreeHexListTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleHexProvFreeHexListTable.setDescription('')
mscExampleHexProvFreeHexListEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1056, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleHexIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleHexProvFreeHexListValue"))
if mibBuilder.loadTexts: mscExampleHexProvFreeHexListEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleHexProvFreeHexListEntry.setDescription('An entry in the mscExampleHexProvFreeHexListTable.')
mscExampleHexProvFreeHexListValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1056, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 4096))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleHexProvFreeHexListValue.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleHexProvFreeHexListValue.setDescription('This variable represents both the value and the index for the mscExampleHexProvFreeHexListTable.')
mscExampleHexProvFreeHexListRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1056, 1, 2), RowStatus()).setMaxAccess("writeonly")
if mibBuilder.loadTexts: mscExampleHexProvFreeHexListRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleHexProvFreeHexListRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleHexProvFreeHexListTable.')
mscExampleHexProvFreeHexList1Table = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1057), )
if mibBuilder.loadTexts: mscExampleHexProvFreeHexList1Table.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleHexProvFreeHexList1Table.setDescription('')
mscExampleHexProvFreeHexList1Entry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1057, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleHexIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleHexProvFreeHexList1Value"))
if mibBuilder.loadTexts: mscExampleHexProvFreeHexList1Entry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleHexProvFreeHexList1Entry.setDescription('An entry in the mscExampleHexProvFreeHexList1Table.')
mscExampleHexProvFreeHexList1Value = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1057, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 4096))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleHexProvFreeHexList1Value.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleHexProvFreeHexList1Value.setDescription('This variable represents both the value and the index for the mscExampleHexProvFreeHexList1Table.')
mscExampleHexProvFreeHexList1RowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1057, 1, 2), RowStatus()).setMaxAccess("writeonly")
if mibBuilder.loadTexts: mscExampleHexProvFreeHexList1RowStatus.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleHexProvFreeHexList1RowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleHexProvFreeHexList1Table.')
mscExampleIpAddress = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4))
mscExampleIpAddressRowStatusTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1), )
if mibBuilder.loadTexts: mscExampleIpAddressRowStatusTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleIpAddressRowStatusTable.setDescription('This entry controls the addition and deletion of mscExampleIpAddress components.')
mscExampleIpAddressRowStatusEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIpAddressIndex"))
if mibBuilder.loadTexts: mscExampleIpAddressRowStatusEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleIpAddressRowStatusEntry.setDescription('A single entry in the table represents a single mscExampleIpAddress component.')
mscExampleIpAddressRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1, 1, 1), RowStatus()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleIpAddressRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleIpAddressRowStatus.setDescription('This variable is used as the basis for SNMP naming of mscExampleIpAddress components. These components can be added and deleted.')
mscExampleIpAddressComponentName = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1, 1, 2), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mscExampleIpAddressComponentName.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleIpAddressComponentName.setDescription("This variable provides the component's string name for use with the ASCII Console Interface")
mscExampleIpAddressStorageType = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1, 1, 4), StorageType()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mscExampleIpAddressStorageType.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleIpAddressStorageType.setDescription('This variable represents the storage type value for the mscExampleIpAddress tables.')
mscExampleIpAddressIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1, 1, 10), IpAddress())
if mibBuilder.loadTexts: mscExampleIpAddressIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleIpAddressIndex.setDescription('This variable represents the index for the mscExampleIpAddress tables.')
mscExampleIpAddressOperationalTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 10), )
if mibBuilder.loadTexts: mscExampleIpAddressOperationalTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleIpAddressOperationalTable.setDescription('')
mscExampleIpAddressOperationalEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 10, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIpAddressIndex"))
if mibBuilder.loadTexts: mscExampleIpAddressOperationalEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleIpAddressOperationalEntry.setDescription('An entry in the mscExampleIpAddressOperationalTable.')
mscExampleIpAddressOperStructIpAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 10, 1, 1), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleIpAddressOperStructIpAddress.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleIpAddressOperStructIpAddress.setDescription('')
mscExampleIpAddressOperFreeIpAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 10, 1, 2), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleIpAddressOperFreeIpAddress.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleIpAddressOperFreeIpAddress.setDescription('')
mscExampleIpAddressProvisionalTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 11), )
if mibBuilder.loadTexts: mscExampleIpAddressProvisionalTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleIpAddressProvisionalTable.setDescription('')
mscExampleIpAddressProvisionalEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 11, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIpAddressIndex"))
if mibBuilder.loadTexts: mscExampleIpAddressProvisionalEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleIpAddressProvisionalEntry.setDescription('An entry in the mscExampleIpAddressProvisionalTable.')
mscExampleIpAddressProvEnumSub = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 11, 1, 1), Link()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleIpAddressProvEnumSub.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleIpAddressProvEnumSub.setDescription('')
mscExampleIpAddressProvStructIpAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 11, 1, 2), IpAddress().clone(hexValue="7f000100")).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleIpAddressProvStructIpAddress.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleIpAddressProvStructIpAddress.setDescription('')
mscExampleIpAddressProvFreeIpAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 11, 1, 3), IpAddress().clone(hexValue="7f7f7f7f")).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddress.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddress.setDescription('')
mscExampleIpAddressProvFreeIpAddress1 = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 11, 1, 4), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddress1.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddress1.setDescription('')
mscExampleIpAddressOperStructIpAddressVectorTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1058), )
if mibBuilder.loadTexts: mscExampleIpAddressOperStructIpAddressVectorTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleIpAddressOperStructIpAddressVectorTable.setDescription('')
mscExampleIpAddressOperStructIpAddressVectorEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1058, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIpAddressIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIpAddressOperStructIpAddressVectorIndex"))
if mibBuilder.loadTexts: mscExampleIpAddressOperStructIpAddressVectorEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleIpAddressOperStructIpAddressVectorEntry.setDescription('An entry in the mscExampleIpAddressOperStructIpAddressVectorTable.')
mscExampleIpAddressOperStructIpAddressVectorIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1058, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 9)))
if mibBuilder.loadTexts: mscExampleIpAddressOperStructIpAddressVectorIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleIpAddressOperStructIpAddressVectorIndex.setDescription('This variable represents the mscExampleIpAddressOperStructIpAddressVectorTable specific index for the mscExampleIpAddressOperStructIpAddressVectorTable.')
mscExampleIpAddressOperStructIpAddressVectorValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1058, 1, 2), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleIpAddressOperStructIpAddressVectorValue.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleIpAddressOperStructIpAddressVectorValue.setDescription('This variable represents an individual value for the mscExampleIpAddressOperStructIpAddressVectorTable.')
mscExampleIpAddressOperStructIpAddressArrayTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1059), )
if mibBuilder.loadTexts: mscExampleIpAddressOperStructIpAddressArrayTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleIpAddressOperStructIpAddressArrayTable.setDescription('')
mscExampleIpAddressOperStructIpAddressArrayEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1059, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIpAddressIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIpAddressOperStructIpAddressArrayRowIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIpAddressOperStructIpAddressArrayColumnIndex"))
if mibBuilder.loadTexts: mscExampleIpAddressOperStructIpAddressArrayEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleIpAddressOperStructIpAddressArrayEntry.setDescription('An entry in the mscExampleIpAddressOperStructIpAddressArrayTable.')
mscExampleIpAddressOperStructIpAddressArrayRowIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1059, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 2)))
if mibBuilder.loadTexts: mscExampleIpAddressOperStructIpAddressArrayRowIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleIpAddressOperStructIpAddressArrayRowIndex.setDescription('This variable represents the next to last index for the mscExampleIpAddressOperStructIpAddressArrayTable.')
mscExampleIpAddressOperStructIpAddressArrayColumnIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1059, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 3)))
if mibBuilder.loadTexts: mscExampleIpAddressOperStructIpAddressArrayColumnIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleIpAddressOperStructIpAddressArrayColumnIndex.setDescription('This variable represents the final index for the mscExampleIpAddressOperStructIpAddressArrayTable.')
mscExampleIpAddressOperStructIpAddressArrayValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1059, 1, 3), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleIpAddressOperStructIpAddressArrayValue.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleIpAddressOperStructIpAddressArrayValue.setDescription('This variable represents an individual value for the mscExampleIpAddressOperStructIpAddressArrayTable.')
mscExampleIpAddressOperFreeIpAddressVectorTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1060), )
if mibBuilder.loadTexts: mscExampleIpAddressOperFreeIpAddressVectorTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleIpAddressOperFreeIpAddressVectorTable.setDescription('')
mscExampleIpAddressOperFreeIpAddressVectorEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1060, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIpAddressIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIpAddressOperFreeIpAddressVectorIndex"))
if mibBuilder.loadTexts: mscExampleIpAddressOperFreeIpAddressVectorEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleIpAddressOperFreeIpAddressVectorEntry.setDescription('An entry in the mscExampleIpAddressOperFreeIpAddressVectorTable.')
mscExampleIpAddressOperFreeIpAddressVectorIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1060, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 9)))
if mibBuilder.loadTexts: mscExampleIpAddressOperFreeIpAddressVectorIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleIpAddressOperFreeIpAddressVectorIndex.setDescription('This variable represents the mscExampleIpAddressOperFreeIpAddressVectorTable specific index for the mscExampleIpAddressOperFreeIpAddressVectorTable.')
mscExampleIpAddressOperFreeIpAddressVectorValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1060, 1, 2), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleIpAddressOperFreeIpAddressVectorValue.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleIpAddressOperFreeIpAddressVectorValue.setDescription('This variable represents an individual value for the mscExampleIpAddressOperFreeIpAddressVectorTable.')
mscExampleIpAddressOperFreeIpAddressArrayTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1061), )
if mibBuilder.loadTexts: mscExampleIpAddressOperFreeIpAddressArrayTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleIpAddressOperFreeIpAddressArrayTable.setDescription('')
mscExampleIpAddressOperFreeIpAddressArrayEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1061, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIpAddressIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIpAddressOperFreeIpAddressArrayRowIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIpAddressOperFreeIpAddressArrayColumnIndex"))
if mibBuilder.loadTexts: mscExampleIpAddressOperFreeIpAddressArrayEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleIpAddressOperFreeIpAddressArrayEntry.setDescription('An entry in the mscExampleIpAddressOperFreeIpAddressArrayTable.')
mscExampleIpAddressOperFreeIpAddressArrayRowIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1061, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 2)))
if mibBuilder.loadTexts: mscExampleIpAddressOperFreeIpAddressArrayRowIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleIpAddressOperFreeIpAddressArrayRowIndex.setDescription('This variable represents the next to last index for the mscExampleIpAddressOperFreeIpAddressArrayTable.')
mscExampleIpAddressOperFreeIpAddressArrayColumnIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1061, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 3)))
if mibBuilder.loadTexts: mscExampleIpAddressOperFreeIpAddressArrayColumnIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleIpAddressOperFreeIpAddressArrayColumnIndex.setDescription('This variable represents the final index for the mscExampleIpAddressOperFreeIpAddressArrayTable.')
mscExampleIpAddressOperFreeIpAddressArrayValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1061, 1, 3), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleIpAddressOperFreeIpAddressArrayValue.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleIpAddressOperFreeIpAddressArrayValue.setDescription('This variable represents an individual value for the mscExampleIpAddressOperFreeIpAddressArrayTable.')
mscExampleIpAddressOperFreeIpAddressReplicatedTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1062), )
if mibBuilder.loadTexts: mscExampleIpAddressOperFreeIpAddressReplicatedTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleIpAddressOperFreeIpAddressReplicatedTable.setDescription('')
mscExampleIpAddressOperFreeIpAddressReplicatedEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1062, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIpAddressIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIpAddressOperFreeIpAddressReplicatedIndex"))
if mibBuilder.loadTexts: mscExampleIpAddressOperFreeIpAddressReplicatedEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleIpAddressOperFreeIpAddressReplicatedEntry.setDescription('An entry in the mscExampleIpAddressOperFreeIpAddressReplicatedTable.')
mscExampleIpAddressOperFreeIpAddressReplicatedIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1062, 1, 1), IpAddress())
if mibBuilder.loadTexts: mscExampleIpAddressOperFreeIpAddressReplicatedIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleIpAddressOperFreeIpAddressReplicatedIndex.setDescription('This variable represents the index for the mscExampleIpAddressOperFreeIpAddressReplicatedTable.')
mscExampleIpAddressOperFreeIpAddressReplicatedValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1062, 1, 2), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleIpAddressOperFreeIpAddressReplicatedValue.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleIpAddressOperFreeIpAddressReplicatedValue.setDescription('This variable represents an individual value for the mscExampleIpAddressOperFreeIpAddressReplicatedTable.')
mscExampleIpAddressOperFreeIpAddressReplicatedRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1062, 1, 3), RowStatus()).setMaxAccess("writeonly")
if mibBuilder.loadTexts: mscExampleIpAddressOperFreeIpAddressReplicatedRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleIpAddressOperFreeIpAddressReplicatedRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleIpAddressOperFreeIpAddressReplicatedTable.')
mscExampleIpAddressOperFreeIpAddressListTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1063), )
if mibBuilder.loadTexts: mscExampleIpAddressOperFreeIpAddressListTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleIpAddressOperFreeIpAddressListTable.setDescription('')
mscExampleIpAddressOperFreeIpAddressListEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1063, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIpAddressIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIpAddressOperFreeIpAddressListValue"))
if mibBuilder.loadTexts: mscExampleIpAddressOperFreeIpAddressListEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleIpAddressOperFreeIpAddressListEntry.setDescription('An entry in the mscExampleIpAddressOperFreeIpAddressListTable.')
mscExampleIpAddressOperFreeIpAddressListValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1063, 1, 1), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleIpAddressOperFreeIpAddressListValue.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleIpAddressOperFreeIpAddressListValue.setDescription('This variable represents both the value and the index for the mscExampleIpAddressOperFreeIpAddressListTable.')
mscExampleIpAddressOperFreeIpAddressListRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1063, 1, 2), RowStatus()).setMaxAccess("writeonly")
if mibBuilder.loadTexts: mscExampleIpAddressOperFreeIpAddressListRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleIpAddressOperFreeIpAddressListRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleIpAddressOperFreeIpAddressListTable.')
mscExampleIpAddressProvStructIpAddressVectorTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1064), )
if mibBuilder.loadTexts: mscExampleIpAddressProvStructIpAddressVectorTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleIpAddressProvStructIpAddressVectorTable.setDescription('')
mscExampleIpAddressProvStructIpAddressVectorEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1064, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIpAddressIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIpAddressProvStructIpAddressVectorIndex"))
if mibBuilder.loadTexts: mscExampleIpAddressProvStructIpAddressVectorEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleIpAddressProvStructIpAddressVectorEntry.setDescription('An entry in the mscExampleIpAddressProvStructIpAddressVectorTable.')
mscExampleIpAddressProvStructIpAddressVectorIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1064, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 9)))
if mibBuilder.loadTexts: mscExampleIpAddressProvStructIpAddressVectorIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleIpAddressProvStructIpAddressVectorIndex.setDescription('This variable represents the mscExampleIpAddressProvStructIpAddressVectorTable specific index for the mscExampleIpAddressProvStructIpAddressVectorTable.')
mscExampleIpAddressProvStructIpAddressVectorValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1064, 1, 2), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleIpAddressProvStructIpAddressVectorValue.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleIpAddressProvStructIpAddressVectorValue.setDescription('This variable represents an individual value for the mscExampleIpAddressProvStructIpAddressVectorTable.')
mscExampleIpAddressProvStructIpAddressArrayTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1065), )
if mibBuilder.loadTexts: mscExampleIpAddressProvStructIpAddressArrayTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleIpAddressProvStructIpAddressArrayTable.setDescription('')
mscExampleIpAddressProvStructIpAddressArrayEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1065, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIpAddressIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIpAddressProvStructIpAddressArrayRowIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIpAddressProvStructIpAddressArrayColumnIndex"))
if mibBuilder.loadTexts: mscExampleIpAddressProvStructIpAddressArrayEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleIpAddressProvStructIpAddressArrayEntry.setDescription('An entry in the mscExampleIpAddressProvStructIpAddressArrayTable.')
mscExampleIpAddressProvStructIpAddressArrayRowIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1065, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 2)))
if mibBuilder.loadTexts: mscExampleIpAddressProvStructIpAddressArrayRowIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleIpAddressProvStructIpAddressArrayRowIndex.setDescription('This variable represents the next to last index for the mscExampleIpAddressProvStructIpAddressArrayTable.')
mscExampleIpAddressProvStructIpAddressArrayColumnIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1065, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 3)))
if mibBuilder.loadTexts: mscExampleIpAddressProvStructIpAddressArrayColumnIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleIpAddressProvStructIpAddressArrayColumnIndex.setDescription('This variable represents the final index for the mscExampleIpAddressProvStructIpAddressArrayTable.')
mscExampleIpAddressProvStructIpAddressArrayValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1065, 1, 3), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleIpAddressProvStructIpAddressArrayValue.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleIpAddressProvStructIpAddressArrayValue.setDescription('This variable represents an individual value for the mscExampleIpAddressProvStructIpAddressArrayTable.')
mscExampleIpAddressProvFreeIpAddressVectorTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1066), )
if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressVectorTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressVectorTable.setDescription('')
mscExampleIpAddressProvFreeIpAddressVectorEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1066, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIpAddressIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIpAddressProvFreeIpAddressVectorIndex"))
if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressVectorEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressVectorEntry.setDescription('An entry in the mscExampleIpAddressProvFreeIpAddressVectorTable.')
mscExampleIpAddressProvFreeIpAddressVectorIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1066, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 9)))
if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressVectorIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressVectorIndex.setDescription('This variable represents the mscExampleIpAddressProvFreeIpAddressVectorTable specific index for the mscExampleIpAddressProvFreeIpAddressVectorTable.')
mscExampleIpAddressProvFreeIpAddressVectorValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1066, 1, 2), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressVectorValue.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressVectorValue.setDescription('This variable represents an individual value for the mscExampleIpAddressProvFreeIpAddressVectorTable.')
mscExampleIpAddressProvFreeIpAddressVector1Table = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1067), )
if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressVector1Table.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressVector1Table.setDescription('')
mscExampleIpAddressProvFreeIpAddressVector1Entry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1067, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIpAddressIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIpAddressProvFreeIpAddressVector1Index"))
if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressVector1Entry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressVector1Entry.setDescription('An entry in the mscExampleIpAddressProvFreeIpAddressVector1Table.')
mscExampleIpAddressProvFreeIpAddressVector1Index = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1067, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 3)))
if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressVector1Index.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressVector1Index.setDescription('This variable represents the mscExampleIpAddressProvFreeIpAddressVector1Table specific index for the mscExampleIpAddressProvFreeIpAddressVector1Table.')
mscExampleIpAddressProvFreeIpAddressVector1Value = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1067, 1, 2), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressVector1Value.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressVector1Value.setDescription('This variable represents an individual value for the mscExampleIpAddressProvFreeIpAddressVector1Table.')
mscExampleIpAddressProvFreeIpAddressArrayTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1068), )
if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressArrayTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressArrayTable.setDescription('')
mscExampleIpAddressProvFreeIpAddressArrayEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1068, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIpAddressIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIpAddressProvFreeIpAddressArrayRowIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIpAddressProvFreeIpAddressArrayColumnIndex"))
if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressArrayEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressArrayEntry.setDescription('An entry in the mscExampleIpAddressProvFreeIpAddressArrayTable.')
mscExampleIpAddressProvFreeIpAddressArrayRowIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1068, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 2)))
if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressArrayRowIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressArrayRowIndex.setDescription('This variable represents the next to last index for the mscExampleIpAddressProvFreeIpAddressArrayTable.')
mscExampleIpAddressProvFreeIpAddressArrayColumnIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1068, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 3)))
if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressArrayColumnIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressArrayColumnIndex.setDescription('This variable represents the final index for the mscExampleIpAddressProvFreeIpAddressArrayTable.')
mscExampleIpAddressProvFreeIpAddressArrayValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1068, 1, 3), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressArrayValue.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressArrayValue.setDescription('This variable represents an individual value for the mscExampleIpAddressProvFreeIpAddressArrayTable.')
mscExampleIpAddressProvFreeIpAddressArray1Table = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1069), )
if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressArray1Table.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressArray1Table.setDescription('')
mscExampleIpAddressProvFreeIpAddressArray1Entry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1069, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIpAddressIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIpAddressProvFreeIpAddressArray1RowIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIpAddressProvFreeIpAddressArray1ColumnIndex"))
if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressArray1Entry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressArray1Entry.setDescription('An entry in the mscExampleIpAddressProvFreeIpAddressArray1Table.')
mscExampleIpAddressProvFreeIpAddressArray1RowIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1069, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 3)))
if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressArray1RowIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressArray1RowIndex.setDescription('This variable represents the next to last index for the mscExampleIpAddressProvFreeIpAddressArray1Table.')
mscExampleIpAddressProvFreeIpAddressArray1ColumnIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1069, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 3)))
if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressArray1ColumnIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressArray1ColumnIndex.setDescription('This variable represents the final index for the mscExampleIpAddressProvFreeIpAddressArray1Table.')
mscExampleIpAddressProvFreeIpAddressArray1Value = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1069, 1, 3), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressArray1Value.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressArray1Value.setDescription('This variable represents an individual value for the mscExampleIpAddressProvFreeIpAddressArray1Table.')
mscExampleIpAddressProvFreeIpAddressReplicatedTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1070), )
if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressReplicatedTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressReplicatedTable.setDescription('')
mscExampleIpAddressProvFreeIpAddressReplicatedEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1070, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIpAddressIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIpAddressProvFreeIpAddressReplicatedIndex"))
if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressReplicatedEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressReplicatedEntry.setDescription('An entry in the mscExampleIpAddressProvFreeIpAddressReplicatedTable.')
mscExampleIpAddressProvFreeIpAddressReplicatedIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1070, 1, 1), IpAddress())
if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressReplicatedIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressReplicatedIndex.setDescription('This variable represents the index for the mscExampleIpAddressProvFreeIpAddressReplicatedTable.')
mscExampleIpAddressProvFreeIpAddressReplicatedValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1070, 1, 2), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressReplicatedValue.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressReplicatedValue.setDescription('This variable represents an individual value for the mscExampleIpAddressProvFreeIpAddressReplicatedTable.')
mscExampleIpAddressProvFreeIpAddressReplicatedRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1070, 1, 3), RowStatus()).setMaxAccess("writeonly")
if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressReplicatedRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressReplicatedRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleIpAddressProvFreeIpAddressReplicatedTable.')
mscExampleIpAddressProvFreeIpAddressListTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1071), )
if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressListTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressListTable.setDescription('')
mscExampleIpAddressProvFreeIpAddressListEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1071, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIpAddressIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIpAddressProvFreeIpAddressListValue"))
if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressListEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressListEntry.setDescription('An entry in the mscExampleIpAddressProvFreeIpAddressListTable.')
mscExampleIpAddressProvFreeIpAddressListValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1071, 1, 1), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressListValue.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressListValue.setDescription('This variable represents both the value and the index for the mscExampleIpAddressProvFreeIpAddressListTable.')
mscExampleIpAddressProvFreeIpAddressListRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1071, 1, 2), RowStatus()).setMaxAccess("writeonly")
if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressListRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressListRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleIpAddressProvFreeIpAddressListTable.')
mscExampleIpAddressProvFreeIpAddressList1Table = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1072), )
if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressList1Table.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressList1Table.setDescription('')
mscExampleIpAddressProvFreeIpAddressList1Entry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1072, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIpAddressIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIpAddressProvFreeIpAddressList1Value"))
if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressList1Entry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressList1Entry.setDescription('An entry in the mscExampleIpAddressProvFreeIpAddressList1Table.')
mscExampleIpAddressProvFreeIpAddressList1Value = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1072, 1, 1), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressList1Value.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressList1Value.setDescription('This variable represents both the value and the index for the mscExampleIpAddressProvFreeIpAddressList1Table.')
mscExampleIpAddressProvFreeIpAddressList1RowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1072, 1, 2), RowStatus()).setMaxAccess("writeonly")
if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressList1RowStatus.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressList1RowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleIpAddressProvFreeIpAddressList1Table.')
mscExampleString = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5))
mscExampleStringRowStatusTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1), )
if mibBuilder.loadTexts: mscExampleStringRowStatusTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleStringRowStatusTable.setDescription('This entry controls the addition and deletion of mscExampleString components.')
mscExampleStringRowStatusEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleStringIndex"))
if mibBuilder.loadTexts: mscExampleStringRowStatusEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleStringRowStatusEntry.setDescription('A single entry in the table represents a single mscExampleString component.')
mscExampleStringRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1, 1, 1), RowStatus()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleStringRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleStringRowStatus.setDescription('This variable is used as the basis for SNMP naming of mscExampleString components. These components can be added and deleted.')
mscExampleStringComponentName = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1, 1, 2), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mscExampleStringComponentName.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleStringComponentName.setDescription("This variable provides the component's string name for use with the ASCII Console Interface")
mscExampleStringStorageType = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1, 1, 4), StorageType()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mscExampleStringStorageType.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleStringStorageType.setDescription('This variable represents the storage type value for the mscExampleString tables.')
mscExampleStringIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1, 1, 10), AsciiStringIndex().subtype(subtypeSpec=ValueSizeConstraint(1, 10)))
if mibBuilder.loadTexts: mscExampleStringIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleStringIndex.setDescription('This variable represents the index for the mscExampleString tables.')
mscExampleStringOperationalTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 10), )
if mibBuilder.loadTexts: mscExampleStringOperationalTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleStringOperationalTable.setDescription('')
mscExampleStringOperationalEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 10, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleStringIndex"))
if mibBuilder.loadTexts: mscExampleStringOperationalEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleStringOperationalEntry.setDescription('An entry in the mscExampleStringOperationalTable.')
mscExampleStringOperStructAsciiOnly = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 10, 1, 1), AsciiString().subtype(subtypeSpec=ValueSizeConstraint(0, 5))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleStringOperStructAsciiOnly.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleStringOperStructAsciiOnly.setDescription('')
mscExampleStringOperStructHexOnly = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 10, 1, 2), HexString().subtype(subtypeSpec=ValueSizeConstraint(1, 10))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleStringOperStructHexOnly.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleStringOperStructHexOnly.setDescription('')
mscExampleStringOperFreeAsciiOnly = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 10, 1, 3), AsciiString().subtype(subtypeSpec=ValueSizeConstraint(0, 5))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleStringOperFreeAsciiOnly.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleStringOperFreeAsciiOnly.setDescription('')
mscExampleStringOperFreeHexOnly = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 10, 1, 4), HexString().subtype(subtypeSpec=ValueSizeConstraint(1, 10))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleStringOperFreeHexOnly.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleStringOperFreeHexOnly.setDescription('')
mscExampleStringProvisionalTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 11), )
if mibBuilder.loadTexts: mscExampleStringProvisionalTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleStringProvisionalTable.setDescription('')
mscExampleStringProvisionalEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 11, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleStringIndex"))
if mibBuilder.loadTexts: mscExampleStringProvisionalEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleStringProvisionalEntry.setDescription('An entry in the mscExampleStringProvisionalTable.')
mscExampleStringProvStringSub = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 11, 1, 1), Link()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleStringProvStringSub.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleStringProvStringSub.setDescription('')
mscExampleStringProvStructAsciiOnly = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 11, 1, 2), AsciiString().subtype(subtypeSpec=ValueSizeConstraint(2, 4)).clone(hexValue="596f2e")).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleStringProvStructAsciiOnly.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleStringProvStructAsciiOnly.setDescription('')
mscExampleStringProvStructHexOnly = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 11, 1, 3), HexString().subtype(subtypeSpec=ValueSizeConstraint(1, 10))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleStringProvStructHexOnly.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleStringProvStructHexOnly.setDescription('')
mscExampleStringProvFreeAsciiOnly = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 11, 1, 4), AsciiString().subtype(subtypeSpec=ValueSizeConstraint(0, 59)).clone(hexValue="46726565205374616e64696e6720537472696e6720212121")).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleStringProvFreeAsciiOnly.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleStringProvFreeAsciiOnly.setDescription('')
mscExampleStringProvFreeAsciiOnly1 = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 11, 1, 5), AsciiString().subtype(subtypeSpec=ValueSizeConstraint(0, 5))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleStringProvFreeAsciiOnly1.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleStringProvFreeAsciiOnly1.setDescription('')
mscExampleStringProvFreeHexOnly = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 11, 1, 6), HexString().subtype(subtypeSpec=ValueSizeConstraint(1, 10)).clone(hexValue="0102030405060708090A")).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleStringProvFreeHexOnly.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleStringProvFreeHexOnly.setDescription('')
mscExampleStringProvFreeHexOnly1 = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 11, 1, 7), HexString().subtype(subtypeSpec=ValueSizeConstraint(0, 10))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleStringProvFreeHexOnly1.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleStringProvFreeHexOnly1.setDescription('')
mscExampleStringOperStructStrVectorTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1073), )
if mibBuilder.loadTexts: mscExampleStringOperStructStrVectorTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleStringOperStructStrVectorTable.setDescription('')
mscExampleStringOperStructStrVectorEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1073, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleStringIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleStringOperStructStrVectorIndex"))
if mibBuilder.loadTexts: mscExampleStringOperStructStrVectorEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleStringOperStructStrVectorEntry.setDescription('An entry in the mscExampleStringOperStructStrVectorTable.')
mscExampleStringOperStructStrVectorIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1073, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 9)))
if mibBuilder.loadTexts: mscExampleStringOperStructStrVectorIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleStringOperStructStrVectorIndex.setDescription('This variable represents the mscExampleStringOperStructStrVectorTable specific index for the mscExampleStringOperStructStrVectorTable.')
mscExampleStringOperStructStrVectorValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1073, 1, 2), AsciiString().subtype(subtypeSpec=ValueSizeConstraint(0, 5))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleStringOperStructStrVectorValue.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleStringOperStructStrVectorValue.setDescription('This variable represents an individual value for the mscExampleStringOperStructStrVectorTable.')
mscExampleStringOperStructStrArrayTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1074), )
if mibBuilder.loadTexts: mscExampleStringOperStructStrArrayTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleStringOperStructStrArrayTable.setDescription('')
mscExampleStringOperStructStrArrayEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1074, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleStringIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleStringOperStructStrArrayRowIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleStringOperStructStrArrayColumnIndex"))
if mibBuilder.loadTexts: mscExampleStringOperStructStrArrayEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleStringOperStructStrArrayEntry.setDescription('An entry in the mscExampleStringOperStructStrArrayTable.')
mscExampleStringOperStructStrArrayRowIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1074, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 2)))
if mibBuilder.loadTexts: mscExampleStringOperStructStrArrayRowIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleStringOperStructStrArrayRowIndex.setDescription('This variable represents the next to last index for the mscExampleStringOperStructStrArrayTable.')
mscExampleStringOperStructStrArrayColumnIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1074, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 3)))
if mibBuilder.loadTexts: mscExampleStringOperStructStrArrayColumnIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleStringOperStructStrArrayColumnIndex.setDescription('This variable represents the final index for the mscExampleStringOperStructStrArrayTable.')
mscExampleStringOperStructStrArrayValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1074, 1, 3), AsciiString().subtype(subtypeSpec=ValueSizeConstraint(0, 5))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleStringOperStructStrArrayValue.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleStringOperStructStrArrayValue.setDescription('This variable represents an individual value for the mscExampleStringOperStructStrArrayTable.')
mscExampleStringOperFreeStrVectorTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1075), )
if mibBuilder.loadTexts: mscExampleStringOperFreeStrVectorTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleStringOperFreeStrVectorTable.setDescription('')
mscExampleStringOperFreeStrVectorEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1075, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleStringIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleStringOperFreeStrVectorIndex"))
if mibBuilder.loadTexts: mscExampleStringOperFreeStrVectorEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleStringOperFreeStrVectorEntry.setDescription('An entry in the mscExampleStringOperFreeStrVectorTable.')
mscExampleStringOperFreeStrVectorIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1075, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 9)))
if mibBuilder.loadTexts: mscExampleStringOperFreeStrVectorIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleStringOperFreeStrVectorIndex.setDescription('This variable represents the mscExampleStringOperFreeStrVectorTable specific index for the mscExampleStringOperFreeStrVectorTable.')
mscExampleStringOperFreeStrVectorValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1075, 1, 2), AsciiString().subtype(subtypeSpec=ValueSizeConstraint(0, 5))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleStringOperFreeStrVectorValue.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleStringOperFreeStrVectorValue.setDescription('This variable represents an individual value for the mscExampleStringOperFreeStrVectorTable.')
mscExampleStringOperFreeStrArrayTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1076), )
if mibBuilder.loadTexts: mscExampleStringOperFreeStrArrayTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleStringOperFreeStrArrayTable.setDescription('')
mscExampleStringOperFreeStrArrayEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1076, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleStringIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleStringOperFreeStrArrayRowIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleStringOperFreeStrArrayColumnIndex"))
if mibBuilder.loadTexts: mscExampleStringOperFreeStrArrayEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleStringOperFreeStrArrayEntry.setDescription('An entry in the mscExampleStringOperFreeStrArrayTable.')
mscExampleStringOperFreeStrArrayRowIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1076, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 2)))
if mibBuilder.loadTexts: mscExampleStringOperFreeStrArrayRowIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleStringOperFreeStrArrayRowIndex.setDescription('This variable represents the next to last index for the mscExampleStringOperFreeStrArrayTable.')
mscExampleStringOperFreeStrArrayColumnIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1076, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 3)))
if mibBuilder.loadTexts: mscExampleStringOperFreeStrArrayColumnIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleStringOperFreeStrArrayColumnIndex.setDescription('This variable represents the final index for the mscExampleStringOperFreeStrArrayTable.')
mscExampleStringOperFreeStrArrayValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1076, 1, 3), AsciiString().subtype(subtypeSpec=ValueSizeConstraint(0, 5))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleStringOperFreeStrArrayValue.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleStringOperFreeStrArrayValue.setDescription('This variable represents an individual value for the mscExampleStringOperFreeStrArrayTable.')
mscExampleStringOperFreeStrReplicatedTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1077), )
if mibBuilder.loadTexts: mscExampleStringOperFreeStrReplicatedTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleStringOperFreeStrReplicatedTable.setDescription('')
mscExampleStringOperFreeStrReplicatedEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1077, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleStringIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleStringOperFreeStrReplicatedIndex"))
if mibBuilder.loadTexts: mscExampleStringOperFreeStrReplicatedEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleStringOperFreeStrReplicatedEntry.setDescription('An entry in the mscExampleStringOperFreeStrReplicatedTable.')
mscExampleStringOperFreeStrReplicatedIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1077, 1, 1), AsciiString().subtype(subtypeSpec=ValueSizeConstraint(0, 5)))
if mibBuilder.loadTexts: mscExampleStringOperFreeStrReplicatedIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleStringOperFreeStrReplicatedIndex.setDescription('This variable represents the index for the mscExampleStringOperFreeStrReplicatedTable.')
mscExampleStringOperFreeStrReplicatedValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1077, 1, 2), AsciiString().subtype(subtypeSpec=ValueSizeConstraint(0, 5))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleStringOperFreeStrReplicatedValue.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleStringOperFreeStrReplicatedValue.setDescription('This variable represents an individual value for the mscExampleStringOperFreeStrReplicatedTable.')
mscExampleStringOperFreeStrReplicatedRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1077, 1, 3), RowStatus()).setMaxAccess("writeonly")
if mibBuilder.loadTexts: mscExampleStringOperFreeStrReplicatedRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleStringOperFreeStrReplicatedRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleStringOperFreeStrReplicatedTable.')
mscExampleStringOperFreeStrListTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1078), )
if mibBuilder.loadTexts: mscExampleStringOperFreeStrListTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleStringOperFreeStrListTable.setDescription('')
mscExampleStringOperFreeStrListEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1078, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleStringIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleStringOperFreeStrListValue"))
if mibBuilder.loadTexts: mscExampleStringOperFreeStrListEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleStringOperFreeStrListEntry.setDescription('An entry in the mscExampleStringOperFreeStrListTable.')
mscExampleStringOperFreeStrListValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1078, 1, 1), AsciiString().subtype(subtypeSpec=ValueSizeConstraint(0, 10))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleStringOperFreeStrListValue.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleStringOperFreeStrListValue.setDescription('This variable represents both the value and the index for the mscExampleStringOperFreeStrListTable.')
mscExampleStringOperFreeStrListRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1078, 1, 2), RowStatus()).setMaxAccess("writeonly")
if mibBuilder.loadTexts: mscExampleStringOperFreeStrListRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleStringOperFreeStrListRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleStringOperFreeStrListTable.')
mscExampleStringProvStructStrVectorTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1079), )
if mibBuilder.loadTexts: mscExampleStringProvStructStrVectorTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleStringProvStructStrVectorTable.setDescription('')
mscExampleStringProvStructStrVectorEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1079, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleStringIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleStringProvStructStrVectorIndex"))
if mibBuilder.loadTexts: mscExampleStringProvStructStrVectorEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleStringProvStructStrVectorEntry.setDescription('An entry in the mscExampleStringProvStructStrVectorTable.')
mscExampleStringProvStructStrVectorIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1079, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 9)))
if mibBuilder.loadTexts: mscExampleStringProvStructStrVectorIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleStringProvStructStrVectorIndex.setDescription('This variable represents the mscExampleStringProvStructStrVectorTable specific index for the mscExampleStringProvStructStrVectorTable.')
mscExampleStringProvStructStrVectorValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1079, 1, 2), AsciiString().subtype(subtypeSpec=ValueSizeConstraint(0, 5))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleStringProvStructStrVectorValue.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleStringProvStructStrVectorValue.setDescription('This variable represents an individual value for the mscExampleStringProvStructStrVectorTable.')
mscExampleStringProvStructStrArrayTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1080), )
if mibBuilder.loadTexts: mscExampleStringProvStructStrArrayTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleStringProvStructStrArrayTable.setDescription('')
mscExampleStringProvStructStrArrayEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1080, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleStringIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleStringProvStructStrArrayRowIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleStringProvStructStrArrayColumnIndex"))
if mibBuilder.loadTexts: mscExampleStringProvStructStrArrayEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleStringProvStructStrArrayEntry.setDescription('An entry in the mscExampleStringProvStructStrArrayTable.')
mscExampleStringProvStructStrArrayRowIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1080, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 2)))
if mibBuilder.loadTexts: mscExampleStringProvStructStrArrayRowIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleStringProvStructStrArrayRowIndex.setDescription('This variable represents the next to last index for the mscExampleStringProvStructStrArrayTable.')
mscExampleStringProvStructStrArrayColumnIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1080, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 3)))
if mibBuilder.loadTexts: mscExampleStringProvStructStrArrayColumnIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleStringProvStructStrArrayColumnIndex.setDescription('This variable represents the final index for the mscExampleStringProvStructStrArrayTable.')
mscExampleStringProvStructStrArrayValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1080, 1, 3), AsciiString().subtype(subtypeSpec=ValueSizeConstraint(0, 5))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleStringProvStructStrArrayValue.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleStringProvStructStrArrayValue.setDescription('This variable represents an individual value for the mscExampleStringProvStructStrArrayTable.')
mscExampleStringProvFreeStrVectorTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1081), )
if mibBuilder.loadTexts: mscExampleStringProvFreeStrVectorTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleStringProvFreeStrVectorTable.setDescription('')
mscExampleStringProvFreeStrVectorEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1081, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleStringIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleStringProvFreeStrVectorIndex"))
if mibBuilder.loadTexts: mscExampleStringProvFreeStrVectorEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleStringProvFreeStrVectorEntry.setDescription('An entry in the mscExampleStringProvFreeStrVectorTable.')
mscExampleStringProvFreeStrVectorIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1081, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 9)))
if mibBuilder.loadTexts: mscExampleStringProvFreeStrVectorIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleStringProvFreeStrVectorIndex.setDescription('This variable represents the mscExampleStringProvFreeStrVectorTable specific index for the mscExampleStringProvFreeStrVectorTable.')
mscExampleStringProvFreeStrVectorValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1081, 1, 2), AsciiString().subtype(subtypeSpec=ValueSizeConstraint(0, 5))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleStringProvFreeStrVectorValue.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleStringProvFreeStrVectorValue.setDescription('This variable represents an individual value for the mscExampleStringProvFreeStrVectorTable.')
mscExampleStringProvFreeStrVector1Table = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1082), )
if mibBuilder.loadTexts: mscExampleStringProvFreeStrVector1Table.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleStringProvFreeStrVector1Table.setDescription('')
mscExampleStringProvFreeStrVector1Entry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1082, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleStringIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleStringProvFreeStrVector1Index"))
if mibBuilder.loadTexts: mscExampleStringProvFreeStrVector1Entry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleStringProvFreeStrVector1Entry.setDescription('An entry in the mscExampleStringProvFreeStrVector1Table.')
mscExampleStringProvFreeStrVector1Index = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1082, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 5)))
if mibBuilder.loadTexts: mscExampleStringProvFreeStrVector1Index.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleStringProvFreeStrVector1Index.setDescription('This variable represents the mscExampleStringProvFreeStrVector1Table specific index for the mscExampleStringProvFreeStrVector1Table.')
mscExampleStringProvFreeStrVector1Value = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1082, 1, 2), AsciiString().subtype(subtypeSpec=ValueSizeConstraint(0, 5))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleStringProvFreeStrVector1Value.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleStringProvFreeStrVector1Value.setDescription('This variable represents an individual value for the mscExampleStringProvFreeStrVector1Table.')
mscExampleStringProvFreeStrArrayTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1083), )
if mibBuilder.loadTexts: mscExampleStringProvFreeStrArrayTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleStringProvFreeStrArrayTable.setDescription('')
mscExampleStringProvFreeStrArrayEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1083, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleStringIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleStringProvFreeStrArrayRowIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleStringProvFreeStrArrayColumnIndex"))
if mibBuilder.loadTexts: mscExampleStringProvFreeStrArrayEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleStringProvFreeStrArrayEntry.setDescription('An entry in the mscExampleStringProvFreeStrArrayTable.')
mscExampleStringProvFreeStrArrayRowIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1083, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 2)))
if mibBuilder.loadTexts: mscExampleStringProvFreeStrArrayRowIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleStringProvFreeStrArrayRowIndex.setDescription('This variable represents the next to last index for the mscExampleStringProvFreeStrArrayTable.')
mscExampleStringProvFreeStrArrayColumnIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1083, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 3)))
if mibBuilder.loadTexts: mscExampleStringProvFreeStrArrayColumnIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleStringProvFreeStrArrayColumnIndex.setDescription('This variable represents the final index for the mscExampleStringProvFreeStrArrayTable.')
mscExampleStringProvFreeStrArrayValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1083, 1, 3), AsciiString().subtype(subtypeSpec=ValueSizeConstraint(0, 5))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleStringProvFreeStrArrayValue.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleStringProvFreeStrArrayValue.setDescription('This variable represents an individual value for the mscExampleStringProvFreeStrArrayTable.')
mscExampleStringProvFreeStrArray1Table = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1084), )
if mibBuilder.loadTexts: mscExampleStringProvFreeStrArray1Table.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleStringProvFreeStrArray1Table.setDescription('')
mscExampleStringProvFreeStrArray1Entry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1084, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleStringIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleStringProvFreeStrArray1RowIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleStringProvFreeStrArray1ColumnIndex"))
if mibBuilder.loadTexts: mscExampleStringProvFreeStrArray1Entry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleStringProvFreeStrArray1Entry.setDescription('An entry in the mscExampleStringProvFreeStrArray1Table.')
mscExampleStringProvFreeStrArray1RowIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1084, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 4)))
if mibBuilder.loadTexts: mscExampleStringProvFreeStrArray1RowIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleStringProvFreeStrArray1RowIndex.setDescription('This variable represents the next to last index for the mscExampleStringProvFreeStrArray1Table.')
mscExampleStringProvFreeStrArray1ColumnIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1084, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 3)))
if mibBuilder.loadTexts: mscExampleStringProvFreeStrArray1ColumnIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleStringProvFreeStrArray1ColumnIndex.setDescription('This variable represents the final index for the mscExampleStringProvFreeStrArray1Table.')
mscExampleStringProvFreeStrArray1Value = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1084, 1, 3), AsciiString().subtype(subtypeSpec=ValueSizeConstraint(0, 5))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleStringProvFreeStrArray1Value.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleStringProvFreeStrArray1Value.setDescription('This variable represents an individual value for the mscExampleStringProvFreeStrArray1Table.')
mscExampleStringProvFreeStrReplicatedTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1085), )
if mibBuilder.loadTexts: mscExampleStringProvFreeStrReplicatedTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleStringProvFreeStrReplicatedTable.setDescription('')
mscExampleStringProvFreeStrReplicatedEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1085, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleStringIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleStringProvFreeStrReplicatedIndex"))
if mibBuilder.loadTexts: mscExampleStringProvFreeStrReplicatedEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleStringProvFreeStrReplicatedEntry.setDescription('An entry in the mscExampleStringProvFreeStrReplicatedTable.')
mscExampleStringProvFreeStrReplicatedIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1085, 1, 1), AsciiString().subtype(subtypeSpec=ValueSizeConstraint(0, 5)))
if mibBuilder.loadTexts: mscExampleStringProvFreeStrReplicatedIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleStringProvFreeStrReplicatedIndex.setDescription('This variable represents the index for the mscExampleStringProvFreeStrReplicatedTable.')
mscExampleStringProvFreeStrReplicatedValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1085, 1, 2), AsciiString().subtype(subtypeSpec=ValueSizeConstraint(0, 5))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleStringProvFreeStrReplicatedValue.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleStringProvFreeStrReplicatedValue.setDescription('This variable represents an individual value for the mscExampleStringProvFreeStrReplicatedTable.')
mscExampleStringProvFreeStrReplicatedRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1085, 1, 3), RowStatus()).setMaxAccess("writeonly")
if mibBuilder.loadTexts: mscExampleStringProvFreeStrReplicatedRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleStringProvFreeStrReplicatedRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleStringProvFreeStrReplicatedTable.')
mscExampleStringProvFreeStrListTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1086), )
if mibBuilder.loadTexts: mscExampleStringProvFreeStrListTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleStringProvFreeStrListTable.setDescription('')
mscExampleStringProvFreeStrListEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1086, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleStringIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleStringProvFreeStrListValue"))
if mibBuilder.loadTexts: mscExampleStringProvFreeStrListEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleStringProvFreeStrListEntry.setDescription('An entry in the mscExampleStringProvFreeStrListTable.')
mscExampleStringProvFreeStrListValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1086, 1, 1), AsciiString().subtype(subtypeSpec=ValueSizeConstraint(0, 10))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleStringProvFreeStrListValue.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleStringProvFreeStrListValue.setDescription('This variable represents both the value and the index for the mscExampleStringProvFreeStrListTable.')
mscExampleStringProvFreeStrListRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1086, 1, 2), RowStatus()).setMaxAccess("writeonly")
if mibBuilder.loadTexts: mscExampleStringProvFreeStrListRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleStringProvFreeStrListRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleStringProvFreeStrListTable.')
mscExampleStringProvFreeStrList1Table = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1087), )
if mibBuilder.loadTexts: mscExampleStringProvFreeStrList1Table.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleStringProvFreeStrList1Table.setDescription('')
mscExampleStringProvFreeStrList1Entry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1087, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleStringIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleStringProvFreeStrList1Value"))
if mibBuilder.loadTexts: mscExampleStringProvFreeStrList1Entry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleStringProvFreeStrList1Entry.setDescription('An entry in the mscExampleStringProvFreeStrList1Table.')
mscExampleStringProvFreeStrList1Value = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1087, 1, 1), AsciiString().subtype(subtypeSpec=ValueSizeConstraint(0, 10))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleStringProvFreeStrList1Value.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleStringProvFreeStrList1Value.setDescription('This variable represents both the value and the index for the mscExampleStringProvFreeStrList1Table.')
mscExampleStringProvFreeStrList1RowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1087, 1, 2), RowStatus()).setMaxAccess("writeonly")
if mibBuilder.loadTexts: mscExampleStringProvFreeStrList1RowStatus.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleStringProvFreeStrList1RowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleStringProvFreeStrList1Table.')
mscExampleFixedPt = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6))
mscExampleFixedPtRowStatusTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1), )
if mibBuilder.loadTexts: mscExampleFixedPtRowStatusTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleFixedPtRowStatusTable.setDescription('This entry controls the addition and deletion of mscExampleFixedPt components.')
mscExampleFixedPtRowStatusEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleFixedPtIndex"))
if mibBuilder.loadTexts: mscExampleFixedPtRowStatusEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleFixedPtRowStatusEntry.setDescription('A single entry in the table represents a single mscExampleFixedPt component.')
mscExampleFixedPtRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1, 1, 1), RowStatus()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleFixedPtRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleFixedPtRowStatus.setDescription('This variable is used as the basis for SNMP naming of mscExampleFixedPt components. These components can be added and deleted.')
mscExampleFixedPtComponentName = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1, 1, 2), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mscExampleFixedPtComponentName.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleFixedPtComponentName.setDescription("This variable provides the component's string name for use with the ASCII Console Interface")
mscExampleFixedPtStorageType = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1, 1, 4), StorageType()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mscExampleFixedPtStorageType.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleFixedPtStorageType.setDescription('This variable represents the storage type value for the mscExampleFixedPt tables.')
mscExampleFixedPtIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1, 1, 10), NonReplicated())
if mibBuilder.loadTexts: mscExampleFixedPtIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleFixedPtIndex.setDescription('This variable represents the index for the mscExampleFixedPt tables.')
mscExampleFixedPtOperationalTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 10), )
if mibBuilder.loadTexts: mscExampleFixedPtOperationalTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleFixedPtOperationalTable.setDescription('')
mscExampleFixedPtOperationalEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 10, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleFixedPtIndex"))
if mibBuilder.loadTexts: mscExampleFixedPtOperationalEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleFixedPtOperationalEntry.setDescription('An entry in the mscExampleFixedPtOperationalTable.')
mscExampleFixedPtOperStructFixedPt = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 10, 1, 1), FixedPoint4().subtype(subtypeSpec=ValueRangeConstraint(100, 2553300))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleFixedPtOperStructFixedPt.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleFixedPtOperStructFixedPt.setDescription('')
mscExampleFixedPtOperFreeFixedPt = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 10, 1, 2), FixedPoint2().subtype(subtypeSpec=ConstraintsUnion(ValueRangeConstraint(0, 1099), ValueRangeConstraint(10001, 20000), ))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleFixedPtOperFreeFixedPt.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleFixedPtOperFreeFixedPt.setDescription('')
mscExampleFixedPtOperFreeFixedPtSet = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 10, 1, 3), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleFixedPtOperFreeFixedPtSet.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleFixedPtOperFreeFixedPtSet.setDescription('Description of bits: n0(0) n1(1) n2(2) n3(3) n4(4) n5(5) n6(6) n7(7) n8(8) n9(9) n10(10) n11(11) n12(12) n13(13) n14(14) n15(15) n16(16) n17(17) n18(18) n19(19) n20(20) n21(21) n22(22) n23(23) n24(24) n25(25) n26(26) n27(27) n28(28) n29(29) n30(30)')
mscExampleFixedPtProvisionalTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 11), )
if mibBuilder.loadTexts: mscExampleFixedPtProvisionalTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleFixedPtProvisionalTable.setDescription('')
mscExampleFixedPtProvisionalEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 11, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleFixedPtIndex"))
if mibBuilder.loadTexts: mscExampleFixedPtProvisionalEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleFixedPtProvisionalEntry.setDescription('An entry in the mscExampleFixedPtProvisionalTable.')
mscExampleFixedPtProvFixedPtSubcomponent = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 11, 1, 1), Link()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleFixedPtProvFixedPtSubcomponent.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleFixedPtProvFixedPtSubcomponent.setDescription('')
mscExampleFixedPtProvStructFixedPt = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 11, 1, 2), FixedPoint3().subtype(subtypeSpec=ConstraintsUnion(ValueRangeConstraint(0, 252000), ValueRangeConstraint(253000, 253000), ValueRangeConstraint(254000, 254000), ValueRangeConstraint(255000, 255000), )).clone(253000)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleFixedPtProvStructFixedPt.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleFixedPtProvStructFixedPt.setDescription('VALUES ( 253000 = infinity 254000 = notApplicable 255000 = notMeasured )')
mscExampleFixedPtProvStructFixedPtSet = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 11, 1, 3), OctetString().subtype(subtypeSpec=ValueSizeConstraint(1, 1)).setFixedLength(1).clone(hexValue="c8")).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleFixedPtProvStructFixedPtSet.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleFixedPtProvStructFixedPtSet.setDescription('Description of bits: n0(0) n1(1) n2(2) n3(3) n4(4) n5(5)')
mscExampleFixedPtProvFreeFixedPt = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 11, 1, 4), FixedPoint2().subtype(subtypeSpec=ConstraintsUnion(ValueRangeConstraint(0, 1099), ValueRangeConstraint(10001, 20099), )).clone(10101)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleFixedPtProvFreeFixedPt.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleFixedPtProvFreeFixedPt.setDescription('')
mscExampleFixedPtProvFreeFixedPtSet = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 11, 1, 5), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4).clone(hexValue="05500002")).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleFixedPtProvFreeFixedPtSet.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleFixedPtProvFreeFixedPtSet.setDescription('Description of bits: n0(0) n1(1) n2(2) n3(3) n4(4) n5(5) n6(6) n7(7) n8(8) n9(9) n10(10) n11(11) n12(12) n13(13) n14(14) n15(15) n16(16) n17(17) n18(18) n19(19) n20(20) n21(21) n22(22) n23(23) n24(24) n25(25) n26(26) n27(27) n28(28) n29(29) n30(30)')
mscExampleFixedPtOperStructFixedPtVectorTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1028), )
if mibBuilder.loadTexts: mscExampleFixedPtOperStructFixedPtVectorTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleFixedPtOperStructFixedPtVectorTable.setDescription('')
mscExampleFixedPtOperStructFixedPtVectorEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1028, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleFixedPtIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleFixedPtOperStructFixedPtVectorIndex"))
if mibBuilder.loadTexts: mscExampleFixedPtOperStructFixedPtVectorEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleFixedPtOperStructFixedPtVectorEntry.setDescription('An entry in the mscExampleFixedPtOperStructFixedPtVectorTable.')
mscExampleFixedPtOperStructFixedPtVectorIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1028, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 9)))
if mibBuilder.loadTexts: mscExampleFixedPtOperStructFixedPtVectorIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleFixedPtOperStructFixedPtVectorIndex.setDescription('This variable represents the mscExampleFixedPtOperStructFixedPtVectorTable specific index for the mscExampleFixedPtOperStructFixedPtVectorTable.')
mscExampleFixedPtOperStructFixedPtVectorValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1028, 1, 2), FixedPoint3().subtype(subtypeSpec=ValueRangeConstraint(0, 100100))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleFixedPtOperStructFixedPtVectorValue.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleFixedPtOperStructFixedPtVectorValue.setDescription('This variable represents an individual value for the mscExampleFixedPtOperStructFixedPtVectorTable.')
mscExampleFixedPtOperStructFixedPtArrayTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1029), )
if mibBuilder.loadTexts: mscExampleFixedPtOperStructFixedPtArrayTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleFixedPtOperStructFixedPtArrayTable.setDescription('')
mscExampleFixedPtOperStructFixedPtArrayEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1029, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleFixedPtIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleFixedPtOperStructFixedPtArrayRowIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleFixedPtOperStructFixedPtArrayColumnIndex"))
if mibBuilder.loadTexts: mscExampleFixedPtOperStructFixedPtArrayEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleFixedPtOperStructFixedPtArrayEntry.setDescription('An entry in the mscExampleFixedPtOperStructFixedPtArrayTable.')
mscExampleFixedPtOperStructFixedPtArrayRowIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1029, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 2)))
if mibBuilder.loadTexts: mscExampleFixedPtOperStructFixedPtArrayRowIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleFixedPtOperStructFixedPtArrayRowIndex.setDescription('This variable represents the next to last index for the mscExampleFixedPtOperStructFixedPtArrayTable.')
mscExampleFixedPtOperStructFixedPtArrayColumnIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1029, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 3)))
if mibBuilder.loadTexts: mscExampleFixedPtOperStructFixedPtArrayColumnIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleFixedPtOperStructFixedPtArrayColumnIndex.setDescription('This variable represents the final index for the mscExampleFixedPtOperStructFixedPtArrayTable.')
mscExampleFixedPtOperStructFixedPtArrayValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1029, 1, 3), FixedPoint3().subtype(subtypeSpec=ValueRangeConstraint(80, 255880))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleFixedPtOperStructFixedPtArrayValue.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleFixedPtOperStructFixedPtArrayValue.setDescription('This variable represents an individual value for the mscExampleFixedPtOperStructFixedPtArrayTable.')
mscExampleFixedPtOperFreeFixedPtVectorTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1030), )
if mibBuilder.loadTexts: mscExampleFixedPtOperFreeFixedPtVectorTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleFixedPtOperFreeFixedPtVectorTable.setDescription('')
mscExampleFixedPtOperFreeFixedPtVectorEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1030, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleFixedPtIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleFixedPtOperFreeFixedPtVectorIndex"))
if mibBuilder.loadTexts: mscExampleFixedPtOperFreeFixedPtVectorEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleFixedPtOperFreeFixedPtVectorEntry.setDescription('An entry in the mscExampleFixedPtOperFreeFixedPtVectorTable.')
mscExampleFixedPtOperFreeFixedPtVectorIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1030, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 9)))
if mibBuilder.loadTexts: mscExampleFixedPtOperFreeFixedPtVectorIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleFixedPtOperFreeFixedPtVectorIndex.setDescription('This variable represents the mscExampleFixedPtOperFreeFixedPtVectorTable specific index for the mscExampleFixedPtOperFreeFixedPtVectorTable.')
mscExampleFixedPtOperFreeFixedPtVectorValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1030, 1, 2), FixedPoint2().subtype(subtypeSpec=ValueRangeConstraint(0, 10000))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleFixedPtOperFreeFixedPtVectorValue.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleFixedPtOperFreeFixedPtVectorValue.setDescription('This variable represents an individual value for the mscExampleFixedPtOperFreeFixedPtVectorTable.')
mscExampleFixedPtOperFreeFixedPtArrayTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1031), )
if mibBuilder.loadTexts: mscExampleFixedPtOperFreeFixedPtArrayTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleFixedPtOperFreeFixedPtArrayTable.setDescription('')
mscExampleFixedPtOperFreeFixedPtArrayEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1031, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleFixedPtIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleFixedPtOperFreeFixedPtArrayRowIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleFixedPtOperFreeFixedPtArrayColumnIndex"))
if mibBuilder.loadTexts: mscExampleFixedPtOperFreeFixedPtArrayEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleFixedPtOperFreeFixedPtArrayEntry.setDescription('An entry in the mscExampleFixedPtOperFreeFixedPtArrayTable.')
mscExampleFixedPtOperFreeFixedPtArrayRowIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1031, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 2)))
if mibBuilder.loadTexts: mscExampleFixedPtOperFreeFixedPtArrayRowIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleFixedPtOperFreeFixedPtArrayRowIndex.setDescription('This variable represents the next to last index for the mscExampleFixedPtOperFreeFixedPtArrayTable.')
mscExampleFixedPtOperFreeFixedPtArrayColumnIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1031, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 3)))
if mibBuilder.loadTexts: mscExampleFixedPtOperFreeFixedPtArrayColumnIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleFixedPtOperFreeFixedPtArrayColumnIndex.setDescription('This variable represents the final index for the mscExampleFixedPtOperFreeFixedPtArrayTable.')
mscExampleFixedPtOperFreeFixedPtArrayValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1031, 1, 3), FixedPoint3().subtype(subtypeSpec=ValueRangeConstraint(255, 255))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleFixedPtOperFreeFixedPtArrayValue.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleFixedPtOperFreeFixedPtArrayValue.setDescription('This variable represents an individual value for the mscExampleFixedPtOperFreeFixedPtArrayTable.')
mscExampleFixedPtOperFreeFixedPtReplicatedTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1032), )
if mibBuilder.loadTexts: mscExampleFixedPtOperFreeFixedPtReplicatedTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleFixedPtOperFreeFixedPtReplicatedTable.setDescription('')
mscExampleFixedPtOperFreeFixedPtReplicatedEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1032, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleFixedPtIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleFixedPtOperFreeFixedPtReplicatedIndex"))
if mibBuilder.loadTexts: mscExampleFixedPtOperFreeFixedPtReplicatedEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleFixedPtOperFreeFixedPtReplicatedEntry.setDescription('An entry in the mscExampleFixedPtOperFreeFixedPtReplicatedTable.')
mscExampleFixedPtOperFreeFixedPtReplicatedIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1032, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 9)))
if mibBuilder.loadTexts: mscExampleFixedPtOperFreeFixedPtReplicatedIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleFixedPtOperFreeFixedPtReplicatedIndex.setDescription('This variable represents the index for the mscExampleFixedPtOperFreeFixedPtReplicatedTable.')
mscExampleFixedPtOperFreeFixedPtReplicatedValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1032, 1, 2), FixedPoint1().subtype(subtypeSpec=ValueRangeConstraint(0, 655350))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleFixedPtOperFreeFixedPtReplicatedValue.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleFixedPtOperFreeFixedPtReplicatedValue.setDescription('This variable represents an individual value for the mscExampleFixedPtOperFreeFixedPtReplicatedTable.')
mscExampleFixedPtOperFreeFixedPtReplicatedRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1032, 1, 3), RowStatus()).setMaxAccess("writeonly")
if mibBuilder.loadTexts: mscExampleFixedPtOperFreeFixedPtReplicatedRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleFixedPtOperFreeFixedPtReplicatedRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleFixedPtOperFreeFixedPtReplicatedTable.')
mscExampleFixedPtOperFreeFixedPtListTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1033), )
if mibBuilder.loadTexts: mscExampleFixedPtOperFreeFixedPtListTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleFixedPtOperFreeFixedPtListTable.setDescription('')
mscExampleFixedPtOperFreeFixedPtListEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1033, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleFixedPtIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleFixedPtOperFreeFixedPtListValue"))
if mibBuilder.loadTexts: mscExampleFixedPtOperFreeFixedPtListEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleFixedPtOperFreeFixedPtListEntry.setDescription('An entry in the mscExampleFixedPtOperFreeFixedPtListTable.')
mscExampleFixedPtOperFreeFixedPtListValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1033, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(ValueRangeConstraint(0, 100), ValueRangeConstraint(10000, 20000), ))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleFixedPtOperFreeFixedPtListValue.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleFixedPtOperFreeFixedPtListValue.setDescription('This variable represents both the value and the index for the mscExampleFixedPtOperFreeFixedPtListTable.')
mscExampleFixedPtOperFreeFixedPtListRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1033, 1, 2), RowStatus()).setMaxAccess("writeonly")
if mibBuilder.loadTexts: mscExampleFixedPtOperFreeFixedPtListRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleFixedPtOperFreeFixedPtListRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleFixedPtOperFreeFixedPtListTable.')
mscExampleFixedPtProvStructFixedPtVectorTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1034), )
if mibBuilder.loadTexts: mscExampleFixedPtProvStructFixedPtVectorTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleFixedPtProvStructFixedPtVectorTable.setDescription('')
mscExampleFixedPtProvStructFixedPtVectorEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1034, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleFixedPtIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleFixedPtProvStructFixedPtVectorIndex"))
if mibBuilder.loadTexts: mscExampleFixedPtProvStructFixedPtVectorEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleFixedPtProvStructFixedPtVectorEntry.setDescription('An entry in the mscExampleFixedPtProvStructFixedPtVectorTable.')
mscExampleFixedPtProvStructFixedPtVectorIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1034, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 9)))
if mibBuilder.loadTexts: mscExampleFixedPtProvStructFixedPtVectorIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleFixedPtProvStructFixedPtVectorIndex.setDescription('This variable represents the mscExampleFixedPtProvStructFixedPtVectorTable specific index for the mscExampleFixedPtProvStructFixedPtVectorTable.')
mscExampleFixedPtProvStructFixedPtVectorValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1034, 1, 2), FixedPoint3().subtype(subtypeSpec=ValueRangeConstraint(0, 100100))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleFixedPtProvStructFixedPtVectorValue.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleFixedPtProvStructFixedPtVectorValue.setDescription('This variable represents an individual value for the mscExampleFixedPtProvStructFixedPtVectorTable.')
mscExampleFixedPtProvStructFixedPtArrayTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1035), )
if mibBuilder.loadTexts: mscExampleFixedPtProvStructFixedPtArrayTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleFixedPtProvStructFixedPtArrayTable.setDescription('')
mscExampleFixedPtProvStructFixedPtArrayEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1035, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleFixedPtIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleFixedPtProvStructFixedPtArrayRowIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleFixedPtProvStructFixedPtArrayColumnIndex"))
if mibBuilder.loadTexts: mscExampleFixedPtProvStructFixedPtArrayEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleFixedPtProvStructFixedPtArrayEntry.setDescription('An entry in the mscExampleFixedPtProvStructFixedPtArrayTable.')
mscExampleFixedPtProvStructFixedPtArrayRowIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1035, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 2)))
if mibBuilder.loadTexts: mscExampleFixedPtProvStructFixedPtArrayRowIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleFixedPtProvStructFixedPtArrayRowIndex.setDescription('This variable represents the next to last index for the mscExampleFixedPtProvStructFixedPtArrayTable.')
mscExampleFixedPtProvStructFixedPtArrayColumnIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1035, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 3)))
if mibBuilder.loadTexts: mscExampleFixedPtProvStructFixedPtArrayColumnIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleFixedPtProvStructFixedPtArrayColumnIndex.setDescription('This variable represents the final index for the mscExampleFixedPtProvStructFixedPtArrayTable.')
mscExampleFixedPtProvStructFixedPtArrayValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1035, 1, 3), FixedPoint1().subtype(subtypeSpec=ValueRangeConstraint(255, 300))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleFixedPtProvStructFixedPtArrayValue.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleFixedPtProvStructFixedPtArrayValue.setDescription('This variable represents an individual value for the mscExampleFixedPtProvStructFixedPtArrayTable.')
mscExampleFixedPtProvFreeFixedPtVectorTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1036), )
if mibBuilder.loadTexts: mscExampleFixedPtProvFreeFixedPtVectorTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleFixedPtProvFreeFixedPtVectorTable.setDescription('')
mscExampleFixedPtProvFreeFixedPtVectorEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1036, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleFixedPtIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleFixedPtProvFreeFixedPtVectorIndex"))
if mibBuilder.loadTexts: mscExampleFixedPtProvFreeFixedPtVectorEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleFixedPtProvFreeFixedPtVectorEntry.setDescription('An entry in the mscExampleFixedPtProvFreeFixedPtVectorTable.')
mscExampleFixedPtProvFreeFixedPtVectorIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1036, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 9)))
if mibBuilder.loadTexts: mscExampleFixedPtProvFreeFixedPtVectorIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleFixedPtProvFreeFixedPtVectorIndex.setDescription('This variable represents the mscExampleFixedPtProvFreeFixedPtVectorTable specific index for the mscExampleFixedPtProvFreeFixedPtVectorTable.')
mscExampleFixedPtProvFreeFixedPtVectorValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1036, 1, 2), FixedPoint1().subtype(subtypeSpec=ValueRangeConstraint(0, 1000))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleFixedPtProvFreeFixedPtVectorValue.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleFixedPtProvFreeFixedPtVectorValue.setDescription('This variable represents an individual value for the mscExampleFixedPtProvFreeFixedPtVectorTable.')
mscExampleFixedPtProvFreeFixedPtArrayTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1037), )
if mibBuilder.loadTexts: mscExampleFixedPtProvFreeFixedPtArrayTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleFixedPtProvFreeFixedPtArrayTable.setDescription('')
mscExampleFixedPtProvFreeFixedPtArrayEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1037, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleFixedPtIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleFixedPtProvFreeFixedPtArrayRowIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleFixedPtProvFreeFixedPtArrayColumnIndex"))
if mibBuilder.loadTexts: mscExampleFixedPtProvFreeFixedPtArrayEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleFixedPtProvFreeFixedPtArrayEntry.setDescription('An entry in the mscExampleFixedPtProvFreeFixedPtArrayTable.')
mscExampleFixedPtProvFreeFixedPtArrayRowIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1037, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 2)))
if mibBuilder.loadTexts: mscExampleFixedPtProvFreeFixedPtArrayRowIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleFixedPtProvFreeFixedPtArrayRowIndex.setDescription('This variable represents the next to last index for the mscExampleFixedPtProvFreeFixedPtArrayTable.')
mscExampleFixedPtProvFreeFixedPtArrayColumnIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1037, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 3)))
if mibBuilder.loadTexts: mscExampleFixedPtProvFreeFixedPtArrayColumnIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleFixedPtProvFreeFixedPtArrayColumnIndex.setDescription('This variable represents the final index for the mscExampleFixedPtProvFreeFixedPtArrayTable.')
mscExampleFixedPtProvFreeFixedPtArrayValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1037, 1, 3), FixedPoint2().subtype(subtypeSpec=ValueRangeConstraint(0, 25555))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleFixedPtProvFreeFixedPtArrayValue.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleFixedPtProvFreeFixedPtArrayValue.setDescription('This variable represents an individual value for the mscExampleFixedPtProvFreeFixedPtArrayTable.')
mscExampleFixedPtProvFreeFixedPtReplicatedTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1038), )
if mibBuilder.loadTexts: mscExampleFixedPtProvFreeFixedPtReplicatedTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleFixedPtProvFreeFixedPtReplicatedTable.setDescription('')
mscExampleFixedPtProvFreeFixedPtReplicatedEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1038, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleFixedPtIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleFixedPtProvFreeFixedPtReplicatedIndex"))
if mibBuilder.loadTexts: mscExampleFixedPtProvFreeFixedPtReplicatedEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleFixedPtProvFreeFixedPtReplicatedEntry.setDescription('An entry in the mscExampleFixedPtProvFreeFixedPtReplicatedTable.')
mscExampleFixedPtProvFreeFixedPtReplicatedIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1038, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 9)))
if mibBuilder.loadTexts: mscExampleFixedPtProvFreeFixedPtReplicatedIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleFixedPtProvFreeFixedPtReplicatedIndex.setDescription('This variable represents the index for the mscExampleFixedPtProvFreeFixedPtReplicatedTable.')
mscExampleFixedPtProvFreeFixedPtReplicatedValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1038, 1, 2), FixedPoint2().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleFixedPtProvFreeFixedPtReplicatedValue.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleFixedPtProvFreeFixedPtReplicatedValue.setDescription('This variable represents an individual value for the mscExampleFixedPtProvFreeFixedPtReplicatedTable.')
mscExampleFixedPtProvFreeFixedPtReplicatedRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1038, 1, 3), RowStatus()).setMaxAccess("writeonly")
if mibBuilder.loadTexts: mscExampleFixedPtProvFreeFixedPtReplicatedRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleFixedPtProvFreeFixedPtReplicatedRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleFixedPtProvFreeFixedPtReplicatedTable.')
mscExampleFixedPtProvFreeFixedPtListTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1039), )
if mibBuilder.loadTexts: mscExampleFixedPtProvFreeFixedPtListTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleFixedPtProvFreeFixedPtListTable.setDescription('')
mscExampleFixedPtProvFreeFixedPtListEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1039, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleFixedPtIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleFixedPtProvFreeFixedPtListValue"))
if mibBuilder.loadTexts: mscExampleFixedPtProvFreeFixedPtListEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleFixedPtProvFreeFixedPtListEntry.setDescription('An entry in the mscExampleFixedPtProvFreeFixedPtListTable.')
mscExampleFixedPtProvFreeFixedPtListValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1039, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(100, 100000))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleFixedPtProvFreeFixedPtListValue.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleFixedPtProvFreeFixedPtListValue.setDescription('This variable represents both the value and the index for the mscExampleFixedPtProvFreeFixedPtListTable.')
mscExampleFixedPtProvFreeFixedPtListRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1039, 1, 2), RowStatus()).setMaxAccess("writeonly")
if mibBuilder.loadTexts: mscExampleFixedPtProvFreeFixedPtListRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleFixedPtProvFreeFixedPtListRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleFixedPtProvFreeFixedPtListTable.')
mscExampleDashed = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7))
mscExampleDashedRowStatusTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1), )
if mibBuilder.loadTexts: mscExampleDashedRowStatusTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDashedRowStatusTable.setDescription('This entry controls the addition and deletion of mscExampleDashed components.')
mscExampleDashedRowStatusEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleDashedIndex"))
if mibBuilder.loadTexts: mscExampleDashedRowStatusEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDashedRowStatusEntry.setDescription('A single entry in the table represents a single mscExampleDashed component.')
mscExampleDashedRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1, 1, 1), RowStatus()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleDashedRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDashedRowStatus.setDescription('This variable is used as the basis for SNMP naming of mscExampleDashed components. These components can be added and deleted.')
mscExampleDashedComponentName = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1, 1, 2), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mscExampleDashedComponentName.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDashedComponentName.setDescription("This variable provides the component's string name for use with the ASCII Console Interface")
mscExampleDashedStorageType = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1, 1, 4), StorageType()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mscExampleDashedStorageType.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDashedStorageType.setDescription('This variable represents the storage type value for the mscExampleDashed tables.')
mscExampleDashedIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1, 1, 10), DashedHexString().subtype(subtypeSpec=ValueSizeConstraint(1, 10)))
if mibBuilder.loadTexts: mscExampleDashedIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDashedIndex.setDescription('This variable represents the index for the mscExampleDashed tables.')
mscExampleDashedOperationalTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 10), )
if mibBuilder.loadTexts: mscExampleDashedOperationalTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDashedOperationalTable.setDescription('')
mscExampleDashedOperationalEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 10, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleDashedIndex"))
if mibBuilder.loadTexts: mscExampleDashedOperationalEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDashedOperationalEntry.setDescription('An entry in the mscExampleDashedOperationalTable.')
mscExampleDashedOperStructDashed = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 10, 1, 1), DashedHexString().subtype(subtypeSpec=ValueSizeConstraint(1, 10))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleDashedOperStructDashed.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDashedOperStructDashed.setDescription('')
mscExampleDashedOperFreeDashed = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 10, 1, 2), DashedHexString().subtype(subtypeSpec=ValueSizeConstraint(1, 10)).clone(hexValue="123456")).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleDashedOperFreeDashed.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDashedOperFreeDashed.setDescription('')
mscExampleDashedProvisionalTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 11), )
if mibBuilder.loadTexts: mscExampleDashedProvisionalTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDashedProvisionalTable.setDescription('')
mscExampleDashedProvisionalEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 11, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleDashedIndex"))
if mibBuilder.loadTexts: mscExampleDashedProvisionalEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDashedProvisionalEntry.setDescription('An entry in the mscExampleDashedProvisionalTable.')
mscExampleDashedProvStructDashed = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 11, 1, 1), DashedHexString().subtype(subtypeSpec=ValueSizeConstraint(1, 10))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleDashedProvStructDashed.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDashedProvStructDashed.setDescription('')
mscExampleDashedProvFreeDashed = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 11, 1, 2), DashedHexString().subtype(subtypeSpec=ValueSizeConstraint(1, 10)).clone(hexValue="123456")).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleDashedProvFreeDashed.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDashedProvFreeDashed.setDescription('')
mscExampleDashedOsDashedArrayTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1088), )
if mibBuilder.loadTexts: mscExampleDashedOsDashedArrayTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDashedOsDashedArrayTable.setDescription('')
mscExampleDashedOsDashedArrayEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1088, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleDashedIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleDashedOsDashedArrayRowIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleDashedOsDashedArrayColumnIndex"))
if mibBuilder.loadTexts: mscExampleDashedOsDashedArrayEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDashedOsDashedArrayEntry.setDescription('An entry in the mscExampleDashedOsDashedArrayTable.')
mscExampleDashedOsDashedArrayRowIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1088, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 2)))
if mibBuilder.loadTexts: mscExampleDashedOsDashedArrayRowIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDashedOsDashedArrayRowIndex.setDescription('This variable represents the next to last index for the mscExampleDashedOsDashedArrayTable.')
mscExampleDashedOsDashedArrayColumnIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1088, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 3)))
if mibBuilder.loadTexts: mscExampleDashedOsDashedArrayColumnIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDashedOsDashedArrayColumnIndex.setDescription('This variable represents the final index for the mscExampleDashedOsDashedArrayTable.')
mscExampleDashedOsDashedArrayValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1088, 1, 3), DashedHexString().subtype(subtypeSpec=ValueSizeConstraint(1, 5))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleDashedOsDashedArrayValue.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDashedOsDashedArrayValue.setDescription('This variable represents an individual value for the mscExampleDashedOsDashedArrayTable.')
mscExampleDashedOsDashedVectorTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1089), )
if mibBuilder.loadTexts: mscExampleDashedOsDashedVectorTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDashedOsDashedVectorTable.setDescription('')
mscExampleDashedOsDashedVectorEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1089, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleDashedIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleDashedOsDashedVectorIndex"))
if mibBuilder.loadTexts: mscExampleDashedOsDashedVectorEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDashedOsDashedVectorEntry.setDescription('An entry in the mscExampleDashedOsDashedVectorTable.')
mscExampleDashedOsDashedVectorIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1089, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 9)))
if mibBuilder.loadTexts: mscExampleDashedOsDashedVectorIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDashedOsDashedVectorIndex.setDescription('This variable represents the mscExampleDashedOsDashedVectorTable specific index for the mscExampleDashedOsDashedVectorTable.')
mscExampleDashedOsDashedVectorValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1089, 1, 2), DashedHexString().subtype(subtypeSpec=ValueSizeConstraint(1, 5))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleDashedOsDashedVectorValue.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDashedOsDashedVectorValue.setDescription('This variable represents an individual value for the mscExampleDashedOsDashedVectorTable.')
mscExampleDashedOfDashedListTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1090), )
if mibBuilder.loadTexts: mscExampleDashedOfDashedListTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDashedOfDashedListTable.setDescription('')
mscExampleDashedOfDashedListEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1090, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleDashedIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleDashedOfDashedListValue"))
if mibBuilder.loadTexts: mscExampleDashedOfDashedListEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDashedOfDashedListEntry.setDescription('An entry in the mscExampleDashedOfDashedListTable.')
mscExampleDashedOfDashedListValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1090, 1, 1), DashedHexString().subtype(subtypeSpec=ValueSizeConstraint(1, 5))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleDashedOfDashedListValue.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDashedOfDashedListValue.setDescription('This variable represents both the value and the index for the mscExampleDashedOfDashedListTable.')
mscExampleDashedOfDashedListRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1090, 1, 2), RowStatus()).setMaxAccess("writeonly")
if mibBuilder.loadTexts: mscExampleDashedOfDashedListRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDashedOfDashedListRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleDashedOfDashedListTable.')
mscExampleDashedOfDashedReplicatedTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1091), )
if mibBuilder.loadTexts: mscExampleDashedOfDashedReplicatedTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDashedOfDashedReplicatedTable.setDescription('')
mscExampleDashedOfDashedReplicatedEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1091, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleDashedIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleDashedOfDashedReplicatedIndex"))
if mibBuilder.loadTexts: mscExampleDashedOfDashedReplicatedEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDashedOfDashedReplicatedEntry.setDescription('An entry in the mscExampleDashedOfDashedReplicatedTable.')
mscExampleDashedOfDashedReplicatedIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1091, 1, 1), DashedHexString().subtype(subtypeSpec=ValueSizeConstraint(1, 5)))
if mibBuilder.loadTexts: mscExampleDashedOfDashedReplicatedIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDashedOfDashedReplicatedIndex.setDescription('This variable represents the index for the mscExampleDashedOfDashedReplicatedTable.')
mscExampleDashedOfDashedReplicatedValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1091, 1, 2), DashedHexString().subtype(subtypeSpec=ValueSizeConstraint(1, 10))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleDashedOfDashedReplicatedValue.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDashedOfDashedReplicatedValue.setDescription('This variable represents an individual value for the mscExampleDashedOfDashedReplicatedTable.')
mscExampleDashedOfDashedReplicatedRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1091, 1, 3), RowStatus()).setMaxAccess("writeonly")
if mibBuilder.loadTexts: mscExampleDashedOfDashedReplicatedRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDashedOfDashedReplicatedRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleDashedOfDashedReplicatedTable.')
mscExampleDashedOfDashedArrayTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1092), )
if mibBuilder.loadTexts: mscExampleDashedOfDashedArrayTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDashedOfDashedArrayTable.setDescription('')
mscExampleDashedOfDashedArrayEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1092, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleDashedIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleDashedOfDashedArrayRowIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleDashedOfDashedArrayColumnIndex"))
if mibBuilder.loadTexts: mscExampleDashedOfDashedArrayEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDashedOfDashedArrayEntry.setDescription('An entry in the mscExampleDashedOfDashedArrayTable.')
mscExampleDashedOfDashedArrayRowIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1092, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 2)))
if mibBuilder.loadTexts: mscExampleDashedOfDashedArrayRowIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDashedOfDashedArrayRowIndex.setDescription('This variable represents the next to last index for the mscExampleDashedOfDashedArrayTable.')
mscExampleDashedOfDashedArrayColumnIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1092, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 3)))
if mibBuilder.loadTexts: mscExampleDashedOfDashedArrayColumnIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDashedOfDashedArrayColumnIndex.setDescription('This variable represents the final index for the mscExampleDashedOfDashedArrayTable.')
mscExampleDashedOfDashedArrayValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1092, 1, 3), DashedHexString().subtype(subtypeSpec=ValueSizeConstraint(1, 5))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleDashedOfDashedArrayValue.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDashedOfDashedArrayValue.setDescription('This variable represents an individual value for the mscExampleDashedOfDashedArrayTable.')
mscExampleDashedOfDashedVectorTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1093), )
if mibBuilder.loadTexts: mscExampleDashedOfDashedVectorTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDashedOfDashedVectorTable.setDescription('')
mscExampleDashedOfDashedVectorEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1093, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleDashedIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleDashedOfDashedVectorIndex"))
if mibBuilder.loadTexts: mscExampleDashedOfDashedVectorEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDashedOfDashedVectorEntry.setDescription('An entry in the mscExampleDashedOfDashedVectorTable.')
mscExampleDashedOfDashedVectorIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1093, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 9)))
if mibBuilder.loadTexts: mscExampleDashedOfDashedVectorIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDashedOfDashedVectorIndex.setDescription('This variable represents the mscExampleDashedOfDashedVectorTable specific index for the mscExampleDashedOfDashedVectorTable.')
mscExampleDashedOfDashedVectorValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1093, 1, 2), DashedHexString().subtype(subtypeSpec=ValueSizeConstraint(1, 5))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleDashedOfDashedVectorValue.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDashedOfDashedVectorValue.setDescription('This variable represents an individual value for the mscExampleDashedOfDashedVectorTable.')
mscExampleDashedProvStructDashedArrayTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1094), )
if mibBuilder.loadTexts: mscExampleDashedProvStructDashedArrayTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDashedProvStructDashedArrayTable.setDescription('')
mscExampleDashedProvStructDashedArrayEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1094, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleDashedIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleDashedProvStructDashedArrayRowIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleDashedProvStructDashedArrayColumnIndex"))
if mibBuilder.loadTexts: mscExampleDashedProvStructDashedArrayEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDashedProvStructDashedArrayEntry.setDescription('An entry in the mscExampleDashedProvStructDashedArrayTable.')
mscExampleDashedProvStructDashedArrayRowIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1094, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 2)))
if mibBuilder.loadTexts: mscExampleDashedProvStructDashedArrayRowIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDashedProvStructDashedArrayRowIndex.setDescription('This variable represents the next to last index for the mscExampleDashedProvStructDashedArrayTable.')
mscExampleDashedProvStructDashedArrayColumnIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1094, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 3)))
if mibBuilder.loadTexts: mscExampleDashedProvStructDashedArrayColumnIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDashedProvStructDashedArrayColumnIndex.setDescription('This variable represents the final index for the mscExampleDashedProvStructDashedArrayTable.')
mscExampleDashedProvStructDashedArrayValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1094, 1, 3), DashedHexString().subtype(subtypeSpec=ValueSizeConstraint(0, 5))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleDashedProvStructDashedArrayValue.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDashedProvStructDashedArrayValue.setDescription('This variable represents an individual value for the mscExampleDashedProvStructDashedArrayTable.')
mscExampleDashedProvStructDashedVectorTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1095), )
if mibBuilder.loadTexts: mscExampleDashedProvStructDashedVectorTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDashedProvStructDashedVectorTable.setDescription('')
mscExampleDashedProvStructDashedVectorEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1095, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleDashedIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleDashedProvStructDashedVectorIndex"))
if mibBuilder.loadTexts: mscExampleDashedProvStructDashedVectorEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDashedProvStructDashedVectorEntry.setDescription('An entry in the mscExampleDashedProvStructDashedVectorTable.')
mscExampleDashedProvStructDashedVectorIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1095, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 9)))
if mibBuilder.loadTexts: mscExampleDashedProvStructDashedVectorIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDashedProvStructDashedVectorIndex.setDescription('This variable represents the mscExampleDashedProvStructDashedVectorTable specific index for the mscExampleDashedProvStructDashedVectorTable.')
mscExampleDashedProvStructDashedVectorValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1095, 1, 2), DashedHexString().subtype(subtypeSpec=ValueSizeConstraint(0, 5))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleDashedProvStructDashedVectorValue.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDashedProvStructDashedVectorValue.setDescription('This variable represents an individual value for the mscExampleDashedProvStructDashedVectorTable.')
mscExampleDashedProvFreeDashedListTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1096), )
if mibBuilder.loadTexts: mscExampleDashedProvFreeDashedListTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDashedProvFreeDashedListTable.setDescription('')
mscExampleDashedProvFreeDashedListEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1096, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleDashedIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleDashedProvFreeDashedListValue"))
if mibBuilder.loadTexts: mscExampleDashedProvFreeDashedListEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDashedProvFreeDashedListEntry.setDescription('An entry in the mscExampleDashedProvFreeDashedListTable.')
mscExampleDashedProvFreeDashedListValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1096, 1, 1), DashedHexString().subtype(subtypeSpec=ValueSizeConstraint(1, 5))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleDashedProvFreeDashedListValue.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDashedProvFreeDashedListValue.setDescription('This variable represents both the value and the index for the mscExampleDashedProvFreeDashedListTable.')
mscExampleDashedProvFreeDashedListRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1096, 1, 2), RowStatus()).setMaxAccess("writeonly")
if mibBuilder.loadTexts: mscExampleDashedProvFreeDashedListRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDashedProvFreeDashedListRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleDashedProvFreeDashedListTable.')
mscExampleDashedProvFreeDashedReplicatedTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1097), )
if mibBuilder.loadTexts: mscExampleDashedProvFreeDashedReplicatedTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDashedProvFreeDashedReplicatedTable.setDescription('')
mscExampleDashedProvFreeDashedReplicatedEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1097, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleDashedIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleDashedProvFreeDashedReplicatedIndex"))
if mibBuilder.loadTexts: mscExampleDashedProvFreeDashedReplicatedEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDashedProvFreeDashedReplicatedEntry.setDescription('An entry in the mscExampleDashedProvFreeDashedReplicatedTable.')
mscExampleDashedProvFreeDashedReplicatedIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1097, 1, 1), DashedHexString().subtype(subtypeSpec=ValueSizeConstraint(1, 5)))
if mibBuilder.loadTexts: mscExampleDashedProvFreeDashedReplicatedIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDashedProvFreeDashedReplicatedIndex.setDescription('This variable represents the index for the mscExampleDashedProvFreeDashedReplicatedTable.')
mscExampleDashedProvFreeDashedReplicatedValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1097, 1, 2), DashedHexString().subtype(subtypeSpec=ValueSizeConstraint(1, 10))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleDashedProvFreeDashedReplicatedValue.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDashedProvFreeDashedReplicatedValue.setDescription('This variable represents an individual value for the mscExampleDashedProvFreeDashedReplicatedTable.')
mscExampleDashedProvFreeDashedReplicatedRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1097, 1, 3), RowStatus()).setMaxAccess("writeonly")
if mibBuilder.loadTexts: mscExampleDashedProvFreeDashedReplicatedRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDashedProvFreeDashedReplicatedRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleDashedProvFreeDashedReplicatedTable.')
mscExampleDashedProvFreeDashedArrayTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1098), )
if mibBuilder.loadTexts: mscExampleDashedProvFreeDashedArrayTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDashedProvFreeDashedArrayTable.setDescription('')
mscExampleDashedProvFreeDashedArrayEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1098, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleDashedIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleDashedProvFreeDashedArrayRowIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleDashedProvFreeDashedArrayColumnIndex"))
if mibBuilder.loadTexts: mscExampleDashedProvFreeDashedArrayEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDashedProvFreeDashedArrayEntry.setDescription('An entry in the mscExampleDashedProvFreeDashedArrayTable.')
mscExampleDashedProvFreeDashedArrayRowIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1098, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 2)))
if mibBuilder.loadTexts: mscExampleDashedProvFreeDashedArrayRowIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDashedProvFreeDashedArrayRowIndex.setDescription('This variable represents the next to last index for the mscExampleDashedProvFreeDashedArrayTable.')
mscExampleDashedProvFreeDashedArrayColumnIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1098, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 3)))
if mibBuilder.loadTexts: mscExampleDashedProvFreeDashedArrayColumnIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDashedProvFreeDashedArrayColumnIndex.setDescription('This variable represents the final index for the mscExampleDashedProvFreeDashedArrayTable.')
mscExampleDashedProvFreeDashedArrayValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1098, 1, 3), DashedHexString().subtype(subtypeSpec=ValueSizeConstraint(0, 5))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleDashedProvFreeDashedArrayValue.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDashedProvFreeDashedArrayValue.setDescription('This variable represents an individual value for the mscExampleDashedProvFreeDashedArrayTable.')
mscExampleDashedProvFreeDashedVectorTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1099), )
if mibBuilder.loadTexts: mscExampleDashedProvFreeDashedVectorTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDashedProvFreeDashedVectorTable.setDescription('')
mscExampleDashedProvFreeDashedVectorEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1099, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleDashedIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleDashedProvFreeDashedVectorIndex"))
if mibBuilder.loadTexts: mscExampleDashedProvFreeDashedVectorEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDashedProvFreeDashedVectorEntry.setDescription('An entry in the mscExampleDashedProvFreeDashedVectorTable.')
mscExampleDashedProvFreeDashedVectorIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1099, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 9)))
if mibBuilder.loadTexts: mscExampleDashedProvFreeDashedVectorIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDashedProvFreeDashedVectorIndex.setDescription('This variable represents the mscExampleDashedProvFreeDashedVectorTable specific index for the mscExampleDashedProvFreeDashedVectorTable.')
mscExampleDashedProvFreeDashedVectorValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1099, 1, 2), DashedHexString().subtype(subtypeSpec=ValueSizeConstraint(0, 5))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleDashedProvFreeDashedVectorValue.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDashedProvFreeDashedVectorValue.setDescription('This variable represents an individual value for the mscExampleDashedProvFreeDashedVectorTable.')
mscExampleExtended = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8))
mscExampleExtendedRowStatusTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1), )
if mibBuilder.loadTexts: mscExampleExtendedRowStatusTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleExtendedRowStatusTable.setDescription('This entry controls the addition and deletion of mscExampleExtended components.')
mscExampleExtendedRowStatusEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleExtendedIndex"))
if mibBuilder.loadTexts: mscExampleExtendedRowStatusEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleExtendedRowStatusEntry.setDescription('A single entry in the table represents a single mscExampleExtended component.')
mscExampleExtendedRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1, 1, 1), RowStatus()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleExtendedRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleExtendedRowStatus.setDescription('This variable is used as the basis for SNMP naming of mscExampleExtended components. These components can be added and deleted.')
mscExampleExtendedComponentName = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1, 1, 2), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mscExampleExtendedComponentName.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleExtendedComponentName.setDescription("This variable provides the component's string name for use with the ASCII Console Interface")
mscExampleExtendedStorageType = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1, 1, 4), StorageType()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mscExampleExtendedStorageType.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleExtendedStorageType.setDescription('This variable represents the storage type value for the mscExampleExtended tables.')
mscExampleExtendedIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1, 1, 10), NonReplicated())
if mibBuilder.loadTexts: mscExampleExtendedIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleExtendedIndex.setDescription('This variable represents the index for the mscExampleExtended tables.')
mscExampleExtendedOperationalTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 10), )
if mibBuilder.loadTexts: mscExampleExtendedOperationalTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleExtendedOperationalTable.setDescription('')
mscExampleExtendedOperationalEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 10, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleExtendedIndex"))
if mibBuilder.loadTexts: mscExampleExtendedOperationalEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleExtendedOperationalEntry.setDescription('An entry in the mscExampleExtendedOperationalTable.')
mscExampleExtendedOperStructExtended = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 10, 1, 1), ExtendedAsciiString().subtype(subtypeSpec=ValueSizeConstraint(1, 10))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleExtendedOperStructExtended.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleExtendedOperStructExtended.setDescription('')
mscExampleExtendedOperFreeExtended = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 10, 1, 2), ExtendedAsciiString().subtype(subtypeSpec=ValueSizeConstraint(1, 10)).clone(hexValue="68656c6c6f5c6162")).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleExtendedOperFreeExtended.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleExtendedOperFreeExtended.setDescription('')
mscExampleExtendedProvisionalTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 11), )
if mibBuilder.loadTexts: mscExampleExtendedProvisionalTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleExtendedProvisionalTable.setDescription('')
mscExampleExtendedProvisionalEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 11, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleExtendedIndex"))
if mibBuilder.loadTexts: mscExampleExtendedProvisionalEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleExtendedProvisionalEntry.setDescription('An entry in the mscExampleExtendedProvisionalTable.')
mscExampleExtendedProvEnumSub = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 11, 1, 1), Link()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleExtendedProvEnumSub.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleExtendedProvEnumSub.setDescription('')
mscExampleExtendedProvStructExtended = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 11, 1, 2), ExtendedAsciiString().subtype(subtypeSpec=ValueSizeConstraint(1, 10))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleExtendedProvStructExtended.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleExtendedProvStructExtended.setDescription('')
mscExampleExtendedProvFreeExtended = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 11, 1, 3), ExtendedAsciiString().subtype(subtypeSpec=ValueSizeConstraint(1, 10)).clone(hexValue="48656c6c6f5c61626364")).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleExtendedProvFreeExtended.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleExtendedProvFreeExtended.setDescription('')
mscExampleExtendedOperStructExtendedArrayTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1100), )
if mibBuilder.loadTexts: mscExampleExtendedOperStructExtendedArrayTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleExtendedOperStructExtendedArrayTable.setDescription('')
mscExampleExtendedOperStructExtendedArrayEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1100, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleExtendedIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleExtendedOperStructExtendedArrayRowIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleExtendedOperStructExtendedArrayColumnIndex"))
if mibBuilder.loadTexts: mscExampleExtendedOperStructExtendedArrayEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleExtendedOperStructExtendedArrayEntry.setDescription('An entry in the mscExampleExtendedOperStructExtendedArrayTable.')
mscExampleExtendedOperStructExtendedArrayRowIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1100, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 2)))
if mibBuilder.loadTexts: mscExampleExtendedOperStructExtendedArrayRowIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleExtendedOperStructExtendedArrayRowIndex.setDescription('This variable represents the next to last index for the mscExampleExtendedOperStructExtendedArrayTable.')
mscExampleExtendedOperStructExtendedArrayColumnIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1100, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 3)))
if mibBuilder.loadTexts: mscExampleExtendedOperStructExtendedArrayColumnIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleExtendedOperStructExtendedArrayColumnIndex.setDescription('This variable represents the final index for the mscExampleExtendedOperStructExtendedArrayTable.')
mscExampleExtendedOperStructExtendedArrayValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1100, 1, 3), ExtendedAsciiString().subtype(subtypeSpec=ValueSizeConstraint(1, 5))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleExtendedOperStructExtendedArrayValue.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleExtendedOperStructExtendedArrayValue.setDescription('This variable represents an individual value for the mscExampleExtendedOperStructExtendedArrayTable.')
mscExampleExtendedOperStructExtendedVectorTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1101), )
if mibBuilder.loadTexts: mscExampleExtendedOperStructExtendedVectorTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleExtendedOperStructExtendedVectorTable.setDescription('')
mscExampleExtendedOperStructExtendedVectorEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1101, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleExtendedIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleExtendedOperStructExtendedVectorIndex"))
if mibBuilder.loadTexts: mscExampleExtendedOperStructExtendedVectorEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleExtendedOperStructExtendedVectorEntry.setDescription('An entry in the mscExampleExtendedOperStructExtendedVectorTable.')
mscExampleExtendedOperStructExtendedVectorIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1101, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 9)))
if mibBuilder.loadTexts: mscExampleExtendedOperStructExtendedVectorIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleExtendedOperStructExtendedVectorIndex.setDescription('This variable represents the mscExampleExtendedOperStructExtendedVectorTable specific index for the mscExampleExtendedOperStructExtendedVectorTable.')
mscExampleExtendedOperStructExtendedVectorValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1101, 1, 2), ExtendedAsciiString().subtype(subtypeSpec=ValueSizeConstraint(1, 5))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleExtendedOperStructExtendedVectorValue.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleExtendedOperStructExtendedVectorValue.setDescription('This variable represents an individual value for the mscExampleExtendedOperStructExtendedVectorTable.')
mscExampleExtendedOperFreeExtendedListTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1102), )
if mibBuilder.loadTexts: mscExampleExtendedOperFreeExtendedListTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleExtendedOperFreeExtendedListTable.setDescription('')
mscExampleExtendedOperFreeExtendedListEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1102, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleExtendedIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleExtendedOperFreeExtendedListValue"))
if mibBuilder.loadTexts: mscExampleExtendedOperFreeExtendedListEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleExtendedOperFreeExtendedListEntry.setDescription('An entry in the mscExampleExtendedOperFreeExtendedListTable.')
mscExampleExtendedOperFreeExtendedListValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1102, 1, 1), ExtendedAsciiString().subtype(subtypeSpec=ValueSizeConstraint(1, 5))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleExtendedOperFreeExtendedListValue.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleExtendedOperFreeExtendedListValue.setDescription('This variable represents both the value and the index for the mscExampleExtendedOperFreeExtendedListTable.')
mscExampleExtendedOperFreeExtendedListRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1102, 1, 2), RowStatus()).setMaxAccess("writeonly")
if mibBuilder.loadTexts: mscExampleExtendedOperFreeExtendedListRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleExtendedOperFreeExtendedListRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleExtendedOperFreeExtendedListTable.')
mscExampleExtendedOperFreeExtendedReplicatedTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1103), )
if mibBuilder.loadTexts: mscExampleExtendedOperFreeExtendedReplicatedTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleExtendedOperFreeExtendedReplicatedTable.setDescription('')
mscExampleExtendedOperFreeExtendedReplicatedEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1103, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleExtendedIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleExtendedOperFreeExtendedReplicatedIndex"))
if mibBuilder.loadTexts: mscExampleExtendedOperFreeExtendedReplicatedEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleExtendedOperFreeExtendedReplicatedEntry.setDescription('An entry in the mscExampleExtendedOperFreeExtendedReplicatedTable.')
mscExampleExtendedOperFreeExtendedReplicatedIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1103, 1, 1), ExtendedAsciiString().subtype(subtypeSpec=ValueSizeConstraint(1, 5)))
if mibBuilder.loadTexts: mscExampleExtendedOperFreeExtendedReplicatedIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleExtendedOperFreeExtendedReplicatedIndex.setDescription('This variable represents the index for the mscExampleExtendedOperFreeExtendedReplicatedTable.')
mscExampleExtendedOperFreeExtendedReplicatedValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1103, 1, 2), ExtendedAsciiString().subtype(subtypeSpec=ValueSizeConstraint(1, 10))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleExtendedOperFreeExtendedReplicatedValue.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleExtendedOperFreeExtendedReplicatedValue.setDescription('This variable represents an individual value for the mscExampleExtendedOperFreeExtendedReplicatedTable.')
mscExampleExtendedOperFreeExtendedReplicatedRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1103, 1, 3), RowStatus()).setMaxAccess("writeonly")
if mibBuilder.loadTexts: mscExampleExtendedOperFreeExtendedReplicatedRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleExtendedOperFreeExtendedReplicatedRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleExtendedOperFreeExtendedReplicatedTable.')
mscExampleExtendedOperFreeExtendedArrayTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1104), )
if mibBuilder.loadTexts: mscExampleExtendedOperFreeExtendedArrayTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleExtendedOperFreeExtendedArrayTable.setDescription('')
mscExampleExtendedOperFreeExtendedArrayEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1104, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleExtendedIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleExtendedOperFreeExtendedArrayRowIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleExtendedOperFreeExtendedArrayColumnIndex"))
if mibBuilder.loadTexts: mscExampleExtendedOperFreeExtendedArrayEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleExtendedOperFreeExtendedArrayEntry.setDescription('An entry in the mscExampleExtendedOperFreeExtendedArrayTable.')
mscExampleExtendedOperFreeExtendedArrayRowIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1104, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 2)))
if mibBuilder.loadTexts: mscExampleExtendedOperFreeExtendedArrayRowIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleExtendedOperFreeExtendedArrayRowIndex.setDescription('This variable represents the next to last index for the mscExampleExtendedOperFreeExtendedArrayTable.')
mscExampleExtendedOperFreeExtendedArrayColumnIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1104, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 3)))
if mibBuilder.loadTexts: mscExampleExtendedOperFreeExtendedArrayColumnIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleExtendedOperFreeExtendedArrayColumnIndex.setDescription('This variable represents the final index for the mscExampleExtendedOperFreeExtendedArrayTable.')
mscExampleExtendedOperFreeExtendedArrayValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1104, 1, 3), ExtendedAsciiString().subtype(subtypeSpec=ValueSizeConstraint(1, 5))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleExtendedOperFreeExtendedArrayValue.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleExtendedOperFreeExtendedArrayValue.setDescription('This variable represents an individual value for the mscExampleExtendedOperFreeExtendedArrayTable.')
mscExampleExtendedOperFreeExtendedVectorTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1105), )
if mibBuilder.loadTexts: mscExampleExtendedOperFreeExtendedVectorTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleExtendedOperFreeExtendedVectorTable.setDescription('')
mscExampleExtendedOperFreeExtendedVectorEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1105, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleExtendedIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleExtendedOperFreeExtendedVectorIndex"))
if mibBuilder.loadTexts: mscExampleExtendedOperFreeExtendedVectorEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleExtendedOperFreeExtendedVectorEntry.setDescription('An entry in the mscExampleExtendedOperFreeExtendedVectorTable.')
mscExampleExtendedOperFreeExtendedVectorIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1105, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 9)))
if mibBuilder.loadTexts: mscExampleExtendedOperFreeExtendedVectorIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleExtendedOperFreeExtendedVectorIndex.setDescription('This variable represents the mscExampleExtendedOperFreeExtendedVectorTable specific index for the mscExampleExtendedOperFreeExtendedVectorTable.')
mscExampleExtendedOperFreeExtendedVectorValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1105, 1, 2), ExtendedAsciiString().subtype(subtypeSpec=ValueSizeConstraint(1, 5))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleExtendedOperFreeExtendedVectorValue.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleExtendedOperFreeExtendedVectorValue.setDescription('This variable represents an individual value for the mscExampleExtendedOperFreeExtendedVectorTable.')
mscExampleExtendedProvStructExtendedArrayTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1106), )
if mibBuilder.loadTexts: mscExampleExtendedProvStructExtendedArrayTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleExtendedProvStructExtendedArrayTable.setDescription('')
mscExampleExtendedProvStructExtendedArrayEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1106, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleExtendedIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleExtendedProvStructExtendedArrayRowIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleExtendedProvStructExtendedArrayColumnIndex"))
if mibBuilder.loadTexts: mscExampleExtendedProvStructExtendedArrayEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleExtendedProvStructExtendedArrayEntry.setDescription('An entry in the mscExampleExtendedProvStructExtendedArrayTable.')
mscExampleExtendedProvStructExtendedArrayRowIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1106, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 2)))
if mibBuilder.loadTexts: mscExampleExtendedProvStructExtendedArrayRowIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleExtendedProvStructExtendedArrayRowIndex.setDescription('This variable represents the next to last index for the mscExampleExtendedProvStructExtendedArrayTable.')
mscExampleExtendedProvStructExtendedArrayColumnIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1106, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 3)))
if mibBuilder.loadTexts: mscExampleExtendedProvStructExtendedArrayColumnIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleExtendedProvStructExtendedArrayColumnIndex.setDescription('This variable represents the final index for the mscExampleExtendedProvStructExtendedArrayTable.')
mscExampleExtendedProvStructExtendedArrayValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1106, 1, 3), ExtendedAsciiString().subtype(subtypeSpec=ValueSizeConstraint(0, 5))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleExtendedProvStructExtendedArrayValue.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleExtendedProvStructExtendedArrayValue.setDescription('This variable represents an individual value for the mscExampleExtendedProvStructExtendedArrayTable.')
mscExampleExtendedProvStructExtendedVectorTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1107), )
if mibBuilder.loadTexts: mscExampleExtendedProvStructExtendedVectorTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleExtendedProvStructExtendedVectorTable.setDescription('')
mscExampleExtendedProvStructExtendedVectorEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1107, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleExtendedIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleExtendedProvStructExtendedVectorIndex"))
if mibBuilder.loadTexts: mscExampleExtendedProvStructExtendedVectorEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleExtendedProvStructExtendedVectorEntry.setDescription('An entry in the mscExampleExtendedProvStructExtendedVectorTable.')
mscExampleExtendedProvStructExtendedVectorIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1107, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 9)))
if mibBuilder.loadTexts: mscExampleExtendedProvStructExtendedVectorIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleExtendedProvStructExtendedVectorIndex.setDescription('This variable represents the mscExampleExtendedProvStructExtendedVectorTable specific index for the mscExampleExtendedProvStructExtendedVectorTable.')
mscExampleExtendedProvStructExtendedVectorValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1107, 1, 2), ExtendedAsciiString().subtype(subtypeSpec=ValueSizeConstraint(0, 5))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleExtendedProvStructExtendedVectorValue.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleExtendedProvStructExtendedVectorValue.setDescription('This variable represents an individual value for the mscExampleExtendedProvStructExtendedVectorTable.')
mscExampleExtendedProvFreeExtendedListTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1108), )
if mibBuilder.loadTexts: mscExampleExtendedProvFreeExtendedListTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleExtendedProvFreeExtendedListTable.setDescription('')
mscExampleExtendedProvFreeExtendedListEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1108, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleExtendedIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleExtendedProvFreeExtendedListValue"))
if mibBuilder.loadTexts: mscExampleExtendedProvFreeExtendedListEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleExtendedProvFreeExtendedListEntry.setDescription('An entry in the mscExampleExtendedProvFreeExtendedListTable.')
mscExampleExtendedProvFreeExtendedListValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1108, 1, 1), ExtendedAsciiString().subtype(subtypeSpec=ValueSizeConstraint(1, 5))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleExtendedProvFreeExtendedListValue.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleExtendedProvFreeExtendedListValue.setDescription('This variable represents both the value and the index for the mscExampleExtendedProvFreeExtendedListTable.')
mscExampleExtendedProvFreeExtendedListRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1108, 1, 2), RowStatus()).setMaxAccess("writeonly")
if mibBuilder.loadTexts: mscExampleExtendedProvFreeExtendedListRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleExtendedProvFreeExtendedListRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleExtendedProvFreeExtendedListTable.')
mscExampleExtendedProvFreeExtendedReplicatedTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1109), )
if mibBuilder.loadTexts: mscExampleExtendedProvFreeExtendedReplicatedTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleExtendedProvFreeExtendedReplicatedTable.setDescription('')
mscExampleExtendedProvFreeExtendedReplicatedEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1109, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleExtendedIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleExtendedProvFreeExtendedReplicatedIndex"))
if mibBuilder.loadTexts: mscExampleExtendedProvFreeExtendedReplicatedEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleExtendedProvFreeExtendedReplicatedEntry.setDescription('An entry in the mscExampleExtendedProvFreeExtendedReplicatedTable.')
mscExampleExtendedProvFreeExtendedReplicatedIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1109, 1, 1), ExtendedAsciiString().subtype(subtypeSpec=ValueSizeConstraint(1, 5)))
if mibBuilder.loadTexts: mscExampleExtendedProvFreeExtendedReplicatedIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleExtendedProvFreeExtendedReplicatedIndex.setDescription('This variable represents the index for the mscExampleExtendedProvFreeExtendedReplicatedTable.')
mscExampleExtendedProvFreeExtendedReplicatedValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1109, 1, 2), ExtendedAsciiString().subtype(subtypeSpec=ValueSizeConstraint(1, 10))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleExtendedProvFreeExtendedReplicatedValue.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleExtendedProvFreeExtendedReplicatedValue.setDescription('This variable represents an individual value for the mscExampleExtendedProvFreeExtendedReplicatedTable.')
mscExampleExtendedProvFreeExtendedReplicatedRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1109, 1, 3), RowStatus()).setMaxAccess("writeonly")
if mibBuilder.loadTexts: mscExampleExtendedProvFreeExtendedReplicatedRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleExtendedProvFreeExtendedReplicatedRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleExtendedProvFreeExtendedReplicatedTable.')
mscExampleExtendedProvFreeExtendedArrayTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1110), )
if mibBuilder.loadTexts: mscExampleExtendedProvFreeExtendedArrayTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleExtendedProvFreeExtendedArrayTable.setDescription('')
mscExampleExtendedProvFreeExtendedArrayEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1110, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleExtendedIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleExtendedProvFreeExtendedArrayRowIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleExtendedProvFreeExtendedArrayColumnIndex"))
if mibBuilder.loadTexts: mscExampleExtendedProvFreeExtendedArrayEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleExtendedProvFreeExtendedArrayEntry.setDescription('An entry in the mscExampleExtendedProvFreeExtendedArrayTable.')
mscExampleExtendedProvFreeExtendedArrayRowIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1110, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 2)))
if mibBuilder.loadTexts: mscExampleExtendedProvFreeExtendedArrayRowIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleExtendedProvFreeExtendedArrayRowIndex.setDescription('This variable represents the next to last index for the mscExampleExtendedProvFreeExtendedArrayTable.')
mscExampleExtendedProvFreeExtendedArrayColumnIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1110, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 3)))
if mibBuilder.loadTexts: mscExampleExtendedProvFreeExtendedArrayColumnIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleExtendedProvFreeExtendedArrayColumnIndex.setDescription('This variable represents the final index for the mscExampleExtendedProvFreeExtendedArrayTable.')
mscExampleExtendedProvFreeExtendedArrayValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1110, 1, 3), ExtendedAsciiString().subtype(subtypeSpec=ValueSizeConstraint(0, 5))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleExtendedProvFreeExtendedArrayValue.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleExtendedProvFreeExtendedArrayValue.setDescription('This variable represents an individual value for the mscExampleExtendedProvFreeExtendedArrayTable.')
mscExampleExtendedProvFreeExtendedVectorTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1111), )
if mibBuilder.loadTexts: mscExampleExtendedProvFreeExtendedVectorTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleExtendedProvFreeExtendedVectorTable.setDescription('')
mscExampleExtendedProvFreeExtendedVectorEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1111, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleExtendedIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleExtendedProvFreeExtendedVectorIndex"))
if mibBuilder.loadTexts: mscExampleExtendedProvFreeExtendedVectorEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleExtendedProvFreeExtendedVectorEntry.setDescription('An entry in the mscExampleExtendedProvFreeExtendedVectorTable.')
mscExampleExtendedProvFreeExtendedVectorIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1111, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 9)))
if mibBuilder.loadTexts: mscExampleExtendedProvFreeExtendedVectorIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleExtendedProvFreeExtendedVectorIndex.setDescription('This variable represents the mscExampleExtendedProvFreeExtendedVectorTable specific index for the mscExampleExtendedProvFreeExtendedVectorTable.')
mscExampleExtendedProvFreeExtendedVectorValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1111, 1, 2), ExtendedAsciiString().subtype(subtypeSpec=ValueSizeConstraint(0, 5))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleExtendedProvFreeExtendedVectorValue.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleExtendedProvFreeExtendedVectorValue.setDescription('This variable represents an individual value for the mscExampleExtendedProvFreeExtendedVectorTable.')
mscExampleBcd = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9))
mscExampleBcdRowStatusTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1), )
if mibBuilder.loadTexts: mscExampleBcdRowStatusTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleBcdRowStatusTable.setDescription('This entry controls the addition and deletion of mscExampleBcd components.')
mscExampleBcdRowStatusEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleBcdIndex"))
if mibBuilder.loadTexts: mscExampleBcdRowStatusEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleBcdRowStatusEntry.setDescription('A single entry in the table represents a single mscExampleBcd component.')
mscExampleBcdRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1, 1, 1), RowStatus()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleBcdRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleBcdRowStatus.setDescription('This variable is used as the basis for SNMP naming of mscExampleBcd components. These components can be added and deleted.')
mscExampleBcdComponentName = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1, 1, 2), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mscExampleBcdComponentName.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleBcdComponentName.setDescription("This variable provides the component's string name for use with the ASCII Console Interface")
mscExampleBcdStorageType = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1, 1, 4), StorageType()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mscExampleBcdStorageType.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleBcdStorageType.setDescription('This variable represents the storage type value for the mscExampleBcd tables.')
mscExampleBcdIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1, 1, 10), DigitString().subtype(subtypeSpec=ValueSizeConstraint(1, 10)))
if mibBuilder.loadTexts: mscExampleBcdIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleBcdIndex.setDescription('This variable represents the index for the mscExampleBcd tables.')
mscExampleBcdOperationalTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 10), )
if mibBuilder.loadTexts: mscExampleBcdOperationalTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleBcdOperationalTable.setDescription('')
mscExampleBcdOperationalEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 10, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleBcdIndex"))
if mibBuilder.loadTexts: mscExampleBcdOperationalEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleBcdOperationalEntry.setDescription('An entry in the mscExampleBcdOperationalTable.')
mscExampleBcdOperStructBcd = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 10, 1, 1), DigitString().subtype(subtypeSpec=ValueSizeConstraint(0, 16))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleBcdOperStructBcd.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleBcdOperStructBcd.setDescription('')
mscExampleBcdOperFreeBcd = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 10, 1, 2), DigitString().subtype(subtypeSpec=ValueSizeConstraint(0, 16))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleBcdOperFreeBcd.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleBcdOperFreeBcd.setDescription('')
mscExampleBcdProvisionalTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 11), )
if mibBuilder.loadTexts: mscExampleBcdProvisionalTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleBcdProvisionalTable.setDescription('')
mscExampleBcdProvisionalEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 11, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleBcdIndex"))
if mibBuilder.loadTexts: mscExampleBcdProvisionalEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleBcdProvisionalEntry.setDescription('An entry in the mscExampleBcdProvisionalTable.')
mscExampleBcdProvEnumSub = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 11, 1, 1), Link()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleBcdProvEnumSub.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleBcdProvEnumSub.setDescription('')
mscExampleBcdProvStructBcd = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 11, 1, 2), DigitString().subtype(subtypeSpec=ValueSizeConstraint(0, 16)).clone(hexValue="30313233343536373839")).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleBcdProvStructBcd.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleBcdProvStructBcd.setDescription('')
mscExampleBcdProvFreeBcd = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 11, 1, 3), DigitString().subtype(subtypeSpec=ValueSizeConstraint(4, 16)).clone(hexValue="31323334353637383930")).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleBcdProvFreeBcd.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleBcdProvFreeBcd.setDescription('')
mscExampleBcdProvFreeBcd1 = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 11, 1, 4), DigitString().subtype(subtypeSpec=ValueSizeConstraint(4, 8))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleBcdProvFreeBcd1.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleBcdProvFreeBcd1.setDescription('')
mscExampleBcdOperStructBcdVectorTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1120), )
if mibBuilder.loadTexts: mscExampleBcdOperStructBcdVectorTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleBcdOperStructBcdVectorTable.setDescription('')
mscExampleBcdOperStructBcdVectorEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1120, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleBcdIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleBcdOperStructBcdVectorIndex"))
if mibBuilder.loadTexts: mscExampleBcdOperStructBcdVectorEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleBcdOperStructBcdVectorEntry.setDescription('An entry in the mscExampleBcdOperStructBcdVectorTable.')
mscExampleBcdOperStructBcdVectorIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1120, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 9)))
if mibBuilder.loadTexts: mscExampleBcdOperStructBcdVectorIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleBcdOperStructBcdVectorIndex.setDescription('This variable represents the mscExampleBcdOperStructBcdVectorTable specific index for the mscExampleBcdOperStructBcdVectorTable.')
mscExampleBcdOperStructBcdVectorValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1120, 1, 2), DigitString().subtype(subtypeSpec=ValueSizeConstraint(0, 5))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleBcdOperStructBcdVectorValue.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleBcdOperStructBcdVectorValue.setDescription('This variable represents an individual value for the mscExampleBcdOperStructBcdVectorTable.')
mscExampleBcdOperStructBcdArrayTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1121), )
if mibBuilder.loadTexts: mscExampleBcdOperStructBcdArrayTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleBcdOperStructBcdArrayTable.setDescription('')
mscExampleBcdOperStructBcdArrayEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1121, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleBcdIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleBcdOperStructBcdArrayRowIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleBcdOperStructBcdArrayColumnIndex"))
if mibBuilder.loadTexts: mscExampleBcdOperStructBcdArrayEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleBcdOperStructBcdArrayEntry.setDescription('An entry in the mscExampleBcdOperStructBcdArrayTable.')
mscExampleBcdOperStructBcdArrayRowIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1121, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 2)))
if mibBuilder.loadTexts: mscExampleBcdOperStructBcdArrayRowIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleBcdOperStructBcdArrayRowIndex.setDescription('This variable represents the next to last index for the mscExampleBcdOperStructBcdArrayTable.')
mscExampleBcdOperStructBcdArrayColumnIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1121, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 3)))
if mibBuilder.loadTexts: mscExampleBcdOperStructBcdArrayColumnIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleBcdOperStructBcdArrayColumnIndex.setDescription('This variable represents the final index for the mscExampleBcdOperStructBcdArrayTable.')
mscExampleBcdOperStructBcdArrayValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1121, 1, 3), DigitString().subtype(subtypeSpec=ValueSizeConstraint(0, 5))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleBcdOperStructBcdArrayValue.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleBcdOperStructBcdArrayValue.setDescription('This variable represents an individual value for the mscExampleBcdOperStructBcdArrayTable.')
mscExampleBcdOperFreeBcdVectorTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1122), )
if mibBuilder.loadTexts: mscExampleBcdOperFreeBcdVectorTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleBcdOperFreeBcdVectorTable.setDescription('')
mscExampleBcdOperFreeBcdVectorEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1122, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleBcdIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleBcdOperFreeBcdVectorIndex"))
if mibBuilder.loadTexts: mscExampleBcdOperFreeBcdVectorEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleBcdOperFreeBcdVectorEntry.setDescription('An entry in the mscExampleBcdOperFreeBcdVectorTable.')
mscExampleBcdOperFreeBcdVectorIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1122, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 9)))
if mibBuilder.loadTexts: mscExampleBcdOperFreeBcdVectorIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleBcdOperFreeBcdVectorIndex.setDescription('This variable represents the mscExampleBcdOperFreeBcdVectorTable specific index for the mscExampleBcdOperFreeBcdVectorTable.')
mscExampleBcdOperFreeBcdVectorValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1122, 1, 2), DigitString().subtype(subtypeSpec=ValueSizeConstraint(0, 5))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleBcdOperFreeBcdVectorValue.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleBcdOperFreeBcdVectorValue.setDescription('This variable represents an individual value for the mscExampleBcdOperFreeBcdVectorTable.')
mscExampleBcdOperFreeBcdArrayTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1123), )
if mibBuilder.loadTexts: mscExampleBcdOperFreeBcdArrayTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleBcdOperFreeBcdArrayTable.setDescription('')
mscExampleBcdOperFreeBcdArrayEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1123, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleBcdIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleBcdOperFreeBcdArrayRowIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleBcdOperFreeBcdArrayColumnIndex"))
if mibBuilder.loadTexts: mscExampleBcdOperFreeBcdArrayEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleBcdOperFreeBcdArrayEntry.setDescription('An entry in the mscExampleBcdOperFreeBcdArrayTable.')
mscExampleBcdOperFreeBcdArrayRowIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1123, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 2)))
if mibBuilder.loadTexts: mscExampleBcdOperFreeBcdArrayRowIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleBcdOperFreeBcdArrayRowIndex.setDescription('This variable represents the next to last index for the mscExampleBcdOperFreeBcdArrayTable.')
mscExampleBcdOperFreeBcdArrayColumnIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1123, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 3)))
if mibBuilder.loadTexts: mscExampleBcdOperFreeBcdArrayColumnIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleBcdOperFreeBcdArrayColumnIndex.setDescription('This variable represents the final index for the mscExampleBcdOperFreeBcdArrayTable.')
mscExampleBcdOperFreeBcdArrayValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1123, 1, 3), DigitString().subtype(subtypeSpec=ValueSizeConstraint(0, 5))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleBcdOperFreeBcdArrayValue.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleBcdOperFreeBcdArrayValue.setDescription('This variable represents an individual value for the mscExampleBcdOperFreeBcdArrayTable.')
mscExampleBcdOperFreeBcdReplicatedTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1124), )
if mibBuilder.loadTexts: mscExampleBcdOperFreeBcdReplicatedTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleBcdOperFreeBcdReplicatedTable.setDescription('')
mscExampleBcdOperFreeBcdReplicatedEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1124, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleBcdIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleBcdOperFreeBcdReplicatedIndex"))
if mibBuilder.loadTexts: mscExampleBcdOperFreeBcdReplicatedEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleBcdOperFreeBcdReplicatedEntry.setDescription('An entry in the mscExampleBcdOperFreeBcdReplicatedTable.')
mscExampleBcdOperFreeBcdReplicatedIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1124, 1, 1), DigitString().subtype(subtypeSpec=ValueSizeConstraint(0, 5)))
if mibBuilder.loadTexts: mscExampleBcdOperFreeBcdReplicatedIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleBcdOperFreeBcdReplicatedIndex.setDescription('This variable represents the index for the mscExampleBcdOperFreeBcdReplicatedTable.')
mscExampleBcdOperFreeBcdReplicatedValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1124, 1, 2), DigitString().subtype(subtypeSpec=ValueSizeConstraint(0, 16))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleBcdOperFreeBcdReplicatedValue.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleBcdOperFreeBcdReplicatedValue.setDescription('This variable represents an individual value for the mscExampleBcdOperFreeBcdReplicatedTable.')
mscExampleBcdOperFreeBcdReplicatedRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1124, 1, 3), RowStatus()).setMaxAccess("writeonly")
if mibBuilder.loadTexts: mscExampleBcdOperFreeBcdReplicatedRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleBcdOperFreeBcdReplicatedRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleBcdOperFreeBcdReplicatedTable.')
mscExampleBcdOperFreeBcdListTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1125), )
if mibBuilder.loadTexts: mscExampleBcdOperFreeBcdListTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleBcdOperFreeBcdListTable.setDescription('')
mscExampleBcdOperFreeBcdListEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1125, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleBcdIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleBcdOperFreeBcdListValue"))
if mibBuilder.loadTexts: mscExampleBcdOperFreeBcdListEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleBcdOperFreeBcdListEntry.setDescription('An entry in the mscExampleBcdOperFreeBcdListTable.')
mscExampleBcdOperFreeBcdListValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1125, 1, 1), DigitString().subtype(subtypeSpec=ValueSizeConstraint(0, 16))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleBcdOperFreeBcdListValue.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleBcdOperFreeBcdListValue.setDescription('This variable represents both the value and the index for the mscExampleBcdOperFreeBcdListTable.')
mscExampleBcdOperFreeBcdListRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1125, 1, 2), RowStatus()).setMaxAccess("writeonly")
if mibBuilder.loadTexts: mscExampleBcdOperFreeBcdListRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleBcdOperFreeBcdListRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleBcdOperFreeBcdListTable.')
mscExampleBcdProvStructBcdVectorTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1126), )
if mibBuilder.loadTexts: mscExampleBcdProvStructBcdVectorTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleBcdProvStructBcdVectorTable.setDescription('')
mscExampleBcdProvStructBcdVectorEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1126, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleBcdIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleBcdProvStructBcdVectorIndex"))
if mibBuilder.loadTexts: mscExampleBcdProvStructBcdVectorEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleBcdProvStructBcdVectorEntry.setDescription('An entry in the mscExampleBcdProvStructBcdVectorTable.')
mscExampleBcdProvStructBcdVectorIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1126, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 9)))
if mibBuilder.loadTexts: mscExampleBcdProvStructBcdVectorIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleBcdProvStructBcdVectorIndex.setDescription('This variable represents the mscExampleBcdProvStructBcdVectorTable specific index for the mscExampleBcdProvStructBcdVectorTable.')
mscExampleBcdProvStructBcdVectorValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1126, 1, 2), DigitString().subtype(subtypeSpec=ValueSizeConstraint(0, 5))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleBcdProvStructBcdVectorValue.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleBcdProvStructBcdVectorValue.setDescription('This variable represents an individual value for the mscExampleBcdProvStructBcdVectorTable.')
mscExampleBcdProvStructBcdArrayTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1127), )
if mibBuilder.loadTexts: mscExampleBcdProvStructBcdArrayTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleBcdProvStructBcdArrayTable.setDescription('')
mscExampleBcdProvStructBcdArrayEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1127, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleBcdIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleBcdProvStructBcdArrayRowIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleBcdProvStructBcdArrayColumnIndex"))
if mibBuilder.loadTexts: mscExampleBcdProvStructBcdArrayEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleBcdProvStructBcdArrayEntry.setDescription('An entry in the mscExampleBcdProvStructBcdArrayTable.')
mscExampleBcdProvStructBcdArrayRowIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1127, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 2)))
if mibBuilder.loadTexts: mscExampleBcdProvStructBcdArrayRowIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleBcdProvStructBcdArrayRowIndex.setDescription('This variable represents the next to last index for the mscExampleBcdProvStructBcdArrayTable.')
mscExampleBcdProvStructBcdArrayColumnIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1127, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 3)))
if mibBuilder.loadTexts: mscExampleBcdProvStructBcdArrayColumnIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleBcdProvStructBcdArrayColumnIndex.setDescription('This variable represents the final index for the mscExampleBcdProvStructBcdArrayTable.')
mscExampleBcdProvStructBcdArrayValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1127, 1, 3), DigitString().subtype(subtypeSpec=ValueSizeConstraint(0, 5))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleBcdProvStructBcdArrayValue.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleBcdProvStructBcdArrayValue.setDescription('This variable represents an individual value for the mscExampleBcdProvStructBcdArrayTable.')
mscExampleBcdProvFreeBcdVectorTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1128), )
if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdVectorTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdVectorTable.setDescription('')
mscExampleBcdProvFreeBcdVectorEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1128, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleBcdIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleBcdProvFreeBcdVectorIndex"))
if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdVectorEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdVectorEntry.setDescription('An entry in the mscExampleBcdProvFreeBcdVectorTable.')
mscExampleBcdProvFreeBcdVectorIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1128, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 9)))
if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdVectorIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdVectorIndex.setDescription('This variable represents the mscExampleBcdProvFreeBcdVectorTable specific index for the mscExampleBcdProvFreeBcdVectorTable.')
mscExampleBcdProvFreeBcdVectorValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1128, 1, 2), DigitString().subtype(subtypeSpec=ValueSizeConstraint(0, 5))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdVectorValue.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdVectorValue.setDescription('This variable represents an individual value for the mscExampleBcdProvFreeBcdVectorTable.')
mscExampleBcdProvFreeBcdVector1Table = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1129), )
if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdVector1Table.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdVector1Table.setDescription('')
mscExampleBcdProvFreeBcdVector1Entry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1129, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleBcdIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleBcdProvFreeBcdVector1Index"))
if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdVector1Entry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdVector1Entry.setDescription('An entry in the mscExampleBcdProvFreeBcdVector1Table.')
mscExampleBcdProvFreeBcdVector1Index = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1129, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 15)))
if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdVector1Index.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdVector1Index.setDescription('This variable represents the mscExampleBcdProvFreeBcdVector1Table specific index for the mscExampleBcdProvFreeBcdVector1Table.')
mscExampleBcdProvFreeBcdVector1Value = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1129, 1, 2), DigitString().subtype(subtypeSpec=ValueSizeConstraint(0, 5))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdVector1Value.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdVector1Value.setDescription('This variable represents an individual value for the mscExampleBcdProvFreeBcdVector1Table.')
mscExampleBcdProvFreeBcdArrayTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1130), )
if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdArrayTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdArrayTable.setDescription('')
mscExampleBcdProvFreeBcdArrayEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1130, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleBcdIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleBcdProvFreeBcdArrayRowIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleBcdProvFreeBcdArrayColumnIndex"))
if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdArrayEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdArrayEntry.setDescription('An entry in the mscExampleBcdProvFreeBcdArrayTable.')
mscExampleBcdProvFreeBcdArrayRowIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1130, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 2)))
if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdArrayRowIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdArrayRowIndex.setDescription('This variable represents the next to last index for the mscExampleBcdProvFreeBcdArrayTable.')
mscExampleBcdProvFreeBcdArrayColumnIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1130, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 3)))
if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdArrayColumnIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdArrayColumnIndex.setDescription('This variable represents the final index for the mscExampleBcdProvFreeBcdArrayTable.')
mscExampleBcdProvFreeBcdArrayValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1130, 1, 3), DigitString().subtype(subtypeSpec=ValueSizeConstraint(0, 5))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdArrayValue.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdArrayValue.setDescription('This variable represents an individual value for the mscExampleBcdProvFreeBcdArrayTable.')
mscExampleBcdProvFreeBcdArray1Table = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1131), )
if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdArray1Table.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdArray1Table.setDescription('')
mscExampleBcdProvFreeBcdArray1Entry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1131, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleBcdIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleBcdProvFreeBcdArray1RowIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleBcdProvFreeBcdArray1ColumnIndex"))
if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdArray1Entry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdArray1Entry.setDescription('An entry in the mscExampleBcdProvFreeBcdArray1Table.')
mscExampleBcdProvFreeBcdArray1RowIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1131, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 3)))
if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdArray1RowIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdArray1RowIndex.setDescription('This variable represents the next to last index for the mscExampleBcdProvFreeBcdArray1Table.')
mscExampleBcdProvFreeBcdArray1ColumnIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1131, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 3)))
if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdArray1ColumnIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdArray1ColumnIndex.setDescription('This variable represents the final index for the mscExampleBcdProvFreeBcdArray1Table.')
mscExampleBcdProvFreeBcdArray1Value = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1131, 1, 3), DigitString().subtype(subtypeSpec=ValueSizeConstraint(0, 5))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdArray1Value.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdArray1Value.setDescription('This variable represents an individual value for the mscExampleBcdProvFreeBcdArray1Table.')
mscExampleBcdProvFreeBcdReplicatedTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1132), )
if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdReplicatedTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdReplicatedTable.setDescription('')
mscExampleBcdProvFreeBcdReplicatedEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1132, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleBcdIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleBcdProvFreeBcdReplicatedIndex"))
if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdReplicatedEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdReplicatedEntry.setDescription('An entry in the mscExampleBcdProvFreeBcdReplicatedTable.')
mscExampleBcdProvFreeBcdReplicatedIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1132, 1, 1), DigitString().subtype(subtypeSpec=ValueSizeConstraint(0, 5)))
if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdReplicatedIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdReplicatedIndex.setDescription('This variable represents the index for the mscExampleBcdProvFreeBcdReplicatedTable.')
mscExampleBcdProvFreeBcdReplicatedValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1132, 1, 2), DigitString().subtype(subtypeSpec=ValueSizeConstraint(0, 16))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdReplicatedValue.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdReplicatedValue.setDescription('This variable represents an individual value for the mscExampleBcdProvFreeBcdReplicatedTable.')
mscExampleBcdProvFreeBcdReplicatedRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1132, 1, 3), RowStatus()).setMaxAccess("writeonly")
if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdReplicatedRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdReplicatedRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleBcdProvFreeBcdReplicatedTable.')
mscExampleBcdProvFreeBcdReplicated1Table = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1133), )
if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdReplicated1Table.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdReplicated1Table.setDescription('')
mscExampleBcdProvFreeBcdReplicated1Entry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1133, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleBcdIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleBcdProvFreeBcdReplicated1Index"))
if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdReplicated1Entry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdReplicated1Entry.setDescription('An entry in the mscExampleBcdProvFreeBcdReplicated1Table.')
mscExampleBcdProvFreeBcdReplicated1Index = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1133, 1, 1), DigitString().subtype(subtypeSpec=ValueSizeConstraint(1, 7)))
if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdReplicated1Index.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdReplicated1Index.setDescription('This variable represents the index for the mscExampleBcdProvFreeBcdReplicated1Table.')
mscExampleBcdProvFreeBcdReplicated1Value = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1133, 1, 2), DigitString().subtype(subtypeSpec=ValueSizeConstraint(0, 5))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdReplicated1Value.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdReplicated1Value.setDescription('This variable represents an individual value for the mscExampleBcdProvFreeBcdReplicated1Table.')
mscExampleBcdProvFreeBcdReplicated1RowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1133, 1, 3), RowStatus()).setMaxAccess("writeonly")
if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdReplicated1RowStatus.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdReplicated1RowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleBcdProvFreeBcdReplicated1Table.')
mscExampleBcdProvFreeBcdListTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1134), )
if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdListTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdListTable.setDescription('')
mscExampleBcdProvFreeBcdListEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1134, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleBcdIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleBcdProvFreeBcdListValue"))
if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdListEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdListEntry.setDescription('An entry in the mscExampleBcdProvFreeBcdListTable.')
mscExampleBcdProvFreeBcdListValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1134, 1, 1), DigitString().subtype(subtypeSpec=ValueSizeConstraint(0, 16))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdListValue.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdListValue.setDescription('This variable represents both the value and the index for the mscExampleBcdProvFreeBcdListTable.')
mscExampleBcdProvFreeBcdListRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1134, 1, 2), RowStatus()).setMaxAccess("writeonly")
if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdListRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdListRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleBcdProvFreeBcdListTable.')
mscExampleBcdProvFreeBcdList1Table = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1135), )
if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdList1Table.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdList1Table.setDescription('')
mscExampleBcdProvFreeBcdList1Entry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1135, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleBcdIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleBcdProvFreeBcdList1Value"))
if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdList1Entry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdList1Entry.setDescription('An entry in the mscExampleBcdProvFreeBcdList1Table.')
mscExampleBcdProvFreeBcdList1Value = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1135, 1, 1), DigitString().subtype(subtypeSpec=ValueSizeConstraint(0, 16))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdList1Value.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdList1Value.setDescription('This variable represents both the value and the index for the mscExampleBcdProvFreeBcdList1Table.')
mscExampleBcdProvFreeBcdList1RowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1135, 1, 2), RowStatus()).setMaxAccess("writeonly")
if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdList1RowStatus.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdList1RowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleBcdProvFreeBcdList1Table.')
mscExampleWildBcd = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10))
mscExampleWildBcdRowStatusTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1), )
if mibBuilder.loadTexts: mscExampleWildBcdRowStatusTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleWildBcdRowStatusTable.setDescription('This entry controls the addition and deletion of mscExampleWildBcd components.')
mscExampleWildBcdRowStatusEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleWildBcdIndex"))
if mibBuilder.loadTexts: mscExampleWildBcdRowStatusEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleWildBcdRowStatusEntry.setDescription('A single entry in the table represents a single mscExampleWildBcd component.')
mscExampleWildBcdRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1, 1, 1), RowStatus()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleWildBcdRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleWildBcdRowStatus.setDescription('This variable is used as the basis for SNMP naming of mscExampleWildBcd components. These components can be added and deleted.')
mscExampleWildBcdComponentName = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1, 1, 2), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mscExampleWildBcdComponentName.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleWildBcdComponentName.setDescription("This variable provides the component's string name for use with the ASCII Console Interface")
mscExampleWildBcdStorageType = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1, 1, 4), StorageType()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mscExampleWildBcdStorageType.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleWildBcdStorageType.setDescription('This variable represents the storage type value for the mscExampleWildBcd tables.')
mscExampleWildBcdIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1, 1, 10), WildcardedDigitString().subtype(subtypeSpec=ValueSizeConstraint(1, 10)))
if mibBuilder.loadTexts: mscExampleWildBcdIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleWildBcdIndex.setDescription('This variable represents the index for the mscExampleWildBcd tables.')
mscExampleWildBcdOperationalTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 10), )
if mibBuilder.loadTexts: mscExampleWildBcdOperationalTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleWildBcdOperationalTable.setDescription('')
mscExampleWildBcdOperationalEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 10, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleWildBcdIndex"))
if mibBuilder.loadTexts: mscExampleWildBcdOperationalEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleWildBcdOperationalEntry.setDescription('An entry in the mscExampleWildBcdOperationalTable.')
mscExampleWildBcdOperStructWildBcd = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 10, 1, 1), WildcardedDigitString().subtype(subtypeSpec=ValueSizeConstraint(0, 16))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleWildBcdOperStructWildBcd.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleWildBcdOperStructWildBcd.setDescription('')
mscExampleWildBcdOperFreeWildBcd = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 10, 1, 2), WildcardedDigitString().subtype(subtypeSpec=ValueSizeConstraint(0, 16))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleWildBcdOperFreeWildBcd.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleWildBcdOperFreeWildBcd.setDescription('')
mscExampleWildBcdProvisionalTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 11), )
if mibBuilder.loadTexts: mscExampleWildBcdProvisionalTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleWildBcdProvisionalTable.setDescription('')
mscExampleWildBcdProvisionalEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 11, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleWildBcdIndex"))
if mibBuilder.loadTexts: mscExampleWildBcdProvisionalEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleWildBcdProvisionalEntry.setDescription('An entry in the mscExampleWildBcdProvisionalTable.')
mscExampleWildBcdProvStructWildBcd = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 11, 1, 1), WildcardedDigitString().subtype(subtypeSpec=ValueSizeConstraint(0, 16)).clone(hexValue="30313233343536373839")).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleWildBcdProvStructWildBcd.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleWildBcdProvStructWildBcd.setDescription('')
mscExampleWildBcdProvFreeWildBcd = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 11, 1, 2), WildcardedDigitString().subtype(subtypeSpec=ValueSizeConstraint(4, 16)).clone(hexValue="31323334353637383930")).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleWildBcdProvFreeWildBcd.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleWildBcdProvFreeWildBcd.setDescription('')
mscExampleWildBcdOperStructWildBcdVectorTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1136), )
if mibBuilder.loadTexts: mscExampleWildBcdOperStructWildBcdVectorTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleWildBcdOperStructWildBcdVectorTable.setDescription('')
mscExampleWildBcdOperStructWildBcdVectorEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1136, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleWildBcdIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleWildBcdOperStructWildBcdVectorIndex"))
if mibBuilder.loadTexts: mscExampleWildBcdOperStructWildBcdVectorEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleWildBcdOperStructWildBcdVectorEntry.setDescription('An entry in the mscExampleWildBcdOperStructWildBcdVectorTable.')
mscExampleWildBcdOperStructWildBcdVectorIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1136, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 9)))
if mibBuilder.loadTexts: mscExampleWildBcdOperStructWildBcdVectorIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleWildBcdOperStructWildBcdVectorIndex.setDescription('This variable represents the mscExampleWildBcdOperStructWildBcdVectorTable specific index for the mscExampleWildBcdOperStructWildBcdVectorTable.')
mscExampleWildBcdOperStructWildBcdVectorValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1136, 1, 2), WildcardedDigitString().subtype(subtypeSpec=ValueSizeConstraint(0, 5))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleWildBcdOperStructWildBcdVectorValue.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleWildBcdOperStructWildBcdVectorValue.setDescription('This variable represents an individual value for the mscExampleWildBcdOperStructWildBcdVectorTable.')
mscExampleWildBcdOperStructWildBcdArrayTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1137), )
if mibBuilder.loadTexts: mscExampleWildBcdOperStructWildBcdArrayTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleWildBcdOperStructWildBcdArrayTable.setDescription('')
mscExampleWildBcdOperStructWildBcdArrayEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1137, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleWildBcdIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleWildBcdOperStructWildBcdArrayRowIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleWildBcdOperStructWildBcdArrayColumnIndex"))
if mibBuilder.loadTexts: mscExampleWildBcdOperStructWildBcdArrayEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleWildBcdOperStructWildBcdArrayEntry.setDescription('An entry in the mscExampleWildBcdOperStructWildBcdArrayTable.')
mscExampleWildBcdOperStructWildBcdArrayRowIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1137, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 2)))
if mibBuilder.loadTexts: mscExampleWildBcdOperStructWildBcdArrayRowIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleWildBcdOperStructWildBcdArrayRowIndex.setDescription('This variable represents the next to last index for the mscExampleWildBcdOperStructWildBcdArrayTable.')
mscExampleWildBcdOperStructWildBcdArrayColumnIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1137, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 3)))
if mibBuilder.loadTexts: mscExampleWildBcdOperStructWildBcdArrayColumnIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleWildBcdOperStructWildBcdArrayColumnIndex.setDescription('This variable represents the final index for the mscExampleWildBcdOperStructWildBcdArrayTable.')
mscExampleWildBcdOperStructWildBcdArrayValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1137, 1, 3), WildcardedDigitString().subtype(subtypeSpec=ValueSizeConstraint(0, 5))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleWildBcdOperStructWildBcdArrayValue.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleWildBcdOperStructWildBcdArrayValue.setDescription('This variable represents an individual value for the mscExampleWildBcdOperStructWildBcdArrayTable.')
mscExampleWildBcdOperFreeWildBcdVectorTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1138), )
if mibBuilder.loadTexts: mscExampleWildBcdOperFreeWildBcdVectorTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleWildBcdOperFreeWildBcdVectorTable.setDescription('')
mscExampleWildBcdOperFreeWildBcdVectorEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1138, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleWildBcdIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleWildBcdOperFreeWildBcdVectorIndex"))
if mibBuilder.loadTexts: mscExampleWildBcdOperFreeWildBcdVectorEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleWildBcdOperFreeWildBcdVectorEntry.setDescription('An entry in the mscExampleWildBcdOperFreeWildBcdVectorTable.')
mscExampleWildBcdOperFreeWildBcdVectorIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1138, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 9)))
if mibBuilder.loadTexts: mscExampleWildBcdOperFreeWildBcdVectorIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleWildBcdOperFreeWildBcdVectorIndex.setDescription('This variable represents the mscExampleWildBcdOperFreeWildBcdVectorTable specific index for the mscExampleWildBcdOperFreeWildBcdVectorTable.')
mscExampleWildBcdOperFreeWildBcdVectorValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1138, 1, 2), WildcardedDigitString().subtype(subtypeSpec=ValueSizeConstraint(0, 5))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleWildBcdOperFreeWildBcdVectorValue.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleWildBcdOperFreeWildBcdVectorValue.setDescription('This variable represents an individual value for the mscExampleWildBcdOperFreeWildBcdVectorTable.')
mscExampleWildBcdOperFreeWildBcdArrayTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1139), )
if mibBuilder.loadTexts: mscExampleWildBcdOperFreeWildBcdArrayTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleWildBcdOperFreeWildBcdArrayTable.setDescription('')
mscExampleWildBcdOperFreeWildBcdArrayEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1139, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleWildBcdIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleWildBcdOperFreeWildBcdArrayRowIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleWildBcdOperFreeWildBcdArrayColumnIndex"))
if mibBuilder.loadTexts: mscExampleWildBcdOperFreeWildBcdArrayEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleWildBcdOperFreeWildBcdArrayEntry.setDescription('An entry in the mscExampleWildBcdOperFreeWildBcdArrayTable.')
mscExampleWildBcdOperFreeWildBcdArrayRowIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1139, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 2)))
if mibBuilder.loadTexts: mscExampleWildBcdOperFreeWildBcdArrayRowIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleWildBcdOperFreeWildBcdArrayRowIndex.setDescription('This variable represents the next to last index for the mscExampleWildBcdOperFreeWildBcdArrayTable.')
mscExampleWildBcdOperFreeWildBcdArrayColumnIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1139, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 3)))
if mibBuilder.loadTexts: mscExampleWildBcdOperFreeWildBcdArrayColumnIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleWildBcdOperFreeWildBcdArrayColumnIndex.setDescription('This variable represents the final index for the mscExampleWildBcdOperFreeWildBcdArrayTable.')
mscExampleWildBcdOperFreeWildBcdArrayValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1139, 1, 3), WildcardedDigitString().subtype(subtypeSpec=ValueSizeConstraint(0, 5))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleWildBcdOperFreeWildBcdArrayValue.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleWildBcdOperFreeWildBcdArrayValue.setDescription('This variable represents an individual value for the mscExampleWildBcdOperFreeWildBcdArrayTable.')
mscExampleWildBcdOperFreeWildBcdReplicatedTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1140), )
if mibBuilder.loadTexts: mscExampleWildBcdOperFreeWildBcdReplicatedTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleWildBcdOperFreeWildBcdReplicatedTable.setDescription('')
mscExampleWildBcdOperFreeWildBcdReplicatedEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1140, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleWildBcdIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleWildBcdOperFreeWildBcdReplicatedIndex"))
if mibBuilder.loadTexts: mscExampleWildBcdOperFreeWildBcdReplicatedEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleWildBcdOperFreeWildBcdReplicatedEntry.setDescription('An entry in the mscExampleWildBcdOperFreeWildBcdReplicatedTable.')
mscExampleWildBcdOperFreeWildBcdReplicatedIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1140, 1, 1), WildcardedDigitString().subtype(subtypeSpec=ValueSizeConstraint(0, 5)))
if mibBuilder.loadTexts: mscExampleWildBcdOperFreeWildBcdReplicatedIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleWildBcdOperFreeWildBcdReplicatedIndex.setDescription('This variable represents the index for the mscExampleWildBcdOperFreeWildBcdReplicatedTable.')
mscExampleWildBcdOperFreeWildBcdReplicatedValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1140, 1, 2), WildcardedDigitString().subtype(subtypeSpec=ValueSizeConstraint(0, 16))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleWildBcdOperFreeWildBcdReplicatedValue.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleWildBcdOperFreeWildBcdReplicatedValue.setDescription('This variable represents an individual value for the mscExampleWildBcdOperFreeWildBcdReplicatedTable.')
mscExampleWildBcdOperFreeWildBcdReplicatedRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1140, 1, 3), RowStatus()).setMaxAccess("writeonly")
if mibBuilder.loadTexts: mscExampleWildBcdOperFreeWildBcdReplicatedRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleWildBcdOperFreeWildBcdReplicatedRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleWildBcdOperFreeWildBcdReplicatedTable.')
mscExampleWildBcdOperFreeWildBcdListTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1141), )
if mibBuilder.loadTexts: mscExampleWildBcdOperFreeWildBcdListTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleWildBcdOperFreeWildBcdListTable.setDescription('')
mscExampleWildBcdOperFreeWildBcdListEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1141, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleWildBcdIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleWildBcdOperFreeWildBcdListValue"))
if mibBuilder.loadTexts: mscExampleWildBcdOperFreeWildBcdListEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleWildBcdOperFreeWildBcdListEntry.setDescription('An entry in the mscExampleWildBcdOperFreeWildBcdListTable.')
mscExampleWildBcdOperFreeWildBcdListValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1141, 1, 1), WildcardedDigitString().subtype(subtypeSpec=ValueSizeConstraint(0, 16))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleWildBcdOperFreeWildBcdListValue.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleWildBcdOperFreeWildBcdListValue.setDescription('This variable represents both the value and the index for the mscExampleWildBcdOperFreeWildBcdListTable.')
mscExampleWildBcdOperFreeWildBcdListRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1141, 1, 2), RowStatus()).setMaxAccess("writeonly")
if mibBuilder.loadTexts: mscExampleWildBcdOperFreeWildBcdListRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleWildBcdOperFreeWildBcdListRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleWildBcdOperFreeWildBcdListTable.')
mscExampleWildBcdProvStructWildBcdVectorTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1142), )
if mibBuilder.loadTexts: mscExampleWildBcdProvStructWildBcdVectorTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleWildBcdProvStructWildBcdVectorTable.setDescription('')
mscExampleWildBcdProvStructWildBcdVectorEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1142, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleWildBcdIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleWildBcdProvStructWildBcdVectorIndex"))
if mibBuilder.loadTexts: mscExampleWildBcdProvStructWildBcdVectorEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleWildBcdProvStructWildBcdVectorEntry.setDescription('An entry in the mscExampleWildBcdProvStructWildBcdVectorTable.')
mscExampleWildBcdProvStructWildBcdVectorIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1142, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 9)))
if mibBuilder.loadTexts: mscExampleWildBcdProvStructWildBcdVectorIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleWildBcdProvStructWildBcdVectorIndex.setDescription('This variable represents the mscExampleWildBcdProvStructWildBcdVectorTable specific index for the mscExampleWildBcdProvStructWildBcdVectorTable.')
mscExampleWildBcdProvStructWildBcdVectorValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1142, 1, 2), WildcardedDigitString().subtype(subtypeSpec=ValueSizeConstraint(0, 5))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleWildBcdProvStructWildBcdVectorValue.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleWildBcdProvStructWildBcdVectorValue.setDescription('This variable represents an individual value for the mscExampleWildBcdProvStructWildBcdVectorTable.')
mscExampleWildBcdProvStructWildBcdArrayTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1143), )
if mibBuilder.loadTexts: mscExampleWildBcdProvStructWildBcdArrayTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleWildBcdProvStructWildBcdArrayTable.setDescription('')
mscExampleWildBcdProvStructWildBcdArrayEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1143, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleWildBcdIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleWildBcdProvStructWildBcdArrayRowIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleWildBcdProvStructWildBcdArrayColumnIndex"))
if mibBuilder.loadTexts: mscExampleWildBcdProvStructWildBcdArrayEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleWildBcdProvStructWildBcdArrayEntry.setDescription('An entry in the mscExampleWildBcdProvStructWildBcdArrayTable.')
mscExampleWildBcdProvStructWildBcdArrayRowIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1143, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 2)))
if mibBuilder.loadTexts: mscExampleWildBcdProvStructWildBcdArrayRowIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleWildBcdProvStructWildBcdArrayRowIndex.setDescription('This variable represents the next to last index for the mscExampleWildBcdProvStructWildBcdArrayTable.')
mscExampleWildBcdProvStructWildBcdArrayColumnIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1143, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 3)))
if mibBuilder.loadTexts: mscExampleWildBcdProvStructWildBcdArrayColumnIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleWildBcdProvStructWildBcdArrayColumnIndex.setDescription('This variable represents the final index for the mscExampleWildBcdProvStructWildBcdArrayTable.')
mscExampleWildBcdProvStructWildBcdArrayValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1143, 1, 3), WildcardedDigitString().subtype(subtypeSpec=ValueSizeConstraint(0, 5))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleWildBcdProvStructWildBcdArrayValue.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleWildBcdProvStructWildBcdArrayValue.setDescription('This variable represents an individual value for the mscExampleWildBcdProvStructWildBcdArrayTable.')
mscExampleWildBcdProvFreeWildBcdVectorTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1144), )
if mibBuilder.loadTexts: mscExampleWildBcdProvFreeWildBcdVectorTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleWildBcdProvFreeWildBcdVectorTable.setDescription('')
mscExampleWildBcdProvFreeWildBcdVectorEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1144, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleWildBcdIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleWildBcdProvFreeWildBcdVectorIndex"))
if mibBuilder.loadTexts: mscExampleWildBcdProvFreeWildBcdVectorEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleWildBcdProvFreeWildBcdVectorEntry.setDescription('An entry in the mscExampleWildBcdProvFreeWildBcdVectorTable.')
mscExampleWildBcdProvFreeWildBcdVectorIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1144, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 9)))
if mibBuilder.loadTexts: mscExampleWildBcdProvFreeWildBcdVectorIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleWildBcdProvFreeWildBcdVectorIndex.setDescription('This variable represents the mscExampleWildBcdProvFreeWildBcdVectorTable specific index for the mscExampleWildBcdProvFreeWildBcdVectorTable.')
mscExampleWildBcdProvFreeWildBcdVectorValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1144, 1, 2), WildcardedDigitString().subtype(subtypeSpec=ValueSizeConstraint(0, 5))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleWildBcdProvFreeWildBcdVectorValue.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleWildBcdProvFreeWildBcdVectorValue.setDescription('This variable represents an individual value for the mscExampleWildBcdProvFreeWildBcdVectorTable.')
mscExampleWildBcdProvFreeWildBcdArrayTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1145), )
if mibBuilder.loadTexts: mscExampleWildBcdProvFreeWildBcdArrayTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleWildBcdProvFreeWildBcdArrayTable.setDescription('')
mscExampleWildBcdProvFreeWildBcdArrayEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1145, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleWildBcdIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleWildBcdProvFreeWildBcdArrayRowIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleWildBcdProvFreeWildBcdArrayColumnIndex"))
if mibBuilder.loadTexts: mscExampleWildBcdProvFreeWildBcdArrayEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleWildBcdProvFreeWildBcdArrayEntry.setDescription('An entry in the mscExampleWildBcdProvFreeWildBcdArrayTable.')
mscExampleWildBcdProvFreeWildBcdArrayRowIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1145, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 2)))
if mibBuilder.loadTexts: mscExampleWildBcdProvFreeWildBcdArrayRowIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleWildBcdProvFreeWildBcdArrayRowIndex.setDescription('This variable represents the next to last index for the mscExampleWildBcdProvFreeWildBcdArrayTable.')
mscExampleWildBcdProvFreeWildBcdArrayColumnIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1145, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 3)))
if mibBuilder.loadTexts: mscExampleWildBcdProvFreeWildBcdArrayColumnIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleWildBcdProvFreeWildBcdArrayColumnIndex.setDescription('This variable represents the final index for the mscExampleWildBcdProvFreeWildBcdArrayTable.')
mscExampleWildBcdProvFreeWildBcdArrayValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1145, 1, 3), WildcardedDigitString().subtype(subtypeSpec=ValueSizeConstraint(0, 5))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleWildBcdProvFreeWildBcdArrayValue.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleWildBcdProvFreeWildBcdArrayValue.setDescription('This variable represents an individual value for the mscExampleWildBcdProvFreeWildBcdArrayTable.')
mscExampleWildBcdProvFreeWildBcdReplicatedTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1146), )
if mibBuilder.loadTexts: mscExampleWildBcdProvFreeWildBcdReplicatedTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleWildBcdProvFreeWildBcdReplicatedTable.setDescription('')
mscExampleWildBcdProvFreeWildBcdReplicatedEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1146, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleWildBcdIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleWildBcdProvFreeWildBcdReplicatedIndex"))
if mibBuilder.loadTexts: mscExampleWildBcdProvFreeWildBcdReplicatedEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleWildBcdProvFreeWildBcdReplicatedEntry.setDescription('An entry in the mscExampleWildBcdProvFreeWildBcdReplicatedTable.')
mscExampleWildBcdProvFreeWildBcdReplicatedIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1146, 1, 1), WildcardedDigitString().subtype(subtypeSpec=ValueSizeConstraint(0, 5)))
if mibBuilder.loadTexts: mscExampleWildBcdProvFreeWildBcdReplicatedIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleWildBcdProvFreeWildBcdReplicatedIndex.setDescription('This variable represents the index for the mscExampleWildBcdProvFreeWildBcdReplicatedTable.')
mscExampleWildBcdProvFreeWildBcdReplicatedValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1146, 1, 2), WildcardedDigitString().subtype(subtypeSpec=ValueSizeConstraint(0, 16))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleWildBcdProvFreeWildBcdReplicatedValue.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleWildBcdProvFreeWildBcdReplicatedValue.setDescription('This variable represents an individual value for the mscExampleWildBcdProvFreeWildBcdReplicatedTable.')
mscExampleWildBcdProvFreeWildBcdReplicatedRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1146, 1, 3), RowStatus()).setMaxAccess("writeonly")
if mibBuilder.loadTexts: mscExampleWildBcdProvFreeWildBcdReplicatedRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleWildBcdProvFreeWildBcdReplicatedRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleWildBcdProvFreeWildBcdReplicatedTable.')
mscExampleWildBcdProvFreeWildBcdListTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1147), )
if mibBuilder.loadTexts: mscExampleWildBcdProvFreeWildBcdListTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleWildBcdProvFreeWildBcdListTable.setDescription('')
mscExampleWildBcdProvFreeWildBcdListEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1147, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleWildBcdIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleWildBcdProvFreeWildBcdListValue"))
if mibBuilder.loadTexts: mscExampleWildBcdProvFreeWildBcdListEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleWildBcdProvFreeWildBcdListEntry.setDescription('An entry in the mscExampleWildBcdProvFreeWildBcdListTable.')
mscExampleWildBcdProvFreeWildBcdListValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1147, 1, 1), WildcardedDigitString().subtype(subtypeSpec=ValueSizeConstraint(0, 16))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleWildBcdProvFreeWildBcdListValue.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleWildBcdProvFreeWildBcdListValue.setDescription('This variable represents both the value and the index for the mscExampleWildBcdProvFreeWildBcdListTable.')
mscExampleWildBcdProvFreeWildBcdListRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1147, 1, 2), RowStatus()).setMaxAccess("writeonly")
if mibBuilder.loadTexts: mscExampleWildBcdProvFreeWildBcdListRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleWildBcdProvFreeWildBcdListRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleWildBcdProvFreeWildBcdListTable.')
mscExampleEnum = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11))
mscExampleEnumRowStatusTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1), )
if mibBuilder.loadTexts: mscExampleEnumRowStatusTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleEnumRowStatusTable.setDescription('This entry controls the addition and deletion of mscExampleEnum components.')
mscExampleEnumRowStatusEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleEnumIndex"))
if mibBuilder.loadTexts: mscExampleEnumRowStatusEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleEnumRowStatusEntry.setDescription('A single entry in the table represents a single mscExampleEnum component.')
mscExampleEnumRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1, 1, 1), RowStatus()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleEnumRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleEnumRowStatus.setDescription('This variable is used as the basis for SNMP naming of mscExampleEnum components. These components can be added and deleted.')
mscExampleEnumComponentName = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1, 1, 2), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mscExampleEnumComponentName.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleEnumComponentName.setDescription("This variable provides the component's string name for use with the ASCII Console Interface")
mscExampleEnumStorageType = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1, 1, 4), StorageType()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mscExampleEnumStorageType.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleEnumStorageType.setDescription('This variable represents the storage type value for the mscExampleEnum tables.')
mscExampleEnumIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1, 1, 10), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("first", 1), ("second", 2), ("third", 3))))
if mibBuilder.loadTexts: mscExampleEnumIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleEnumIndex.setDescription('This variable represents the index for the mscExampleEnum tables.')
mscExampleEnumOperationalTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 10), )
if mibBuilder.loadTexts: mscExampleEnumOperationalTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleEnumOperationalTable.setDescription('')
mscExampleEnumOperationalEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 10, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleEnumIndex"))
if mibBuilder.loadTexts: mscExampleEnumOperationalEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleEnumOperationalEntry.setDescription('An entry in the mscExampleEnumOperationalTable.')
mscExampleEnumOperStructEnum = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 10, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4))).clone(namedValues=NamedValues(("monday", 0), ("tuesday", 1), ("wednesday", 2), ("thursday", 3), ("friday", 4)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleEnumOperStructEnum.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleEnumOperStructEnum.setDescription('')
mscExampleEnumOperStructEnumSet = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 10, 1, 2), OctetString().subtype(subtypeSpec=ValueSizeConstraint(1, 1)).setFixedLength(1)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleEnumOperStructEnumSet.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleEnumOperStructEnumSet.setDescription('Description of bits: monday(0) tuesday(1) wednesday(2) thursday(3) friday(4) saturday(5) sunday(6)')
mscExampleEnumOperFreeEnum = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 10, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 5))).clone(namedValues=NamedValues(("january", 0), ("february", 1), ("march", 2), ("april", 3), ("may", 4), ("june", 5)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleEnumOperFreeEnum.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleEnumOperFreeEnum.setDescription('')
mscExampleEnumOperFreeEnumSet = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 10, 1, 4), OctetString().subtype(subtypeSpec=ValueSizeConstraint(2, 2)).setFixedLength(2)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleEnumOperFreeEnumSet.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleEnumOperFreeEnumSet.setDescription('Description of bits: notused0(0) notused1(1) notused2(2) notused3(3) notused4(4) notused5(5) july(6) august(7) september(8) october(9) november(10) december(11)')
mscExampleEnumProvisionalTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 11), )
if mibBuilder.loadTexts: mscExampleEnumProvisionalTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleEnumProvisionalTable.setDescription('')
mscExampleEnumProvisionalEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 11, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleEnumIndex"))
if mibBuilder.loadTexts: mscExampleEnumProvisionalEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleEnumProvisionalEntry.setDescription('An entry in the mscExampleEnumProvisionalTable.')
mscExampleEnumProvEnumSub = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 11, 1, 1), Link()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleEnumProvEnumSub.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleEnumProvEnumSub.setDescription('')
mscExampleEnumProvStructEnum = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 11, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4))).clone(namedValues=NamedValues(("monday", 0), ("tuesday", 1), ("wednesday", 2), ("thursday", 3), ("friday", 4))).clone('friday')).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleEnumProvStructEnum.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleEnumProvStructEnum.setDescription('')
mscExampleEnumProvStructEnumSet = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 11, 1, 3), OctetString().subtype(subtypeSpec=ValueSizeConstraint(1, 1)).setFixedLength(1).clone(hexValue="aa")).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleEnumProvStructEnumSet.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleEnumProvStructEnumSet.setDescription('Description of bits: monday(0) tuesday(1) wednesday(2) thursday(3) friday(4) saturday(5) sunday(6)')
mscExampleEnumProvFreeEnum = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 11, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 5))).clone(namedValues=NamedValues(("january", 0), ("february", 1), ("march", 2), ("april", 3), ("may", 4), ("june", 5))).clone('may')).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleEnumProvFreeEnum.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleEnumProvFreeEnum.setDescription('')
mscExampleEnumProvFreeEnum1 = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 11, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 11, 12, 13, 14))).clone(namedValues=NamedValues(("apple", 1), ("orange", 2), ("banana", 3), ("pear", 11), ("grapes", 12), ("pineapple", 13), ("watermelon", 14)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleEnumProvFreeEnum1.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleEnumProvFreeEnum1.setDescription('')
mscExampleEnumProvFreeEnumSet = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 11, 1, 6), OctetString().subtype(subtypeSpec=ValueSizeConstraint(2, 2)).setFixedLength(2).clone(hexValue="0070")).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumSet.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumSet.setDescription('Description of bits: notused0(0) notused1(1) notused2(2) notused3(3) notused4(4) notused5(5) july(6) august(7) september(8) october(9) november(10) december(11)')
mscExampleEnumProvFreeEnumSet1 = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 11, 1, 7), OctetString().subtype(subtypeSpec=ValueSizeConstraint(2, 2)).setFixedLength(2)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumSet1.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumSet1.setDescription('Description of bits: notused0(0) apple(1) orange(2) banana(3) notused4(4) notused5(5) notused6(6) notused7(7) notused8(8) notused9(9) notused10(10) pear(11) grapes(12) pineapple(13) watermelon(14)')
mscExampleEnumOperStructEnumVectorTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1162), )
if mibBuilder.loadTexts: mscExampleEnumOperStructEnumVectorTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleEnumOperStructEnumVectorTable.setDescription('')
mscExampleEnumOperStructEnumVectorEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1162, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleEnumIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleEnumOperStructEnumVectorIndex"))
if mibBuilder.loadTexts: mscExampleEnumOperStructEnumVectorEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleEnumOperStructEnumVectorEntry.setDescription('An entry in the mscExampleEnumOperStructEnumVectorTable.')
mscExampleEnumOperStructEnumVectorIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1162, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 5, 6))).clone(namedValues=NamedValues(("monday", 0), ("tuesday", 1), ("wednesday", 2), ("thursday", 3), ("friday", 4), ("saturday", 5), ("sunday", 6))))
if mibBuilder.loadTexts: mscExampleEnumOperStructEnumVectorIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleEnumOperStructEnumVectorIndex.setDescription('This variable represents the mscExampleEnumOperStructEnumVectorTable specific index for the mscExampleEnumOperStructEnumVectorTable.')
mscExampleEnumOperStructEnumVectorValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1162, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 5, 6))).clone(namedValues=NamedValues(("monday", 0), ("tuesday", 1), ("wednesday", 2), ("thursday", 3), ("friday", 4), ("saturday", 5), ("sunday", 6)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleEnumOperStructEnumVectorValue.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleEnumOperStructEnumVectorValue.setDescription('This variable represents an individual value for the mscExampleEnumOperStructEnumVectorTable.')
mscExampleEnumOperStructEnumArrayTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1163), )
if mibBuilder.loadTexts: mscExampleEnumOperStructEnumArrayTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleEnumOperStructEnumArrayTable.setDescription('')
mscExampleEnumOperStructEnumArrayEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1163, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleEnumIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleEnumOperStructEnumArrayMonthIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleEnumOperStructEnumArrayDayIndex"))
if mibBuilder.loadTexts: mscExampleEnumOperStructEnumArrayEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleEnumOperStructEnumArrayEntry.setDescription('An entry in the mscExampleEnumOperStructEnumArrayTable.')
mscExampleEnumOperStructEnumArrayMonthIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1163, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11))).clone(namedValues=NamedValues(("january", 0), ("february", 1), ("march", 2), ("april", 3), ("may", 4), ("june", 5), ("july", 6), ("august", 7), ("september", 8), ("october", 9), ("november", 10), ("december", 11))))
if mibBuilder.loadTexts: mscExampleEnumOperStructEnumArrayMonthIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleEnumOperStructEnumArrayMonthIndex.setDescription('This variable represents the next to last index for the mscExampleEnumOperStructEnumArrayTable.')
mscExampleEnumOperStructEnumArrayDayIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1163, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 5, 6))).clone(namedValues=NamedValues(("mondayaaaa", 0), ("tuesdayaaaa", 1), ("wednesdayaaaa", 2), ("thursdayaaaa", 3), ("fridayaaaa", 4), ("saturdayaaaa", 5), ("sundayaaaa", 6))))
if mibBuilder.loadTexts: mscExampleEnumOperStructEnumArrayDayIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleEnumOperStructEnumArrayDayIndex.setDescription('This variable represents the final index for the mscExampleEnumOperStructEnumArrayTable.')
mscExampleEnumOperStructEnumArrayValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1163, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11))).clone(namedValues=NamedValues(("january", 0), ("february", 1), ("march", 2), ("april", 3), ("may", 4), ("june", 5), ("july", 6), ("august", 7), ("september", 8), ("october", 9), ("november", 10), ("december", 11)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleEnumOperStructEnumArrayValue.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleEnumOperStructEnumArrayValue.setDescription('This variable represents an individual value for the mscExampleEnumOperStructEnumArrayTable.')
mscExampleEnumOperFreeEnumVectorTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1164), )
if mibBuilder.loadTexts: mscExampleEnumOperFreeEnumVectorTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleEnumOperFreeEnumVectorTable.setDescription('')
mscExampleEnumOperFreeEnumVectorEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1164, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleEnumIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleEnumOperFreeEnumVectorIndex"))
if mibBuilder.loadTexts: mscExampleEnumOperFreeEnumVectorEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleEnumOperFreeEnumVectorEntry.setDescription('An entry in the mscExampleEnumOperFreeEnumVectorTable.')
mscExampleEnumOperFreeEnumVectorIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1164, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 5, 6))).clone(namedValues=NamedValues(("monday", 0), ("tuesday", 1), ("wednesday", 2), ("thursday", 3), ("friday", 4), ("saturday", 5), ("sunday", 6))))
if mibBuilder.loadTexts: mscExampleEnumOperFreeEnumVectorIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleEnumOperFreeEnumVectorIndex.setDescription('This variable represents the mscExampleEnumOperFreeEnumVectorTable specific index for the mscExampleEnumOperFreeEnumVectorTable.')
mscExampleEnumOperFreeEnumVectorValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1164, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4))).clone(namedValues=NamedValues(("monday", 0), ("tuesday", 1), ("wednesday", 2), ("thursday", 3), ("friday", 4)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleEnumOperFreeEnumVectorValue.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleEnumOperFreeEnumVectorValue.setDescription('This variable represents an individual value for the mscExampleEnumOperFreeEnumVectorTable.')
mscExampleEnumOperFreeEnumArrayTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1165), )
if mibBuilder.loadTexts: mscExampleEnumOperFreeEnumArrayTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleEnumOperFreeEnumArrayTable.setDescription('')
mscExampleEnumOperFreeEnumArrayEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1165, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleEnumIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleEnumOperFreeEnumArrayMonthIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleEnumOperFreeEnumArrayDayIndex"))
if mibBuilder.loadTexts: mscExampleEnumOperFreeEnumArrayEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleEnumOperFreeEnumArrayEntry.setDescription('An entry in the mscExampleEnumOperFreeEnumArrayTable.')
mscExampleEnumOperFreeEnumArrayMonthIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1165, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11))).clone(namedValues=NamedValues(("january", 0), ("february", 1), ("march", 2), ("april", 3), ("may", 4), ("june", 5), ("july", 6), ("august", 7), ("september", 8), ("october", 9), ("november", 10), ("december", 11))))
if mibBuilder.loadTexts: mscExampleEnumOperFreeEnumArrayMonthIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleEnumOperFreeEnumArrayMonthIndex.setDescription('This variable represents the next to last index for the mscExampleEnumOperFreeEnumArrayTable.')
mscExampleEnumOperFreeEnumArrayDayIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1165, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 5, 6))).clone(namedValues=NamedValues(("monday", 0), ("tuesday", 1), ("wednesday", 2), ("thursday", 3), ("friday", 4), ("saturday", 5), ("sunday", 6))))
if mibBuilder.loadTexts: mscExampleEnumOperFreeEnumArrayDayIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleEnumOperFreeEnumArrayDayIndex.setDescription('This variable represents the final index for the mscExampleEnumOperFreeEnumArrayTable.')
mscExampleEnumOperFreeEnumArrayValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1165, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11))).clone(namedValues=NamedValues(("january", 0), ("february", 1), ("march", 2), ("april", 3), ("may", 4), ("june", 5), ("july", 6), ("august", 7), ("september", 8), ("october", 9), ("november", 10), ("december", 11)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleEnumOperFreeEnumArrayValue.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleEnumOperFreeEnumArrayValue.setDescription('This variable represents an individual value for the mscExampleEnumOperFreeEnumArrayTable.')
mscExampleEnumOperFreeEnumReplicatedTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1166), )
if mibBuilder.loadTexts: mscExampleEnumOperFreeEnumReplicatedTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleEnumOperFreeEnumReplicatedTable.setDescription('')
mscExampleEnumOperFreeEnumReplicatedEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1166, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleEnumIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleEnumOperFreeEnumReplicatedIndex"))
if mibBuilder.loadTexts: mscExampleEnumOperFreeEnumReplicatedEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleEnumOperFreeEnumReplicatedEntry.setDescription('An entry in the mscExampleEnumOperFreeEnumReplicatedTable.')
mscExampleEnumOperFreeEnumReplicatedIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1166, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 5, 6))).clone(namedValues=NamedValues(("monday", 0), ("tuesday", 1), ("wednesday", 2), ("thursday", 3), ("friday", 4), ("saturday", 5), ("sunday", 6))))
if mibBuilder.loadTexts: mscExampleEnumOperFreeEnumReplicatedIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleEnumOperFreeEnumReplicatedIndex.setDescription('This variable represents the index for the mscExampleEnumOperFreeEnumReplicatedTable.')
mscExampleEnumOperFreeEnumReplicatedValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1166, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11))).clone(namedValues=NamedValues(("january", 0), ("february", 1), ("march", 2), ("april", 3), ("may", 4), ("june", 5), ("july", 6), ("august", 7), ("september", 8), ("october", 9), ("november", 10), ("december", 11)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleEnumOperFreeEnumReplicatedValue.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleEnumOperFreeEnumReplicatedValue.setDescription('This variable represents an individual value for the mscExampleEnumOperFreeEnumReplicatedTable.')
mscExampleEnumOperFreeEnumReplicatedRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1166, 1, 3), RowStatus()).setMaxAccess("writeonly")
if mibBuilder.loadTexts: mscExampleEnumOperFreeEnumReplicatedRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleEnumOperFreeEnumReplicatedRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleEnumOperFreeEnumReplicatedTable.')
mscExampleEnumOperFreeEnumListTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1167), )
if mibBuilder.loadTexts: mscExampleEnumOperFreeEnumListTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleEnumOperFreeEnumListTable.setDescription('')
mscExampleEnumOperFreeEnumListEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1167, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleEnumIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleEnumOperFreeEnumListValue"))
if mibBuilder.loadTexts: mscExampleEnumOperFreeEnumListEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleEnumOperFreeEnumListEntry.setDescription('An entry in the mscExampleEnumOperFreeEnumListTable.')
mscExampleEnumOperFreeEnumListValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1167, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11))).clone(namedValues=NamedValues(("january", 0), ("february", 1), ("march", 2), ("april", 3), ("may", 4), ("june", 5), ("july", 6), ("august", 7), ("september", 8), ("october", 9), ("november", 10), ("december", 11)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleEnumOperFreeEnumListValue.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleEnumOperFreeEnumListValue.setDescription('This variable represents both the value and the index for the mscExampleEnumOperFreeEnumListTable.')
mscExampleEnumOperFreeEnumListRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1167, 1, 2), RowStatus()).setMaxAccess("writeonly")
if mibBuilder.loadTexts: mscExampleEnumOperFreeEnumListRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleEnumOperFreeEnumListRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleEnumOperFreeEnumListTable.')
mscExampleEnumProvStructEnumVectorTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1168), )
if mibBuilder.loadTexts: mscExampleEnumProvStructEnumVectorTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleEnumProvStructEnumVectorTable.setDescription('')
mscExampleEnumProvStructEnumVectorEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1168, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleEnumIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleEnumProvStructEnumVectorIndex"))
if mibBuilder.loadTexts: mscExampleEnumProvStructEnumVectorEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleEnumProvStructEnumVectorEntry.setDescription('An entry in the mscExampleEnumProvStructEnumVectorTable.')
mscExampleEnumProvStructEnumVectorIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1168, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 5, 6))).clone(namedValues=NamedValues(("monday", 0), ("tuesday", 1), ("wednesday", 2), ("thursday", 3), ("friday", 4), ("saturday", 5), ("sunday", 6))))
if mibBuilder.loadTexts: mscExampleEnumProvStructEnumVectorIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleEnumProvStructEnumVectorIndex.setDescription('This variable represents the mscExampleEnumProvStructEnumVectorTable specific index for the mscExampleEnumProvStructEnumVectorTable.')
mscExampleEnumProvStructEnumVectorValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1168, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4))).clone(namedValues=NamedValues(("monday", 0), ("tuesday", 1), ("wednesday", 2), ("thursday", 3), ("friday", 4)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleEnumProvStructEnumVectorValue.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleEnumProvStructEnumVectorValue.setDescription('This variable represents an individual value for the mscExampleEnumProvStructEnumVectorTable.')
mscExampleEnumProvStructEnumArrayTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1169), )
if mibBuilder.loadTexts: mscExampleEnumProvStructEnumArrayTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleEnumProvStructEnumArrayTable.setDescription('')
mscExampleEnumProvStructEnumArrayEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1169, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleEnumIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleEnumProvStructEnumArrayMonthIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleEnumProvStructEnumArrayDayIndex"))
if mibBuilder.loadTexts: mscExampleEnumProvStructEnumArrayEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleEnumProvStructEnumArrayEntry.setDescription('An entry in the mscExampleEnumProvStructEnumArrayTable.')
mscExampleEnumProvStructEnumArrayMonthIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1169, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11))).clone(namedValues=NamedValues(("january", 0), ("february", 1), ("march", 2), ("april", 3), ("may", 4), ("june", 5), ("july", 6), ("august", 7), ("september", 8), ("october", 9), ("november", 10), ("december", 11))))
if mibBuilder.loadTexts: mscExampleEnumProvStructEnumArrayMonthIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleEnumProvStructEnumArrayMonthIndex.setDescription('This variable represents the next to last index for the mscExampleEnumProvStructEnumArrayTable.')
mscExampleEnumProvStructEnumArrayDayIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1169, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 5, 6))).clone(namedValues=NamedValues(("monday", 0), ("tuesday", 1), ("wednesday", 2), ("thursday", 3), ("friday", 4), ("saturday", 5), ("sunday", 6))))
if mibBuilder.loadTexts: mscExampleEnumProvStructEnumArrayDayIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleEnumProvStructEnumArrayDayIndex.setDescription('This variable represents the final index for the mscExampleEnumProvStructEnumArrayTable.')
mscExampleEnumProvStructEnumArrayValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1169, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11))).clone(namedValues=NamedValues(("january", 0), ("february", 1), ("march", 2), ("april", 3), ("may", 4), ("june", 5), ("july", 6), ("august", 7), ("september", 8), ("october", 9), ("november", 10), ("december", 11)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleEnumProvStructEnumArrayValue.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleEnumProvStructEnumArrayValue.setDescription('This variable represents an individual value for the mscExampleEnumProvStructEnumArrayTable.')
mscExampleEnumProvFreeEnumVectorTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1170), )
if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumVectorTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumVectorTable.setDescription('')
mscExampleEnumProvFreeEnumVectorEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1170, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleEnumIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleEnumProvFreeEnumVectorIndex"))
if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumVectorEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumVectorEntry.setDescription('An entry in the mscExampleEnumProvFreeEnumVectorTable.')
mscExampleEnumProvFreeEnumVectorIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1170, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 5, 6))).clone(namedValues=NamedValues(("monday", 0), ("tuesday", 1), ("wednesday", 2), ("thursday", 3), ("friday", 4), ("saturday", 5), ("sunday", 6))))
if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumVectorIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumVectorIndex.setDescription('This variable represents the mscExampleEnumProvFreeEnumVectorTable specific index for the mscExampleEnumProvFreeEnumVectorTable.')
mscExampleEnumProvFreeEnumVectorValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1170, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4))).clone(namedValues=NamedValues(("monday", 0), ("tuesday", 1), ("wednesday", 2), ("thursday", 3), ("friday", 4)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumVectorValue.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumVectorValue.setDescription('This variable represents an individual value for the mscExampleEnumProvFreeEnumVectorTable.')
mscExampleEnumProvFreeEnumVector1Table = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1171), )
if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumVector1Table.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumVector1Table.setDescription('')
mscExampleEnumProvFreeEnumVector1Entry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1171, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleEnumIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleEnumProvFreeEnumVector1Index"))
if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumVector1Entry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumVector1Entry.setDescription('An entry in the mscExampleEnumProvFreeEnumVector1Table.')
mscExampleEnumProvFreeEnumVector1Index = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1171, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 5, 6))).clone(namedValues=NamedValues(("monday", 0), ("tuesday", 1), ("wednesday", 2), ("thursday", 3), ("friday", 4), ("saturday", 5), ("sunday", 6))))
if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumVector1Index.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumVector1Index.setDescription('This variable represents the mscExampleEnumProvFreeEnumVector1Table specific index for the mscExampleEnumProvFreeEnumVector1Table.')
mscExampleEnumProvFreeEnumVector1Value = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1171, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4))).clone(namedValues=NamedValues(("january", 0), ("february", 1), ("march", 2), ("april", 3), ("may", 4)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumVector1Value.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumVector1Value.setDescription('This variable represents an individual value for the mscExampleEnumProvFreeEnumVector1Table.')
mscExampleEnumProvFreeEnumArrayTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1172), )
if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumArrayTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumArrayTable.setDescription('')
mscExampleEnumProvFreeEnumArrayEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1172, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleEnumIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleEnumProvFreeEnumArrayMonthIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleEnumProvFreeEnumArrayDayIndex"))
if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumArrayEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumArrayEntry.setDescription('An entry in the mscExampleEnumProvFreeEnumArrayTable.')
mscExampleEnumProvFreeEnumArrayMonthIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1172, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11))).clone(namedValues=NamedValues(("january", 0), ("february", 1), ("march", 2), ("april", 3), ("may", 4), ("june", 5), ("july", 6), ("august", 7), ("september", 8), ("october", 9), ("november", 10), ("december", 11))))
if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumArrayMonthIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumArrayMonthIndex.setDescription('This variable represents the next to last index for the mscExampleEnumProvFreeEnumArrayTable.')
mscExampleEnumProvFreeEnumArrayDayIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1172, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 5, 6))).clone(namedValues=NamedValues(("monday", 0), ("tuesday", 1), ("wednesday", 2), ("thursday", 3), ("friday", 4), ("saturday", 5), ("sunday", 6))))
if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumArrayDayIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumArrayDayIndex.setDescription('This variable represents the final index for the mscExampleEnumProvFreeEnumArrayTable.')
mscExampleEnumProvFreeEnumArrayValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1172, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11))).clone(namedValues=NamedValues(("january", 0), ("february", 1), ("march", 2), ("april", 3), ("may", 4), ("june", 5), ("july", 6), ("august", 7), ("september", 8), ("october", 9), ("november", 10), ("december", 11)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumArrayValue.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumArrayValue.setDescription('This variable represents an individual value for the mscExampleEnumProvFreeEnumArrayTable.')
mscExampleEnumProvFreeEnumArray1Table = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1173), )
if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumArray1Table.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumArray1Table.setDescription('')
mscExampleEnumProvFreeEnumArray1Entry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1173, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleEnumIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleEnumProvFreeEnumArray1MonthIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleEnumProvFreeEnumArray1DayIndex"))
if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumArray1Entry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumArray1Entry.setDescription('An entry in the mscExampleEnumProvFreeEnumArray1Table.')
mscExampleEnumProvFreeEnumArray1MonthIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1173, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11))).clone(namedValues=NamedValues(("january", 0), ("february", 1), ("march", 2), ("april", 3), ("may", 4), ("june", 5), ("july", 6), ("august", 7), ("september", 8), ("october", 9), ("november", 10), ("december", 11))))
if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumArray1MonthIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumArray1MonthIndex.setDescription('This variable represents the next to last index for the mscExampleEnumProvFreeEnumArray1Table.')
mscExampleEnumProvFreeEnumArray1DayIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1173, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 5, 6))).clone(namedValues=NamedValues(("monday", 0), ("tuesday", 1), ("wednesday", 2), ("thursday", 3), ("friday", 4), ("saturday", 5), ("sunday", 6))))
if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumArray1DayIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumArray1DayIndex.setDescription('This variable represents the final index for the mscExampleEnumProvFreeEnumArray1Table.')
mscExampleEnumProvFreeEnumArray1Value = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1173, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 11, 12, 13, 14))).clone(namedValues=NamedValues(("apple", 1), ("orange", 2), ("banana", 3), ("pear", 11), ("grapes", 12), ("pineapple", 13), ("watermelon", 14)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumArray1Value.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumArray1Value.setDescription('This variable represents an individual value for the mscExampleEnumProvFreeEnumArray1Table.')
mscExampleEnumProvFreeEnumReplicatedTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1174), )
if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumReplicatedTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumReplicatedTable.setDescription('')
mscExampleEnumProvFreeEnumReplicatedEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1174, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleEnumIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleEnumProvFreeEnumReplicatedIndex"))
if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumReplicatedEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumReplicatedEntry.setDescription('An entry in the mscExampleEnumProvFreeEnumReplicatedTable.')
mscExampleEnumProvFreeEnumReplicatedIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1174, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 5, 6))).clone(namedValues=NamedValues(("monday", 0), ("tuesday", 1), ("wednesday", 2), ("thursday", 3), ("friday", 4), ("saturday", 5), ("sunday", 6))))
if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumReplicatedIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumReplicatedIndex.setDescription('This variable represents the index for the mscExampleEnumProvFreeEnumReplicatedTable.')
mscExampleEnumProvFreeEnumReplicatedValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1174, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11))).clone(namedValues=NamedValues(("january", 0), ("february", 1), ("march", 2), ("april", 3), ("may", 4), ("june", 5), ("july", 6), ("august", 7), ("september", 8), ("october", 9), ("november", 10), ("december", 11)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumReplicatedValue.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumReplicatedValue.setDescription('This variable represents an individual value for the mscExampleEnumProvFreeEnumReplicatedTable.')
mscExampleEnumProvFreeEnumReplicatedRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1174, 1, 3), RowStatus()).setMaxAccess("writeonly")
if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumReplicatedRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumReplicatedRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleEnumProvFreeEnumReplicatedTable.')
mscExampleEnumProvFreeEnumListTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1175), )
if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumListTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumListTable.setDescription('')
mscExampleEnumProvFreeEnumListEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1175, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleEnumIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleEnumProvFreeEnumListValue"))
if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumListEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumListEntry.setDescription('An entry in the mscExampleEnumProvFreeEnumListTable.')
mscExampleEnumProvFreeEnumListValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1175, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11))).clone(namedValues=NamedValues(("january", 0), ("february", 1), ("march", 2), ("april", 3), ("may", 4), ("june", 5), ("july", 6), ("august", 7), ("september", 8), ("october", 9), ("november", 10), ("december", 11)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumListValue.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumListValue.setDescription('This variable represents both the value and the index for the mscExampleEnumProvFreeEnumListTable.')
mscExampleEnumProvFreeEnumListRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1175, 1, 2), RowStatus()).setMaxAccess("writeonly")
if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumListRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumListRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleEnumProvFreeEnumListTable.')
mscExampleEnumProvFreeEnumList1Table = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1176), )
if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumList1Table.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumList1Table.setDescription('')
mscExampleEnumProvFreeEnumList1Entry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1176, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleEnumIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleEnumProvFreeEnumList1Value"))
if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumList1Entry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumList1Entry.setDescription('An entry in the mscExampleEnumProvFreeEnumList1Table.')
mscExampleEnumProvFreeEnumList1Value = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1176, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11))).clone(namedValues=NamedValues(("january", 0), ("february", 1), ("march", 2), ("april", 3), ("may", 4), ("june", 5), ("july", 6), ("august", 7), ("september", 8), ("october", 9), ("november", 10), ("december", 11)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumList1Value.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumList1Value.setDescription('This variable represents both the value and the index for the mscExampleEnumProvFreeEnumList1Table.')
mscExampleEnumProvFreeEnumList1RowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1176, 1, 2), RowStatus()).setMaxAccess("writeonly")
if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumList1RowStatus.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumList1RowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleEnumProvFreeEnumList1Table.')
mscExampleObjectId = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 12))
mscExampleObjectIdRowStatusTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 12, 1), )
if mibBuilder.loadTexts: mscExampleObjectIdRowStatusTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleObjectIdRowStatusTable.setDescription('This entry controls the addition and deletion of mscExampleObjectId components.')
mscExampleObjectIdRowStatusEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 12, 1, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleObjectIdIndex"))
if mibBuilder.loadTexts: mscExampleObjectIdRowStatusEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleObjectIdRowStatusEntry.setDescription('A single entry in the table represents a single mscExampleObjectId component.')
mscExampleObjectIdRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 12, 1, 1, 1), RowStatus()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleObjectIdRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleObjectIdRowStatus.setDescription('This variable is used as the basis for SNMP naming of mscExampleObjectId components. These components can be added and deleted.')
mscExampleObjectIdComponentName = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 12, 1, 1, 2), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mscExampleObjectIdComponentName.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleObjectIdComponentName.setDescription("This variable provides the component's string name for use with the ASCII Console Interface")
mscExampleObjectIdStorageType = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 12, 1, 1, 4), StorageType()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mscExampleObjectIdStorageType.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleObjectIdStorageType.setDescription('This variable represents the storage type value for the mscExampleObjectId tables.')
mscExampleObjectIdIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 12, 1, 1, 10), ObjectIdentifier())
if mibBuilder.loadTexts: mscExampleObjectIdIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleObjectIdIndex.setDescription('This variable represents the index for the mscExampleObjectId tables.')
mscExampleObjectIdOperationalTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 12, 10), )
if mibBuilder.loadTexts: mscExampleObjectIdOperationalTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleObjectIdOperationalTable.setDescription('')
mscExampleObjectIdOperationalEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 12, 10, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleObjectIdIndex"))
if mibBuilder.loadTexts: mscExampleObjectIdOperationalEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleObjectIdOperationalEntry.setDescription('An entry in the mscExampleObjectIdOperationalTable.')
mscExampleObjectIdOperFreeObjId = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 12, 10, 1, 1), ObjectIdentifier()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleObjectIdOperFreeObjId.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleObjectIdOperFreeObjId.setDescription('')
mscExampleObjectIdProvisionalTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 12, 11), )
if mibBuilder.loadTexts: mscExampleObjectIdProvisionalTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleObjectIdProvisionalTable.setDescription('')
mscExampleObjectIdProvisionalEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 12, 11, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleObjectIdIndex"))
if mibBuilder.loadTexts: mscExampleObjectIdProvisionalEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleObjectIdProvisionalEntry.setDescription('An entry in the mscExampleObjectIdProvisionalTable.')
mscExampleObjectIdProvEnumSub = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 12, 11, 1, 1), Link()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleObjectIdProvEnumSub.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleObjectIdProvEnumSub.setDescription('')
mscExampleObjectIdProvFreeObjId = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 12, 11, 1, 2), ObjectIdentifier()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleObjectIdProvFreeObjId.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleObjectIdProvFreeObjId.setDescription('')
mscExampleObjectIdOperFreeObjIdReplicatedTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 12, 1116), )
if mibBuilder.loadTexts: mscExampleObjectIdOperFreeObjIdReplicatedTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleObjectIdOperFreeObjIdReplicatedTable.setDescription('')
mscExampleObjectIdOperFreeObjIdReplicatedEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 12, 1116, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleObjectIdIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleObjectIdOperFreeObjIdReplicatedIndex"))
if mibBuilder.loadTexts: mscExampleObjectIdOperFreeObjIdReplicatedEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleObjectIdOperFreeObjIdReplicatedEntry.setDescription('An entry in the mscExampleObjectIdOperFreeObjIdReplicatedTable.')
mscExampleObjectIdOperFreeObjIdReplicatedIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 12, 1116, 1, 1), ObjectIdentifier())
if mibBuilder.loadTexts: mscExampleObjectIdOperFreeObjIdReplicatedIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleObjectIdOperFreeObjIdReplicatedIndex.setDescription('This variable represents the index for the mscExampleObjectIdOperFreeObjIdReplicatedTable.')
mscExampleObjectIdOperFreeObjIdReplicatedValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 12, 1116, 1, 2), ObjectIdentifier()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleObjectIdOperFreeObjIdReplicatedValue.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleObjectIdOperFreeObjIdReplicatedValue.setDescription('This variable represents an individual value for the mscExampleObjectIdOperFreeObjIdReplicatedTable.')
mscExampleObjectIdOperFreeObjIdReplicatedRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 12, 1116, 1, 3), RowStatus()).setMaxAccess("writeonly")
if mibBuilder.loadTexts: mscExampleObjectIdOperFreeObjIdReplicatedRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleObjectIdOperFreeObjIdReplicatedRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleObjectIdOperFreeObjIdReplicatedTable.')
mscExampleObjectIdOperFreeObjIdListTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 12, 1117), )
if mibBuilder.loadTexts: mscExampleObjectIdOperFreeObjIdListTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleObjectIdOperFreeObjIdListTable.setDescription('')
mscExampleObjectIdOperFreeObjIdListEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 12, 1117, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleObjectIdIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleObjectIdOperFreeObjIdListValue"))
if mibBuilder.loadTexts: mscExampleObjectIdOperFreeObjIdListEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleObjectIdOperFreeObjIdListEntry.setDescription('An entry in the mscExampleObjectIdOperFreeObjIdListTable.')
mscExampleObjectIdOperFreeObjIdListValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 12, 1117, 1, 1), IntegerSequence()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleObjectIdOperFreeObjIdListValue.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleObjectIdOperFreeObjIdListValue.setDescription('This variable represents both the value and the index for the mscExampleObjectIdOperFreeObjIdListTable.')
mscExampleObjectIdOperFreeObjIdListRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 12, 1117, 1, 2), RowStatus()).setMaxAccess("writeonly")
if mibBuilder.loadTexts: mscExampleObjectIdOperFreeObjIdListRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleObjectIdOperFreeObjIdListRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleObjectIdOperFreeObjIdListTable.')
mscExampleObjectIdProvFreeObjIdReplicatedTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 12, 1118), )
if mibBuilder.loadTexts: mscExampleObjectIdProvFreeObjIdReplicatedTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleObjectIdProvFreeObjIdReplicatedTable.setDescription('')
mscExampleObjectIdProvFreeObjIdReplicatedEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 12, 1118, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleObjectIdIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleObjectIdProvFreeObjIdReplicatedIndex"))
if mibBuilder.loadTexts: mscExampleObjectIdProvFreeObjIdReplicatedEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleObjectIdProvFreeObjIdReplicatedEntry.setDescription('An entry in the mscExampleObjectIdProvFreeObjIdReplicatedTable.')
mscExampleObjectIdProvFreeObjIdReplicatedIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 12, 1118, 1, 1), ObjectIdentifier())
if mibBuilder.loadTexts: mscExampleObjectIdProvFreeObjIdReplicatedIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleObjectIdProvFreeObjIdReplicatedIndex.setDescription('This variable represents the index for the mscExampleObjectIdProvFreeObjIdReplicatedTable.')
mscExampleObjectIdProvFreeObjIdReplicatedValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 12, 1118, 1, 2), ObjectIdentifier()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleObjectIdProvFreeObjIdReplicatedValue.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleObjectIdProvFreeObjIdReplicatedValue.setDescription('This variable represents an individual value for the mscExampleObjectIdProvFreeObjIdReplicatedTable.')
mscExampleObjectIdProvFreeObjIdReplicatedRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 12, 1118, 1, 3), RowStatus()).setMaxAccess("writeonly")
if mibBuilder.loadTexts: mscExampleObjectIdProvFreeObjIdReplicatedRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleObjectIdProvFreeObjIdReplicatedRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleObjectIdProvFreeObjIdReplicatedTable.')
mscExampleObjectIdProvFreeObjIdListTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 12, 1119), )
if mibBuilder.loadTexts: mscExampleObjectIdProvFreeObjIdListTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleObjectIdProvFreeObjIdListTable.setDescription('')
mscExampleObjectIdProvFreeObjIdListEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 12, 1119, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleObjectIdIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleObjectIdProvFreeObjIdListValue"))
if mibBuilder.loadTexts: mscExampleObjectIdProvFreeObjIdListEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleObjectIdProvFreeObjIdListEntry.setDescription('An entry in the mscExampleObjectIdProvFreeObjIdListTable.')
mscExampleObjectIdProvFreeObjIdListValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 12, 1119, 1, 1), IntegerSequence()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleObjectIdProvFreeObjIdListValue.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleObjectIdProvFreeObjIdListValue.setDescription('This variable represents both the value and the index for the mscExampleObjectIdProvFreeObjIdListTable.')
mscExampleObjectIdProvFreeObjIdListRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 12, 1119, 1, 2), RowStatus()).setMaxAccess("writeonly")
if mibBuilder.loadTexts: mscExampleObjectIdProvFreeObjIdListRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleObjectIdProvFreeObjIdListRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleObjectIdProvFreeObjIdListTable.')
mscExampleSequence = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 13))
mscExampleSequenceRowStatusTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 13, 1), )
if mibBuilder.loadTexts: mscExampleSequenceRowStatusTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleSequenceRowStatusTable.setDescription('This entry controls the addition and deletion of mscExampleSequence components.')
mscExampleSequenceRowStatusEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 13, 1, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleSequenceIndex"))
if mibBuilder.loadTexts: mscExampleSequenceRowStatusEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleSequenceRowStatusEntry.setDescription('A single entry in the table represents a single mscExampleSequence component.')
mscExampleSequenceRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 13, 1, 1, 1), RowStatus()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleSequenceRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleSequenceRowStatus.setDescription('This variable is used as the basis for SNMP naming of mscExampleSequence components. These components can be added and deleted.')
mscExampleSequenceComponentName = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 13, 1, 1, 2), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mscExampleSequenceComponentName.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleSequenceComponentName.setDescription("This variable provides the component's string name for use with the ASCII Console Interface")
mscExampleSequenceStorageType = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 13, 1, 1, 4), StorageType()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mscExampleSequenceStorageType.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleSequenceStorageType.setDescription('This variable represents the storage type value for the mscExampleSequence tables.')
mscExampleSequenceIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 13, 1, 1, 10), ObjectIdentifier())
if mibBuilder.loadTexts: mscExampleSequenceIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleSequenceIndex.setDescription('This variable represents the index for the mscExampleSequence tables.')
mscExampleSequenceOperationalTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 13, 10), )
if mibBuilder.loadTexts: mscExampleSequenceOperationalTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleSequenceOperationalTable.setDescription('')
mscExampleSequenceOperationalEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 13, 10, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleSequenceIndex"))
if mibBuilder.loadTexts: mscExampleSequenceOperationalEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleSequenceOperationalEntry.setDescription('An entry in the mscExampleSequenceOperationalTable.')
mscExampleSequenceOperStructSequence = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 13, 10, 1, 1), IntegerSequence().subtype(subtypeSpec=ValueSizeConstraint(7, 9))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleSequenceOperStructSequence.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleSequenceOperStructSequence.setDescription('')
mscExampleSequenceOperFreeSequence = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 13, 10, 1, 2), IntegerSequence().subtype(subtypeSpec=ValueSizeConstraint(7, 9))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleSequenceOperFreeSequence.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleSequenceOperFreeSequence.setDescription('')
mscExampleSequenceProvisionalTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 13, 11), )
if mibBuilder.loadTexts: mscExampleSequenceProvisionalTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleSequenceProvisionalTable.setDescription('')
mscExampleSequenceProvisionalEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 13, 11, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleSequenceIndex"))
if mibBuilder.loadTexts: mscExampleSequenceProvisionalEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleSequenceProvisionalEntry.setDescription('An entry in the mscExampleSequenceProvisionalTable.')
mscExampleSequenceProvStructSequence = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 13, 11, 1, 1), IntegerSequence().subtype(subtypeSpec=ValueSizeConstraint(7, 9))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleSequenceProvStructSequence.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleSequenceProvStructSequence.setDescription('')
mscExampleSequenceProvFreeSequence = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 13, 11, 1, 2), IntegerSequence().subtype(subtypeSpec=ValueSizeConstraint(1, 1)).setFixedLength(1)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleSequenceProvFreeSequence.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleSequenceProvFreeSequence.setDescription('')
mscExampleSequenceOperFreeSequenceReplicatedTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 13, 1112), )
if mibBuilder.loadTexts: mscExampleSequenceOperFreeSequenceReplicatedTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleSequenceOperFreeSequenceReplicatedTable.setDescription('')
mscExampleSequenceOperFreeSequenceReplicatedEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 13, 1112, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleSequenceIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleSequenceOperFreeSequenceReplicatedIndex"))
if mibBuilder.loadTexts: mscExampleSequenceOperFreeSequenceReplicatedEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleSequenceOperFreeSequenceReplicatedEntry.setDescription('An entry in the mscExampleSequenceOperFreeSequenceReplicatedTable.')
mscExampleSequenceOperFreeSequenceReplicatedIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 13, 1112, 1, 1), ObjectIdentifier())
if mibBuilder.loadTexts: mscExampleSequenceOperFreeSequenceReplicatedIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleSequenceOperFreeSequenceReplicatedIndex.setDescription('This variable represents the index for the mscExampleSequenceOperFreeSequenceReplicatedTable.')
mscExampleSequenceOperFreeSequenceReplicatedValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 13, 1112, 1, 2), IntegerSequence().subtype(subtypeSpec=ValueSizeConstraint(7, 9))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleSequenceOperFreeSequenceReplicatedValue.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleSequenceOperFreeSequenceReplicatedValue.setDescription('This variable represents an individual value for the mscExampleSequenceOperFreeSequenceReplicatedTable.')
mscExampleSequenceOperFreeSequenceReplicatedRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 13, 1112, 1, 3), RowStatus()).setMaxAccess("writeonly")
if mibBuilder.loadTexts: mscExampleSequenceOperFreeSequenceReplicatedRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleSequenceOperFreeSequenceReplicatedRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleSequenceOperFreeSequenceReplicatedTable.')
mscExampleSequenceOperFreeSequenceListTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 13, 1113), )
if mibBuilder.loadTexts: mscExampleSequenceOperFreeSequenceListTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleSequenceOperFreeSequenceListTable.setDescription('')
mscExampleSequenceOperFreeSequenceListEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 13, 1113, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleSequenceIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleSequenceOperFreeSequenceListValue"))
if mibBuilder.loadTexts: mscExampleSequenceOperFreeSequenceListEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleSequenceOperFreeSequenceListEntry.setDescription('An entry in the mscExampleSequenceOperFreeSequenceListTable.')
mscExampleSequenceOperFreeSequenceListValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 13, 1113, 1, 1), IntegerSequence().subtype(subtypeSpec=ValueSizeConstraint(7, 9))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleSequenceOperFreeSequenceListValue.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleSequenceOperFreeSequenceListValue.setDescription('This variable represents both the value and the index for the mscExampleSequenceOperFreeSequenceListTable.')
mscExampleSequenceOperFreeSequenceListRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 13, 1113, 1, 2), RowStatus()).setMaxAccess("writeonly")
if mibBuilder.loadTexts: mscExampleSequenceOperFreeSequenceListRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleSequenceOperFreeSequenceListRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleSequenceOperFreeSequenceListTable.')
mscExampleSequenceProvFreeSequenceReplicatedTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 13, 1114), )
if mibBuilder.loadTexts: mscExampleSequenceProvFreeSequenceReplicatedTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleSequenceProvFreeSequenceReplicatedTable.setDescription('')
mscExampleSequenceProvFreeSequenceReplicatedEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 13, 1114, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleSequenceIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleSequenceProvFreeSequenceReplicatedIndex"))
if mibBuilder.loadTexts: mscExampleSequenceProvFreeSequenceReplicatedEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleSequenceProvFreeSequenceReplicatedEntry.setDescription('An entry in the mscExampleSequenceProvFreeSequenceReplicatedTable.')
mscExampleSequenceProvFreeSequenceReplicatedIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 13, 1114, 1, 1), ObjectIdentifier())
if mibBuilder.loadTexts: mscExampleSequenceProvFreeSequenceReplicatedIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleSequenceProvFreeSequenceReplicatedIndex.setDescription('This variable represents the index for the mscExampleSequenceProvFreeSequenceReplicatedTable.')
mscExampleSequenceProvFreeSequenceReplicatedValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 13, 1114, 1, 2), IntegerSequence().subtype(subtypeSpec=ValueSizeConstraint(7, 7)).setFixedLength(7)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleSequenceProvFreeSequenceReplicatedValue.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleSequenceProvFreeSequenceReplicatedValue.setDescription('This variable represents an individual value for the mscExampleSequenceProvFreeSequenceReplicatedTable.')
mscExampleSequenceProvFreeSequenceReplicatedRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 13, 1114, 1, 3), RowStatus()).setMaxAccess("writeonly")
if mibBuilder.loadTexts: mscExampleSequenceProvFreeSequenceReplicatedRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleSequenceProvFreeSequenceReplicatedRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleSequenceProvFreeSequenceReplicatedTable.')
mscExampleSequenceProvFreeSequenceListTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 13, 1115), )
if mibBuilder.loadTexts: mscExampleSequenceProvFreeSequenceListTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleSequenceProvFreeSequenceListTable.setDescription('')
mscExampleSequenceProvFreeSequenceListEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 13, 1115, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleSequenceIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleSequenceProvFreeSequenceListValue"))
if mibBuilder.loadTexts: mscExampleSequenceProvFreeSequenceListEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleSequenceProvFreeSequenceListEntry.setDescription('An entry in the mscExampleSequenceProvFreeSequenceListTable.')
mscExampleSequenceProvFreeSequenceListValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 13, 1115, 1, 1), IntegerSequence().subtype(subtypeSpec=ValueSizeConstraint(7, 9))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleSequenceProvFreeSequenceListValue.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleSequenceProvFreeSequenceListValue.setDescription('This variable represents both the value and the index for the mscExampleSequenceProvFreeSequenceListTable.')
mscExampleSequenceProvFreeSequenceListRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 13, 1115, 1, 2), RowStatus()).setMaxAccess("writeonly")
if mibBuilder.loadTexts: mscExampleSequenceProvFreeSequenceListRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleSequenceProvFreeSequenceListRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleSequenceProvFreeSequenceListTable.')
mscExampleSigned = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14))
mscExampleSignedRowStatusTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1), )
if mibBuilder.loadTexts: mscExampleSignedRowStatusTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleSignedRowStatusTable.setDescription('This entry controls the addition and deletion of mscExampleSigned components.')
mscExampleSignedRowStatusEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleSignedIndex"))
if mibBuilder.loadTexts: mscExampleSignedRowStatusEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleSignedRowStatusEntry.setDescription('A single entry in the table represents a single mscExampleSigned component.')
mscExampleSignedRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1, 1, 1), RowStatus()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleSignedRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleSignedRowStatus.setDescription('This variable is used as the basis for SNMP naming of mscExampleSigned components. These components can be added and deleted.')
mscExampleSignedComponentName = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1, 1, 2), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mscExampleSignedComponentName.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleSignedComponentName.setDescription("This variable provides the component's string name for use with the ASCII Console Interface")
mscExampleSignedStorageType = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1, 1, 4), StorageType()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mscExampleSignedStorageType.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleSignedStorageType.setDescription('This variable represents the storage type value for the mscExampleSigned tables.')
mscExampleSignedIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1, 1, 10), NonReplicated())
if mibBuilder.loadTexts: mscExampleSignedIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleSignedIndex.setDescription('This variable represents the index for the mscExampleSigned tables.')
mscExampleSignedOperationalTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 10), )
if mibBuilder.loadTexts: mscExampleSignedOperationalTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleSignedOperationalTable.setDescription('')
mscExampleSignedOperationalEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 10, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleSignedIndex"))
if mibBuilder.loadTexts: mscExampleSignedOperationalEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleSignedOperationalEntry.setDescription('An entry in the mscExampleSignedOperationalTable.')
mscExampleSignedOperStructSigned = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 10, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(-16, 16))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleSignedOperStructSigned.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleSignedOperStructSigned.setDescription('')
mscExampleSignedOperFreeSigned = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 10, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(-16, 16))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleSignedOperFreeSigned.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleSignedOperFreeSigned.setDescription('')
mscExampleSignedProvisionalTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 11), )
if mibBuilder.loadTexts: mscExampleSignedProvisionalTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleSignedProvisionalTable.setDescription('')
mscExampleSignedProvisionalEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 11, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleSignedIndex"))
if mibBuilder.loadTexts: mscExampleSignedProvisionalEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleSignedProvisionalEntry.setDescription('An entry in the mscExampleSignedProvisionalTable.')
mscExampleSignedProvSignedSub = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 11, 1, 1), Link()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleSignedProvSignedSub.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleSignedProvSignedSub.setDescription('')
mscExampleSignedProvStructSigned = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 11, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(ValueRangeConstraint(-17, -17), ValueRangeConstraint(-16, 16), ValueRangeConstraint(17, 17), ValueRangeConstraint(18, 18), )).clone(-17)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleSignedProvStructSigned.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleSignedProvStructSigned.setDescription('VALUES ( -17 = infinity 17 = notApplicable 18 = notMeasured )')
mscExampleSignedProvFreeSigned = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 11, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(-4, 8)).clone(-2)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleSignedProvFreeSigned.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleSignedProvFreeSigned.setDescription('')
mscExampleSignedProvFreeSigned1 = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 11, 1, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(-4, 8))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleSignedProvFreeSigned1.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleSignedProvFreeSigned1.setDescription('')
mscExampleSignedOperStructSignedVectorTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1148), )
if mibBuilder.loadTexts: mscExampleSignedOperStructSignedVectorTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleSignedOperStructSignedVectorTable.setDescription('')
mscExampleSignedOperStructSignedVectorEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1148, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleSignedIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleSignedOperStructSignedVectorIndex"))
if mibBuilder.loadTexts: mscExampleSignedOperStructSignedVectorEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleSignedOperStructSignedVectorEntry.setDescription('An entry in the mscExampleSignedOperStructSignedVectorTable.')
mscExampleSignedOperStructSignedVectorIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1148, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 9)))
if mibBuilder.loadTexts: mscExampleSignedOperStructSignedVectorIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleSignedOperStructSignedVectorIndex.setDescription('This variable represents the mscExampleSignedOperStructSignedVectorTable specific index for the mscExampleSignedOperStructSignedVectorTable.')
mscExampleSignedOperStructSignedVectorValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1148, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(-5, 5))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleSignedOperStructSignedVectorValue.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleSignedOperStructSignedVectorValue.setDescription('This variable represents an individual value for the mscExampleSignedOperStructSignedVectorTable.')
mscExampleSignedOperStructSignedArrayTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1149), )
if mibBuilder.loadTexts: mscExampleSignedOperStructSignedArrayTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleSignedOperStructSignedArrayTable.setDescription('')
mscExampleSignedOperStructSignedArrayEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1149, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleSignedIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleSignedOperStructSignedArrayRowIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleSignedOperStructSignedArrayColumnIndex"))
if mibBuilder.loadTexts: mscExampleSignedOperStructSignedArrayEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleSignedOperStructSignedArrayEntry.setDescription('An entry in the mscExampleSignedOperStructSignedArrayTable.')
mscExampleSignedOperStructSignedArrayRowIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1149, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 2)))
if mibBuilder.loadTexts: mscExampleSignedOperStructSignedArrayRowIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleSignedOperStructSignedArrayRowIndex.setDescription('This variable represents the next to last index for the mscExampleSignedOperStructSignedArrayTable.')
mscExampleSignedOperStructSignedArrayColumnIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1149, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 3)))
if mibBuilder.loadTexts: mscExampleSignedOperStructSignedArrayColumnIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleSignedOperStructSignedArrayColumnIndex.setDescription('This variable represents the final index for the mscExampleSignedOperStructSignedArrayTable.')
mscExampleSignedOperStructSignedArrayValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1149, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(-5, 5))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleSignedOperStructSignedArrayValue.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleSignedOperStructSignedArrayValue.setDescription('This variable represents an individual value for the mscExampleSignedOperStructSignedArrayTable.')
mscExampleSignedOperFreeSignedVectorTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1150), )
if mibBuilder.loadTexts: mscExampleSignedOperFreeSignedVectorTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleSignedOperFreeSignedVectorTable.setDescription('')
mscExampleSignedOperFreeSignedVectorEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1150, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleSignedIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleSignedOperFreeSignedVectorIndex"))
if mibBuilder.loadTexts: mscExampleSignedOperFreeSignedVectorEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleSignedOperFreeSignedVectorEntry.setDescription('An entry in the mscExampleSignedOperFreeSignedVectorTable.')
mscExampleSignedOperFreeSignedVectorIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1150, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 3)))
if mibBuilder.loadTexts: mscExampleSignedOperFreeSignedVectorIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleSignedOperFreeSignedVectorIndex.setDescription('This variable represents the mscExampleSignedOperFreeSignedVectorTable specific index for the mscExampleSignedOperFreeSignedVectorTable.')
mscExampleSignedOperFreeSignedVectorValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1150, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(-5, 5))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleSignedOperFreeSignedVectorValue.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleSignedOperFreeSignedVectorValue.setDescription('This variable represents an individual value for the mscExampleSignedOperFreeSignedVectorTable.')
mscExampleSignedOperFreeSignedArrayTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1151), )
if mibBuilder.loadTexts: mscExampleSignedOperFreeSignedArrayTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleSignedOperFreeSignedArrayTable.setDescription('')
mscExampleSignedOperFreeSignedArrayEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1151, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleSignedIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleSignedOperFreeSignedArrayRowIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleSignedOperFreeSignedArrayColumnIndex"))
if mibBuilder.loadTexts: mscExampleSignedOperFreeSignedArrayEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleSignedOperFreeSignedArrayEntry.setDescription('An entry in the mscExampleSignedOperFreeSignedArrayTable.')
mscExampleSignedOperFreeSignedArrayRowIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1151, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 2)))
if mibBuilder.loadTexts: mscExampleSignedOperFreeSignedArrayRowIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleSignedOperFreeSignedArrayRowIndex.setDescription('This variable represents the next to last index for the mscExampleSignedOperFreeSignedArrayTable.')
mscExampleSignedOperFreeSignedArrayColumnIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1151, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 3)))
if mibBuilder.loadTexts: mscExampleSignedOperFreeSignedArrayColumnIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleSignedOperFreeSignedArrayColumnIndex.setDescription('This variable represents the final index for the mscExampleSignedOperFreeSignedArrayTable.')
mscExampleSignedOperFreeSignedArrayValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1151, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(-5, 5))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleSignedOperFreeSignedArrayValue.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleSignedOperFreeSignedArrayValue.setDescription('This variable represents an individual value for the mscExampleSignedOperFreeSignedArrayTable.')
mscExampleSignedOperFreeSignedReplicatedTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1152), )
if mibBuilder.loadTexts: mscExampleSignedOperFreeSignedReplicatedTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleSignedOperFreeSignedReplicatedTable.setDescription('')
mscExampleSignedOperFreeSignedReplicatedEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1152, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleSignedIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleSignedOperFreeSignedReplicatedIndex"))
if mibBuilder.loadTexts: mscExampleSignedOperFreeSignedReplicatedEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleSignedOperFreeSignedReplicatedEntry.setDescription('An entry in the mscExampleSignedOperFreeSignedReplicatedTable.')
mscExampleSignedOperFreeSignedReplicatedIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1152, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(-5, 5)))
if mibBuilder.loadTexts: mscExampleSignedOperFreeSignedReplicatedIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleSignedOperFreeSignedReplicatedIndex.setDescription('This variable represents the index for the mscExampleSignedOperFreeSignedReplicatedTable.')
mscExampleSignedOperFreeSignedReplicatedValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1152, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(-16, 16))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleSignedOperFreeSignedReplicatedValue.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleSignedOperFreeSignedReplicatedValue.setDescription('This variable represents an individual value for the mscExampleSignedOperFreeSignedReplicatedTable.')
mscExampleSignedOperFreeSignedReplicatedRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1152, 1, 3), RowStatus()).setMaxAccess("writeonly")
if mibBuilder.loadTexts: mscExampleSignedOperFreeSignedReplicatedRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleSignedOperFreeSignedReplicatedRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleSignedOperFreeSignedReplicatedTable.')
mscExampleSignedOperFreeSignedListTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1153), )
if mibBuilder.loadTexts: mscExampleSignedOperFreeSignedListTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleSignedOperFreeSignedListTable.setDescription('')
mscExampleSignedOperFreeSignedListEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1153, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleSignedIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleSignedOperFreeSignedListValue"))
if mibBuilder.loadTexts: mscExampleSignedOperFreeSignedListEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleSignedOperFreeSignedListEntry.setDescription('An entry in the mscExampleSignedOperFreeSignedListTable.')
mscExampleSignedOperFreeSignedListValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1153, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(-16, 16))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleSignedOperFreeSignedListValue.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleSignedOperFreeSignedListValue.setDescription('This variable represents both the value and the index for the mscExampleSignedOperFreeSignedListTable.')
mscExampleSignedOperFreeSignedListRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1153, 1, 2), RowStatus()).setMaxAccess("writeonly")
if mibBuilder.loadTexts: mscExampleSignedOperFreeSignedListRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleSignedOperFreeSignedListRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleSignedOperFreeSignedListTable.')
mscExampleSignedProvStructSignedVectorTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1154), )
if mibBuilder.loadTexts: mscExampleSignedProvStructSignedVectorTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleSignedProvStructSignedVectorTable.setDescription('')
mscExampleSignedProvStructSignedVectorEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1154, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleSignedIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleSignedProvStructSignedVectorIndex"))
if mibBuilder.loadTexts: mscExampleSignedProvStructSignedVectorEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleSignedProvStructSignedVectorEntry.setDescription('An entry in the mscExampleSignedProvStructSignedVectorTable.')
mscExampleSignedProvStructSignedVectorIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1154, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 9)))
if mibBuilder.loadTexts: mscExampleSignedProvStructSignedVectorIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleSignedProvStructSignedVectorIndex.setDescription('This variable represents the mscExampleSignedProvStructSignedVectorTable specific index for the mscExampleSignedProvStructSignedVectorTable.')
mscExampleSignedProvStructSignedVectorValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1154, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(-5, 5))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleSignedProvStructSignedVectorValue.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleSignedProvStructSignedVectorValue.setDescription('This variable represents an individual value for the mscExampleSignedProvStructSignedVectorTable.')
mscExampleSignedProvStructSignedArrayTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1155), )
if mibBuilder.loadTexts: mscExampleSignedProvStructSignedArrayTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleSignedProvStructSignedArrayTable.setDescription('')
mscExampleSignedProvStructSignedArrayEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1155, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleSignedIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleSignedProvStructSignedArrayRowIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleSignedProvStructSignedArrayColumnIndex"))
if mibBuilder.loadTexts: mscExampleSignedProvStructSignedArrayEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleSignedProvStructSignedArrayEntry.setDescription('An entry in the mscExampleSignedProvStructSignedArrayTable.')
mscExampleSignedProvStructSignedArrayRowIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1155, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 2)))
if mibBuilder.loadTexts: mscExampleSignedProvStructSignedArrayRowIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleSignedProvStructSignedArrayRowIndex.setDescription('This variable represents the next to last index for the mscExampleSignedProvStructSignedArrayTable.')
mscExampleSignedProvStructSignedArrayColumnIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1155, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 3)))
if mibBuilder.loadTexts: mscExampleSignedProvStructSignedArrayColumnIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleSignedProvStructSignedArrayColumnIndex.setDescription('This variable represents the final index for the mscExampleSignedProvStructSignedArrayTable.')
mscExampleSignedProvStructSignedArrayValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1155, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(-5, 5))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleSignedProvStructSignedArrayValue.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleSignedProvStructSignedArrayValue.setDescription('This variable represents an individual value for the mscExampleSignedProvStructSignedArrayTable.')
mscExampleSignedProvFreeSignedVectorTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1156), )
if mibBuilder.loadTexts: mscExampleSignedProvFreeSignedVectorTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleSignedProvFreeSignedVectorTable.setDescription('')
mscExampleSignedProvFreeSignedVectorEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1156, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleSignedIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleSignedProvFreeSignedVectorIndex"))
if mibBuilder.loadTexts: mscExampleSignedProvFreeSignedVectorEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleSignedProvFreeSignedVectorEntry.setDescription('An entry in the mscExampleSignedProvFreeSignedVectorTable.')
mscExampleSignedProvFreeSignedVectorIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1156, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 9)))
if mibBuilder.loadTexts: mscExampleSignedProvFreeSignedVectorIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleSignedProvFreeSignedVectorIndex.setDescription('This variable represents the mscExampleSignedProvFreeSignedVectorTable specific index for the mscExampleSignedProvFreeSignedVectorTable.')
mscExampleSignedProvFreeSignedVectorValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1156, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(-5, 5))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleSignedProvFreeSignedVectorValue.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleSignedProvFreeSignedVectorValue.setDescription('This variable represents an individual value for the mscExampleSignedProvFreeSignedVectorTable.')
mscExampleSignedProvFreeSignedVector1Table = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1157), )
if mibBuilder.loadTexts: mscExampleSignedProvFreeSignedVector1Table.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleSignedProvFreeSignedVector1Table.setDescription('')
mscExampleSignedProvFreeSignedVector1Entry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1157, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleSignedIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleSignedProvFreeSignedVector1Index"))
if mibBuilder.loadTexts: mscExampleSignedProvFreeSignedVector1Entry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleSignedProvFreeSignedVector1Entry.setDescription('An entry in the mscExampleSignedProvFreeSignedVector1Table.')
mscExampleSignedProvFreeSignedVector1Index = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1157, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 9)))
if mibBuilder.loadTexts: mscExampleSignedProvFreeSignedVector1Index.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleSignedProvFreeSignedVector1Index.setDescription('This variable represents the mscExampleSignedProvFreeSignedVector1Table specific index for the mscExampleSignedProvFreeSignedVector1Table.')
mscExampleSignedProvFreeSignedVector1Value = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1157, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(-5, 5))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleSignedProvFreeSignedVector1Value.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleSignedProvFreeSignedVector1Value.setDescription('This variable represents an individual value for the mscExampleSignedProvFreeSignedVector1Table.')
mscExampleSignedProvFreeSignedArrayTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1158), )
if mibBuilder.loadTexts: mscExampleSignedProvFreeSignedArrayTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleSignedProvFreeSignedArrayTable.setDescription('')
mscExampleSignedProvFreeSignedArrayEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1158, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleSignedIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleSignedProvFreeSignedArrayRowIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleSignedProvFreeSignedArrayColumnIndex"))
if mibBuilder.loadTexts: mscExampleSignedProvFreeSignedArrayEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleSignedProvFreeSignedArrayEntry.setDescription('An entry in the mscExampleSignedProvFreeSignedArrayTable.')
mscExampleSignedProvFreeSignedArrayRowIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1158, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 2)))
if mibBuilder.loadTexts: mscExampleSignedProvFreeSignedArrayRowIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleSignedProvFreeSignedArrayRowIndex.setDescription('This variable represents the next to last index for the mscExampleSignedProvFreeSignedArrayTable.')
mscExampleSignedProvFreeSignedArrayColumnIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1158, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 3)))
if mibBuilder.loadTexts: mscExampleSignedProvFreeSignedArrayColumnIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleSignedProvFreeSignedArrayColumnIndex.setDescription('This variable represents the final index for the mscExampleSignedProvFreeSignedArrayTable.')
mscExampleSignedProvFreeSignedArrayValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1158, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(-1000, 4000))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleSignedProvFreeSignedArrayValue.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleSignedProvFreeSignedArrayValue.setDescription('This variable represents an individual value for the mscExampleSignedProvFreeSignedArrayTable.')
mscExampleSignedProvFreeSignedArray1Table = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1159), )
if mibBuilder.loadTexts: mscExampleSignedProvFreeSignedArray1Table.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleSignedProvFreeSignedArray1Table.setDescription('')
mscExampleSignedProvFreeSignedArray1Entry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1159, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleSignedIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleSignedProvFreeSignedArray1RowIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleSignedProvFreeSignedArray1ColumnIndex"))
if mibBuilder.loadTexts: mscExampleSignedProvFreeSignedArray1Entry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleSignedProvFreeSignedArray1Entry.setDescription('An entry in the mscExampleSignedProvFreeSignedArray1Table.')
mscExampleSignedProvFreeSignedArray1RowIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1159, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 2)))
if mibBuilder.loadTexts: mscExampleSignedProvFreeSignedArray1RowIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleSignedProvFreeSignedArray1RowIndex.setDescription('This variable represents the next to last index for the mscExampleSignedProvFreeSignedArray1Table.')
mscExampleSignedProvFreeSignedArray1ColumnIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1159, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 3)))
if mibBuilder.loadTexts: mscExampleSignedProvFreeSignedArray1ColumnIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleSignedProvFreeSignedArray1ColumnIndex.setDescription('This variable represents the final index for the mscExampleSignedProvFreeSignedArray1Table.')
mscExampleSignedProvFreeSignedArray1Value = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1159, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(-1000, 4000))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleSignedProvFreeSignedArray1Value.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleSignedProvFreeSignedArray1Value.setDescription('This variable represents an individual value for the mscExampleSignedProvFreeSignedArray1Table.')
mscExampleSignedProvFreeSignedReplicatedTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1160), )
if mibBuilder.loadTexts: mscExampleSignedProvFreeSignedReplicatedTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleSignedProvFreeSignedReplicatedTable.setDescription('')
mscExampleSignedProvFreeSignedReplicatedEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1160, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleSignedIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleSignedProvFreeSignedReplicatedIndex"))
if mibBuilder.loadTexts: mscExampleSignedProvFreeSignedReplicatedEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleSignedProvFreeSignedReplicatedEntry.setDescription('An entry in the mscExampleSignedProvFreeSignedReplicatedTable.')
mscExampleSignedProvFreeSignedReplicatedIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1160, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 5)))
if mibBuilder.loadTexts: mscExampleSignedProvFreeSignedReplicatedIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleSignedProvFreeSignedReplicatedIndex.setDescription('This variable represents the index for the mscExampleSignedProvFreeSignedReplicatedTable.')
mscExampleSignedProvFreeSignedReplicatedValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1160, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(-1, 13))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleSignedProvFreeSignedReplicatedValue.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleSignedProvFreeSignedReplicatedValue.setDescription('This variable represents an individual value for the mscExampleSignedProvFreeSignedReplicatedTable.')
mscExampleSignedProvFreeSignedReplicatedRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1160, 1, 3), RowStatus()).setMaxAccess("writeonly")
if mibBuilder.loadTexts: mscExampleSignedProvFreeSignedReplicatedRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleSignedProvFreeSignedReplicatedRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleSignedProvFreeSignedReplicatedTable.')
mscExampleSignedProvFreeSignedListTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1161), )
if mibBuilder.loadTexts: mscExampleSignedProvFreeSignedListTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleSignedProvFreeSignedListTable.setDescription('')
mscExampleSignedProvFreeSignedListEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1161, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleSignedIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleSignedProvFreeSignedListValue"))
if mibBuilder.loadTexts: mscExampleSignedProvFreeSignedListEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleSignedProvFreeSignedListEntry.setDescription('An entry in the mscExampleSignedProvFreeSignedListTable.')
mscExampleSignedProvFreeSignedListValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1161, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(-3000, 160))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleSignedProvFreeSignedListValue.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleSignedProvFreeSignedListValue.setDescription('This variable represents both the value and the index for the mscExampleSignedProvFreeSignedListTable.')
mscExampleSignedProvFreeSignedListRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1161, 1, 2), RowStatus()).setMaxAccess("writeonly")
if mibBuilder.loadTexts: mscExampleSignedProvFreeSignedListRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleSignedProvFreeSignedListRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleSignedProvFreeSignedListTable.')
mscExampleMiscellaneous = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15))
mscExampleMiscellaneousRowStatusTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1), )
if mibBuilder.loadTexts: mscExampleMiscellaneousRowStatusTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleMiscellaneousRowStatusTable.setDescription('This entry controls the addition and deletion of mscExampleMiscellaneous components.')
mscExampleMiscellaneousRowStatusEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleMiscellaneousIndex"))
if mibBuilder.loadTexts: mscExampleMiscellaneousRowStatusEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleMiscellaneousRowStatusEntry.setDescription('A single entry in the table represents a single mscExampleMiscellaneous component.')
mscExampleMiscellaneousRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1, 1, 1), RowStatus()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleMiscellaneousRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleMiscellaneousRowStatus.setDescription('This variable is used as the basis for SNMP naming of mscExampleMiscellaneous components. These components can be added and deleted.')
mscExampleMiscellaneousComponentName = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1, 1, 2), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mscExampleMiscellaneousComponentName.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleMiscellaneousComponentName.setDescription("This variable provides the component's string name for use with the ASCII Console Interface")
mscExampleMiscellaneousStorageType = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1, 1, 4), StorageType()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mscExampleMiscellaneousStorageType.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleMiscellaneousStorageType.setDescription('This variable represents the storage type value for the mscExampleMiscellaneous tables.')
mscExampleMiscellaneousIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1, 1, 10), NonReplicated())
if mibBuilder.loadTexts: mscExampleMiscellaneousIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleMiscellaneousIndex.setDescription('This variable represents the index for the mscExampleMiscellaneous tables.')
mscExampleMiscellaneousOperationalTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 10), )
if mibBuilder.loadTexts: mscExampleMiscellaneousOperationalTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleMiscellaneousOperationalTable.setDescription('')
mscExampleMiscellaneousOperationalEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 10, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleMiscellaneousIndex"))
if mibBuilder.loadTexts: mscExampleMiscellaneousOperationalEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleMiscellaneousOperationalEntry.setDescription('An entry in the mscExampleMiscellaneousOperationalTable.')
mscExampleMiscellaneousOperStructLong = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 10, 1, 1), Unsigned64().subtype(subtypeSpec=ValueSizeConstraint(8, 8)).setFixedLength(8)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleMiscellaneousOperStructLong.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleMiscellaneousOperStructLong.setDescription('')
mscExampleMiscellaneousOperFreeLong = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 10, 1, 2), Unsigned64().subtype(subtypeSpec=ValueSizeConstraint(8, 8)).setFixedLength(8)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleMiscellaneousOperFreeLong.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleMiscellaneousOperFreeLong.setDescription('')
mscExampleMiscellaneousOperFreeTime = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 10, 1, 3), EnterpriseDateAndTime().subtype(subtypeSpec=ConstraintsUnion(ValueSizeConstraint(0, 0), ValueSizeConstraint(19, 19), ))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleMiscellaneousOperFreeTime.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleMiscellaneousOperFreeTime.setDescription('')
mscExampleMiscellaneousOperFreeTimeDateOnly = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 10, 1, 4), EnterpriseDateAndTime().subtype(subtypeSpec=ConstraintsUnion(ValueSizeConstraint(0, 0), ValueSizeConstraint(10, 10), ))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleMiscellaneousOperFreeTimeDateOnly.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleMiscellaneousOperFreeTimeDateOnly.setDescription('')
mscExampleMiscellaneousOperFreeTimeTimeOnly = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 10, 1, 5), EnterpriseDateAndTime().subtype(subtypeSpec=ConstraintsUnion(ValueSizeConstraint(0, 0), ValueSizeConstraint(5, 5), ))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleMiscellaneousOperFreeTimeTimeOnly.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleMiscellaneousOperFreeTimeTimeOnly.setDescription('')
mscExampleMiscellaneousOperFreeTimeDateTimeMinute = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 10, 1, 6), EnterpriseDateAndTime().subtype(subtypeSpec=ConstraintsUnion(ValueSizeConstraint(0, 0), ValueSizeConstraint(16, 16), ))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleMiscellaneousOperFreeTimeDateTimeMinute.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleMiscellaneousOperFreeTimeDateTimeMinute.setDescription('')
mscExampleMiscellaneousOperFreeCounter64 = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 10, 1, 7), PassportCounter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mscExampleMiscellaneousOperFreeCounter64.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleMiscellaneousOperFreeCounter64.setDescription('')
mscExampleMiscellaneousOperFreeGauge64 = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 10, 1, 8), Gauge64().subtype(subtypeSpec=ValueSizeConstraint(8, 8)).setFixedLength(8)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleMiscellaneousOperFreeGauge64.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleMiscellaneousOperFreeGauge64.setDescription('')
mscExampleMiscellaneousOperStructCounter64 = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 10, 1, 9), PassportCounter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mscExampleMiscellaneousOperStructCounter64.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleMiscellaneousOperStructCounter64.setDescription('')
mscExampleMiscellaneousProvisionalTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 11), )
if mibBuilder.loadTexts: mscExampleMiscellaneousProvisionalTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleMiscellaneousProvisionalTable.setDescription('')
mscExampleMiscellaneousProvisionalEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 11, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleMiscellaneousIndex"))
if mibBuilder.loadTexts: mscExampleMiscellaneousProvisionalEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleMiscellaneousProvisionalEntry.setDescription('An entry in the mscExampleMiscellaneousProvisionalTable.')
mscExampleMiscellaneousProvEnumSub = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 11, 1, 1), Link()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleMiscellaneousProvEnumSub.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleMiscellaneousProvEnumSub.setDescription('')
mscExampleMiscellaneousProvStructLong = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 11, 1, 2), Unsigned64().subtype(subtypeSpec=ValueSizeConstraint(8, 8)).setFixedLength(8)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleMiscellaneousProvStructLong.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleMiscellaneousProvStructLong.setDescription('')
mscExampleMiscellaneousProvFreeLong = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 11, 1, 3), Unsigned64().subtype(subtypeSpec=ValueSizeConstraint(8, 8)).setFixedLength(8)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeLong.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeLong.setDescription('')
mscExampleMiscellaneousProvFreeTime = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 11, 1, 4), EnterpriseDateAndTime().subtype(subtypeSpec=ConstraintsUnion(ValueSizeConstraint(0, 0), ValueSizeConstraint(19, 19), )).clone(hexValue="313939322d31302d31352031303a33393a3030")).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeTime.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeTime.setDescription('')
mscExampleMiscellaneousProvFreeTimeDateOnly = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 11, 1, 5), EnterpriseDateAndTime().subtype(subtypeSpec=ConstraintsUnion(ValueSizeConstraint(0, 0), ValueSizeConstraint(10, 10), )).clone(hexValue="313939322d31302d3135")).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeTimeDateOnly.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeTimeDateOnly.setDescription('')
mscExampleMiscellaneousProvFreeTimeTimeOnly = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 11, 1, 6), EnterpriseDateAndTime().subtype(subtypeSpec=ConstraintsUnion(ValueSizeConstraint(0, 0), ValueSizeConstraint(5, 5), )).clone(hexValue="31303a3339")).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeTimeTimeOnly.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeTimeTimeOnly.setDescription('')
mscExampleMiscellaneousProvFreeTimeDateTimeMinute = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 11, 1, 7), EnterpriseDateAndTime().subtype(subtypeSpec=ConstraintsUnion(ValueSizeConstraint(0, 0), ValueSizeConstraint(16, 16), )).clone(hexValue="313939322d31302d31352031303a3330")).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeTimeDateTimeMinute.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeTimeDateTimeMinute.setDescription('')
mscExampleMiscellaneousProvFreeTime1 = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 11, 1, 8), EnterpriseDateAndTime().subtype(subtypeSpec=ConstraintsUnion(ValueSizeConstraint(0, 0), ValueSizeConstraint(19, 19), ))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeTime1.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeTime1.setDescription('')
mscExampleMiscellaneousProvFreeTimeDateOnly1 = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 11, 1, 9), EnterpriseDateAndTime().subtype(subtypeSpec=ConstraintsUnion(ValueSizeConstraint(0, 0), ValueSizeConstraint(10, 10), ))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeTimeDateOnly1.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeTimeDateOnly1.setDescription('')
mscExampleMiscellaneousProvFreeTimeTimeOnly1 = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 11, 1, 10), EnterpriseDateAndTime().subtype(subtypeSpec=ConstraintsUnion(ValueSizeConstraint(0, 0), ValueSizeConstraint(8, 8), ))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeTimeTimeOnly1.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeTimeTimeOnly1.setDescription('')
mscExampleMiscellaneousProvFreeTimeDateTimeMinute1 = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 11, 1, 11), EnterpriseDateAndTime().subtype(subtypeSpec=ConstraintsUnion(ValueSizeConstraint(0, 0), ValueSizeConstraint(16, 16), ))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeTimeDateTimeMinute1.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeTimeDateTimeMinute1.setDescription('')
mscExampleMiscellaneousOperFreeLongReplicatedTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1177), )
if mibBuilder.loadTexts: mscExampleMiscellaneousOperFreeLongReplicatedTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleMiscellaneousOperFreeLongReplicatedTable.setDescription('')
mscExampleMiscellaneousOperFreeLongReplicatedEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1177, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleMiscellaneousIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleMiscellaneousOperFreeLongReplicatedIndex"))
if mibBuilder.loadTexts: mscExampleMiscellaneousOperFreeLongReplicatedEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleMiscellaneousOperFreeLongReplicatedEntry.setDescription('An entry in the mscExampleMiscellaneousOperFreeLongReplicatedTable.')
mscExampleMiscellaneousOperFreeLongReplicatedIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1177, 1, 1), Unsigned64())
if mibBuilder.loadTexts: mscExampleMiscellaneousOperFreeLongReplicatedIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleMiscellaneousOperFreeLongReplicatedIndex.setDescription('This variable represents the index for the mscExampleMiscellaneousOperFreeLongReplicatedTable.')
mscExampleMiscellaneousOperFreeLongReplicatedValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1177, 1, 2), Unsigned64().subtype(subtypeSpec=ValueSizeConstraint(8, 8)).setFixedLength(8)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleMiscellaneousOperFreeLongReplicatedValue.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleMiscellaneousOperFreeLongReplicatedValue.setDescription('This variable represents an individual value for the mscExampleMiscellaneousOperFreeLongReplicatedTable.')
mscExampleMiscellaneousOperFreeLongReplicatedRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1177, 1, 3), RowStatus()).setMaxAccess("writeonly")
if mibBuilder.loadTexts: mscExampleMiscellaneousOperFreeLongReplicatedRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleMiscellaneousOperFreeLongReplicatedRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleMiscellaneousOperFreeLongReplicatedTable.')
mscExampleMiscellaneousOperFreeLongListTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1178), )
if mibBuilder.loadTexts: mscExampleMiscellaneousOperFreeLongListTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleMiscellaneousOperFreeLongListTable.setDescription('')
mscExampleMiscellaneousOperFreeLongListEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1178, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleMiscellaneousIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleMiscellaneousOperFreeLongListValue"))
if mibBuilder.loadTexts: mscExampleMiscellaneousOperFreeLongListEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleMiscellaneousOperFreeLongListEntry.setDescription('An entry in the mscExampleMiscellaneousOperFreeLongListTable.')
mscExampleMiscellaneousOperFreeLongListValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1178, 1, 1), Unsigned64().subtype(subtypeSpec=ValueSizeConstraint(8, 8)).setFixedLength(8)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleMiscellaneousOperFreeLongListValue.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleMiscellaneousOperFreeLongListValue.setDescription('This variable represents both the value and the index for the mscExampleMiscellaneousOperFreeLongListTable.')
mscExampleMiscellaneousOperFreeLongListRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1178, 1, 2), RowStatus()).setMaxAccess("writeonly")
if mibBuilder.loadTexts: mscExampleMiscellaneousOperFreeLongListRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleMiscellaneousOperFreeLongListRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleMiscellaneousOperFreeLongListTable.')
mscExampleMiscellaneousOperFreeTimeListTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1179), )
if mibBuilder.loadTexts: mscExampleMiscellaneousOperFreeTimeListTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleMiscellaneousOperFreeTimeListTable.setDescription('')
mscExampleMiscellaneousOperFreeTimeListEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1179, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleMiscellaneousIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleMiscellaneousOperFreeTimeListValue"))
if mibBuilder.loadTexts: mscExampleMiscellaneousOperFreeTimeListEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleMiscellaneousOperFreeTimeListEntry.setDescription('An entry in the mscExampleMiscellaneousOperFreeTimeListTable.')
mscExampleMiscellaneousOperFreeTimeListValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1179, 1, 1), EnterpriseDateAndTime().subtype(subtypeSpec=ValueSizeConstraint(16, 16)).setFixedLength(16)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleMiscellaneousOperFreeTimeListValue.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleMiscellaneousOperFreeTimeListValue.setDescription('This variable represents both the value and the index for the mscExampleMiscellaneousOperFreeTimeListTable.')
mscExampleMiscellaneousOperFreeTimeListRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1179, 1, 2), RowStatus()).setMaxAccess("writeonly")
if mibBuilder.loadTexts: mscExampleMiscellaneousOperFreeTimeListRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleMiscellaneousOperFreeTimeListRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleMiscellaneousOperFreeTimeListTable.')
mscExampleMiscellaneousProvFreeLongReplicatedTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1180), )
if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeLongReplicatedTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeLongReplicatedTable.setDescription('')
mscExampleMiscellaneousProvFreeLongReplicatedEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1180, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleMiscellaneousIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleMiscellaneousProvFreeLongReplicatedIndex"))
if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeLongReplicatedEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeLongReplicatedEntry.setDescription('An entry in the mscExampleMiscellaneousProvFreeLongReplicatedTable.')
mscExampleMiscellaneousProvFreeLongReplicatedIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1180, 1, 1), Unsigned64())
if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeLongReplicatedIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeLongReplicatedIndex.setDescription('This variable represents the index for the mscExampleMiscellaneousProvFreeLongReplicatedTable.')
mscExampleMiscellaneousProvFreeLongReplicatedValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1180, 1, 2), Unsigned64().subtype(subtypeSpec=ValueSizeConstraint(8, 8)).setFixedLength(8)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeLongReplicatedValue.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeLongReplicatedValue.setDescription('This variable represents an individual value for the mscExampleMiscellaneousProvFreeLongReplicatedTable.')
mscExampleMiscellaneousProvFreeLongReplicatedRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1180, 1, 3), RowStatus()).setMaxAccess("writeonly")
if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeLongReplicatedRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeLongReplicatedRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleMiscellaneousProvFreeLongReplicatedTable.')
mscExampleMiscellaneousProvFreeLongListTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1181), )
if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeLongListTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeLongListTable.setDescription('')
mscExampleMiscellaneousProvFreeLongListEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1181, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleMiscellaneousIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleMiscellaneousProvFreeLongListValue"))
if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeLongListEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeLongListEntry.setDescription('An entry in the mscExampleMiscellaneousProvFreeLongListTable.')
mscExampleMiscellaneousProvFreeLongListValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1181, 1, 1), Unsigned64().subtype(subtypeSpec=ValueSizeConstraint(8, 8)).setFixedLength(8)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeLongListValue.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeLongListValue.setDescription('This variable represents both the value and the index for the mscExampleMiscellaneousProvFreeLongListTable.')
mscExampleMiscellaneousProvFreeLongListRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1181, 1, 2), RowStatus()).setMaxAccess("writeonly")
if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeLongListRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeLongListRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleMiscellaneousProvFreeLongListTable.')
mscExampleMiscellaneousProvFreeTimeReplicatedTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1182), )
if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeTimeReplicatedTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeTimeReplicatedTable.setDescription('')
mscExampleMiscellaneousProvFreeTimeReplicatedEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1182, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleMiscellaneousIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleMiscellaneousProvFreeTimeReplicatedIndex"))
if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeTimeReplicatedEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeTimeReplicatedEntry.setDescription('An entry in the mscExampleMiscellaneousProvFreeTimeReplicatedTable.')
mscExampleMiscellaneousProvFreeTimeReplicatedIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1182, 1, 1), EnterpriseDateAndTime().subtype(subtypeSpec=ValueSizeConstraint(10, 10)).setFixedLength(10))
if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeTimeReplicatedIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeTimeReplicatedIndex.setDescription('This variable represents the index for the mscExampleMiscellaneousProvFreeTimeReplicatedTable.')
mscExampleMiscellaneousProvFreeTimeReplicatedValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1182, 1, 2), EnterpriseDateAndTime().subtype(subtypeSpec=ConstraintsUnion(ValueSizeConstraint(0, 0), ValueSizeConstraint(8, 8), ))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeTimeReplicatedValue.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeTimeReplicatedValue.setDescription('This variable represents an individual value for the mscExampleMiscellaneousProvFreeTimeReplicatedTable.')
mscExampleMiscellaneousProvFreeTimeReplicatedRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1182, 1, 3), RowStatus()).setMaxAccess("writeonly")
if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeTimeReplicatedRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeTimeReplicatedRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleMiscellaneousProvFreeTimeReplicatedTable.')
mscExampleMiscellaneousProvFreeTimeListTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1183), )
if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeTimeListTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeTimeListTable.setDescription('')
mscExampleMiscellaneousProvFreeTimeListEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1183, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleMiscellaneousIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleMiscellaneousProvFreeTimeListValue"))
if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeTimeListEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeTimeListEntry.setDescription('An entry in the mscExampleMiscellaneousProvFreeTimeListTable.')
mscExampleMiscellaneousProvFreeTimeListValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1183, 1, 1), EnterpriseDateAndTime().subtype(subtypeSpec=ValueSizeConstraint(19, 19)).setFixedLength(19)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeTimeListValue.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeTimeListValue.setDescription('This variable represents both the value and the index for the mscExampleMiscellaneousProvFreeTimeListTable.')
mscExampleMiscellaneousProvFreeTimeListRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1183, 1, 2), RowStatus()).setMaxAccess("writeonly")
if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeTimeListRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeTimeListRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleMiscellaneousProvFreeTimeListTable.')
mscExampleMiscellaneousProvFreeTimeList1Table = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1184), )
if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeTimeList1Table.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeTimeList1Table.setDescription('')
mscExampleMiscellaneousProvFreeTimeList1Entry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1184, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleMiscellaneousIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleMiscellaneousProvFreeTimeList1Value"))
if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeTimeList1Entry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeTimeList1Entry.setDescription('An entry in the mscExampleMiscellaneousProvFreeTimeList1Table.')
mscExampleMiscellaneousProvFreeTimeList1Value = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1184, 1, 1), EnterpriseDateAndTime().subtype(subtypeSpec=ValueSizeConstraint(10, 10)).setFixedLength(10)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeTimeList1Value.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeTimeList1Value.setDescription('This variable represents both the value and the index for the mscExampleMiscellaneousProvFreeTimeList1Table.')
mscExampleMiscellaneousProvFreeTimeList1RowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1184, 1, 2), RowStatus()).setMaxAccess("writeonly")
if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeTimeList1RowStatus.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeTimeList1RowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleMiscellaneousProvFreeTimeList1Table.')
mscExampleMiscellaneousProvFreeTimeList2Table = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1185), )
if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeTimeList2Table.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeTimeList2Table.setDescription('')
mscExampleMiscellaneousProvFreeTimeList2Entry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1185, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleMiscellaneousIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleMiscellaneousProvFreeTimeList2Value"))
if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeTimeList2Entry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeTimeList2Entry.setDescription('An entry in the mscExampleMiscellaneousProvFreeTimeList2Table.')
mscExampleMiscellaneousProvFreeTimeList2Value = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1185, 1, 1), EnterpriseDateAndTime().subtype(subtypeSpec=ValueSizeConstraint(8, 8)).setFixedLength(8)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeTimeList2Value.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeTimeList2Value.setDescription('This variable represents both the value and the index for the mscExampleMiscellaneousProvFreeTimeList2Table.')
mscExampleMiscellaneousProvFreeTimeList2RowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1185, 1, 2), RowStatus()).setMaxAccess("writeonly")
if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeTimeList2RowStatus.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeTimeList2RowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleMiscellaneousProvFreeTimeList2Table.')
mscExampleMiscellaneousProvFreeTimeList3Table = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1186), )
if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeTimeList3Table.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeTimeList3Table.setDescription('')
mscExampleMiscellaneousProvFreeTimeList3Entry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1186, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleMiscellaneousIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleMiscellaneousProvFreeTimeList3Value"))
if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeTimeList3Entry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeTimeList3Entry.setDescription('An entry in the mscExampleMiscellaneousProvFreeTimeList3Table.')
mscExampleMiscellaneousProvFreeTimeList3Value = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1186, 1, 1), EnterpriseDateAndTime().subtype(subtypeSpec=ValueSizeConstraint(16, 16)).setFixedLength(16)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeTimeList3Value.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeTimeList3Value.setDescription('This variable represents both the value and the index for the mscExampleMiscellaneousProvFreeTimeList3Table.')
mscExampleMiscellaneousProvFreeTimeList3RowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1186, 1, 2), RowStatus()).setMaxAccess("writeonly")
if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeTimeList3RowStatus.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeTimeList3RowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleMiscellaneousProvFreeTimeList3Table.')
mscExampleOneIndex = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 16))
mscExampleOneIndexRowStatusTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 16, 1), )
if mibBuilder.loadTexts: mscExampleOneIndexRowStatusTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleOneIndexRowStatusTable.setDescription('This entry controls the addition and deletion of mscExampleOneIndex components.')
mscExampleOneIndexRowStatusEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 16, 1, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleOneIndexOneIndex"))
if mibBuilder.loadTexts: mscExampleOneIndexRowStatusEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleOneIndexRowStatusEntry.setDescription('A single entry in the table represents a single mscExampleOneIndex component.')
mscExampleOneIndexRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 16, 1, 1, 1), RowStatus()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleOneIndexRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleOneIndexRowStatus.setDescription('This variable is used as the basis for SNMP naming of mscExampleOneIndex components. These components can be added and deleted.')
mscExampleOneIndexComponentName = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 16, 1, 1, 2), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mscExampleOneIndexComponentName.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleOneIndexComponentName.setDescription("This variable provides the component's string name for use with the ASCII Console Interface")
mscExampleOneIndexStorageType = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 16, 1, 1, 4), StorageType()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mscExampleOneIndexStorageType.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleOneIndexStorageType.setDescription('This variable represents the storage type value for the mscExampleOneIndex tables.')
mscExampleOneIndexOneIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 16, 1, 1, 10), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 268435455)))
if mibBuilder.loadTexts: mscExampleOneIndexOneIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleOneIndexOneIndex.setDescription('This variable represents the index for the mscExampleOneIndex tables.')
mscExampleOneIndexProvisionedTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 16, 10), )
if mibBuilder.loadTexts: mscExampleOneIndexProvisionedTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleOneIndexProvisionedTable.setDescription('')
mscExampleOneIndexProvisionedEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 16, 10, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleOneIndexOneIndex"))
if mibBuilder.loadTexts: mscExampleOneIndexProvisionedEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleOneIndexProvisionedEntry.setDescription('An entry in the mscExampleOneIndexProvisionedTable.')
mscExampleOneIndexProvAttribute = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 16, 10, 1, 1), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 255)).clone(1)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleOneIndexProvAttribute.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleOneIndexProvAttribute.setDescription('')
mscExampleTwoIndices = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 17))
mscExampleTwoIndicesRowStatusTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 17, 1), )
if mibBuilder.loadTexts: mscExampleTwoIndicesRowStatusTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleTwoIndicesRowStatusTable.setDescription('This entry controls the addition and deletion of mscExampleTwoIndices components.')
mscExampleTwoIndicesRowStatusEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 17, 1, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleTwoIndicesOneIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleTwoIndicesTwoIndex"))
if mibBuilder.loadTexts: mscExampleTwoIndicesRowStatusEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleTwoIndicesRowStatusEntry.setDescription('A single entry in the table represents a single mscExampleTwoIndices component.')
mscExampleTwoIndicesRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 17, 1, 1, 1), RowStatus()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleTwoIndicesRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleTwoIndicesRowStatus.setDescription('This variable is used as the basis for SNMP naming of mscExampleTwoIndices components. These components can be added and deleted.')
mscExampleTwoIndicesComponentName = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 17, 1, 1, 2), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mscExampleTwoIndicesComponentName.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleTwoIndicesComponentName.setDescription("This variable provides the component's string name for use with the ASCII Console Interface")
mscExampleTwoIndicesStorageType = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 17, 1, 1, 4), StorageType()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mscExampleTwoIndicesStorageType.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleTwoIndicesStorageType.setDescription('This variable represents the storage type value for the mscExampleTwoIndices tables.')
mscExampleTwoIndicesOneIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 17, 1, 1, 10), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 268435455)))
if mibBuilder.loadTexts: mscExampleTwoIndicesOneIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleTwoIndicesOneIndex.setDescription('This variable represents an index for the mscExampleTwoIndices tables.')
mscExampleTwoIndicesTwoIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 17, 1, 1, 11), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 268435455)))
if mibBuilder.loadTexts: mscExampleTwoIndicesTwoIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleTwoIndicesTwoIndex.setDescription('This variable represents an index for the mscExampleTwoIndices tables.')
mscExampleTwoIndicesProvisionedTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 17, 10), )
if mibBuilder.loadTexts: mscExampleTwoIndicesProvisionedTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleTwoIndicesProvisionedTable.setDescription('')
mscExampleTwoIndicesProvisionedEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 17, 10, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleTwoIndicesOneIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleTwoIndicesTwoIndex"))
if mibBuilder.loadTexts: mscExampleTwoIndicesProvisionedEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleTwoIndicesProvisionedEntry.setDescription('An entry in the mscExampleTwoIndicesProvisionedTable.')
mscExampleTwoIndicesProvAttribute = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 17, 10, 1, 1), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 255)).clone(1)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleTwoIndicesProvAttribute.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleTwoIndicesProvAttribute.setDescription('')
mscExampleThreeIndices = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 18))
mscExampleThreeIndicesRowStatusTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 18, 1), )
if mibBuilder.loadTexts: mscExampleThreeIndicesRowStatusTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleThreeIndicesRowStatusTable.setDescription('This entry controls the addition and deletion of mscExampleThreeIndices components.')
mscExampleThreeIndicesRowStatusEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 18, 1, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleThreeIndicesOneIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleThreeIndicesTwoIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleThreeIndicesThreeIndex"))
if mibBuilder.loadTexts: mscExampleThreeIndicesRowStatusEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleThreeIndicesRowStatusEntry.setDescription('A single entry in the table represents a single mscExampleThreeIndices component.')
mscExampleThreeIndicesRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 18, 1, 1, 1), RowStatus()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleThreeIndicesRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleThreeIndicesRowStatus.setDescription('This variable is used as the basis for SNMP naming of mscExampleThreeIndices components. These components can be added and deleted.')
mscExampleThreeIndicesComponentName = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 18, 1, 1, 2), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mscExampleThreeIndicesComponentName.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleThreeIndicesComponentName.setDescription("This variable provides the component's string name for use with the ASCII Console Interface")
mscExampleThreeIndicesStorageType = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 18, 1, 1, 4), StorageType()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mscExampleThreeIndicesStorageType.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleThreeIndicesStorageType.setDescription('This variable represents the storage type value for the mscExampleThreeIndices tables.')
mscExampleThreeIndicesOneIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 18, 1, 1, 10), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 268435455)))
if mibBuilder.loadTexts: mscExampleThreeIndicesOneIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleThreeIndicesOneIndex.setDescription('This variable represents an index for the mscExampleThreeIndices tables.')
mscExampleThreeIndicesTwoIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 18, 1, 1, 11), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 268435455)))
if mibBuilder.loadTexts: mscExampleThreeIndicesTwoIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleThreeIndicesTwoIndex.setDescription('This variable represents an index for the mscExampleThreeIndices tables.')
mscExampleThreeIndicesThreeIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 18, 1, 1, 12), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 268435455)))
if mibBuilder.loadTexts: mscExampleThreeIndicesThreeIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleThreeIndicesThreeIndex.setDescription('This variable represents an index for the mscExampleThreeIndices tables.')
mscExampleThreeIndicesProvisionedTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 18, 10), )
if mibBuilder.loadTexts: mscExampleThreeIndicesProvisionedTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleThreeIndicesProvisionedTable.setDescription('')
mscExampleThreeIndicesProvisionedEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 18, 10, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleThreeIndicesOneIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleThreeIndicesTwoIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleThreeIndicesThreeIndex"))
if mibBuilder.loadTexts: mscExampleThreeIndicesProvisionedEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleThreeIndicesProvisionedEntry.setDescription('An entry in the mscExampleThreeIndicesProvisionedTable.')
mscExampleThreeIndicesProvAttribute = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 18, 10, 1, 1), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 255)).clone(1)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleThreeIndicesProvAttribute.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleThreeIndicesProvAttribute.setDescription('')
mscExampleFourIndices = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 19))
mscExampleFourIndicesRowStatusTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 19, 1), )
if mibBuilder.loadTexts: mscExampleFourIndicesRowStatusTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleFourIndicesRowStatusTable.setDescription('This entry controls the addition and deletion of mscExampleFourIndices components.')
mscExampleFourIndicesRowStatusEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 19, 1, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleFourIndicesOneIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleFourIndicesTwoIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleFourIndicesThreeIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleFourIndicesFourIndex"))
if mibBuilder.loadTexts: mscExampleFourIndicesRowStatusEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleFourIndicesRowStatusEntry.setDescription('A single entry in the table represents a single mscExampleFourIndices component.')
mscExampleFourIndicesRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 19, 1, 1, 1), RowStatus()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleFourIndicesRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleFourIndicesRowStatus.setDescription('This variable is used as the basis for SNMP naming of mscExampleFourIndices components. These components can be added and deleted.')
mscExampleFourIndicesComponentName = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 19, 1, 1, 2), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mscExampleFourIndicesComponentName.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleFourIndicesComponentName.setDescription("This variable provides the component's string name for use with the ASCII Console Interface")
mscExampleFourIndicesStorageType = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 19, 1, 1, 4), StorageType()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mscExampleFourIndicesStorageType.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleFourIndicesStorageType.setDescription('This variable represents the storage type value for the mscExampleFourIndices tables.')
mscExampleFourIndicesOneIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 19, 1, 1, 10), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 268435455)))
if mibBuilder.loadTexts: mscExampleFourIndicesOneIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleFourIndicesOneIndex.setDescription('This variable represents an index for the mscExampleFourIndices tables.')
mscExampleFourIndicesTwoIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 19, 1, 1, 11), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 268435455)))
if mibBuilder.loadTexts: mscExampleFourIndicesTwoIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleFourIndicesTwoIndex.setDescription('This variable represents an index for the mscExampleFourIndices tables.')
mscExampleFourIndicesThreeIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 19, 1, 1, 12), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 268435455)))
if mibBuilder.loadTexts: mscExampleFourIndicesThreeIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleFourIndicesThreeIndex.setDescription('This variable represents an index for the mscExampleFourIndices tables.')
mscExampleFourIndicesFourIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 19, 1, 1, 13), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 268435455)))
if mibBuilder.loadTexts: mscExampleFourIndicesFourIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleFourIndicesFourIndex.setDescription('This variable represents an index for the mscExampleFourIndices tables.')
mscExampleFourIndicesProvisionedTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 19, 10), )
if mibBuilder.loadTexts: mscExampleFourIndicesProvisionedTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleFourIndicesProvisionedTable.setDescription('')
mscExampleFourIndicesProvisionedEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 19, 10, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleFourIndicesOneIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleFourIndicesTwoIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleFourIndicesThreeIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleFourIndicesFourIndex"))
if mibBuilder.loadTexts: mscExampleFourIndicesProvisionedEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleFourIndicesProvisionedEntry.setDescription('An entry in the mscExampleFourIndicesProvisionedTable.')
mscExampleFourIndicesProvAttribute = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 19, 10, 1, 1), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 255)).clone(1)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleFourIndicesProvAttribute.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleFourIndicesProvAttribute.setDescription('')
mscExampleDecimalIndices = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 20))
mscExampleDecimalIndicesRowStatusTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 20, 1), )
if mibBuilder.loadTexts: mscExampleDecimalIndicesRowStatusTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDecimalIndicesRowStatusTable.setDescription('This entry controls the addition and deletion of mscExampleDecimalIndices components.')
mscExampleDecimalIndicesRowStatusEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 20, 1, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleDecimalIndicesOneIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleDecimalIndicesTwoIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleDecimalIndicesThreeIndex"))
if mibBuilder.loadTexts: mscExampleDecimalIndicesRowStatusEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDecimalIndicesRowStatusEntry.setDescription('A single entry in the table represents a single mscExampleDecimalIndices component.')
mscExampleDecimalIndicesRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 20, 1, 1, 1), RowStatus()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleDecimalIndicesRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDecimalIndicesRowStatus.setDescription('This variable is used as the basis for SNMP naming of mscExampleDecimalIndices components. These components can be added and deleted.')
mscExampleDecimalIndicesComponentName = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 20, 1, 1, 2), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mscExampleDecimalIndicesComponentName.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDecimalIndicesComponentName.setDescription("This variable provides the component's string name for use with the ASCII Console Interface")
mscExampleDecimalIndicesStorageType = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 20, 1, 1, 4), StorageType()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mscExampleDecimalIndicesStorageType.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDecimalIndicesStorageType.setDescription('This variable represents the storage type value for the mscExampleDecimalIndices tables.')
mscExampleDecimalIndicesOneIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 20, 1, 1, 10), Integer32().subtype(subtypeSpec=ConstraintsUnion(ValueRangeConstraint(1, 10), ValueRangeConstraint(100, 100), )))
if mibBuilder.loadTexts: mscExampleDecimalIndicesOneIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDecimalIndicesOneIndex.setDescription('This variable represents an index for the mscExampleDecimalIndices tables.')
mscExampleDecimalIndicesTwoIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 20, 1, 1, 11), Integer32().subtype(subtypeSpec=ConstraintsUnion(ValueRangeConstraint(1, 10), ValueRangeConstraint(100, 100), )))
if mibBuilder.loadTexts: mscExampleDecimalIndicesTwoIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDecimalIndicesTwoIndex.setDescription('This variable represents an index for the mscExampleDecimalIndices tables.')
mscExampleDecimalIndicesThreeIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 20, 1, 1, 12), Integer32().subtype(subtypeSpec=ConstraintsUnion(ValueRangeConstraint(1, 10), ValueRangeConstraint(100, 100), )))
if mibBuilder.loadTexts: mscExampleDecimalIndicesThreeIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDecimalIndicesThreeIndex.setDescription('This variable represents an index for the mscExampleDecimalIndices tables.')
mscExampleDecimalIndicesProvisionedTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 20, 10), )
if mibBuilder.loadTexts: mscExampleDecimalIndicesProvisionedTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDecimalIndicesProvisionedTable.setDescription('')
mscExampleDecimalIndicesProvisionedEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 20, 10, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleDecimalIndicesOneIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleDecimalIndicesTwoIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleDecimalIndicesThreeIndex"))
if mibBuilder.loadTexts: mscExampleDecimalIndicesProvisionedEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDecimalIndicesProvisionedEntry.setDescription('An entry in the mscExampleDecimalIndicesProvisionedTable.')
mscExampleDecimalIndicesProvAttribute = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 20, 10, 1, 1), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 255)).clone(1)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleDecimalIndicesProvAttribute.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDecimalIndicesProvAttribute.setDescription('')
mscExampleHexIndices = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 21))
mscExampleHexIndicesRowStatusTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 21, 1), )
if mibBuilder.loadTexts: mscExampleHexIndicesRowStatusTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleHexIndicesRowStatusTable.setDescription('This entry controls the addition and deletion of mscExampleHexIndices components.')
mscExampleHexIndicesRowStatusEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 21, 1, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleHexIndicesOneIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleHexIndicesTwoIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleHexIndicesThreeIndex"))
if mibBuilder.loadTexts: mscExampleHexIndicesRowStatusEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleHexIndicesRowStatusEntry.setDescription('A single entry in the table represents a single mscExampleHexIndices component.')
mscExampleHexIndicesRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 21, 1, 1, 1), RowStatus()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleHexIndicesRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleHexIndicesRowStatus.setDescription('This variable is used as the basis for SNMP naming of mscExampleHexIndices components. These components can be added and deleted.')
mscExampleHexIndicesComponentName = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 21, 1, 1, 2), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mscExampleHexIndicesComponentName.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleHexIndicesComponentName.setDescription("This variable provides the component's string name for use with the ASCII Console Interface")
mscExampleHexIndicesStorageType = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 21, 1, 1, 4), StorageType()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mscExampleHexIndicesStorageType.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleHexIndicesStorageType.setDescription('This variable represents the storage type value for the mscExampleHexIndices tables.')
mscExampleHexIndicesOneIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 21, 1, 1, 10), Integer32().subtype(subtypeSpec=ConstraintsUnion(ValueRangeConstraint(1, 16), ValueRangeConstraint(256, 256), )))
if mibBuilder.loadTexts: mscExampleHexIndicesOneIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleHexIndicesOneIndex.setDescription('This variable represents an index for the mscExampleHexIndices tables.')
mscExampleHexIndicesTwoIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 21, 1, 1, 11), Integer32().subtype(subtypeSpec=ConstraintsUnion(ValueRangeConstraint(1, 16), ValueRangeConstraint(256, 256), )))
if mibBuilder.loadTexts: mscExampleHexIndicesTwoIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleHexIndicesTwoIndex.setDescription('This variable represents an index for the mscExampleHexIndices tables.')
mscExampleHexIndicesThreeIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 21, 1, 1, 12), Integer32().subtype(subtypeSpec=ConstraintsUnion(ValueRangeConstraint(1, 16), ValueRangeConstraint(256, 256), )))
if mibBuilder.loadTexts: mscExampleHexIndicesThreeIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleHexIndicesThreeIndex.setDescription('This variable represents an index for the mscExampleHexIndices tables.')
mscExampleHexIndicesProvisionedTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 21, 10), )
if mibBuilder.loadTexts: mscExampleHexIndicesProvisionedTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleHexIndicesProvisionedTable.setDescription('')
mscExampleHexIndicesProvisionedEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 21, 10, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleHexIndicesOneIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleHexIndicesTwoIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleHexIndicesThreeIndex"))
if mibBuilder.loadTexts: mscExampleHexIndicesProvisionedEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleHexIndicesProvisionedEntry.setDescription('An entry in the mscExampleHexIndicesProvisionedTable.')
mscExampleHexIndicesProvAttribute = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 21, 10, 1, 1), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 255)).clone(1)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleHexIndicesProvAttribute.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleHexIndicesProvAttribute.setDescription('')
mscExampleIpAddrIndices = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 22))
mscExampleIpAddrIndicesRowStatusTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 22, 1), )
if mibBuilder.loadTexts: mscExampleIpAddrIndicesRowStatusTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleIpAddrIndicesRowStatusTable.setDescription('This entry controls the addition and deletion of mscExampleIpAddrIndices components.')
mscExampleIpAddrIndicesRowStatusEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 22, 1, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIpAddrIndicesOneIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIpAddrIndicesTwoIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIpAddrIndicesThreeIndex"))
if mibBuilder.loadTexts: mscExampleIpAddrIndicesRowStatusEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleIpAddrIndicesRowStatusEntry.setDescription('A single entry in the table represents a single mscExampleIpAddrIndices component.')
mscExampleIpAddrIndicesRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 22, 1, 1, 1), RowStatus()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleIpAddrIndicesRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleIpAddrIndicesRowStatus.setDescription('This variable is used as the basis for SNMP naming of mscExampleIpAddrIndices components. These components can be added and deleted.')
mscExampleIpAddrIndicesComponentName = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 22, 1, 1, 2), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mscExampleIpAddrIndicesComponentName.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleIpAddrIndicesComponentName.setDescription("This variable provides the component's string name for use with the ASCII Console Interface")
mscExampleIpAddrIndicesStorageType = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 22, 1, 1, 4), StorageType()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mscExampleIpAddrIndicesStorageType.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleIpAddrIndicesStorageType.setDescription('This variable represents the storage type value for the mscExampleIpAddrIndices tables.')
mscExampleIpAddrIndicesOneIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 22, 1, 1, 10), IpAddress())
if mibBuilder.loadTexts: mscExampleIpAddrIndicesOneIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleIpAddrIndicesOneIndex.setDescription('This variable represents an index for the mscExampleIpAddrIndices tables.')
mscExampleIpAddrIndicesTwoIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 22, 1, 1, 11), IpAddress())
if mibBuilder.loadTexts: mscExampleIpAddrIndicesTwoIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleIpAddrIndicesTwoIndex.setDescription('This variable represents an index for the mscExampleIpAddrIndices tables.')
mscExampleIpAddrIndicesThreeIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 22, 1, 1, 12), IpAddress())
if mibBuilder.loadTexts: mscExampleIpAddrIndicesThreeIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleIpAddrIndicesThreeIndex.setDescription('This variable represents an index for the mscExampleIpAddrIndices tables.')
mscExampleIpAddrIndicesProvisionedTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 22, 10), )
if mibBuilder.loadTexts: mscExampleIpAddrIndicesProvisionedTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleIpAddrIndicesProvisionedTable.setDescription('')
mscExampleIpAddrIndicesProvisionedEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 22, 10, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIpAddrIndicesOneIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIpAddrIndicesTwoIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIpAddrIndicesThreeIndex"))
if mibBuilder.loadTexts: mscExampleIpAddrIndicesProvisionedEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleIpAddrIndicesProvisionedEntry.setDescription('An entry in the mscExampleIpAddrIndicesProvisionedTable.')
mscExampleIpAddrIndicesProvAttribute = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 22, 10, 1, 1), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 255)).clone(1)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleIpAddrIndicesProvAttribute.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleIpAddrIndicesProvAttribute.setDescription('')
mscExampleAsciiIndices = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 23))
mscExampleAsciiIndicesRowStatusTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 23, 1), )
if mibBuilder.loadTexts: mscExampleAsciiIndicesRowStatusTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleAsciiIndicesRowStatusTable.setDescription('This entry controls the addition and deletion of mscExampleAsciiIndices components.')
mscExampleAsciiIndicesRowStatusEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 23, 1, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleAsciiIndicesOneIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleAsciiIndicesTwoIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleAsciiIndicesThreeIndex"))
if mibBuilder.loadTexts: mscExampleAsciiIndicesRowStatusEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleAsciiIndicesRowStatusEntry.setDescription('A single entry in the table represents a single mscExampleAsciiIndices component.')
mscExampleAsciiIndicesRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 23, 1, 1, 1), RowStatus()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleAsciiIndicesRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleAsciiIndicesRowStatus.setDescription('This variable is used as the basis for SNMP naming of mscExampleAsciiIndices components. These components can be added and deleted.')
mscExampleAsciiIndicesComponentName = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 23, 1, 1, 2), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mscExampleAsciiIndicesComponentName.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleAsciiIndicesComponentName.setDescription("This variable provides the component's string name for use with the ASCII Console Interface")
mscExampleAsciiIndicesStorageType = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 23, 1, 1, 4), StorageType()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mscExampleAsciiIndicesStorageType.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleAsciiIndicesStorageType.setDescription('This variable represents the storage type value for the mscExampleAsciiIndices tables.')
mscExampleAsciiIndicesOneIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 23, 1, 1, 10), AsciiStringIndex().subtype(subtypeSpec=ValueSizeConstraint(1, 10)))
if mibBuilder.loadTexts: mscExampleAsciiIndicesOneIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleAsciiIndicesOneIndex.setDescription('This variable represents an index for the mscExampleAsciiIndices tables.')
mscExampleAsciiIndicesTwoIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 23, 1, 1, 11), AsciiStringIndex().subtype(subtypeSpec=ValueSizeConstraint(1, 10)))
if mibBuilder.loadTexts: mscExampleAsciiIndicesTwoIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleAsciiIndicesTwoIndex.setDescription('This variable represents an index for the mscExampleAsciiIndices tables.')
mscExampleAsciiIndicesThreeIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 23, 1, 1, 12), AsciiStringIndex().subtype(subtypeSpec=ValueSizeConstraint(1, 10)))
if mibBuilder.loadTexts: mscExampleAsciiIndicesThreeIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleAsciiIndicesThreeIndex.setDescription('This variable represents an index for the mscExampleAsciiIndices tables.')
mscExampleAsciiIndicesProvisionedTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 23, 10), )
if mibBuilder.loadTexts: mscExampleAsciiIndicesProvisionedTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleAsciiIndicesProvisionedTable.setDescription('')
mscExampleAsciiIndicesProvisionedEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 23, 10, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleAsciiIndicesOneIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleAsciiIndicesTwoIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleAsciiIndicesThreeIndex"))
if mibBuilder.loadTexts: mscExampleAsciiIndicesProvisionedEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleAsciiIndicesProvisionedEntry.setDescription('An entry in the mscExampleAsciiIndicesProvisionedTable.')
mscExampleAsciiIndicesProvAttribute = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 23, 10, 1, 1), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 255)).clone(1)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleAsciiIndicesProvAttribute.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleAsciiIndicesProvAttribute.setDescription('')
mscExampleHexStrIndices = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 24))
mscExampleHexStrIndicesRowStatusTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 24, 1), )
if mibBuilder.loadTexts: mscExampleHexStrIndicesRowStatusTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleHexStrIndicesRowStatusTable.setDescription('This entry controls the addition and deletion of mscExampleHexStrIndices components.')
mscExampleHexStrIndicesRowStatusEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 24, 1, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleHexStrIndicesOneIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleHexStrIndicesTwoIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleHexStrIndicesThreeIndex"))
if mibBuilder.loadTexts: mscExampleHexStrIndicesRowStatusEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleHexStrIndicesRowStatusEntry.setDescription('A single entry in the table represents a single mscExampleHexStrIndices component.')
mscExampleHexStrIndicesRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 24, 1, 1, 1), RowStatus()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleHexStrIndicesRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleHexStrIndicesRowStatus.setDescription('This variable is used as the basis for SNMP naming of mscExampleHexStrIndices components. These components can be added and deleted.')
mscExampleHexStrIndicesComponentName = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 24, 1, 1, 2), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mscExampleHexStrIndicesComponentName.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleHexStrIndicesComponentName.setDescription("This variable provides the component's string name for use with the ASCII Console Interface")
mscExampleHexStrIndicesStorageType = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 24, 1, 1, 4), StorageType()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mscExampleHexStrIndicesStorageType.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleHexStrIndicesStorageType.setDescription('This variable represents the storage type value for the mscExampleHexStrIndices tables.')
mscExampleHexStrIndicesOneIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 24, 1, 1, 10), HexString().subtype(subtypeSpec=ValueSizeConstraint(1, 10)))
if mibBuilder.loadTexts: mscExampleHexStrIndicesOneIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleHexStrIndicesOneIndex.setDescription('This variable represents an index for the mscExampleHexStrIndices tables.')
mscExampleHexStrIndicesTwoIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 24, 1, 1, 11), HexString().subtype(subtypeSpec=ValueSizeConstraint(1, 10)))
if mibBuilder.loadTexts: mscExampleHexStrIndicesTwoIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleHexStrIndicesTwoIndex.setDescription('This variable represents an index for the mscExampleHexStrIndices tables.')
mscExampleHexStrIndicesThreeIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 24, 1, 1, 12), HexString().subtype(subtypeSpec=ValueSizeConstraint(1, 10)))
if mibBuilder.loadTexts: mscExampleHexStrIndicesThreeIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleHexStrIndicesThreeIndex.setDescription('This variable represents an index for the mscExampleHexStrIndices tables.')
mscExampleHexStrIndicesProvisionedTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 24, 10), )
if mibBuilder.loadTexts: mscExampleHexStrIndicesProvisionedTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleHexStrIndicesProvisionedTable.setDescription('')
mscExampleHexStrIndicesProvisionedEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 24, 10, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleHexStrIndicesOneIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleHexStrIndicesTwoIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleHexStrIndicesThreeIndex"))
if mibBuilder.loadTexts: mscExampleHexStrIndicesProvisionedEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleHexStrIndicesProvisionedEntry.setDescription('An entry in the mscExampleHexStrIndicesProvisionedTable.')
mscExampleHexStrIndicesProvAttribute = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 24, 10, 1, 1), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 255)).clone(1)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleHexStrIndicesProvAttribute.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleHexStrIndicesProvAttribute.setDescription('')
mscExampleBcdIndices = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 25))
mscExampleBcdIndicesRowStatusTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 25, 1), )
if mibBuilder.loadTexts: mscExampleBcdIndicesRowStatusTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleBcdIndicesRowStatusTable.setDescription('This entry controls the addition and deletion of mscExampleBcdIndices components.')
mscExampleBcdIndicesRowStatusEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 25, 1, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleBcdIndicesOneIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleBcdIndicesTwoIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleBcdIndicesThreeIndex"))
if mibBuilder.loadTexts: mscExampleBcdIndicesRowStatusEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleBcdIndicesRowStatusEntry.setDescription('A single entry in the table represents a single mscExampleBcdIndices component.')
mscExampleBcdIndicesRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 25, 1, 1, 1), RowStatus()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleBcdIndicesRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleBcdIndicesRowStatus.setDescription('This variable is used as the basis for SNMP naming of mscExampleBcdIndices components. These components can be added and deleted.')
mscExampleBcdIndicesComponentName = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 25, 1, 1, 2), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mscExampleBcdIndicesComponentName.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleBcdIndicesComponentName.setDescription("This variable provides the component's string name for use with the ASCII Console Interface")
mscExampleBcdIndicesStorageType = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 25, 1, 1, 4), StorageType()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mscExampleBcdIndicesStorageType.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleBcdIndicesStorageType.setDescription('This variable represents the storage type value for the mscExampleBcdIndices tables.')
mscExampleBcdIndicesOneIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 25, 1, 1, 10), DigitString().subtype(subtypeSpec=ValueSizeConstraint(1, 10)))
if mibBuilder.loadTexts: mscExampleBcdIndicesOneIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleBcdIndicesOneIndex.setDescription('This variable represents an index for the mscExampleBcdIndices tables.')
mscExampleBcdIndicesTwoIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 25, 1, 1, 11), DigitString().subtype(subtypeSpec=ValueSizeConstraint(1, 10)))
if mibBuilder.loadTexts: mscExampleBcdIndicesTwoIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleBcdIndicesTwoIndex.setDescription('This variable represents an index for the mscExampleBcdIndices tables.')
mscExampleBcdIndicesThreeIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 25, 1, 1, 12), DigitString().subtype(subtypeSpec=ValueSizeConstraint(1, 10)))
if mibBuilder.loadTexts: mscExampleBcdIndicesThreeIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleBcdIndicesThreeIndex.setDescription('This variable represents an index for the mscExampleBcdIndices tables.')
mscExampleBcdIndicesProvisionedTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 25, 10), )
if mibBuilder.loadTexts: mscExampleBcdIndicesProvisionedTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleBcdIndicesProvisionedTable.setDescription('')
mscExampleBcdIndicesProvisionedEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 25, 10, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleBcdIndicesOneIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleBcdIndicesTwoIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleBcdIndicesThreeIndex"))
if mibBuilder.loadTexts: mscExampleBcdIndicesProvisionedEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleBcdIndicesProvisionedEntry.setDescription('An entry in the mscExampleBcdIndicesProvisionedTable.')
mscExampleBcdIndicesProvAttribute = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 25, 10, 1, 1), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 255)).clone(1)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleBcdIndicesProvAttribute.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleBcdIndicesProvAttribute.setDescription('')
mscExampleEnumIndices = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 26))
mscExampleEnumIndicesRowStatusTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 26, 1), )
if mibBuilder.loadTexts: mscExampleEnumIndicesRowStatusTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleEnumIndicesRowStatusTable.setDescription('This entry controls the addition and deletion of mscExampleEnumIndices components.')
mscExampleEnumIndicesRowStatusEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 26, 1, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleEnumIndicesOneIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleEnumIndicesTwoIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleEnumIndicesThreeIndex"))
if mibBuilder.loadTexts: mscExampleEnumIndicesRowStatusEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleEnumIndicesRowStatusEntry.setDescription('A single entry in the table represents a single mscExampleEnumIndices component.')
mscExampleEnumIndicesRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 26, 1, 1, 1), RowStatus()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleEnumIndicesRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleEnumIndicesRowStatus.setDescription('This variable is used as the basis for SNMP naming of mscExampleEnumIndices components. These components can be added and deleted.')
mscExampleEnumIndicesComponentName = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 26, 1, 1, 2), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mscExampleEnumIndicesComponentName.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleEnumIndicesComponentName.setDescription("This variable provides the component's string name for use with the ASCII Console Interface")
mscExampleEnumIndicesStorageType = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 26, 1, 1, 4), StorageType()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mscExampleEnumIndicesStorageType.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleEnumIndicesStorageType.setDescription('This variable represents the storage type value for the mscExampleEnumIndices tables.')
mscExampleEnumIndicesOneIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 26, 1, 1, 10), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("first", 1), ("second", 2), ("third", 3))))
if mibBuilder.loadTexts: mscExampleEnumIndicesOneIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleEnumIndicesOneIndex.setDescription('This variable represents an index for the mscExampleEnumIndices tables.')
mscExampleEnumIndicesTwoIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 26, 1, 1, 11), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("first", 1), ("second", 2), ("third", 3))))
if mibBuilder.loadTexts: mscExampleEnumIndicesTwoIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleEnumIndicesTwoIndex.setDescription('This variable represents an index for the mscExampleEnumIndices tables.')
mscExampleEnumIndicesThreeIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 26, 1, 1, 12), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("first", 1), ("second", 2), ("third", 3))))
if mibBuilder.loadTexts: mscExampleEnumIndicesThreeIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleEnumIndicesThreeIndex.setDescription('This variable represents an index for the mscExampleEnumIndices tables.')
mscExampleEnumIndicesProvisionedTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 26, 10), )
if mibBuilder.loadTexts: mscExampleEnumIndicesProvisionedTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleEnumIndicesProvisionedTable.setDescription('')
mscExampleEnumIndicesProvisionedEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 26, 10, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleEnumIndicesOneIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleEnumIndicesTwoIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleEnumIndicesThreeIndex"))
if mibBuilder.loadTexts: mscExampleEnumIndicesProvisionedEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleEnumIndicesProvisionedEntry.setDescription('An entry in the mscExampleEnumIndicesProvisionedTable.')
mscExampleEnumIndicesProvAttribute = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 26, 10, 1, 1), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 255)).clone(1)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleEnumIndicesProvAttribute.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleEnumIndicesProvAttribute.setDescription('')
mscExampleSequenceIndices = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 27))
mscExampleSequenceIndicesRowStatusTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 27, 1), )
if mibBuilder.loadTexts: mscExampleSequenceIndicesRowStatusTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleSequenceIndicesRowStatusTable.setDescription('This entry controls the addition and deletion of mscExampleSequenceIndices components.')
mscExampleSequenceIndicesRowStatusEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 27, 1, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleSequenceIndicesOneIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleSequenceIndicesTwoIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleSequenceIndicesThreeIndex"))
if mibBuilder.loadTexts: mscExampleSequenceIndicesRowStatusEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleSequenceIndicesRowStatusEntry.setDescription('A single entry in the table represents a single mscExampleSequenceIndices component.')
mscExampleSequenceIndicesRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 27, 1, 1, 1), RowStatus()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleSequenceIndicesRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleSequenceIndicesRowStatus.setDescription('This variable is used as the basis for SNMP naming of mscExampleSequenceIndices components. These components can be added and deleted.')
mscExampleSequenceIndicesComponentName = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 27, 1, 1, 2), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mscExampleSequenceIndicesComponentName.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleSequenceIndicesComponentName.setDescription("This variable provides the component's string name for use with the ASCII Console Interface")
mscExampleSequenceIndicesStorageType = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 27, 1, 1, 4), StorageType()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mscExampleSequenceIndicesStorageType.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleSequenceIndicesStorageType.setDescription('This variable represents the storage type value for the mscExampleSequenceIndices tables.')
mscExampleSequenceIndicesOneIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 27, 1, 1, 10), ObjectIdentifier())
if mibBuilder.loadTexts: mscExampleSequenceIndicesOneIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleSequenceIndicesOneIndex.setDescription('This variable represents an index for the mscExampleSequenceIndices tables.')
mscExampleSequenceIndicesTwoIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 27, 1, 1, 11), ObjectIdentifier())
if mibBuilder.loadTexts: mscExampleSequenceIndicesTwoIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleSequenceIndicesTwoIndex.setDescription('This variable represents an index for the mscExampleSequenceIndices tables.')
mscExampleSequenceIndicesThreeIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 27, 1, 1, 12), ObjectIdentifier())
if mibBuilder.loadTexts: mscExampleSequenceIndicesThreeIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleSequenceIndicesThreeIndex.setDescription('This variable represents an index for the mscExampleSequenceIndices tables.')
mscExampleSequenceIndicesProvisionedTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 27, 10), )
if mibBuilder.loadTexts: mscExampleSequenceIndicesProvisionedTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleSequenceIndicesProvisionedTable.setDescription('')
mscExampleSequenceIndicesProvisionedEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 27, 10, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleSequenceIndicesOneIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleSequenceIndicesTwoIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleSequenceIndicesThreeIndex"))
if mibBuilder.loadTexts: mscExampleSequenceIndicesProvisionedEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleSequenceIndicesProvisionedEntry.setDescription('An entry in the mscExampleSequenceIndicesProvisionedTable.')
mscExampleSequenceIndicesProvAttribute = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 27, 10, 1, 1), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 255)).clone(1)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleSequenceIndicesProvAttribute.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleSequenceIndicesProvAttribute.setDescription('')
mscExampleObjIdIndices = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 28))
mscExampleObjIdIndicesRowStatusTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 28, 1), )
if mibBuilder.loadTexts: mscExampleObjIdIndicesRowStatusTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleObjIdIndicesRowStatusTable.setDescription('This entry controls the addition and deletion of mscExampleObjIdIndices components.')
mscExampleObjIdIndicesRowStatusEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 28, 1, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleObjIdIndicesOneIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleObjIdIndicesTwoIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleObjIdIndicesThreeIndex"))
if mibBuilder.loadTexts: mscExampleObjIdIndicesRowStatusEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleObjIdIndicesRowStatusEntry.setDescription('A single entry in the table represents a single mscExampleObjIdIndices component.')
mscExampleObjIdIndicesRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 28, 1, 1, 1), RowStatus()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleObjIdIndicesRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleObjIdIndicesRowStatus.setDescription('This variable is used as the basis for SNMP naming of mscExampleObjIdIndices components. These components can be added and deleted.')
mscExampleObjIdIndicesComponentName = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 28, 1, 1, 2), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mscExampleObjIdIndicesComponentName.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleObjIdIndicesComponentName.setDescription("This variable provides the component's string name for use with the ASCII Console Interface")
mscExampleObjIdIndicesStorageType = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 28, 1, 1, 4), StorageType()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mscExampleObjIdIndicesStorageType.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleObjIdIndicesStorageType.setDescription('This variable represents the storage type value for the mscExampleObjIdIndices tables.')
mscExampleObjIdIndicesOneIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 28, 1, 1, 10), ObjectIdentifier())
if mibBuilder.loadTexts: mscExampleObjIdIndicesOneIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleObjIdIndicesOneIndex.setDescription('This variable represents an index for the mscExampleObjIdIndices tables.')
mscExampleObjIdIndicesTwoIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 28, 1, 1, 11), ObjectIdentifier())
if mibBuilder.loadTexts: mscExampleObjIdIndicesTwoIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleObjIdIndicesTwoIndex.setDescription('This variable represents an index for the mscExampleObjIdIndices tables.')
mscExampleObjIdIndicesThreeIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 28, 1, 1, 12), ObjectIdentifier())
if mibBuilder.loadTexts: mscExampleObjIdIndicesThreeIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleObjIdIndicesThreeIndex.setDescription('This variable represents an index for the mscExampleObjIdIndices tables.')
mscExampleObjIdIndicesProvisionedTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 28, 10), )
if mibBuilder.loadTexts: mscExampleObjIdIndicesProvisionedTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleObjIdIndicesProvisionedTable.setDescription('')
mscExampleObjIdIndicesProvisionedEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 28, 10, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleObjIdIndicesOneIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleObjIdIndicesTwoIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleObjIdIndicesThreeIndex"))
if mibBuilder.loadTexts: mscExampleObjIdIndicesProvisionedEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleObjIdIndicesProvisionedEntry.setDescription('An entry in the mscExampleObjIdIndicesProvisionedTable.')
mscExampleObjIdIndicesProvAttribute = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 28, 10, 1, 1), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 255)).clone(1)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleObjIdIndicesProvAttribute.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleObjIdIndicesProvAttribute.setDescription('')
mscExampleDashedIndices = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 30))
mscExampleDashedIndicesRowStatusTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 30, 1), )
if mibBuilder.loadTexts: mscExampleDashedIndicesRowStatusTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDashedIndicesRowStatusTable.setDescription('This entry controls the addition and deletion of mscExampleDashedIndices components.')
mscExampleDashedIndicesRowStatusEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 30, 1, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleDashedIndicesOneIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleDashedIndicesTwoIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleDashedIndicesThreeIndex"))
if mibBuilder.loadTexts: mscExampleDashedIndicesRowStatusEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDashedIndicesRowStatusEntry.setDescription('A single entry in the table represents a single mscExampleDashedIndices component.')
mscExampleDashedIndicesRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 30, 1, 1, 1), RowStatus()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleDashedIndicesRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDashedIndicesRowStatus.setDescription('This variable is used as the basis for SNMP naming of mscExampleDashedIndices components. These components can be added and deleted.')
mscExampleDashedIndicesComponentName = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 30, 1, 1, 2), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mscExampleDashedIndicesComponentName.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDashedIndicesComponentName.setDescription("This variable provides the component's string name for use with the ASCII Console Interface")
mscExampleDashedIndicesStorageType = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 30, 1, 1, 4), StorageType()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mscExampleDashedIndicesStorageType.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDashedIndicesStorageType.setDescription('This variable represents the storage type value for the mscExampleDashedIndices tables.')
mscExampleDashedIndicesOneIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 30, 1, 1, 10), DashedHexString().subtype(subtypeSpec=ValueSizeConstraint(1, 10)))
if mibBuilder.loadTexts: mscExampleDashedIndicesOneIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDashedIndicesOneIndex.setDescription('This variable represents an index for the mscExampleDashedIndices tables.')
mscExampleDashedIndicesTwoIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 30, 1, 1, 11), DashedHexString().subtype(subtypeSpec=ValueSizeConstraint(1, 10)))
if mibBuilder.loadTexts: mscExampleDashedIndicesTwoIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDashedIndicesTwoIndex.setDescription('This variable represents an index for the mscExampleDashedIndices tables.')
mscExampleDashedIndicesThreeIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 30, 1, 1, 12), DashedHexString().subtype(subtypeSpec=ValueSizeConstraint(1, 10)))
if mibBuilder.loadTexts: mscExampleDashedIndicesThreeIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDashedIndicesThreeIndex.setDescription('This variable represents an index for the mscExampleDashedIndices tables.')
mscExampleDashedIndicesProvisionedTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 30, 10), )
if mibBuilder.loadTexts: mscExampleDashedIndicesProvisionedTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDashedIndicesProvisionedTable.setDescription('')
mscExampleDashedIndicesProvisionedEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 30, 10, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleDashedIndicesOneIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleDashedIndicesTwoIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleDashedIndicesThreeIndex"))
if mibBuilder.loadTexts: mscExampleDashedIndicesProvisionedEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDashedIndicesProvisionedEntry.setDescription('An entry in the mscExampleDashedIndicesProvisionedTable.')
mscExampleDashedIndicesProvAttribute = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 30, 10, 1, 1), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 255)).clone(1)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleDashedIndicesProvAttribute.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleDashedIndicesProvAttribute.setDescription('')
mscExampleRequiredIndices = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 31))
mscExampleRequiredIndicesRowStatusTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 31, 1), )
if mibBuilder.loadTexts: mscExampleRequiredIndicesRowStatusTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleRequiredIndicesRowStatusTable.setDescription('This entry controls the addition and deletion of mscExampleRequiredIndices components.')
mscExampleRequiredIndicesRowStatusEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 31, 1, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleRequiredIndicesDecimalIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleRequiredIndicesEnumerationIndex"))
if mibBuilder.loadTexts: mscExampleRequiredIndicesRowStatusEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleRequiredIndicesRowStatusEntry.setDescription('A single entry in the table represents a single mscExampleRequiredIndices component.')
mscExampleRequiredIndicesRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 31, 1, 1, 1), RowStatus()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleRequiredIndicesRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleRequiredIndicesRowStatus.setDescription('This variable is used as the basis for SNMP naming of mscExampleRequiredIndices components. These components can be added and deleted.')
mscExampleRequiredIndicesComponentName = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 31, 1, 1, 2), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mscExampleRequiredIndicesComponentName.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleRequiredIndicesComponentName.setDescription("This variable provides the component's string name for use with the ASCII Console Interface")
mscExampleRequiredIndicesStorageType = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 31, 1, 1, 4), StorageType()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mscExampleRequiredIndicesStorageType.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleRequiredIndicesStorageType.setDescription('This variable represents the storage type value for the mscExampleRequiredIndices tables.')
mscExampleRequiredIndicesDecimalIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 31, 1, 1, 10), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 268435455)))
if mibBuilder.loadTexts: mscExampleRequiredIndicesDecimalIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleRequiredIndicesDecimalIndex.setDescription('This variable represents an index for the mscExampleRequiredIndices tables.')
mscExampleRequiredIndicesEnumerationIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 31, 1, 1, 11), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("first", 1), ("second", 2), ("third", 3))))
if mibBuilder.loadTexts: mscExampleRequiredIndicesEnumerationIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleRequiredIndicesEnumerationIndex.setDescription('This variable represents an index for the mscExampleRequiredIndices tables.')
mscExampleRequiredIndicesProvisionedTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 31, 10), )
if mibBuilder.loadTexts: mscExampleRequiredIndicesProvisionedTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleRequiredIndicesProvisionedTable.setDescription('')
mscExampleRequiredIndicesProvisionedEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 31, 10, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleRequiredIndicesDecimalIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleRequiredIndicesEnumerationIndex"))
if mibBuilder.loadTexts: mscExampleRequiredIndicesProvisionedEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleRequiredIndicesProvisionedEntry.setDescription('An entry in the mscExampleRequiredIndicesProvisionedTable.')
mscExampleRequiredIndicesProvAttribute = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 31, 10, 1, 1), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 255)).clone(1)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleRequiredIndicesProvAttribute.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleRequiredIndicesProvAttribute.setDescription('')
mscExampleNsap = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 32))
mscExampleNsapRowStatusTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 32, 1), )
if mibBuilder.loadTexts: mscExampleNsapRowStatusTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleNsapRowStatusTable.setDescription('This entry controls the addition and deletion of mscExampleNsap components.')
mscExampleNsapRowStatusEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 32, 1, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleNsapIndex"))
if mibBuilder.loadTexts: mscExampleNsapRowStatusEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleNsapRowStatusEntry.setDescription('A single entry in the table represents a single mscExampleNsap component.')
mscExampleNsapRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 32, 1, 1, 1), RowStatus()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleNsapRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleNsapRowStatus.setDescription('This variable is used as the basis for SNMP naming of mscExampleNsap components. These components can be added and deleted.')
mscExampleNsapComponentName = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 32, 1, 1, 2), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mscExampleNsapComponentName.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleNsapComponentName.setDescription("This variable provides the component's string name for use with the ASCII Console Interface")
mscExampleNsapStorageType = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 32, 1, 1, 4), StorageType()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mscExampleNsapStorageType.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleNsapStorageType.setDescription('This variable represents the storage type value for the mscExampleNsap tables.')
mscExampleNsapIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 32, 1, 1, 10), AsciiStringIndex().subtype(subtypeSpec=ValueSizeConstraint(0, 44)))
if mibBuilder.loadTexts: mscExampleNsapIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleNsapIndex.setDescription('This variable represents the index for the mscExampleNsap tables.')
mscExampleNsapAtmAddrTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 32, 102), )
if mibBuilder.loadTexts: mscExampleNsapAtmAddrTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleNsapAtmAddrTable.setDescription('')
mscExampleNsapAtmAddrEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 32, 102, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleNsapIndex"))
if mibBuilder.loadTexts: mscExampleNsapAtmAddrEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleNsapAtmAddrEntry.setDescription('An entry in the mscExampleNsapAtmAddrTable.')
mscExampleNsapNsapNativeAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 32, 102, 1, 1246), AsciiString().subtype(subtypeSpec=ValueSizeConstraint(1, 44))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleNsapNsapNativeAddress.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleNsapNsapNativeAddress.setDescription('')
mscExampleNsapNativeTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 32, 1247), )
if mibBuilder.loadTexts: mscExampleNsapNativeTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleNsapNativeTable.setDescription('')
mscExampleNsapNativeEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 32, 1247, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleNsapIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleNsapNativeIndex"))
if mibBuilder.loadTexts: mscExampleNsapNativeEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleNsapNativeEntry.setDescription('An entry in the mscExampleNsapNativeTable.')
mscExampleNsapNativeIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 32, 1247, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 9)))
if mibBuilder.loadTexts: mscExampleNsapNativeIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleNsapNativeIndex.setDescription('This variable represents the mscExampleNsapNativeTable specific index for the mscExampleNsapNativeTable.')
mscExampleNsapNativeValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 32, 1247, 1, 2), AsciiString().subtype(subtypeSpec=ValueSizeConstraint(1, 44))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscExampleNsapNativeValue.setStatus('mandatory')
if mibBuilder.loadTexts: mscExampleNsapNativeValue.setDescription('This variable represents an individual value for the mscExampleNsapNativeTable.')
mscFri = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001))
mscFriRowStatusTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 1), )
if mibBuilder.loadTexts: mscFriRowStatusTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriRowStatusTable.setDescription('This entry controls the addition and deletion of mscFri components.')
mscFriRowStatusEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 1, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscFriIndex"))
if mibBuilder.loadTexts: mscFriRowStatusEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriRowStatusEntry.setDescription('A single entry in the table represents a single mscFri component.')
mscFriRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 1, 1, 1), RowStatus()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscFriRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriRowStatus.setDescription('This variable is used as the basis for SNMP naming of mscFri components. These components can be added and deleted.')
mscFriComponentName = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 1, 1, 2), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mscFriComponentName.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriComponentName.setDescription("This variable provides the component's string name for use with the ASCII Console Interface")
mscFriStorageType = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 1, 1, 4), StorageType()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mscFriStorageType.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriStorageType.setDescription('This variable represents the storage type value for the mscFri tables.')
mscFriIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 1, 1, 10), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 99)))
if mibBuilder.loadTexts: mscFriIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriIndex.setDescription('This variable represents the index for the mscFri tables.')
mscFriOperationalTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 100), )
if mibBuilder.loadTexts: mscFriOperationalTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriOperationalTable.setDescription('')
mscFriOperationalEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 100, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscFriIndex"))
if mibBuilder.loadTexts: mscFriOperationalEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriOperationalEntry.setDescription('An entry in the mscFriOperationalTable.')
mscFriOperationalFreeSimpleAscii = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 100, 1, 1), AsciiString().subtype(subtypeSpec=ValueSizeConstraint(10, 100))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscFriOperationalFreeSimpleAscii.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriOperationalFreeSimpleAscii.setDescription('')
mscFriOperationalFreeSimpleDashed = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 100, 1, 2), DashedHexString().subtype(subtypeSpec=ValueSizeConstraint(10, 100))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscFriOperationalFreeSimpleDashed.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriOperationalFreeSimpleDashed.setDescription('')
mscFriOperationalFreeSimpleExtended = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 100, 1, 3), ExtendedAsciiString().subtype(subtypeSpec=ValueSizeConstraint(10, 100))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscFriOperationalFreeSimpleExtended.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriOperationalFreeSimpleExtended.setDescription('')
mscFriOperationalFreeSimpleBcd = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 100, 1, 4), DigitString().subtype(subtypeSpec=ValueSizeConstraint(2, 10))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscFriOperationalFreeSimpleBcd.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriOperationalFreeSimpleBcd.setDescription('')
mscFriOperationalFreeSimpleSigned = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 100, 1, 5), Integer32().subtype(subtypeSpec=ValueRangeConstraint(-2, 10))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscFriOperationalFreeSimpleSigned.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriOperationalFreeSimpleSigned.setDescription('')
mscFriOperationalFreeSimpleFixed = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 100, 1, 6), FixedPoint1().subtype(subtypeSpec=ValueRangeConstraint(55, 66))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscFriOperationalFreeSimpleFixed.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriOperationalFreeSimpleFixed.setDescription('')
mscFriOperationalFreeSimpleSequence = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 100, 1, 7), IntegerSequence().subtype(subtypeSpec=ValueSizeConstraint(5, 11))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscFriOperationalFreeSimpleSequence.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriOperationalFreeSimpleSequence.setDescription('')
mscFriOperationalFreeSimpleObjId = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 100, 1, 8), IntegerSequence()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscFriOperationalFreeSimpleObjId.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriOperationalFreeSimpleObjId.setDescription('')
mscFriOperationalFreeSimpleComponent = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 100, 1, 9), RowPointer()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscFriOperationalFreeSimpleComponent.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriOperationalFreeSimpleComponent.setDescription('')
mscFriOperationalFreeSimpleHex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 100, 1, 10), HexString().subtype(subtypeSpec=ValueSizeConstraint(20, 20)).setFixedLength(20)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscFriOperationalFreeSimpleHex.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriOperationalFreeSimpleHex.setDescription('')
mscFriOperationalStructSetEnumeration = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 100, 1, 11), OctetString().subtype(subtypeSpec=ValueSizeConstraint(2, 2)).setFixedLength(2).clone(hexValue="9100")).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscFriOperationalStructSetEnumeration.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriOperationalStructSetEnumeration.setDescription('Description of bits: january(0) february(1) march(2) april(3) may(4) june(5) july(6) august(7) september(8) october(9) november(10) december(11)')
mscFriOperationalStructSetUnsigned = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 100, 1, 12), OctetString().subtype(subtypeSpec=ValueSizeConstraint(1, 1)).setFixedLength(1).clone(hexValue="54")).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscFriOperationalStructSetUnsigned.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriOperationalStructSetUnsigned.setDescription('Description of bits: n0(0) n1(1) n2(2) n3(3) n4(4) n5(5)')
mscFriOperationalStructSimpleAscii = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 100, 1, 13), AsciiString().subtype(subtypeSpec=ValueSizeConstraint(10, 100)).clone(hexValue="61313063686172737472696e67")).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscFriOperationalStructSimpleAscii.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriOperationalStructSimpleAscii.setDescription('')
mscFriOperationalStructSimpleDashed = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 100, 1, 14), DashedHexString().subtype(subtypeSpec=ValueSizeConstraint(10, 100))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscFriOperationalStructSimpleDashed.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriOperationalStructSimpleDashed.setDescription('')
mscFriOperationalStructSimpleExtended = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 100, 1, 15), ExtendedAsciiString().subtype(subtypeSpec=ValueSizeConstraint(10, 100))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscFriOperationalStructSimpleExtended.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriOperationalStructSimpleExtended.setDescription('')
mscFriOperationalStructSimpleBcd = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 100, 1, 16), DigitString().subtype(subtypeSpec=ValueSizeConstraint(2, 10))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscFriOperationalStructSimpleBcd.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriOperationalStructSimpleBcd.setDescription('')
mscFriOperationalStructSimpleSigned = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 100, 1, 17), Integer32().subtype(subtypeSpec=ValueRangeConstraint(-2, 10))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscFriOperationalStructSimpleSigned.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriOperationalStructSimpleSigned.setDescription('')
mscFriOperationalStructSimpleFixed = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 100, 1, 18), FixedPoint1().subtype(subtypeSpec=ValueRangeConstraint(23, 29))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscFriOperationalStructSimpleFixed.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriOperationalStructSimpleFixed.setDescription('')
mscFriOperationalStructSimpleSequence = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 100, 1, 19), IntegerSequence().subtype(subtypeSpec=ValueSizeConstraint(3, 6))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscFriOperationalStructSimpleSequence.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriOperationalStructSimpleSequence.setDescription('')
mscFriOperationalStructSimpleEnum = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 100, 1, 20), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 5, 6))).clone(namedValues=NamedValues(("monday", 0), ("tuesday", 1), ("wednesday", 2), ("thursday", 3), ("friday", 4), ("saterday", 5), ("sunday", 6))).clone('monday')).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscFriOperationalStructSimpleEnum.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriOperationalStructSimpleEnum.setDescription('')
mscFriOperationalStructSimpleHex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 100, 1, 21), HexString().subtype(subtypeSpec=ValueSizeConstraint(10, 100))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscFriOperationalStructSimpleHex.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriOperationalStructSimpleHex.setDescription('')
mscFriOperationalStructSimpleUnsigned = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 100, 1, 22), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 31)).clone(3)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscFriOperationalStructSimpleUnsigned.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriOperationalStructSimpleUnsigned.setDescription('')
mscFriProvisionalTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 101), )
if mibBuilder.loadTexts: mscFriProvisionalTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriProvisionalTable.setDescription('')
mscFriProvisionalEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 101, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscFriIndex"))
if mibBuilder.loadTexts: mscFriProvisionalEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriProvisionalEntry.setDescription('An entry in the mscFriProvisionalTable.')
mscFriProvisionalStructSetEnumeration = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 101, 1, 1), OctetString().subtype(subtypeSpec=ValueSizeConstraint(1, 1)).setFixedLength(1).clone(hexValue="a8")).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscFriProvisionalStructSetEnumeration.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriProvisionalStructSetEnumeration.setDescription('Description of bits: monday(0) tuesday(1) wednesday(2) thursday(3) friday(4) saterday(5) sunday(6)')
mscFriProvisionalStructSetUnsigned = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 101, 1, 2), OctetString().subtype(subtypeSpec=ValueSizeConstraint(2, 2)).setFixedLength(2).clone(hexValue="aaa8")).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscFriProvisionalStructSetUnsigned.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriProvisionalStructSetUnsigned.setDescription('Description of bits: n0(0) n1(1) n2(2) n3(3) n4(4) n5(5) n6(6) n7(7) n8(8) n9(9) n10(10) n11(11) n12(12)')
mscFriProvisionalStructSimpleAscii = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 101, 1, 3), AsciiString().subtype(subtypeSpec=ValueSizeConstraint(10, 100)).clone(hexValue="61737472696e676f663131")).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscFriProvisionalStructSimpleAscii.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriProvisionalStructSimpleAscii.setDescription('')
mscFriProvisionalStructSimpleDashed = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 101, 1, 4), DashedHexString().subtype(subtypeSpec=ValueSizeConstraint(10, 100)).clone(hexValue="01234556789abCDef0ee")).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscFriProvisionalStructSimpleDashed.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriProvisionalStructSimpleDashed.setDescription('')
mscFriProvisionalStructSimpleExtended = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 101, 1, 5), ExtendedAsciiString().subtype(subtypeSpec=ValueSizeConstraint(10, 100)).clone(hexValue="61006211632264336544")).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscFriProvisionalStructSimpleExtended.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriProvisionalStructSimpleExtended.setDescription('')
mscFriProvisionalStructSimpleBcd = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 101, 1, 6), DigitString().subtype(subtypeSpec=ValueSizeConstraint(2, 10)).clone(hexValue="31323334")).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscFriProvisionalStructSimpleBcd.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriProvisionalStructSimpleBcd.setDescription('')
mscFriProvisionalStructSimpleSequence = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 101, 1, 7), IntegerSequence().subtype(subtypeSpec=ValueSizeConstraint(1, 2))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscFriProvisionalStructSimpleSequence.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriProvisionalStructSimpleSequence.setDescription('')
mscFriProvisionalStructSimpleEnum = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 101, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11))).clone(namedValues=NamedValues(("january", 0), ("february", 1), ("march", 2), ("april", 3), ("may", 4), ("june", 5), ("july", 6), ("august", 7), ("september", 8), ("october", 9), ("november", 10), ("december", 11))).clone('february')).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscFriProvisionalStructSimpleEnum.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriProvisionalStructSimpleEnum.setDescription('')
mscFriProvisionalStructSimpleHex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 101, 1, 9), HexString().subtype(subtypeSpec=ValueSizeConstraint(10, 100)).clone(hexValue="3039303930393039303930393039303930393039303930393039")).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscFriProvisionalStructSimpleHex.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriProvisionalStructSimpleHex.setDescription('')
mscFriProvisionalStructSimpleUnsigned = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 101, 1, 10), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 255)).clone(10)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscFriProvisionalStructSimpleUnsigned.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriProvisionalStructSimpleUnsigned.setDescription('')
mscFriProvisionalStructSimpleSigned = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 101, 1, 11), Integer32().subtype(subtypeSpec=ValueRangeConstraint(-255, 255)).clone(-5)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscFriProvisionalStructSimpleSigned.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriProvisionalStructSimpleSigned.setDescription('')
mscFriProvisionalStructSimpleFixed = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 101, 1, 12), FixedPoint2().subtype(subtypeSpec=ValueRangeConstraint(254, 355)).clone(350)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscFriProvisionalStructSimpleFixed.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriProvisionalStructSimpleFixed.setDescription('')
mscFriProvisionalFreeSimpleAscii = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 101, 1, 13), AsciiString().subtype(subtypeSpec=ValueSizeConstraint(10, 100)).clone(hexValue="61737472696e676f663131")).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscFriProvisionalFreeSimpleAscii.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriProvisionalFreeSimpleAscii.setDescription('')
mscFriProvisionalFreeSimpleDashed = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 101, 1, 14), DashedHexString().subtype(subtypeSpec=ValueSizeConstraint(10, 100)).clone(hexValue="00112233445566778899aabbccddeeff")).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscFriProvisionalFreeSimpleDashed.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriProvisionalFreeSimpleDashed.setDescription('')
mscFriProvisionalFreeSimpleExtended = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 101, 1, 15), ExtendedAsciiString().subtype(subtypeSpec=ValueSizeConstraint(10, 100)).clone(hexValue="61626300006465665555676869")).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscFriProvisionalFreeSimpleExtended.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriProvisionalFreeSimpleExtended.setDescription('')
mscFriProvisionalFreeSimpleBcd = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 101, 1, 16), DigitString().subtype(subtypeSpec=ValueSizeConstraint(2, 10)).clone(hexValue="31323334")).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscFriProvisionalFreeSimpleBcd.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriProvisionalFreeSimpleBcd.setDescription('')
mscFriProvisionalFreeSimpleSequence = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 101, 1, 17), IntegerSequence().subtype(subtypeSpec=ValueSizeConstraint(8, 11))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscFriProvisionalFreeSimpleSequence.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriProvisionalFreeSimpleSequence.setDescription('')
mscFriProvisionalFreeSimpleSigned = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 101, 1, 18), Integer32().subtype(subtypeSpec=ValueRangeConstraint(-2147483648, 2147483647)).clone(-11)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscFriProvisionalFreeSimpleSigned.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriProvisionalFreeSimpleSigned.setDescription('')
mscFriProvisionalFreeSimpleFixed = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 101, 1, 19), FixedPoint2().subtype(subtypeSpec=ValueRangeConstraint(22, 233)).clone(122)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscFriProvisionalFreeSimpleFixed.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriProvisionalFreeSimpleFixed.setDescription('')
mscFriProvisionalFreeSimpleObjId = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 101, 1, 20), IntegerSequence()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscFriProvisionalFreeSimpleObjId.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriProvisionalFreeSimpleObjId.setDescription('')
mscFriProvisionalFreeSimpleComponent = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 101, 1, 21), RowPointer()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscFriProvisionalFreeSimpleComponent.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriProvisionalFreeSimpleComponent.setDescription('')
mscFriProvisionalFreeSimpleHex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 101, 1, 22), HexString().subtype(subtypeSpec=ValueSizeConstraint(10, 100)).clone(hexValue="00112233445566778899aaBBcCDdeeFF313233")).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscFriProvisionalFreeSimpleHex.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriProvisionalFreeSimpleHex.setDescription('')
mscFriEscapeCheckAttribute = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 101, 1, 23), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 255)).clone(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscFriEscapeCheckAttribute.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriEscapeCheckAttribute.setDescription('')
mscFriEscapeDefaultsComponent = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 101, 1, 24), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 255))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscFriEscapeDefaultsComponent.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriEscapeDefaultsComponent.setDescription('')
mscFriEscapeDefaultsGroup = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 101, 1, 25), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 255))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscFriEscapeDefaultsGroup.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriEscapeDefaultsGroup.setDescription('')
mscFriEscapeSet = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 101, 1, 26), AsciiString().subtype(subtypeSpec=ValueSizeConstraint(4, 8)).clone(hexValue="70617373776f7264")).setMaxAccess("writeonly")
if mibBuilder.loadTexts: mscFriEscapeSet.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriEscapeSet.setDescription('This attribute is used for testing the immediate value manipulation offered by the set escape. This is ONLY VALID IF the read access is DEBUG or NONE. This is to prevent the NMS and Passport from becoming out of sync. If the value has an odd number of characters, we issue the exampleEscapeSetResponse error response.')
mscFriEscapeCopyComponent = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 101, 1, 27), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscFriEscapeCopyComponent.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriEscapeCopyComponent.setDescription('')
mscFriEscapeCopyGroup = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 101, 1, 28), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscFriEscapeCopyGroup.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriEscapeCopyGroup.setDescription('')
mscFriEscapeCopyAttribute = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 101, 1, 29), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscFriEscapeCopyAttribute.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriEscapeCopyAttribute.setDescription('')
mscFriStateTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 102), )
if mibBuilder.loadTexts: mscFriStateTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriStateTable.setDescription('This group contains the three OSI State attributes and the six OSI Status attributes. The descriptions generically indicate what each attribute implies about the component. Note that not all the values and state combinations described here are supported by every component which uses this group. For component-specific information and the valid state combinations, refer to NTP 241- 7001-150, Passport Operations and Maintenance Guide.')
mscFriStateEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 102, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscFriIndex"))
if mibBuilder.loadTexts: mscFriStateEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriStateEntry.setDescription('An entry in the mscFriStateTable.')
mscFriAdminState = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 102, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("locked", 0), ("unlocked", 1), ("shuttingDown", 2))).clone('unlocked')).setMaxAccess("readonly")
if mibBuilder.loadTexts: mscFriAdminState.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriAdminState.setDescription('This attribute indicates the OSI Administrative State of the component. The value locked indicates that the component is administratively prohibited from providing services for its users. A Lock or Lock - force command has been previously issued for this component. When the value is locked, the value of usageState must be idle. The value shuttingDown indicates that the component is administratively permitted to provide service to its existing users only. A Lock command was issued against the component and it is in the process of shutting down. The value unlocked indicates that the component is administratively permitted to provide services for its users. To enter this state, issue an Unlock command to this component. The OSI Status attributes, if supported by the component, may provide more details, qualifying the state of the component.')
mscFriOperationalState = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 102, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("disabled", 0), ("enabled", 1))).clone('disabled')).setMaxAccess("readonly")
if mibBuilder.loadTexts: mscFriOperationalState.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriOperationalState.setDescription('This attribute indicates the OSI Operational State of the component. The value enabled indicates that the component is available for operation. Note that if adminState is locked, it would still not be providing service. The value disabled indicates that the component is not available for operation. For example, something is wrong with the component itself, or with another component on which this one depends. If the value is disabled, the usageState must be idle. The OSI Status attributes, if supported by the component, may provide more details, qualifying the state of the component.')
mscFriUsageState = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 102, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("idle", 0), ("active", 1), ("busy", 2))).clone('idle')).setMaxAccess("readonly")
if mibBuilder.loadTexts: mscFriUsageState.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriUsageState.setDescription('This attribute indicates the OSI Usage State of the component. The value idle indicates that the component is not currently in use. The value active indicates that the component is in use and has spare capacity to provide for additional users. The value busy indicates that the component is in use and has no spare operating capacity for additional users at this time. The OSI Status attributes, if supported by the component, may provide more details, qualifying the state of the component.')
mscFriAvailabilityStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 102, 1, 4), OctetString().subtype(subtypeSpec=ValueSizeConstraint(2, 2)).setFixedLength(2)).setMaxAccess("readonly")
if mibBuilder.loadTexts: mscFriAvailabilityStatus.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriAvailabilityStatus.setDescription('If supported by the component, this attribute indicates the OSI Availability status of the component. Note that, even though it is defined as a multi-valued set, at most one value is shown to the user. When no values are in the set, this indicates that either the attribute is not supported or that none of the status conditions described below are present. The value inTest indicates that the resource is undergoing a test procedure. If adminState is locked or shuttingDown, the normal users are precluded from using the resource and controlStatus is reservedForTest. Tests that do not exclude additional users can be present in any operational or administrative state but the reservedForTest condition should not be present. The value failed indicates that the component has an internal fault that prevents it from operating. The operationalState is disabled. The value dependency indicates that the component cannot operate because some other resource on which it depends is unavailable. The operationalState is disabled. The value powerOff indicates the resource requires power to be applied and it is not powered on. The operationalState is disabled. The value offLine indicates the resource requires a routine operation (either manual, automatic, or both) to be performed to place it on-line and make it available for use. The operationalState is disabled. The value offDuty indicates the resource is inactive in accordance with a predetermined time schedule. In the absence of other disabling conditions, the operationalState is enabled or disabled. The value degraded indicates the service provided by the component is degraded in some way, such as in speed or operating capacity. However, the resource remains available for service. The operationalState is enabled. The value notInstalled indicates the resource is not present. The operationalState is disabled. The value logFull is not used. Description of bits: inTest(0) failed(1) powerOff(2) offLine(3) offDuty(4) dependency(5) degraded(6) notInstalled(7) logFull(8)')
mscFriProceduralStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 102, 1, 5), OctetString().subtype(subtypeSpec=ValueSizeConstraint(1, 1)).setFixedLength(1)).setMaxAccess("readonly")
if mibBuilder.loadTexts: mscFriProceduralStatus.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriProceduralStatus.setDescription("If supported by the component, this attribute indicates the OSI Procedural status of the component. Note that, even though it is defined as a multi-valued set, at most one value is shown to the user. When no values are in the set, this indicates that either the attribute is not supported or that none of the status conditions described below are present. The value initializationRequired indicates (for a resource which doesn't initialize autonomously) that initialization is required before it can perform its normal functions, and this procedure has not been initiated. The operationalState is disabled. The value notInitialized indicates (for a resource which does initialize autonomously) that initialization is required before it can perform its normal functions, and this procedure has not been initiated. The operationalState may be enabled or disabled. The value initializing indicates that initialization has been initiated but is not yet complete. The operationalState may be enabled or disabled. The value reporting indicates the resource has completed some processing operation and is notifying the results. The operationalState is enabled. The value terminating indicates the component is in a termination phase. If the resource doesn't reinitialize autonomously, operationalState is disabled; otherwise it is enabled or disabled. Description of bits: initializationRequired(0) notInitialized(1) initializing(2) reporting(3) terminating(4)")
mscFriControlStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 102, 1, 6), OctetString().subtype(subtypeSpec=ValueSizeConstraint(1, 1)).setFixedLength(1)).setMaxAccess("readonly")
if mibBuilder.loadTexts: mscFriControlStatus.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriControlStatus.setDescription('If supported by the component, this attribute indicates the OSI Control status of the component. Note that, even though it is defined as a multi-valued set, at most one value is shown to the user. When no values are in the set, this indicates that either the attribute is not supported or that none of the status conditions described below are present. The value subjectToTest indicates the resource is available but tests may be conducted simultaneously at unpredictable times, which may cause it to exhibit unusual characteristics. The value partOfServicesLocked indicates that part of the service is restricted from users of a resource. The adminState is unlocked. The value reservedForTest indicates that the component is administratively unavailable because it is undergoing a test procedure. The adminState is locked. The value suspended indicates that the service has been administratively suspended. Description of bits: subjectToTest(0) partOfServicesLocked(1) reservedForTest(2) suspended(3)')
mscFriAlarmStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 102, 1, 7), OctetString().subtype(subtypeSpec=ValueSizeConstraint(1, 1)).setFixedLength(1)).setMaxAccess("readonly")
if mibBuilder.loadTexts: mscFriAlarmStatus.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriAlarmStatus.setDescription('If supported by the component, this attribute indicates the OSI Alarm status of the component. Note that, even though it is defined as a multi-valued set, at most one value is shown to the user. When no values are in the set, this indicates that either the attribute is not supported or that none of the status conditions described below are present. The value underRepair indicates the component is currently being repaired. The operationalState is enabled or disabled. The value critical indicates one or more critical alarms are outstanding against the component. Other, less severe, alarms may also be outstanding. The operationalState is enabled or disabled. The value major indicates one or more major alarms are outstanding against the component. Other, less severe, alarms may also be outstanding. The operationalState is enabled or disabled. The value minor indicates one or more minor alarms are outstanding against the component. Other, less severe, alarms may also be outstanding. The operationalState is enabled or disabled. The value alarmOutstanding generically indicates that an alarm of some severity is outstanding against the component. Description of bits: underRepair(0) critical(1) major(2) minor(3) alarmOutstanding(4)')
mscFriStandbyStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 102, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 15))).clone(namedValues=NamedValues(("hotStandby", 0), ("coldStandby", 1), ("providingService", 2), ("notSet", 15))).clone('notSet')).setMaxAccess("readonly")
if mibBuilder.loadTexts: mscFriStandbyStatus.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriStandbyStatus.setDescription('If supported by the component, this attribute indicates the OSI Standby status of the component. The value notSet indicates that either the attribute is not supported or that none of the status conditions described below are present. Note that this is a non-standard value, used because the original specification indicated this attribute was set-valued and thus, did not provide a value to indicate that none of the other three are applicable. The value hotStandby indicates that the resource is not providing service but will be immediately able to take over the role of the resource to be backed up, without initialization activity, and containing the same information as the resource to be backed up. The value coldStandby indicates the resource is a backup for another resource but will not be immediately able to take over the role of the backed up resource and will require some initialization activity. The value providingService indicates that this component, as a backup resource, is currently backing up another resource.')
mscFriUnknownStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 102, 1, 9), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("false", 0), ("true", 1))).clone('false')).setMaxAccess("readonly")
if mibBuilder.loadTexts: mscFriUnknownStatus.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriUnknownStatus.setDescription('This attribute indicates the OSI Unknown status of the component. The value false indicates that all of the other OSI State and Status attribute values can be considered accurate. The value true indicates that the actual state of the component is not known for sure.')
mscFriPfListAsciiTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 1187), )
if mibBuilder.loadTexts: mscFriPfListAsciiTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriPfListAsciiTable.setDescription('')
mscFriPfListAsciiEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 1187, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscFriIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscFriPfListAsciiValue"))
if mibBuilder.loadTexts: mscFriPfListAsciiEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriPfListAsciiEntry.setDescription('An entry in the mscFriPfListAsciiTable.')
mscFriPfListAsciiValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 1187, 1, 1), AsciiString().subtype(subtypeSpec=ValueSizeConstraint(0, 100))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscFriPfListAsciiValue.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriPfListAsciiValue.setDescription('This variable represents both the value and the index for the mscFriPfListAsciiTable.')
mscFriPfListAsciiRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 1187, 1, 2), RowStatus()).setMaxAccess("writeonly")
if mibBuilder.loadTexts: mscFriPfListAsciiRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriPfListAsciiRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscFriPfListAsciiTable.')
mscFriPfListUnsignedTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 1188), )
if mibBuilder.loadTexts: mscFriPfListUnsignedTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriPfListUnsignedTable.setDescription('')
mscFriPfListUnsignedEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 1188, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscFriIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscFriPfListUnsignedValue"))
if mibBuilder.loadTexts: mscFriPfListUnsignedEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriPfListUnsignedEntry.setDescription('An entry in the mscFriPfListUnsignedTable.')
mscFriPfListUnsignedValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 1188, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 255))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscFriPfListUnsignedValue.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriPfListUnsignedValue.setDescription('This variable represents both the value and the index for the mscFriPfListUnsignedTable.')
mscFriPfListUnsignedRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 1188, 1, 2), RowStatus()).setMaxAccess("writeonly")
if mibBuilder.loadTexts: mscFriPfListUnsignedRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriPfListUnsignedRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscFriPfListUnsignedTable.')
mscFriPfListFixedTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 1189), )
if mibBuilder.loadTexts: mscFriPfListFixedTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriPfListFixedTable.setDescription('')
mscFriPfListFixedEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 1189, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscFriIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscFriPfListFixedValue"))
if mibBuilder.loadTexts: mscFriPfListFixedEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriPfListFixedEntry.setDescription('An entry in the mscFriPfListFixedTable.')
mscFriPfListFixedValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 1189, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 2559))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscFriPfListFixedValue.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriPfListFixedValue.setDescription('This variable represents both the value and the index for the mscFriPfListFixedTable.')
mscFriPfListFixedRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 1189, 1, 2), RowStatus()).setMaxAccess("writeonly")
if mibBuilder.loadTexts: mscFriPfListFixedRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriPfListFixedRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscFriPfListFixedTable.')
mscFriPfListSignedTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 1190), )
if mibBuilder.loadTexts: mscFriPfListSignedTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriPfListSignedTable.setDescription('')
mscFriPfListSignedEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 1190, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscFriIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscFriPfListSignedValue"))
if mibBuilder.loadTexts: mscFriPfListSignedEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriPfListSignedEntry.setDescription('An entry in the mscFriPfListSignedTable.')
mscFriPfListSignedValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 1190, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(-200, 255))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscFriPfListSignedValue.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriPfListSignedValue.setDescription('This variable represents both the value and the index for the mscFriPfListSignedTable.')
mscFriPfListSignedRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 1190, 1, 2), RowStatus()).setMaxAccess("writeonly")
if mibBuilder.loadTexts: mscFriPfListSignedRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriPfListSignedRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscFriPfListSignedTable.')
mscFriOfListComponentTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 1191), )
if mibBuilder.loadTexts: mscFriOfListComponentTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriOfListComponentTable.setDescription('')
mscFriOfListComponentEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 1191, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscFriIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscFriOfListComponentValue"))
if mibBuilder.loadTexts: mscFriOfListComponentEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriOfListComponentEntry.setDescription('An entry in the mscFriOfListComponentTable.')
mscFriOfListComponentValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 1191, 1, 1), RowPointer()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscFriOfListComponentValue.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriOfListComponentValue.setDescription('This variable represents both the value and the index for the mscFriOfListComponentTable.')
mscFriOfListComponentRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 1191, 1, 2), RowStatus()).setMaxAccess("writeonly")
if mibBuilder.loadTexts: mscFriOfListComponentRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriOfListComponentRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscFriOfListComponentTable.')
mscFriOfListEnumerationTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 1192), )
if mibBuilder.loadTexts: mscFriOfListEnumerationTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriOfListEnumerationTable.setDescription('')
mscFriOfListEnumerationEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 1192, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscFriIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscFriOfListEnumerationValue"))
if mibBuilder.loadTexts: mscFriOfListEnumerationEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriOfListEnumerationEntry.setDescription('An entry in the mscFriOfListEnumerationTable.')
mscFriOfListEnumerationValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 1192, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11))).clone(namedValues=NamedValues(("january", 0), ("february", 1), ("march", 2), ("april", 3), ("may", 4), ("june", 5), ("july", 6), ("august", 7), ("september", 8), ("october", 9), ("november", 10), ("december", 11)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscFriOfListEnumerationValue.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriOfListEnumerationValue.setDescription('This variable represents both the value and the index for the mscFriOfListEnumerationTable.')
mscFriOfListEnumerationRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 1192, 1, 2), RowStatus()).setMaxAccess("writeonly")
if mibBuilder.loadTexts: mscFriOfListEnumerationRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriOfListEnumerationRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscFriOfListEnumerationTable.')
mscFriDna = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 4))
mscFriDnaRowStatusTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 4, 1), )
if mibBuilder.loadTexts: mscFriDnaRowStatusTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriDnaRowStatusTable.setDescription('This entry controls the addition and deletion of mscFriDna components.')
mscFriDnaRowStatusEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 4, 1, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscFriIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscFriDnaIndex"))
if mibBuilder.loadTexts: mscFriDnaRowStatusEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriDnaRowStatusEntry.setDescription('A single entry in the table represents a single mscFriDna component.')
mscFriDnaRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 4, 1, 1, 1), RowStatus()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscFriDnaRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriDnaRowStatus.setDescription('This variable is used as the basis for SNMP naming of mscFriDna components. These components can be added and deleted.')
mscFriDnaComponentName = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 4, 1, 1, 2), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mscFriDnaComponentName.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriDnaComponentName.setDescription("This variable provides the component's string name for use with the ASCII Console Interface")
mscFriDnaStorageType = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 4, 1, 1, 4), StorageType()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mscFriDnaStorageType.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriDnaStorageType.setDescription('This variable represents the storage type value for the mscFriDna tables.')
mscFriDnaIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 4, 1, 1, 10), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 15)))
if mibBuilder.loadTexts: mscFriDnaIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriDnaIndex.setDescription('This variable represents the index for the mscFriDna tables.')
mscFriDnaOperationalTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 4, 10), )
if mibBuilder.loadTexts: mscFriDnaOperationalTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriDnaOperationalTable.setDescription('')
mscFriDnaOperationalEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 4, 10, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscFriIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscFriDnaIndex"))
if mibBuilder.loadTexts: mscFriDnaOperationalEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriDnaOperationalEntry.setDescription('An entry in the mscFriDnaOperationalTable.')
mscFriDnaAttribute = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 4, 10, 1, 1), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535)).clone(1)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscFriDnaAttribute.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriDnaAttribute.setDescription('')
mscFriDnaProvisionalTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 4, 11), )
if mibBuilder.loadTexts: mscFriDnaProvisionalTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriDnaProvisionalTable.setDescription('')
mscFriDnaProvisionalEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 4, 11, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscFriIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscFriDnaIndex"))
if mibBuilder.loadTexts: mscFriDnaProvisionalEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriDnaProvisionalEntry.setDescription('An entry in the mscFriDnaProvisionalTable.')
mscFriDnaTypeOfAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 4, 11, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("networkDepend", 0), ("international", 1), ("national", 2))).clone('international')).setMaxAccess("readonly")
if mibBuilder.loadTexts: mscFriDnaTypeOfAddress.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriDnaTypeOfAddress.setDescription('')
mscFriDnaNumberPlanIndicator = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 4, 11, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("x121", 0), ("e164", 1))).clone('x121')).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscFriDnaNumberPlanIndicator.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriDnaNumberPlanIndicator.setDescription('')
mscFriDnaDataNetworkAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 4, 11, 1, 3), DigitString().subtype(subtypeSpec=ValueSizeConstraint(1, 15))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscFriDnaDataNetworkAddress.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriDnaDataNetworkAddress.setDescription('')
mscFriDynamic = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 7))
mscFriDynamicRowStatusTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 7, 1), )
if mibBuilder.loadTexts: mscFriDynamicRowStatusTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriDynamicRowStatusTable.setDescription('*** THIS TABLE CURRENTLY NOT IMPLEMENTED *** This entry controls the addition and deletion of mscFriDynamic components.')
mscFriDynamicRowStatusEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 7, 1, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscFriIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscFriDynamicIndex"))
if mibBuilder.loadTexts: mscFriDynamicRowStatusEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriDynamicRowStatusEntry.setDescription('A single entry in the table represents a single mscFriDynamic component.')
mscFriDynamicRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 7, 1, 1, 1), RowStatus()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mscFriDynamicRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriDynamicRowStatus.setDescription('This variable is used as the basis for SNMP naming of mscFriDynamic components. These components cannot be added nor deleted.')
mscFriDynamicComponentName = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 7, 1, 1, 2), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mscFriDynamicComponentName.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriDynamicComponentName.setDescription("This variable provides the component's string name for use with the ASCII Console Interface")
mscFriDynamicStorageType = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 7, 1, 1, 4), StorageType()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mscFriDynamicStorageType.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriDynamicStorageType.setDescription('This variable represents the storage type value for the mscFriDynamic tables.')
mscFriDynamicIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 7, 1, 1, 10), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 1023)))
if mibBuilder.loadTexts: mscFriDynamicIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriDynamicIndex.setDescription('This variable represents the index for the mscFriDynamic tables.')
mscFriDynamicOperationalTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 7, 10), )
if mibBuilder.loadTexts: mscFriDynamicOperationalTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriDynamicOperationalTable.setDescription('*** THIS TABLE CURRENTLY NOT IMPLEMENTED ***')
mscFriDynamicOperationalEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 7, 10, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscFriIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscFriDynamicIndex"))
if mibBuilder.loadTexts: mscFriDynamicOperationalEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriDynamicOperationalEntry.setDescription('An entry in the mscFriDynamicOperationalTable.')
mscFriDynamicAttribute = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 7, 10, 1, 1), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 255)).clone(1)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscFriDynamicAttribute.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriDynamicAttribute.setDescription('')
mscFriDynOp = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8))
mscFriDynOpRowStatusTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 1), )
if mibBuilder.loadTexts: mscFriDynOpRowStatusTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriDynOpRowStatusTable.setDescription('This entry controls the addition and deletion of mscFriDynOp components.')
mscFriDynOpRowStatusEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 1, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscFriIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscFriDynOpIndex"))
if mibBuilder.loadTexts: mscFriDynOpRowStatusEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriDynOpRowStatusEntry.setDescription('A single entry in the table represents a single mscFriDynOp component.')
mscFriDynOpRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 1, 1, 1), RowStatus()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscFriDynOpRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriDynOpRowStatus.setDescription('This variable is used as the basis for SNMP naming of mscFriDynOp components. These components can be added and deleted.')
mscFriDynOpComponentName = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 1, 1, 2), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mscFriDynOpComponentName.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriDynOpComponentName.setDescription("This variable provides the component's string name for use with the ASCII Console Interface")
mscFriDynOpStorageType = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 1, 1, 4), StorageType()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mscFriDynOpStorageType.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriDynOpStorageType.setDescription('This variable represents the storage type value for the mscFriDynOp tables.')
mscFriDynOpIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 1, 1, 10), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 1023)))
if mibBuilder.loadTexts: mscFriDynOpIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriDynOpIndex.setDescription('This variable represents the index for the mscFriDynOp tables.')
mscFriDynOpOperationalTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 10), )
if mibBuilder.loadTexts: mscFriDynOpOperationalTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriDynOpOperationalTable.setDescription('')
mscFriDynOpOperationalEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 10, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscFriIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscFriDynOpIndex"))
if mibBuilder.loadTexts: mscFriDynOpOperationalEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriDynOpOperationalEntry.setDescription('An entry in the mscFriDynOpOperationalTable.')
mscFriDynOpAttribute = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 10, 1, 1), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 255)).clone(1)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscFriDynOpAttribute.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriDynOpAttribute.setDescription('')
mscFriDynOpInitial = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 2))
mscFriDynOpInitialRowStatusTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 2, 1), )
if mibBuilder.loadTexts: mscFriDynOpInitialRowStatusTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriDynOpInitialRowStatusTable.setDescription('This entry controls the addition and deletion of mscFriDynOpInitial components.')
mscFriDynOpInitialRowStatusEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 2, 1, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscFriIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscFriDynOpIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscFriDynOpInitialIndex"))
if mibBuilder.loadTexts: mscFriDynOpInitialRowStatusEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriDynOpInitialRowStatusEntry.setDescription('A single entry in the table represents a single mscFriDynOpInitial component.')
mscFriDynOpInitialRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 2, 1, 1, 1), RowStatus()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mscFriDynOpInitialRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriDynOpInitialRowStatus.setDescription('This variable is used as the basis for SNMP naming of mscFriDynOpInitial components. These components cannot be added nor deleted.')
mscFriDynOpInitialComponentName = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 2, 1, 1, 2), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mscFriDynOpInitialComponentName.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriDynOpInitialComponentName.setDescription("This variable provides the component's string name for use with the ASCII Console Interface")
mscFriDynOpInitialStorageType = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 2, 1, 1, 4), StorageType()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mscFriDynOpInitialStorageType.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriDynOpInitialStorageType.setDescription('This variable represents the storage type value for the mscFriDynOpInitial tables.')
mscFriDynOpInitialIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 2, 1, 1, 10), NonReplicated())
if mibBuilder.loadTexts: mscFriDynOpInitialIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriDynOpInitialIndex.setDescription('This variable represents the index for the mscFriDynOpInitial tables.')
mscFriDynOpInitialOperationalTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 2, 10), )
if mibBuilder.loadTexts: mscFriDynOpInitialOperationalTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriDynOpInitialOperationalTable.setDescription('')
mscFriDynOpInitialOperationalEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 2, 10, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscFriIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscFriDynOpIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscFriDynOpInitialIndex"))
if mibBuilder.loadTexts: mscFriDynOpInitialOperationalEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriDynOpInitialOperationalEntry.setDescription('An entry in the mscFriDynOpInitialOperationalTable.')
mscFriDynOpInitialAttribute = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 2, 10, 1, 1), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 255)).clone(1)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscFriDynOpInitialAttribute.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriDynOpInitialAttribute.setDescription('')
mscFriDynOpInitialProvisionedTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 2, 11), )
if mibBuilder.loadTexts: mscFriDynOpInitialProvisionedTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriDynOpInitialProvisionedTable.setDescription('')
mscFriDynOpInitialProvisionedEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 2, 11, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscFriIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscFriDynOpIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscFriDynOpInitialIndex"))
if mibBuilder.loadTexts: mscFriDynOpInitialProvisionedEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriDynOpInitialProvisionedEntry.setDescription('An entry in the mscFriDynOpInitialProvisionedTable.')
mscFriDynOpInitialProvAttribute = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 2, 11, 1, 1), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 255)).clone(1)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscFriDynOpInitialProvAttribute.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriDynOpInitialProvAttribute.setDescription('')
mscFriDynOpOptional = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 3))
mscFriDynOpOptionalRowStatusTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 3, 1), )
if mibBuilder.loadTexts: mscFriDynOpOptionalRowStatusTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriDynOpOptionalRowStatusTable.setDescription('This entry controls the addition and deletion of mscFriDynOpOptional components.')
mscFriDynOpOptionalRowStatusEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 3, 1, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscFriIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscFriDynOpIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscFriDynOpOptionalIndex"))
if mibBuilder.loadTexts: mscFriDynOpOptionalRowStatusEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriDynOpOptionalRowStatusEntry.setDescription('A single entry in the table represents a single mscFriDynOpOptional component.')
mscFriDynOpOptionalRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 3, 1, 1, 1), RowStatus()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscFriDynOpOptionalRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriDynOpOptionalRowStatus.setDescription('This variable is used as the basis for SNMP naming of mscFriDynOpOptional components. These components can be added and deleted.')
mscFriDynOpOptionalComponentName = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 3, 1, 1, 2), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mscFriDynOpOptionalComponentName.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriDynOpOptionalComponentName.setDescription("This variable provides the component's string name for use with the ASCII Console Interface")
mscFriDynOpOptionalStorageType = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 3, 1, 1, 4), StorageType()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mscFriDynOpOptionalStorageType.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriDynOpOptionalStorageType.setDescription('This variable represents the storage type value for the mscFriDynOpOptional tables.')
mscFriDynOpOptionalIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 3, 1, 1, 10), NonReplicated())
if mibBuilder.loadTexts: mscFriDynOpOptionalIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriDynOpOptionalIndex.setDescription('This variable represents the index for the mscFriDynOpOptional tables.')
mscFriDynOpOptionalOperationalTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 3, 10), )
if mibBuilder.loadTexts: mscFriDynOpOptionalOperationalTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriDynOpOptionalOperationalTable.setDescription('')
mscFriDynOpOptionalOperationalEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 3, 10, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscFriIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscFriDynOpIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscFriDynOpOptionalIndex"))
if mibBuilder.loadTexts: mscFriDynOpOptionalOperationalEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriDynOpOptionalOperationalEntry.setDescription('An entry in the mscFriDynOpOptionalOperationalTable.')
mscFriDynOpOptionalAttribute = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 3, 10, 1, 1), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 255)).clone(1)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscFriDynOpOptionalAttribute.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriDynOpOptionalAttribute.setDescription('')
mscFriDynOpOptionalProvisionedTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 3, 11), )
if mibBuilder.loadTexts: mscFriDynOpOptionalProvisionedTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriDynOpOptionalProvisionedTable.setDescription('')
mscFriDynOpOptionalProvisionedEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 3, 11, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscFriIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscFriDynOpIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscFriDynOpOptionalIndex"))
if mibBuilder.loadTexts: mscFriDynOpOptionalProvisionedEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriDynOpOptionalProvisionedEntry.setDescription('An entry in the mscFriDynOpOptionalProvisionedTable.')
mscFriDynOpOptionalProvAttribute = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 3, 11, 1, 1), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 255)).clone(1)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscFriDynOpOptionalProvAttribute.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriDynOpOptionalProvAttribute.setDescription('')
mscFriDynOpDynamic = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 4))
mscFriDynOpDynamicRowStatusTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 4, 1), )
if mibBuilder.loadTexts: mscFriDynOpDynamicRowStatusTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriDynOpDynamicRowStatusTable.setDescription('This entry controls the addition and deletion of mscFriDynOpDynamic components.')
mscFriDynOpDynamicRowStatusEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 4, 1, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscFriIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscFriDynOpIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscFriDynOpDynamicIndex"))
if mibBuilder.loadTexts: mscFriDynOpDynamicRowStatusEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriDynOpDynamicRowStatusEntry.setDescription('A single entry in the table represents a single mscFriDynOpDynamic component.')
mscFriDynOpDynamicRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 4, 1, 1, 1), RowStatus()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mscFriDynOpDynamicRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriDynOpDynamicRowStatus.setDescription('This variable is used as the basis for SNMP naming of mscFriDynOpDynamic components. These components cannot be added nor deleted.')
mscFriDynOpDynamicComponentName = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 4, 1, 1, 2), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mscFriDynOpDynamicComponentName.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriDynOpDynamicComponentName.setDescription("This variable provides the component's string name for use with the ASCII Console Interface")
mscFriDynOpDynamicStorageType = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 4, 1, 1, 4), StorageType()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mscFriDynOpDynamicStorageType.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriDynOpDynamicStorageType.setDescription('This variable represents the storage type value for the mscFriDynOpDynamic tables.')
mscFriDynOpDynamicIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 4, 1, 1, 10), NonReplicated())
if mibBuilder.loadTexts: mscFriDynOpDynamicIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriDynOpDynamicIndex.setDescription('This variable represents the index for the mscFriDynOpDynamic tables.')
mscFriDynOpDynamicOperationalTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 4, 10), )
if mibBuilder.loadTexts: mscFriDynOpDynamicOperationalTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriDynOpDynamicOperationalTable.setDescription('')
mscFriDynOpDynamicOperationalEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 4, 10, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscFriIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscFriDynOpIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscFriDynOpDynamicIndex"))
if mibBuilder.loadTexts: mscFriDynOpDynamicOperationalEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriDynOpDynamicOperationalEntry.setDescription('An entry in the mscFriDynOpDynamicOperationalTable.')
mscFriDynOpDynamicAttribute = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 4, 10, 1, 1), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 255)).clone(1)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscFriDynOpDynamicAttribute.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriDynOpDynamicAttribute.setDescription('')
mscFriDynOpDynOpJr = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 5))
mscFriDynOpDynOpJrRowStatusTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 5, 1), )
if mibBuilder.loadTexts: mscFriDynOpDynOpJrRowStatusTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriDynOpDynOpJrRowStatusTable.setDescription('This entry controls the addition and deletion of mscFriDynOpDynOpJr components.')
mscFriDynOpDynOpJrRowStatusEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 5, 1, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscFriIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscFriDynOpIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscFriDynOpDynOpJrIndex"))
if mibBuilder.loadTexts: mscFriDynOpDynOpJrRowStatusEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriDynOpDynOpJrRowStatusEntry.setDescription('A single entry in the table represents a single mscFriDynOpDynOpJr component.')
mscFriDynOpDynOpJrRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 5, 1, 1, 1), RowStatus()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscFriDynOpDynOpJrRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriDynOpDynOpJrRowStatus.setDescription('This variable is used as the basis for SNMP naming of mscFriDynOpDynOpJr components. These components can be added and deleted.')
mscFriDynOpDynOpJrComponentName = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 5, 1, 1, 2), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mscFriDynOpDynOpJrComponentName.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriDynOpDynOpJrComponentName.setDescription("This variable provides the component's string name for use with the ASCII Console Interface")
mscFriDynOpDynOpJrStorageType = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 5, 1, 1, 4), StorageType()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mscFriDynOpDynOpJrStorageType.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriDynOpDynOpJrStorageType.setDescription('This variable represents the storage type value for the mscFriDynOpDynOpJr tables.')
mscFriDynOpDynOpJrIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 5, 1, 1, 10), NonReplicated())
if mibBuilder.loadTexts: mscFriDynOpDynOpJrIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriDynOpDynOpJrIndex.setDescription('This variable represents the index for the mscFriDynOpDynOpJr tables.')
mscFriDynOpDynOpJrOperationalTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 5, 10), )
if mibBuilder.loadTexts: mscFriDynOpDynOpJrOperationalTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriDynOpDynOpJrOperationalTable.setDescription('')
mscFriDynOpDynOpJrOperationalEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 5, 10, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscFriIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscFriDynOpIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscFriDynOpDynOpJrIndex"))
if mibBuilder.loadTexts: mscFriDynOpDynOpJrOperationalEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriDynOpDynOpJrOperationalEntry.setDescription('An entry in the mscFriDynOpDynOpJrOperationalTable.')
mscFriDynOpDynOpJrAttribute = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 5, 10, 1, 1), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 255)).clone(1)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscFriDynOpDynOpJrAttribute.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriDynOpDynOpJrAttribute.setDescription('')
mscFriEvent = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 9))
mscFriEventRowStatusTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 9, 1), )
if mibBuilder.loadTexts: mscFriEventRowStatusTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriEventRowStatusTable.setDescription('This entry controls the addition and deletion of mscFriEvent components.')
mscFriEventRowStatusEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 9, 1, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscFriIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscFriEventIndex"))
if mibBuilder.loadTexts: mscFriEventRowStatusEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriEventRowStatusEntry.setDescription('A single entry in the table represents a single mscFriEvent component.')
mscFriEventRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 9, 1, 1, 1), RowStatus()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mscFriEventRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriEventRowStatus.setDescription('This variable is used as the basis for SNMP naming of mscFriEvent components. These components cannot be added nor deleted.')
mscFriEventComponentName = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 9, 1, 1, 2), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mscFriEventComponentName.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriEventComponentName.setDescription("This variable provides the component's string name for use with the ASCII Console Interface")
mscFriEventStorageType = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 9, 1, 1, 4), StorageType()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mscFriEventStorageType.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriEventStorageType.setDescription('This variable represents the storage type value for the mscFriEvent tables.')
mscFriEventIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 9, 1, 1, 10), NonReplicated())
if mibBuilder.loadTexts: mscFriEventIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriEventIndex.setDescription('This variable represents the index for the mscFriEvent tables.')
mscFriRegistered = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 18))
mscFriRegisteredRowStatusTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 18, 1), )
if mibBuilder.loadTexts: mscFriRegisteredRowStatusTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriRegisteredRowStatusTable.setDescription('This entry controls the addition and deletion of mscFriRegistered components.')
mscFriRegisteredRowStatusEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 18, 1, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscFriIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscFriRegisteredIndex"))
if mibBuilder.loadTexts: mscFriRegisteredRowStatusEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriRegisteredRowStatusEntry.setDescription('A single entry in the table represents a single mscFriRegistered component.')
mscFriRegisteredRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 18, 1, 1, 1), RowStatus()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mscFriRegisteredRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriRegisteredRowStatus.setDescription('This variable is used as the basis for SNMP naming of mscFriRegistered components. These components cannot be added nor deleted.')
mscFriRegisteredComponentName = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 18, 1, 1, 2), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mscFriRegisteredComponentName.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriRegisteredComponentName.setDescription("This variable provides the component's string name for use with the ASCII Console Interface")
mscFriRegisteredStorageType = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 18, 1, 1, 4), StorageType()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mscFriRegisteredStorageType.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriRegisteredStorageType.setDescription('This variable represents the storage type value for the mscFriRegistered tables.')
mscFriRegisteredIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 18, 1, 1, 10), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 15)))
if mibBuilder.loadTexts: mscFriRegisteredIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriRegisteredIndex.setDescription('This variable represents the index for the mscFriRegistered tables.')
mscFriRegisteredDataTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 18, 10), )
if mibBuilder.loadTexts: mscFriRegisteredDataTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriRegisteredDataTable.setDescription('')
mscFriRegisteredDataEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 18, 10, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscFriIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscFriRegisteredIndex"))
if mibBuilder.loadTexts: mscFriRegisteredDataEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriRegisteredDataEntry.setDescription('An entry in the mscFriRegisteredDataTable.')
mscFriRegisteredAttribute = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 18, 10, 1, 1), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 255)).clone(1)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscFriRegisteredAttribute.setStatus('mandatory')
if mibBuilder.loadTexts: mscFriRegisteredAttribute.setDescription('')
mscRegistered = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5004))
mscRegisteredRowStatusTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5004, 1), )
if mibBuilder.loadTexts: mscRegisteredRowStatusTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscRegisteredRowStatusTable.setDescription('This entry controls the addition and deletion of mscRegistered components.')
mscRegisteredRowStatusEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5004, 1, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscRegisteredIndex"))
if mibBuilder.loadTexts: mscRegisteredRowStatusEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscRegisteredRowStatusEntry.setDescription('A single entry in the table represents a single mscRegistered component.')
mscRegisteredRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5004, 1, 1, 1), RowStatus()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mscRegisteredRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts: mscRegisteredRowStatus.setDescription('This variable is used as the basis for SNMP naming of mscRegistered components. These components cannot be added nor deleted.')
mscRegisteredComponentName = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5004, 1, 1, 2), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mscRegisteredComponentName.setStatus('mandatory')
if mibBuilder.loadTexts: mscRegisteredComponentName.setDescription("This variable provides the component's string name for use with the ASCII Console Interface")
mscRegisteredStorageType = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5004, 1, 1, 4), StorageType()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mscRegisteredStorageType.setStatus('mandatory')
if mibBuilder.loadTexts: mscRegisteredStorageType.setDescription('This variable represents the storage type value for the mscRegistered tables.')
mscRegisteredIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5004, 1, 1, 10), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 15)))
if mibBuilder.loadTexts: mscRegisteredIndex.setStatus('mandatory')
if mibBuilder.loadTexts: mscRegisteredIndex.setDescription('This variable represents the index for the mscRegistered tables.')
mscRegisteredDataTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5004, 10), )
if mibBuilder.loadTexts: mscRegisteredDataTable.setStatus('mandatory')
if mibBuilder.loadTexts: mscRegisteredDataTable.setDescription('')
mscRegisteredDataEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5004, 10, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscRegisteredIndex"))
if mibBuilder.loadTexts: mscRegisteredDataEntry.setStatus('mandatory')
if mibBuilder.loadTexts: mscRegisteredDataEntry.setDescription('An entry in the mscRegisteredDataTable.')
mscRegisteredAttribute = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5004, 10, 1, 1), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 255)).clone(1)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscRegisteredAttribute.setStatus('mandatory')
if mibBuilder.loadTexts: mscRegisteredAttribute.setDescription('')
casTestGroup = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 2, 103, 1))
casTestGroupCA = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 2, 103, 1, 1))
casTestGroupCA02 = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 2, 103, 1, 1, 3))
casTestGroupCA02A = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 2, 103, 1, 1, 3, 2))
casTestCapabilities = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 2, 103, 3))
casTestCapabilitiesCA = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 2, 103, 3, 1))
casTestCapabilitiesCA02 = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 2, 103, 3, 1, 3))
casTestCapabilitiesCA02A = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 2, 103, 3, 1, 3, 2))
mibBuilder.exportSymbols("Nortel-MsCarrier-MscPassport-CasTestMIB", mscExampleWildBcdProvFreeWildBcdArrayTable=mscExampleWildBcdProvFreeWildBcdArrayTable, mscExampleHexProvStructHexVectorTable=mscExampleHexProvStructHexVectorTable, mscExampleDecimalPsIntArrayRowIndex=mscExampleDecimalPsIntArrayRowIndex, mscExampleBcdProvFreeBcdReplicatedTable=mscExampleBcdProvFreeBcdReplicatedTable, mscExampleStringProvStructAsciiOnly=mscExampleStringProvStructAsciiOnly, mscExampleMiscellaneousProvFreeTimeList2Table=mscExampleMiscellaneousProvFreeTimeList2Table, mscExampleBcdProvFreeBcd=mscExampleBcdProvFreeBcd, mscExampleHexProvFreeHexArray1Table=mscExampleHexProvFreeHexArray1Table, mscExampleSequenceIndicesRowStatusEntry=mscExampleSequenceIndicesRowStatusEntry, mscExampleHexOfHexVectorTable=mscExampleHexOfHexVectorTable, mscExampleHexProvStructHexArrayColumnIndex=mscExampleHexProvStructHexArrayColumnIndex, mscExampleDashedProvFreeDashedVectorTable=mscExampleDashedProvFreeDashedVectorTable, mscExampleBcdIndicesStorageType=mscExampleBcdIndicesStorageType, mscFriOperationalState=mscFriOperationalState, mscExampleObjIdIndicesProvisionedTable=mscExampleObjIdIndicesProvisionedTable, mscExampleExtendedOperFreeExtendedReplicatedEntry=mscExampleExtendedOperFreeExtendedReplicatedEntry, mscExampleStringProvFreeStrListRowStatus=mscExampleStringProvFreeStrListRowStatus, mscFriDynOpInitialProvisionedEntry=mscFriDynOpInitialProvisionedEntry, mscExampleExtendedOperFreeExtendedArrayEntry=mscExampleExtendedOperFreeExtendedArrayEntry, mscExampleProvEnumSubCreatedValue=mscExampleProvEnumSubCreatedValue, mscExampleProvSignedSubCreatedValue=mscExampleProvSignedSubCreatedValue, mscExampleHexOfHexArrayEntry=mscExampleHexOfHexArrayEntry, mscExampleDecimalProvStructInteger=mscExampleDecimalProvStructInteger, mscExampleHexProvFreeHexArrayRowIndex=mscExampleHexProvFreeHexArrayRowIndex, mscExampleBcdProvFreeBcdArray1Table=mscExampleBcdProvFreeBcdArray1Table, mscExampleEnumIndicesRowStatus=mscExampleEnumIndicesRowStatus, mscFriProvisionalStructSimpleFixed=mscFriProvisionalStructSimpleFixed, mscExampleDecimalOfIntReplicatedEntry=mscExampleDecimalOfIntReplicatedEntry, mscExampleEnumProvFreeEnumVector1Value=mscExampleEnumProvFreeEnumVector1Value, mscExampleIpAddrIndicesTwoIndex=mscExampleIpAddrIndicesTwoIndex, mscExampleExtendedProvFreeExtendedListValue=mscExampleExtendedProvFreeExtendedListValue, mscFriDynamicRowStatusEntry=mscFriDynamicRowStatusEntry, mscExampleWildBcdOperFreeWildBcdListEntry=mscExampleWildBcdOperFreeWildBcdListEntry, mscFriProceduralStatus=mscFriProceduralStatus, mscFriDna=mscFriDna, mscExampleSequenceOperFreeSequence=mscExampleSequenceOperFreeSequence, mscExampleHexProvStructHexVectorValue=mscExampleHexProvStructHexVectorValue, mscExampleRequiredIndicesRowStatusTable=mscExampleRequiredIndicesRowStatusTable, mscExampleHexProvFreeHexArray1RowIndex=mscExampleHexProvFreeHexArray1RowIndex, mscExampleBcdOperFreeBcdArrayTable=mscExampleBcdOperFreeBcdArrayTable, mscExampleBcdProvFreeBcdReplicatedIndex=mscExampleBcdProvFreeBcdReplicatedIndex, mscExampleObjectIdOperFreeObjIdListEntry=mscExampleObjectIdOperFreeObjIdListEntry, mscExampleDecimalOfIntListTable=mscExampleDecimalOfIntListTable, mscFriProvisionalFreeSimpleAscii=mscFriProvisionalFreeSimpleAscii, mscExampleWildBcdOperStructWildBcdArrayColumnIndex=mscExampleWildBcdOperStructWildBcdArrayColumnIndex, mscExampleBcdProvStructBcdArrayColumnIndex=mscExampleBcdProvStructBcdArrayColumnIndex, mscExampleDashedOperationalTable=mscExampleDashedOperationalTable, mscFriOperationalStructSetEnumeration=mscFriOperationalStructSetEnumeration, mscExampleDecimalPfIntVector1Entry=mscExampleDecimalPfIntVector1Entry, mscExampleBcdOperStructBcdVectorValue=mscExampleBcdOperStructBcdVectorValue, mscExampleIpAddressProvFreeIpAddressVector1Entry=mscExampleIpAddressProvFreeIpAddressVector1Entry, mscFriDynOpRowStatus=mscFriDynOpRowStatus, mscExampleSequenceOperationalEntry=mscExampleSequenceOperationalEntry, mscExampleEnumProvFreeEnumVector1Table=mscExampleEnumProvFreeEnumVector1Table, mscExampleStringProvFreeStrList1Entry=mscExampleStringProvFreeStrList1Entry, mscExampleBcdProvFreeBcdArray1Entry=mscExampleBcdProvFreeBcdArray1Entry, mscExampleObjectIdProvFreeObjIdReplicatedTable=mscExampleObjectIdProvFreeObjIdReplicatedTable, mscExampleSequenceProvFreeSequenceReplicatedEntry=mscExampleSequenceProvFreeSequenceReplicatedEntry, mscExampleHexProvFreeHexReplicated1Entry=mscExampleHexProvFreeHexReplicated1Entry, mscExampleExtendedOperFreeExtended=mscExampleExtendedOperFreeExtended, mscExampleOperEnumSubCreatedRowStatus=mscExampleOperEnumSubCreatedRowStatus, mscExampleIpAddressProvFreeIpAddressArrayTable=mscExampleIpAddressProvFreeIpAddressArrayTable, mscExampleTwoIndicesRowStatusEntry=mscExampleTwoIndicesRowStatusEntry, mscExampleDecimalOfIntListEntry=mscExampleDecimalOfIntListEntry, mscExampleMiscellaneousProvFreeTimeDateTimeMinute1=mscExampleMiscellaneousProvFreeTimeDateTimeMinute1, mscExampleBcdOperStructBcdVectorTable=mscExampleBcdOperStructBcdVectorTable, mscExampleSignedOperStructSignedArrayRowIndex=mscExampleSignedOperStructSignedArrayRowIndex, mscExampleDecimalPfIntVector1Index=mscExampleDecimalPfIntVector1Index, mscExampleAsciiIndicesProvAttribute=mscExampleAsciiIndicesProvAttribute, mscExampleEnumProvFreeEnumArray1MonthIndex=mscExampleEnumProvFreeEnumArray1MonthIndex, mscExampleObjIdIndicesOneIndex=mscExampleObjIdIndicesOneIndex, mscExampleSequenceIndicesRowStatusTable=mscExampleSequenceIndicesRowStatusTable, mscExampleHexOfHexListValue=mscExampleHexOfHexListValue, mscExampleHexProvisionalEntry=mscExampleHexProvisionalEntry, mscExampleHexProvStructHexArrayTable=mscExampleHexProvStructHexArrayTable, mscFriPfListAsciiEntry=mscFriPfListAsciiEntry, mscExampleSignedRowStatusEntry=mscExampleSignedRowStatusEntry, mscExampleDecimalPfIntArray1Value=mscExampleDecimalPfIntArray1Value, mscExampleFourIndicesOneIndex=mscExampleFourIndicesOneIndex, mscExampleIpAddressStorageType=mscExampleIpAddressStorageType, mscExampleThreeIndicesProvAttribute=mscExampleThreeIndicesProvAttribute, mscExampleBcdStorageType=mscExampleBcdStorageType, mscExampleBcdProvFreeBcdListValue=mscExampleBcdProvFreeBcdListValue, mscExampleSignedProvFreeSignedVector1Entry=mscExampleSignedProvFreeSignedVector1Entry, mscExampleStringOperFreeStrReplicatedIndex=mscExampleStringOperFreeStrReplicatedIndex, mscExampleFixedPtProvFreeFixedPtVectorEntry=mscExampleFixedPtProvFreeFixedPtVectorEntry, mscExampleDecimalPfIntVectorIndex=mscExampleDecimalPfIntVectorIndex, mscExampleExtendedOperStructExtended=mscExampleExtendedOperStructExtended, mscFriDynamicRowStatus=mscFriDynamicRowStatus, mscExampleMiscellaneousProvFreeLongReplicatedRowStatus=mscExampleMiscellaneousProvFreeLongReplicatedRowStatus, mscExampleBcdIndicesProvisionedEntry=mscExampleBcdIndicesProvisionedEntry, mscExampleBcdProvFreeBcdArrayRowIndex=mscExampleBcdProvFreeBcdArrayRowIndex, mscExampleRequiredIndicesProvisionedEntry=mscExampleRequiredIndicesProvisionedEntry, mscExampleExtendedProvFreeExtendedArrayTable=mscExampleExtendedProvFreeExtendedArrayTable, mscExampleSignedProvFreeSignedArray1Entry=mscExampleSignedProvFreeSignedArray1Entry, mscExampleDecimalIndicesStorageType=mscExampleDecimalIndicesStorageType, mscExampleBcdOperFreeBcdVectorEntry=mscExampleBcdOperFreeBcdVectorEntry, mscExampleDashedOsDashedArrayColumnIndex=mscExampleDashedOsDashedArrayColumnIndex, mscExampleDecimalPsIntVectorValue=mscExampleDecimalPsIntVectorValue, mscExampleIpAddressOperStructIpAddressArrayValue=mscExampleIpAddressOperStructIpAddressArrayValue, mscExampleExtendedProvStructExtendedArrayTable=mscExampleExtendedProvStructExtendedArrayTable, mscExampleFixedPtProvStructFixedPtArrayRowIndex=mscExampleFixedPtProvStructFixedPtArrayRowIndex, mscExampleIpAddressProvFreeIpAddressReplicatedTable=mscExampleIpAddressProvFreeIpAddressReplicatedTable, mscExampleHexProvFreeHexArray1Entry=mscExampleHexProvFreeHexArray1Entry, mscExampleEnumOperStructEnum=mscExampleEnumOperStructEnum, mscExampleDecimalPfIntArray1RowIndex=mscExampleDecimalPfIntArray1RowIndex, mscExampleDashedProvStructDashedVectorValue=mscExampleDashedProvStructDashedVectorValue, mscFriProvisionalStructSimpleAscii=mscFriProvisionalStructSimpleAscii, mscExampleProvStringSubCreatedRowStatus=mscExampleProvStringSubCreatedRowStatus, mscExampleSignedOperStructSignedVectorTable=mscExampleSignedOperStructSignedVectorTable, mscExampleWildBcdOperFreeWildBcdVectorIndex=mscExampleWildBcdOperFreeWildBcdVectorIndex, mscExampleWildBcdOperFreeWildBcdVectorTable=mscExampleWildBcdOperFreeWildBcdVectorTable, mscFriDynOpDynOpJrRowStatusEntry=mscFriDynOpDynOpJrRowStatusEntry, mscExampleNsapAtmAddrTable=mscExampleNsapAtmAddrTable, mscExampleFourIndicesProvisionedEntry=mscExampleFourIndicesProvisionedEntry, mscFriDynOpOptionalStorageType=mscFriDynOpOptionalStorageType, mscFriPfListSignedRowStatus=mscFriPfListSignedRowStatus, mscExampleSignedProvFreeSignedVectorIndex=mscExampleSignedProvFreeSignedVectorIndex, mscFriEventRowStatusEntry=mscFriEventRowStatusEntry, mscExampleFixedPtOperFreeFixedPtArrayRowIndex=mscExampleFixedPtOperFreeFixedPtArrayRowIndex, casTestGroup=casTestGroup, mscExampleOperationalEntry=mscExampleOperationalEntry, mscExampleHexOsHexArrayTable=mscExampleHexOsHexArrayTable, mscExampleIpAddressOperFreeIpAddressListValue=mscExampleIpAddressOperFreeIpAddressListValue, mscExampleObjectIdRowStatusTable=mscExampleObjectIdRowStatusTable, mscExampleDecimalOperationalEntry=mscExampleDecimalOperationalEntry, mscExampleDecimalProvFreeInteger=mscExampleDecimalProvFreeInteger, mscExampleBcdIndicesProvAttribute=mscExampleBcdIndicesProvAttribute, mscExampleDashedIndex=mscExampleDashedIndex, mscFriOperationalStructSimpleEnum=mscFriOperationalStructSimpleEnum, mscExampleEnumOperFreeEnumReplicatedIndex=mscExampleEnumOperFreeEnumReplicatedIndex, mscExampleObjectIdProvFreeObjIdListTable=mscExampleObjectIdProvFreeObjIdListTable, mscExampleFixedPtProvStructFixedPtVectorTable=mscExampleFixedPtProvStructFixedPtVectorTable, mscExampleDecimalPfIntReplicated1Table=mscExampleDecimalPfIntReplicated1Table, mscExampleFixedPtOperFreeFixedPtListEntry=mscExampleFixedPtOperFreeFixedPtListEntry, mscExampleDashedOfDashedArrayRowIndex=mscExampleDashedOfDashedArrayRowIndex, mscRegisteredAttribute=mscRegisteredAttribute, mscExampleEnumOperStructEnumSet=mscExampleEnumOperStructEnumSet, mscFriOperationalFreeSimpleObjId=mscFriOperationalFreeSimpleObjId, mscFriOperationalFreeSimpleSequence=mscFriOperationalFreeSimpleSequence, mscExampleDashedProvisionalTable=mscExampleDashedProvisionalTable, mscExampleIpAddressRowStatus=mscExampleIpAddressRowStatus, mscExampleHexProvFreeHexArray2Value=mscExampleHexProvFreeHexArray2Value, mscExampleStringProvStringSub=mscExampleStringProvStringSub, mscExampleObjectIdOperFreeObjIdReplicatedRowStatus=mscExampleObjectIdOperFreeObjIdReplicatedRowStatus, mscExampleIpAddressProvStructIpAddressArrayValue=mscExampleIpAddressProvStructIpAddressArrayValue, mscExampleHexStrIndicesRowStatusTable=mscExampleHexStrIndicesRowStatusTable, mscExampleSignedProvFreeSignedVector1Table=mscExampleSignedProvFreeSignedVector1Table, mscFriPfListUnsignedRowStatus=mscFriPfListUnsignedRowStatus, mscExampleFixedPtProvFreeFixedPtSet=mscExampleFixedPtProvFreeFixedPtSet, mscExampleIpAddressProvFreeIpAddressArrayEntry=mscExampleIpAddressProvFreeIpAddressArrayEntry, mscExampleExtendedOperFreeExtendedArrayValue=mscExampleExtendedOperFreeExtendedArrayValue, mscExampleEnumProvisionalTable=mscExampleEnumProvisionalTable, mscExampleStringProvFreeStrReplicatedTable=mscExampleStringProvFreeStrReplicatedTable, mscExampleDecimalPfIntListEntry=mscExampleDecimalPfIntListEntry, mscExampleSequenceOperFreeSequenceReplicatedValue=mscExampleSequenceOperFreeSequenceReplicatedValue, mscExampleBcdOperFreeBcdListEntry=mscExampleBcdOperFreeBcdListEntry, mscExampleFixedPtProvFreeFixedPtReplicatedTable=mscExampleFixedPtProvFreeFixedPtReplicatedTable, mscExampleMiscellaneousProvFreeTimeList1Value=mscExampleMiscellaneousProvFreeTimeList1Value, mscExampleMiscellaneousOperFreeTime=mscExampleMiscellaneousOperFreeTime, mscExampleDecimalProvisionalEntry=mscExampleDecimalProvisionalEntry, mscExampleFourIndicesStorageType=mscExampleFourIndicesStorageType, mscExampleIpAddressProvStructIpAddressVectorEntry=mscExampleIpAddressProvStructIpAddressVectorEntry, mscExampleFixedPtProvStructFixedPtSet=mscExampleFixedPtProvStructFixedPtSet, mscExampleObjectIdProvFreeObjIdReplicatedRowStatus=mscExampleObjectIdProvFreeObjIdReplicatedRowStatus, mscExampleMiscellaneousOperFreeTimeListTable=mscExampleMiscellaneousOperFreeTimeListTable, mscExampleEnumProvFreeEnumArray1Value=mscExampleEnumProvFreeEnumArray1Value, mscExampleDecimalPfIntList1Value=mscExampleDecimalPfIntList1Value, mscExampleWildBcdOperStructWildBcdVectorTable=mscExampleWildBcdOperStructWildBcdVectorTable, mscFriDnaRowStatusTable=mscFriDnaRowStatusTable, mscExampleSignedProvFreeSigned1=mscExampleSignedProvFreeSigned1, mscExampleWildBcdProvStructWildBcdVectorTable=mscExampleWildBcdProvStructWildBcdVectorTable, mscExampleOperSignedSubCreatedTable=mscExampleOperSignedSubCreatedTable, mscExampleDashedProvStructDashed=mscExampleDashedProvStructDashed, mscFriDynOpOptionalProvAttribute=mscFriDynOpOptionalProvAttribute, mscExampleFixedPtOperFreeFixedPtReplicatedRowStatus=mscExampleFixedPtOperFreeFixedPtReplicatedRowStatus, mscExampleDashedIndicesProvisionedEntry=mscExampleDashedIndicesProvisionedEntry, mscExampleDecimalOfIntReplicatedRowStatus=mscExampleDecimalOfIntReplicatedRowStatus, mscExampleDecimalProvFreeInteger2=mscExampleDecimalProvFreeInteger2, mscExampleBcdProvFreeBcdVectorValue=mscExampleBcdProvFreeBcdVectorValue, mscExampleMiscellaneousOperFreeLongReplicatedValue=mscExampleMiscellaneousOperFreeLongReplicatedValue, mscExampleHexIndicesRowStatusTable=mscExampleHexIndicesRowStatusTable, mscExampleEnumIndicesRowStatusEntry=mscExampleEnumIndicesRowStatusEntry, mscExampleIpAddressOperationalTable=mscExampleIpAddressOperationalTable, mscExampleHexStorageType=mscExampleHexStorageType, mscExampleExtendedProvFreeExtendedListEntry=mscExampleExtendedProvFreeExtendedListEntry, mscExampleIpAddressOperStructIpAddressArrayTable=mscExampleIpAddressOperStructIpAddressArrayTable, mscExampleStringProvFreeStrVector1Table=mscExampleStringProvFreeStrVector1Table, mscExampleWildBcdProvStructWildBcdArrayRowIndex=mscExampleWildBcdProvStructWildBcdArrayRowIndex, mscExampleFixedPtProvFreeFixedPtListTable=mscExampleFixedPtProvFreeFixedPtListTable, mscExampleSignedOperStructSignedArrayValue=mscExampleSignedOperStructSignedArrayValue, mscExampleStringProvFreeStrReplicatedValue=mscExampleStringProvFreeStrReplicatedValue, mscExampleBcdIndices=mscExampleBcdIndices, mscExampleBcdProvFreeBcdList1RowStatus=mscExampleBcdProvFreeBcdList1RowStatus, mscExampleOneIndexOneIndex=mscExampleOneIndexOneIndex, mscExampleDecimalStorageType=mscExampleDecimalStorageType, mscExampleBcdOperStructBcdArrayValue=mscExampleBcdOperStructBcdArrayValue, mscFriRegisteredIndex=mscFriRegisteredIndex, mscExampleRequiredIndicesProvAttribute=mscExampleRequiredIndicesProvAttribute, mscExampleEnumOperationalTable=mscExampleEnumOperationalTable, mscExampleFixedPtOperFreeFixedPtArrayEntry=mscExampleFixedPtOperFreeFixedPtArrayEntry, mscExampleEnumIndicesProvisionedTable=mscExampleEnumIndicesProvisionedTable, mscFriProvisionalFreeSimpleExtended=mscFriProvisionalFreeSimpleExtended, mscExampleTwoIndicesProvisionedTable=mscExampleTwoIndicesProvisionedTable, mscExampleWildBcdOperFreeWildBcdListValue=mscExampleWildBcdOperFreeWildBcdListValue, mscExampleEnumProvFreeEnumVector1Entry=mscExampleEnumProvFreeEnumVector1Entry, mscExampleEnumProvFreeEnumArray1DayIndex=mscExampleEnumProvFreeEnumArray1DayIndex, mscExampleSignedOperFreeSignedVectorEntry=mscExampleSignedOperFreeSignedVectorEntry, mscExampleIpAddressComponentName=mscExampleIpAddressComponentName, mscFriDynOpDynOpJrComponentName=mscFriDynOpDynOpJrComponentName, mscExampleExtendedProvStructExtendedArrayRowIndex=mscExampleExtendedProvStructExtendedArrayRowIndex, mscExampleTwoIndices=mscExampleTwoIndices, mscExampleSequenceIndicesThreeIndex=mscExampleSequenceIndicesThreeIndex, mscExampleEnumRowStatus=mscExampleEnumRowStatus, mscExampleWildBcdProvFreeWildBcdReplicatedRowStatus=mscExampleWildBcdProvFreeWildBcdReplicatedRowStatus, mscExampleDashedOfDashedReplicatedValue=mscExampleDashedOfDashedReplicatedValue, mscExampleEnumProvFreeEnumReplicatedTable=mscExampleEnumProvFreeEnumReplicatedTable, mscExampleSignedOperationalEntry=mscExampleSignedOperationalEntry, mscExampleRequiredIndicesDecimalIndex=mscExampleRequiredIndicesDecimalIndex, mscExampleExtendedOperationalTable=mscExampleExtendedOperationalTable, mscExampleNsapNsapNativeAddress=mscExampleNsapNsapNativeAddress, mscExampleWildBcdOperationalTable=mscExampleWildBcdOperationalTable, mscExampleObjIdIndices=mscExampleObjIdIndices, mscExampleDecimalPfIntArrayRowIndex=mscExampleDecimalPfIntArrayRowIndex, mscFriDynOpDynOpJrAttribute=mscFriDynOpDynOpJrAttribute, mscExampleEnumOperFreeEnumArrayValue=mscExampleEnumOperFreeEnumArrayValue, mscExampleExtendedProvFreeExtendedListTable=mscExampleExtendedProvFreeExtendedListTable, mscExampleExtendedOperStructExtendedArrayColumnIndex=mscExampleExtendedOperStructExtendedArrayColumnIndex, mscExampleExtendedProvFreeExtended=mscExampleExtendedProvFreeExtended, mscFriPfListFixedValue=mscFriPfListFixedValue, mscExampleWildBcdProvStructWildBcdVectorIndex=mscExampleWildBcdProvStructWildBcdVectorIndex, mscExampleProvDecimalSubCreatedValue=mscExampleProvDecimalSubCreatedValue, mscExampleDashedProvFreeDashedReplicatedRowStatus=mscExampleDashedProvFreeDashedReplicatedRowStatus, mscExampleEnumIndices=mscExampleEnumIndices, mscExampleBcdProvFreeBcd1=mscExampleBcdProvFreeBcd1, mscFriDynOpOptionalAttribute=mscFriDynOpOptionalAttribute, mscExampleDashedProvFreeDashedListValue=mscExampleDashedProvFreeDashedListValue, mscExampleIpAddressOperStructIpAddressVectorTable=mscExampleIpAddressOperStructIpAddressVectorTable, mscExampleHexStrIndicesProvisionedTable=mscExampleHexStrIndicesProvisionedTable, mscExampleEnumProvFreeEnumList1Value=mscExampleEnumProvFreeEnumList1Value, mscExampleFourIndicesFourIndex=mscExampleFourIndicesFourIndex, mscExampleMiscellaneousOperFreeLong=mscExampleMiscellaneousOperFreeLong, mscExampleWildBcdOperStructWildBcdArrayValue=mscExampleWildBcdOperStructWildBcdArrayValue, mscExampleObjectIdOperFreeObjIdReplicatedIndex=mscExampleObjectIdOperFreeObjIdReplicatedIndex, mscExampleDashedIndicesRowStatusEntry=mscExampleDashedIndicesRowStatusEntry, mscExampleSignedComponentName=mscExampleSignedComponentName, mscExampleIpAddressOperFreeIpAddressVectorEntry=mscExampleIpAddressOperFreeIpAddressVectorEntry, mscExampleDecimalRowStatus=mscExampleDecimalRowStatus, mscFriOperationalStructSimpleHex=mscFriOperationalStructSimpleHex, mscFriEventIndex=mscFriEventIndex, mscExampleBcdProvFreeBcdListTable=mscExampleBcdProvFreeBcdListTable, mscExampleIpAddressProvFreeIpAddressVectorEntry=mscExampleIpAddressProvFreeIpAddressVectorEntry, mscExampleDecimalIndicesRowStatus=mscExampleDecimalIndicesRowStatus, mscExampleBcdOperFreeBcdReplicatedEntry=mscExampleBcdOperFreeBcdReplicatedEntry)
mibBuilder.exportSymbols("Nortel-MsCarrier-MscPassport-CasTestMIB", mscExampleFixedPtOperFreeFixedPtReplicatedEntry=mscExampleFixedPtOperFreeFixedPtReplicatedEntry, mscExampleBcdOperFreeBcdReplicatedTable=mscExampleBcdOperFreeBcdReplicatedTable, mscExampleExtendedOperFreeExtendedReplicatedValue=mscExampleExtendedOperFreeExtendedReplicatedValue, mscExampleObjectIdOperFreeObjIdListRowStatus=mscExampleObjectIdOperFreeObjIdListRowStatus, mscFriDynOpOptionalComponentName=mscFriDynOpOptionalComponentName, mscExampleStringProvFreeStrReplicatedRowStatus=mscExampleStringProvFreeStrReplicatedRowStatus, mscExampleOperMyComponentName=mscExampleOperMyComponentName, mscExampleStringStorageType=mscExampleStringStorageType, mscExampleIpAddressOperFreeIpAddressArrayValue=mscExampleIpAddressOperFreeIpAddressArrayValue, mscExampleSequenceOperationalTable=mscExampleSequenceOperationalTable, mscExampleSignedProvStructSignedVectorValue=mscExampleSignedProvStructSignedVectorValue, mscExampleDecimalRowStatusEntry=mscExampleDecimalRowStatusEntry, mscExampleStringProvFreeStrListValue=mscExampleStringProvFreeStrListValue, mscExampleHexOsHexVectorTable=mscExampleHexOsHexVectorTable, mscExampleEnumProvFreeEnumArrayDayIndex=mscExampleEnumProvFreeEnumArrayDayIndex, mscExampleDashedProvStructDashedArrayValue=mscExampleDashedProvStructDashedArrayValue, mscExampleEnumIndicesRowStatusTable=mscExampleEnumIndicesRowStatusTable, mscExampleIpAddressProvStructIpAddressVectorTable=mscExampleIpAddressProvStructIpAddressVectorTable, mscExampleDashedOfDashedListValue=mscExampleDashedOfDashedListValue, mscExampleDecimalProvDecimalSub=mscExampleDecimalProvDecimalSub, mscExampleEnumProvFreeEnumListEntry=mscExampleEnumProvFreeEnumListEntry, mscFriDynOpAttribute=mscFriDynOpAttribute, mscExampleHexOsHexArrayValue=mscExampleHexOsHexArrayValue, mscFriOperationalStructSimpleDashed=mscFriOperationalStructSimpleDashed, mscExampleDashedOsDashedArrayRowIndex=mscExampleDashedOsDashedArrayRowIndex, mscExampleBcdProvFreeBcdVector1Table=mscExampleBcdProvFreeBcdVector1Table, mscExampleFixedPtRowStatusTable=mscExampleFixedPtRowStatusTable, mscExampleIpAddressProvStructIpAddressArrayColumnIndex=mscExampleIpAddressProvStructIpAddressArrayColumnIndex, mscFriDynOpOptionalOperationalTable=mscFriDynOpOptionalOperationalTable, mscExampleEnumProvFreeEnumList1Entry=mscExampleEnumProvFreeEnumList1Entry, mscExampleNsapNativeEntry=mscExampleNsapNativeEntry, mscExampleFixedPtProvFreeFixedPtReplicatedRowStatus=mscExampleFixedPtProvFreeFixedPtReplicatedRowStatus, mscFriProvisionalStructSimpleSigned=mscFriProvisionalStructSimpleSigned, mscExampleWildBcdProvStructWildBcdVectorValue=mscExampleWildBcdProvStructWildBcdVectorValue, mscExampleSequence=mscExampleSequence, mscExampleDashedOsDashedVectorValue=mscExampleDashedOsDashedVectorValue, mscExampleMiscellaneousProvFreeLongListValue=mscExampleMiscellaneousProvFreeLongListValue, mscExampleIpAddressProvStructIpAddress=mscExampleIpAddressProvStructIpAddress, mscExampleDecimalPfIntList1Table=mscExampleDecimalPfIntList1Table, mscFriDynOpDynamicOperationalEntry=mscFriDynOpDynamicOperationalEntry, mscFriEvent=mscFriEvent, mscFriProvisionalStructSimpleExtended=mscFriProvisionalStructSimpleExtended, mscExampleDecimalPfIntReplicatedValue=mscExampleDecimalPfIntReplicatedValue, mscExampleMiscellaneousRowStatusTable=mscExampleMiscellaneousRowStatusTable, mscExampleStringOperStructAsciiOnly=mscExampleStringOperStructAsciiOnly, mscExampleHexIndicesOneIndex=mscExampleHexIndicesOneIndex, mscExampleEnumOperFreeEnumVectorEntry=mscExampleEnumOperFreeEnumVectorEntry, mscExampleIpAddressOperationalEntry=mscExampleIpAddressOperationalEntry, mscExampleDashedProvFreeDashedReplicatedTable=mscExampleDashedProvFreeDashedReplicatedTable, mscFriDynamicComponentName=mscFriDynamicComponentName, mscExampleExtendedOperFreeExtendedListValue=mscExampleExtendedOperFreeExtendedListValue, mscExampleStringOperFreeStrReplicatedEntry=mscExampleStringOperFreeStrReplicatedEntry, mscFriDynOpRowStatusEntry=mscFriDynOpRowStatusEntry, mscExampleDashedProvFreeDashedReplicatedEntry=mscExampleDashedProvFreeDashedReplicatedEntry, mscExampleHexRowStatusEntry=mscExampleHexRowStatusEntry, mscExampleSignedOperFreeSignedArrayRowIndex=mscExampleSignedOperFreeSignedArrayRowIndex, mscExampleIpAddrIndicesStorageType=mscExampleIpAddrIndicesStorageType, mscExampleFixedPtProvStructFixedPt=mscExampleFixedPtProvStructFixedPt, mscExampleSignedProvFreeSigned=mscExampleSignedProvFreeSigned, mscExampleDecimalOperStructInteger=mscExampleDecimalOperStructInteger, mscExampleSignedProvStructSignedArrayValue=mscExampleSignedProvStructSignedArrayValue, mscExampleEnumProvEnumSub=mscExampleEnumProvEnumSub, mscExampleDecimalPfIntReplicated1Entry=mscExampleDecimalPfIntReplicated1Entry, mscExampleExtendedStorageType=mscExampleExtendedStorageType, mscExampleExtendedOperFreeExtendedVectorTable=mscExampleExtendedOperFreeExtendedVectorTable, mscExampleBcdRowStatusTable=mscExampleBcdRowStatusTable, mscExampleMiscellaneousProvFreeTimeList1RowStatus=mscExampleMiscellaneousProvFreeTimeList1RowStatus, mscExampleObjectIdProvFreeObjIdReplicatedIndex=mscExampleObjectIdProvFreeObjIdReplicatedIndex, mscExampleEnumOperFreeEnum=mscExampleEnumOperFreeEnum, mscExampleHexProvFreeHexArrayEntry=mscExampleHexProvFreeHexArrayEntry, mscExampleHexStrIndices=mscExampleHexStrIndices, mscExampleMiscellaneousOperFreeLongReplicatedIndex=mscExampleMiscellaneousOperFreeLongReplicatedIndex, mscFriDynOpInitialStorageType=mscFriDynOpInitialStorageType, mscExampleDashedProvFreeDashedListRowStatus=mscExampleDashedProvFreeDashedListRowStatus, mscExampleTwoIndicesOneIndex=mscExampleTwoIndicesOneIndex, mscExampleHexProvFreeHexArray1ColumnIndex=mscExampleHexProvFreeHexArray1ColumnIndex, mscExampleSignedOperFreeSignedReplicatedValue=mscExampleSignedOperFreeSignedReplicatedValue, mscExampleIpAddressProvFreeIpAddressVectorTable=mscExampleIpAddressProvFreeIpAddressVectorTable, mscExampleMiscellaneousProvFreeLongReplicatedIndex=mscExampleMiscellaneousProvFreeLongReplicatedIndex, mscExampleBcdIndex=mscExampleBcdIndex, mscExampleBcdProvFreeBcdListEntry=mscExampleBcdProvFreeBcdListEntry, mscExampleIpAddressOperFreeIpAddressArrayColumnIndex=mscExampleIpAddressOperFreeIpAddressArrayColumnIndex, mscExampleDecimalPfIntListTable=mscExampleDecimalPfIntListTable, mscFriDynOp=mscFriDynOp, mscExampleObjectIdProvFreeObjIdListValue=mscExampleObjectIdProvFreeObjIdListValue, mscExampleObjectIdProvFreeObjIdReplicatedValue=mscExampleObjectIdProvFreeObjIdReplicatedValue, mscExampleDashedIndicesRowStatus=mscExampleDashedIndicesRowStatus, mscFriPfListAsciiTable=mscFriPfListAsciiTable, mscRegisteredDataEntry=mscRegisteredDataEntry, mscFriDynamicOperationalTable=mscFriDynamicOperationalTable, casTestGroupCA=casTestGroupCA, mscExampleHexProvFreeHexVector1Entry=mscExampleHexProvFreeHexVector1Entry, mscFriDnaRowStatusEntry=mscFriDnaRowStatusEntry, mscExampleDecimalPfIntArrayValue=mscExampleDecimalPfIntArrayValue, mscExampleDecimalOfIntVectorEntry=mscExampleDecimalOfIntVectorEntry, mscExampleHexOfHexListEntry=mscExampleHexOfHexListEntry, mscExampleSignedProvStructSigned=mscExampleSignedProvStructSigned, mscExampleDashedProvStructDashedArrayTable=mscExampleDashedProvStructDashedArrayTable, mscExampleIpAddressOperStructIpAddressVectorEntry=mscExampleIpAddressOperStructIpAddressVectorEntry, mscExampleStringProvFreeAsciiOnly1=mscExampleStringProvFreeAsciiOnly1, mscExampleEnumProvStructEnumVectorIndex=mscExampleEnumProvStructEnumVectorIndex, casTestCapabilitiesCA02=casTestCapabilitiesCA02, mscExampleWildBcdProvFreeWildBcdVectorIndex=mscExampleWildBcdProvFreeWildBcdVectorIndex, mscFriDynOpInitialOperationalEntry=mscFriDynOpInitialOperationalEntry, mscExampleStringProvFreeStrArray1ColumnIndex=mscExampleStringProvFreeStrArray1ColumnIndex, mscFriDynOpInitialComponentName=mscFriDynOpInitialComponentName, mscFriDnaAttribute=mscFriDnaAttribute, mscExampleExtended=mscExampleExtended, mscExampleSignedRowStatusTable=mscExampleSignedRowStatusTable, mscFriOperationalFreeSimpleFixed=mscFriOperationalFreeSimpleFixed, mscFriDynOpOptionalOperationalEntry=mscFriDynOpOptionalOperationalEntry, mscExampleDashedOfDashedListEntry=mscExampleDashedOfDashedListEntry, mscExampleMiscellaneousProvFreeLongReplicatedEntry=mscExampleMiscellaneousProvFreeLongReplicatedEntry, mscExampleHexProvFreeHexVector2Index=mscExampleHexProvFreeHexVector2Index, mscExampleHexOfHexArrayValue=mscExampleHexOfHexArrayValue, mscExampleIpAddressOperFreeIpAddressVectorIndex=mscExampleIpAddressOperFreeIpAddressVectorIndex, mscExampleWildBcdOperFreeWildBcdVectorValue=mscExampleWildBcdOperFreeWildBcdVectorValue, mscExampleSequenceIndicesStorageType=mscExampleSequenceIndicesStorageType, mscExampleMiscellaneousOperFreeLongReplicatedTable=mscExampleMiscellaneousOperFreeLongReplicatedTable, mscExampleSignedOperFreeSignedArrayColumnIndex=mscExampleSignedOperFreeSignedArrayColumnIndex, mscExampleSignedOperFreeSignedReplicatedTable=mscExampleSignedOperFreeSignedReplicatedTable, mscExampleExtendedOperFreeExtendedArrayRowIndex=mscExampleExtendedOperFreeExtendedArrayRowIndex, mscExampleStringOperStructStrArrayTable=mscExampleStringOperStructStrArrayTable, mscFriProvisionalStructSetUnsigned=mscFriProvisionalStructSetUnsigned, mscExampleHexStrIndicesStorageType=mscExampleHexStrIndicesStorageType, mscExampleNsapRowStatusTable=mscExampleNsapRowStatusTable, mscExampleDecimalIndicesTwoIndex=mscExampleDecimalIndicesTwoIndex, mscExampleFixedPtProvStructFixedPtArrayColumnIndex=mscExampleFixedPtProvStructFixedPtArrayColumnIndex, mscExampleWildBcdProvFreeWildBcdReplicatedTable=mscExampleWildBcdProvFreeWildBcdReplicatedTable, mscFriDynOpDynOpJrStorageType=mscFriDynOpDynOpJrStorageType, mscExampleExtendedOperFreeExtendedVectorEntry=mscExampleExtendedOperFreeExtendedVectorEntry, mscExampleStringOperFreeHexOnly=mscExampleStringOperFreeHexOnly, mscExampleIpAddressProvFreeIpAddressListRowStatus=mscExampleIpAddressProvFreeIpAddressListRowStatus, mscExampleEnumProvFreeEnumArrayEntry=mscExampleEnumProvFreeEnumArrayEntry, mscExampleObjIdIndicesComponentName=mscExampleObjIdIndicesComponentName, mscExampleFixedPtProvFreeFixedPt=mscExampleFixedPtProvFreeFixedPt, mscExampleIndex=mscExampleIndex, mscExampleDecimalProvFreeIntSet1=mscExampleDecimalProvFreeIntSet1, mscExampleWildBcdProvFreeWildBcdReplicatedIndex=mscExampleWildBcdProvFreeWildBcdReplicatedIndex, mscExampleExtendedProvFreeExtendedReplicatedTable=mscExampleExtendedProvFreeExtendedReplicatedTable, mscExampleSequenceComponentName=mscExampleSequenceComponentName, mscExampleEnumIndicesProvAttribute=mscExampleEnumIndicesProvAttribute, mscExampleWildBcdProvFreeWildBcdArrayEntry=mscExampleWildBcdProvFreeWildBcdArrayEntry, mscExampleFourIndicesComponentName=mscExampleFourIndicesComponentName, mscExampleDashedProvStructDashedArrayEntry=mscExampleDashedProvStructDashedArrayEntry, mscExampleWildBcdOperFreeWildBcdArrayRowIndex=mscExampleWildBcdOperFreeWildBcdArrayRowIndex, mscExampleObjectIdOperFreeObjIdListTable=mscExampleObjectIdOperFreeObjIdListTable, mscExampleHexOfHexReplicatedRowStatus=mscExampleHexOfHexReplicatedRowStatus, mscExampleDashedProvFreeDashedListEntry=mscExampleDashedProvFreeDashedListEntry, mscExampleDecimalOperFreeGauge32=mscExampleDecimalOperFreeGauge32, mscExampleAsciiIndices=mscExampleAsciiIndices, mscExampleString=mscExampleString, mscExampleProvDecimalSubCreatedTable=mscExampleProvDecimalSubCreatedTable, mscExampleBcdProvFreeBcdReplicatedValue=mscExampleBcdProvFreeBcdReplicatedValue, mscFriOperationalStructSimpleUnsigned=mscFriOperationalStructSimpleUnsigned, mscExampleIpAddressProvFreeIpAddressReplicatedIndex=mscExampleIpAddressProvFreeIpAddressReplicatedIndex, mscExampleSequenceStorageType=mscExampleSequenceStorageType, mscExampleMiscellaneousProvFreeTimeListRowStatus=mscExampleMiscellaneousProvFreeTimeListRowStatus, mscExampleEnumOperFreeEnumListRowStatus=mscExampleEnumOperFreeEnumListRowStatus, mscExampleFixedPtIndex=mscExampleFixedPtIndex, mscExampleEnumProvFreeEnumArrayValue=mscExampleEnumProvFreeEnumArrayValue, mscFriPfListUnsignedEntry=mscFriPfListUnsignedEntry, mscExampleEnumProvFreeEnumVectorIndex=mscExampleEnumProvFreeEnumVectorIndex, mscExampleStringOperFreeStrReplicatedValue=mscExampleStringOperFreeStrReplicatedValue, mscExampleMiscellaneousProvFreeTimeList2Entry=mscExampleMiscellaneousProvFreeTimeList2Entry, mscFriOperationalStructSimpleExtended=mscFriOperationalStructSimpleExtended, mscExampleBcdIndicesThreeIndex=mscExampleBcdIndicesThreeIndex, mscExampleEnumProvFreeEnumSet1=mscExampleEnumProvFreeEnumSet1, mscExampleIpAddressProvisionalEntry=mscExampleIpAddressProvisionalEntry, mscExampleIpAddrIndicesRowStatus=mscExampleIpAddrIndicesRowStatus, mscExampleDecimalProvFreeIntSet=mscExampleDecimalProvFreeIntSet, mscExampleHexProvFreeHexArray2Table=mscExampleHexProvFreeHexArray2Table, mscExampleTwoIndicesTwoIndex=mscExampleTwoIndicesTwoIndex, mscExampleEnumProvFreeEnumSet=mscExampleEnumProvFreeEnumSet, mscFriDynOpInitialAttribute=mscFriDynOpInitialAttribute, mscExampleObjectIdOperFreeObjIdReplicatedEntry=mscExampleObjectIdOperFreeObjIdReplicatedEntry, mscExampleDecimalPsIntVectorIndex=mscExampleDecimalPsIntVectorIndex, mscExampleBcdIndicesOneIndex=mscExampleBcdIndicesOneIndex, mscExampleFixedPtProvFreeFixedPtReplicatedValue=mscExampleFixedPtProvFreeFixedPtReplicatedValue, mscExampleExtendedOperStructExtendedArrayEntry=mscExampleExtendedOperStructExtendedArrayEntry, mscExampleHexComponentName=mscExampleHexComponentName, mscExampleRequiredIndicesEnumerationIndex=mscExampleRequiredIndicesEnumerationIndex, mscFriProvisionalFreeSimpleComponent=mscFriProvisionalFreeSimpleComponent, mscFriOperationalFreeSimpleBcd=mscFriOperationalFreeSimpleBcd, mscExampleFixedPtProvFreeFixedPtArrayRowIndex=mscExampleFixedPtProvFreeFixedPtArrayRowIndex, mscExampleBcdProvFreeBcdReplicated1Index=mscExampleBcdProvFreeBcdReplicated1Index, mscExampleDecimalOfIntArrayTable=mscExampleDecimalOfIntArrayTable, mscExampleHexProvFreeHexVector2Table=mscExampleHexProvFreeHexVector2Table, mscExampleFixedPtProvFreeFixedPtArrayEntry=mscExampleFixedPtProvFreeFixedPtArrayEntry, mscExampleExtendedComponentName=mscExampleExtendedComponentName, mscExampleThreeIndicesThreeIndex=mscExampleThreeIndicesThreeIndex, mscFriDynamicRowStatusTable=mscFriDynamicRowStatusTable, mscFriDynOpComponentName=mscFriDynOpComponentName, mscExampleSequenceOperFreeSequenceReplicatedIndex=mscExampleSequenceOperFreeSequenceReplicatedIndex, mscExampleStringProvFreeStrReplicatedIndex=mscExampleStringProvFreeStrReplicatedIndex, mscExampleSignedProvFreeSignedArrayColumnIndex=mscExampleSignedProvFreeSignedArrayColumnIndex, mscExampleRequiredIndicesRowStatus=mscExampleRequiredIndicesRowStatus, mscFriRegisteredRowStatusTable=mscFriRegisteredRowStatusTable, mscExampleEnumProvFreeEnumVectorValue=mscExampleEnumProvFreeEnumVectorValue, mscFriRegistered=mscFriRegistered, mscExampleFixedPtOperStructFixedPtVectorTable=mscExampleFixedPtOperStructFixedPtVectorTable, mscExampleStringComponentName=mscExampleStringComponentName, mscExampleHexProvEnumSub=mscExampleHexProvEnumSub, mscExampleSignedOperFreeSignedReplicatedIndex=mscExampleSignedOperFreeSignedReplicatedIndex, mscExampleHexProvisionalTable=mscExampleHexProvisionalTable, mscExampleExtendedProvFreeExtendedVectorTable=mscExampleExtendedProvFreeExtendedVectorTable, mscExampleObjectIdOperationalEntry=mscExampleObjectIdOperationalEntry, mscExampleFourIndicesProvisionedTable=mscExampleFourIndicesProvisionedTable, mscExampleBcdProvFreeBcdReplicated1Table=mscExampleBcdProvFreeBcdReplicated1Table, mscExampleDecimalPsIntArrayEntry=mscExampleDecimalPsIntArrayEntry, mscExampleHexIndicesRowStatusEntry=mscExampleHexIndicesRowStatusEntry, mscExampleMiscellaneousProvFreeTimeReplicatedValue=mscExampleMiscellaneousProvFreeTimeReplicatedValue, mscExampleFixedPtProvStructFixedPtVectorEntry=mscExampleFixedPtProvStructFixedPtVectorEntry, mscExampleIpAddrIndicesProvisionedTable=mscExampleIpAddrIndicesProvisionedTable, mscExampleStringProvStructStrVectorIndex=mscExampleStringProvStructStrVectorIndex, mscFriOperationalFreeSimpleExtended=mscFriOperationalFreeSimpleExtended, mscFriPfListAsciiValue=mscFriPfListAsciiValue, mscExampleSigned=mscExampleSigned, mscExampleSignedProvStructSignedArrayRowIndex=mscExampleSignedProvStructSignedArrayRowIndex, mscExampleHexProvFreeHexReplicatedRowStatus=mscExampleHexProvFreeHexReplicatedRowStatus, mscExampleExtendedOperFreeExtendedReplicatedTable=mscExampleExtendedOperFreeExtendedReplicatedTable, mscExampleSequenceIndicesTwoIndex=mscExampleSequenceIndicesTwoIndex, mscExampleDecimalOfIntListRowStatus=mscExampleDecimalOfIntListRowStatus, mscExampleEnumOperFreeEnumReplicatedEntry=mscExampleEnumOperFreeEnumReplicatedEntry, mscExampleSequenceIndices=mscExampleSequenceIndices, mscRegisteredRowStatusEntry=mscRegisteredRowStatusEntry, mscExampleExtendedProvStructExtended=mscExampleExtendedProvStructExtended, mscExampleBcdProvFreeBcdArray1ColumnIndex=mscExampleBcdProvFreeBcdArray1ColumnIndex, mscExampleDecimalOperationalTable=mscExampleDecimalOperationalTable, mscFriOperationalStructSimpleFixed=mscFriOperationalStructSimpleFixed, mscExampleDashedOfDashedArrayEntry=mscExampleDashedOfDashedArrayEntry, mscExampleHexRowStatusTable=mscExampleHexRowStatusTable, mscFriDynOpStorageType=mscFriDynOpStorageType, mscExampleDashedOfDashedReplicatedTable=mscExampleDashedOfDashedReplicatedTable, mscExampleEnumOperFreeEnumArrayTable=mscExampleEnumOperFreeEnumArrayTable, mscExampleMiscellaneousProvFreeLongListTable=mscExampleMiscellaneousProvFreeLongListTable, mscExampleBcdOperStructBcd=mscExampleBcdOperStructBcd, mscExampleExtendedOperStructExtendedVectorTable=mscExampleExtendedOperStructExtendedVectorTable, mscExampleIpAddressOperFreeIpAddressVectorTable=mscExampleIpAddressOperFreeIpAddressVectorTable, mscExampleIpAddressProvFreeIpAddressReplicatedValue=mscExampleIpAddressProvFreeIpAddressReplicatedValue, mscExampleAsciiIndicesRowStatusTable=mscExampleAsciiIndicesRowStatusTable, mscExampleStringProvFreeStrVector1Value=mscExampleStringProvFreeStrVector1Value, mscExampleWildBcdOperFreeWildBcdArrayEntry=mscExampleWildBcdOperFreeWildBcdArrayEntry, mscExampleProvDecimalSubCreatedRowStatus=mscExampleProvDecimalSubCreatedRowStatus, mscExampleStringProvFreeStrArray1Value=mscExampleStringProvFreeStrArray1Value, mscExampleWildBcd=mscExampleWildBcd, mscExampleStringOperFreeStrListEntry=mscExampleStringOperFreeStrListEntry, mscExampleSignedProvFreeSignedArray1Value=mscExampleSignedProvFreeSignedArray1Value, mscExampleIpAddressProvFreeIpAddressList1Value=mscExampleIpAddressProvFreeIpAddressList1Value, mscExampleNsapComponentName=mscExampleNsapComponentName, mscExampleBcdProvStructBcdArrayTable=mscExampleBcdProvStructBcdArrayTable, mscExampleObjectIdProvEnumSub=mscExampleObjectIdProvEnumSub, mscExampleSequenceRowStatusEntry=mscExampleSequenceRowStatusEntry, mscRegisteredStorageType=mscRegisteredStorageType)
mibBuilder.exportSymbols("Nortel-MsCarrier-MscPassport-CasTestMIB", mscFriPfListFixedEntry=mscFriPfListFixedEntry, mscExampleHexProvFreeHexVector1Table=mscExampleHexProvFreeHexVector1Table, mscExampleSequenceOperFreeSequenceReplicatedTable=mscExampleSequenceOperFreeSequenceReplicatedTable, mscExampleIpAddressProvFreeIpAddressReplicatedEntry=mscExampleIpAddressProvFreeIpAddressReplicatedEntry, mscExampleMiscellaneousOperFreeLongReplicatedEntry=mscExampleMiscellaneousOperFreeLongReplicatedEntry, mscExampleMiscellaneousProvFreeTimeList1Table=mscExampleMiscellaneousProvFreeTimeList1Table, mscExampleFixedPtOperStructFixedPtArrayEntry=mscExampleFixedPtOperStructFixedPtArrayEntry, mscExampleDashedOperFreeDashed=mscExampleDashedOperFreeDashed, mscFriDnaProvisionalTable=mscFriDnaProvisionalTable, mscExampleStringOperFreeStrListValue=mscExampleStringOperFreeStrListValue, mscExampleMiscellaneousProvFreeTimeReplicatedEntry=mscExampleMiscellaneousProvFreeTimeReplicatedEntry, mscExampleSequenceProvFreeSequenceReplicatedValue=mscExampleSequenceProvFreeSequenceReplicatedValue, mscExampleMiscellaneousProvFreeTimeList3RowStatus=mscExampleMiscellaneousProvFreeTimeList3RowStatus, mscExampleBcdOperStructBcdVectorEntry=mscExampleBcdOperStructBcdVectorEntry, mscExampleSignedProvStructSignedArrayEntry=mscExampleSignedProvStructSignedArrayEntry, mscExampleWildBcdProvStructWildBcdArrayTable=mscExampleWildBcdProvStructWildBcdArrayTable, mscExampleEnumOperFreeEnumArrayEntry=mscExampleEnumOperFreeEnumArrayEntry, mscExampleDecimalPfIntReplicatedIndex=mscExampleDecimalPfIntReplicatedIndex, mscExampleStringProvStructStrVectorTable=mscExampleStringProvStructStrVectorTable, mscExampleDecimalIndicesThreeIndex=mscExampleDecimalIndicesThreeIndex, mscExampleBcdOperationalTable=mscExampleBcdOperationalTable, mscExampleSignedProvFreeSignedVector1Value=mscExampleSignedProvFreeSignedVector1Value, mscExampleIpAddressOperFreeIpAddressArrayRowIndex=mscExampleIpAddressOperFreeIpAddressArrayRowIndex, mscExampleSignedProvFreeSignedArray1ColumnIndex=mscExampleSignedProvFreeSignedArray1ColumnIndex, mscFriDynOpOptional=mscFriDynOpOptional, mscExampleHexStrIndicesOneIndex=mscExampleHexStrIndicesOneIndex, mscExampleDecimalIndicesRowStatusEntry=mscExampleDecimalIndicesRowStatusEntry, mscExampleDashedProvisionalEntry=mscExampleDashedProvisionalEntry, mscExampleFourIndicesRowStatusTable=mscExampleFourIndicesRowStatusTable, mscExampleExtendedProvFreeExtendedArrayEntry=mscExampleExtendedProvFreeExtendedArrayEntry, mscExampleSequenceProvStructSequence=mscExampleSequenceProvStructSequence, mscExampleSequenceIndicesProvAttribute=mscExampleSequenceIndicesProvAttribute, mscExampleSignedOperFreeSignedListValue=mscExampleSignedOperFreeSignedListValue, mscExampleMiscellaneousOperationalTable=mscExampleMiscellaneousOperationalTable, mscExampleDecimalPfIntVector1Value=mscExampleDecimalPfIntVector1Value, mscExampleHexOsHexArrayColumnIndex=mscExampleHexOsHexArrayColumnIndex, mscExampleDashedOfDashedReplicatedRowStatus=mscExampleDashedOfDashedReplicatedRowStatus, mscExampleBcdOperFreeBcdArrayEntry=mscExampleBcdOperFreeBcdArrayEntry, mscExampleFixedPtOperFreeFixedPtReplicatedIndex=mscExampleFixedPtOperFreeFixedPtReplicatedIndex, mscExampleSignedProvFreeSignedArray1Table=mscExampleSignedProvFreeSignedArray1Table, mscExampleStringOperStructStrArrayRowIndex=mscExampleStringOperStructStrArrayRowIndex, mscFriProvisionalStructSimpleEnum=mscFriProvisionalStructSimpleEnum, mscExampleRequiredIndices=mscExampleRequiredIndices, mscFriAvailabilityStatus=mscFriAvailabilityStatus, casTestGroupCA02=casTestGroupCA02, mscExampleDashedProvFreeDashedReplicatedValue=mscExampleDashedProvFreeDashedReplicatedValue, mscExampleProvDecimalSubCreatedEntry=mscExampleProvDecimalSubCreatedEntry, mscExampleBcdOperStructBcdVectorIndex=mscExampleBcdOperStructBcdVectorIndex, mscExampleSignedProvStructSignedVectorIndex=mscExampleSignedProvStructSignedVectorIndex, mscExampleIpAddrIndicesRowStatusEntry=mscExampleIpAddrIndicesRowStatusEntry, mscFriAlarmStatus=mscFriAlarmStatus, mscFriDnaNumberPlanIndicator=mscFriDnaNumberPlanIndicator, mscExampleProvFixedPtSubCreatedRowStatus=mscExampleProvFixedPtSubCreatedRowStatus, mscExampleExtendedRowStatusTable=mscExampleExtendedRowStatusTable, mscExampleExtendedOperFreeExtendedArrayTable=mscExampleExtendedOperFreeExtendedArrayTable, mscExampleHexIndicesThreeIndex=mscExampleHexIndicesThreeIndex, mscExampleEnumProvFreeEnum1=mscExampleEnumProvFreeEnum1, mscFriDynOpInitialRowStatus=mscFriDynOpInitialRowStatus, mscExampleIpAddressProvFreeIpAddressVector1Table=mscExampleIpAddressProvFreeIpAddressVector1Table, mscExampleBcdProvFreeBcdReplicated1Entry=mscExampleBcdProvFreeBcdReplicated1Entry, mscExampleThreeIndicesRowStatus=mscExampleThreeIndicesRowStatus, mscExampleProvSignedSubCreatedTable=mscExampleProvSignedSubCreatedTable, mscExampleDashedProvFreeDashedVectorIndex=mscExampleDashedProvFreeDashedVectorIndex, mscExampleEnumOperFreeEnumListValue=mscExampleEnumOperFreeEnumListValue, mscExampleIpAddressOperFreeIpAddressReplicatedEntry=mscExampleIpAddressOperFreeIpAddressReplicatedEntry, mscExampleEnumProvFreeEnumListRowStatus=mscExampleEnumProvFreeEnumListRowStatus, mscExampleExtendedProvEnumSub=mscExampleExtendedProvEnumSub, mscExampleWildBcdProvFreeWildBcdVectorTable=mscExampleWildBcdProvFreeWildBcdVectorTable, mscExampleWildBcdProvStructWildBcdArrayValue=mscExampleWildBcdProvStructWildBcdArrayValue, mscExampleThreeIndices=mscExampleThreeIndices, mscExampleHexProvFreeHexListRowStatus=mscExampleHexProvFreeHexListRowStatus, mscExampleFixedPtProvFreeFixedPtListRowStatus=mscExampleFixedPtProvFreeFixedPtListRowStatus, mscFriOperationalStructSimpleAscii=mscFriOperationalStructSimpleAscii, mscFriDynamic=mscFriDynamic, mscExampleDashedOfDashedListRowStatus=mscExampleDashedOfDashedListRowStatus, mscExampleBcdProvFreeBcdList1Value=mscExampleBcdProvFreeBcdList1Value, mscExampleEnumProvFreeEnumReplicatedIndex=mscExampleEnumProvFreeEnumReplicatedIndex, mscExampleDashedOfDashedListTable=mscExampleDashedOfDashedListTable, mscExampleSignedProvFreeSignedListTable=mscExampleSignedProvFreeSignedListTable, mscExampleStringOperationalEntry=mscExampleStringOperationalEntry, mscFriUnknownStatus=mscFriUnknownStatus, mscExampleStringProvStructStrArrayTable=mscExampleStringProvStructStrArrayTable, mscExampleFourIndicesThreeIndex=mscExampleFourIndicesThreeIndex, mscExampleExtendedProvFreeExtendedReplicatedValue=mscExampleExtendedProvFreeExtendedReplicatedValue, mscFriProvisionalFreeSimpleObjId=mscFriProvisionalFreeSimpleObjId, mscExampleBcdOperFreeBcdArrayValue=mscExampleBcdOperFreeBcdArrayValue, mscExampleExtendedOperFreeExtendedListTable=mscExampleExtendedOperFreeExtendedListTable, mscExampleMiscellaneousOperationalEntry=mscExampleMiscellaneousOperationalEntry, mscExampleIpAddressProvStructIpAddressVectorIndex=mscExampleIpAddressProvStructIpAddressVectorIndex, mscFriOfListComponentValue=mscFriOfListComponentValue, mscExampleOneIndexProvisionedEntry=mscExampleOneIndexProvisionedEntry, mscExampleSignedOperStructSignedArrayTable=mscExampleSignedOperStructSignedArrayTable, mscExampleExtendedOperFreeExtendedReplicatedRowStatus=mscExampleExtendedOperFreeExtendedReplicatedRowStatus, mscRegisteredComponentName=mscRegisteredComponentName, mscExampleBcdProvFreeBcdVector1Value=mscExampleBcdProvFreeBcdVector1Value, mscExampleFixedPtOperFreeFixedPtSet=mscExampleFixedPtOperFreeFixedPtSet, mscExampleEnumProvFreeEnumArray1Table=mscExampleEnumProvFreeEnumArray1Table, mscExampleDashedStorageType=mscExampleDashedStorageType, mscExampleFourIndices=mscExampleFourIndices, mscExampleWildBcdProvFreeWildBcdListTable=mscExampleWildBcdProvFreeWildBcdListTable, mscExampleHexOfHexListRowStatus=mscExampleHexOfHexListRowStatus, mscExampleBcdProvStructBcd=mscExampleBcdProvStructBcd, mscExampleSequenceIndicesComponentName=mscExampleSequenceIndicesComponentName, mscExampleSequenceOperFreeSequenceReplicatedRowStatus=mscExampleSequenceOperFreeSequenceReplicatedRowStatus, mscFriEscapeCopyGroup=mscFriEscapeCopyGroup, mscExampleDecimalIndex=mscExampleDecimalIndex, mscExampleDecimalPfIntArrayColumnIndex=mscExampleDecimalPfIntArrayColumnIndex, mscFriDnaTypeOfAddress=mscFriDnaTypeOfAddress, mscFriDynOpIndex=mscFriDynOpIndex, mscExampleEnumProvStructEnumVectorValue=mscExampleEnumProvStructEnumVectorValue, mscExampleStringOperStructStrArrayEntry=mscExampleStringOperStructStrArrayEntry, mscFriOperationalStructSimpleBcd=mscFriOperationalStructSimpleBcd, mscExampleSignedOperFreeSigned=mscExampleSignedOperFreeSigned, mscExampleHexOfHexReplicatedTable=mscExampleHexOfHexReplicatedTable, mscExampleExtendedProvisionalEntry=mscExampleExtendedProvisionalEntry, mscExampleDecimalOperFreeIntSet=mscExampleDecimalOperFreeIntSet, mscExampleAsciiIndicesComponentName=mscExampleAsciiIndicesComponentName, mscExampleDashedProvStructDashedVectorTable=mscExampleDashedProvStructDashedVectorTable, mscExampleSequenceIndicesRowStatus=mscExampleSequenceIndicesRowStatus, mscExampleEnumIndicesTwoIndex=mscExampleEnumIndicesTwoIndex, mscExampleStringOperStructStrVectorTable=mscExampleStringOperStructStrVectorTable, mscFriOfListComponentRowStatus=mscFriOfListComponentRowStatus, mscExampleEnumProvFreeEnumVectorTable=mscExampleEnumProvFreeEnumVectorTable, mscExampleIpAddressProvFreeIpAddressVectorIndex=mscExampleIpAddressProvFreeIpAddressVectorIndex, mscExampleThreeIndicesProvisionedTable=mscExampleThreeIndicesProvisionedTable, mscExampleMiscellaneousOperFreeTimeDateOnly=mscExampleMiscellaneousOperFreeTimeDateOnly, mscExampleStringProvStructHexOnly=mscExampleStringProvStructHexOnly, mscExampleIpAddressRowStatusTable=mscExampleIpAddressRowStatusTable, mscExampleFixedPtProvStructFixedPtVectorValue=mscExampleFixedPtProvStructFixedPtVectorValue, mscExampleHexProvStructHexArrayEntry=mscExampleHexProvStructHexArrayEntry, mscExampleTwoIndicesProvisionedEntry=mscExampleTwoIndicesProvisionedEntry, mscExampleHexProvFreeHexVectorTable=mscExampleHexProvFreeHexVectorTable, mscExampleExtendedOperStructExtendedVectorEntry=mscExampleExtendedOperStructExtendedVectorEntry, mscExampleStringProvFreeStrArray1Table=mscExampleStringProvFreeStrArray1Table, mscExampleDashedProvFreeDashedListTable=mscExampleDashedProvFreeDashedListTable, mscExampleSignedProvFreeSignedVectorValue=mscExampleSignedProvFreeSignedVectorValue, mscFriDynOpInitialOperationalTable=mscFriDynOpInitialOperationalTable, mscExampleHexOfHexArrayRowIndex=mscExampleHexOfHexArrayRowIndex, mscExampleWildBcdProvStructWildBcdArrayEntry=mscExampleWildBcdProvStructWildBcdArrayEntry, mscExampleDashedOfDashedReplicatedIndex=mscExampleDashedOfDashedReplicatedIndex, mscExampleSignedOperStructSigned=mscExampleSignedOperStructSigned, mscExampleStringProvFreeStrArrayColumnIndex=mscExampleStringProvFreeStrArrayColumnIndex, mscExampleSignedStorageType=mscExampleSignedStorageType, mscExampleEnumOperStructEnumArrayTable=mscExampleEnumOperStructEnumArrayTable, mscFriDynOpInitialRowStatusEntry=mscFriDynOpInitialRowStatusEntry, mscExampleComponentName=mscExampleComponentName, mscExampleFixedPtOperStructFixedPt=mscExampleFixedPtOperStructFixedPt, mscExampleEnumOperStructEnumArrayDayIndex=mscExampleEnumOperStructEnumArrayDayIndex, mscFriDynOpInitialRowStatusTable=mscFriDynOpInitialRowStatusTable, mscExampleDecimalPsIntArrayColumnIndex=mscExampleDecimalPsIntArrayColumnIndex, mscExampleDecimalPfIntReplicatedEntry=mscExampleDecimalPfIntReplicatedEntry, mscExampleBcdOperFreeBcdReplicatedIndex=mscExampleBcdOperFreeBcdReplicatedIndex, mscExampleExtendedProvFreeExtendedArrayColumnIndex=mscExampleExtendedProvFreeExtendedArrayColumnIndex, mscExampleBcdOperationalEntry=mscExampleBcdOperationalEntry, mscFriEscapeDefaultsComponent=mscFriEscapeDefaultsComponent, mscExampleDecimalPfIntVectorEntry=mscExampleDecimalPfIntVectorEntry, mscExampleFixedPtOperFreeFixedPtListTable=mscExampleFixedPtOperFreeFixedPtListTable, mscExampleMiscellaneousProvFreeLongReplicatedTable=mscExampleMiscellaneousProvFreeLongReplicatedTable, mscExampleNsapNativeIndex=mscExampleNsapNativeIndex, mscExampleSignedProvStructSignedVectorTable=mscExampleSignedProvStructSignedVectorTable, mscExampleBcdOperFreeBcdReplicatedRowStatus=mscExampleBcdOperFreeBcdReplicatedRowStatus, mscExampleFixedPtProvFreeFixedPtListValue=mscExampleFixedPtProvFreeFixedPtListValue, mscExampleFourIndicesRowStatus=mscExampleFourIndicesRowStatus, mscExampleThreeIndicesStorageType=mscExampleThreeIndicesStorageType, mscExampleDashedProvStructDashedVectorIndex=mscExampleDashedProvStructDashedVectorIndex, mscExampleHexProvFreeHexListValue=mscExampleHexProvFreeHexListValue, mscExampleEnumProvFreeEnumReplicatedEntry=mscExampleEnumProvFreeEnumReplicatedEntry, mscFriDnaComponentName=mscFriDnaComponentName, mscFriOperationalEntry=mscFriOperationalEntry, mscExampleMiscellaneousProvFreeLong=mscExampleMiscellaneousProvFreeLong, mscFriProvisionalFreeSimpleSequence=mscFriProvisionalFreeSimpleSequence, mscExampleSignedIndex=mscExampleSignedIndex, mscFriDynOpDynamicRowStatusTable=mscFriDynOpDynamicRowStatusTable, mscFriControlStatus=mscFriControlStatus, mscExampleBcdProvFreeBcdReplicatedRowStatus=mscExampleBcdProvFreeBcdReplicatedRowStatus, mscExampleHexIndicesComponentName=mscExampleHexIndicesComponentName, mscExampleExtendedProvStructExtendedArrayEntry=mscExampleExtendedProvStructExtendedArrayEntry, mscExampleIpAddressProvStructIpAddressArrayEntry=mscExampleIpAddressProvStructIpAddressArrayEntry, mscExampleMiscellaneousProvFreeTimeList2Value=mscExampleMiscellaneousProvFreeTimeList2Value, mscExampleOperStringSubCreatedEntry=mscExampleOperStringSubCreatedEntry, mscExampleMiscellaneousOperStructLong=mscExampleMiscellaneousOperStructLong, mscExampleIpAddrIndicesComponentName=mscExampleIpAddrIndicesComponentName, mscExampleStringOperFreeStrVectorEntry=mscExampleStringOperFreeStrVectorEntry, mscExampleIpAddrIndicesProvAttribute=mscExampleIpAddrIndicesProvAttribute, mscExampleOperEnumSubCreatedTable=mscExampleOperEnumSubCreatedTable, mscExampleThreeIndicesComponentName=mscExampleThreeIndicesComponentName, mscExampleStringProvFreeStrList1RowStatus=mscExampleStringProvFreeStrList1RowStatus, mscExampleObjectIdProvisionalTable=mscExampleObjectIdProvisionalTable, mscExampleWildBcdOperStructWildBcdVectorIndex=mscExampleWildBcdOperStructWildBcdVectorIndex, mscExampleBcdProvFreeBcdVector1Index=mscExampleBcdProvFreeBcdVector1Index, mscExampleDashedProvStructDashedArrayColumnIndex=mscExampleDashedProvStructDashedArrayColumnIndex, mscExampleAsciiIndicesRowStatus=mscExampleAsciiIndicesRowStatus, mscExampleDecimalOfIntReplicatedTable=mscExampleDecimalOfIntReplicatedTable, mscExampleEnumOperFreeEnumArrayDayIndex=mscExampleEnumOperFreeEnumArrayDayIndex, mscExampleObjectId=mscExampleObjectId, mscExampleMiscellaneousProvFreeTime1=mscExampleMiscellaneousProvFreeTime1, mscFriEventStorageType=mscFriEventStorageType, mscFriPfListUnsignedValue=mscFriPfListUnsignedValue, mscExampleStringOperStructStrArrayValue=mscExampleStringOperStructStrArrayValue, mscExampleEnumOperStructEnumVectorEntry=mscExampleEnumOperStructEnumVectorEntry, mscExampleProvFixedPtSubCreatedValue=mscExampleProvFixedPtSubCreatedValue, mscFri=mscFri, mscFriDynOpInitialIndex=mscFriDynOpInitialIndex, mscExampleWildBcdOperFreeWildBcdReplicatedEntry=mscExampleWildBcdOperFreeWildBcdReplicatedEntry, mscExampleRowStatusTable=mscExampleRowStatusTable, mscExampleProvSignedSubCreatedEntry=mscExampleProvSignedSubCreatedEntry, mscExampleStringProvFreeStrArrayValue=mscExampleStringProvFreeStrArrayValue, mscFriDnaDataNetworkAddress=mscFriDnaDataNetworkAddress, mscExampleDecimalOfIntListValue=mscExampleDecimalOfIntListValue, mscExampleOperStringSubCreatedValue=mscExampleOperStringSubCreatedValue, mscExampleDecimalPsIntArrayValue=mscExampleDecimalPsIntArrayValue, mscExampleProvFixedPtSubCreatedEntry=mscExampleProvFixedPtSubCreatedEntry, mscFriDynOpDynamicIndex=mscFriDynOpDynamicIndex, mscExampleExtendedOperFreeExtendedReplicatedIndex=mscExampleExtendedOperFreeExtendedReplicatedIndex, mscExampleSequenceProvFreeSequenceReplicatedRowStatus=mscExampleSequenceProvFreeSequenceReplicatedRowStatus, mscExampleDecimalPfIntVector1Table=mscExampleDecimalPfIntVector1Table, mscExampleMiscellaneousOperFreeCounter64=mscExampleMiscellaneousOperFreeCounter64, mscExampleIpAddrIndicesProvisionedEntry=mscExampleIpAddrIndicesProvisionedEntry, mscFriRegisteredDataEntry=mscFriRegisteredDataEntry, mscFriProvisionalFreeSimpleBcd=mscFriProvisionalFreeSimpleBcd, mscExampleObjIdIndicesRowStatus=mscExampleObjIdIndicesRowStatus, mscExampleBcdProvisionalEntry=mscExampleBcdProvisionalEntry, mscExampleBcdProvisionalTable=mscExampleBcdProvisionalTable, mscExampleFixedPtProvFreeFixedPtVectorIndex=mscExampleFixedPtProvFreeFixedPtVectorIndex, mscExampleMiscellaneousOperFreeTimeListEntry=mscExampleMiscellaneousOperFreeTimeListEntry, mscExampleHexIndicesRowStatus=mscExampleHexIndicesRowStatus, casTestMIB=casTestMIB, mscExampleObjectIdRowStatusEntry=mscExampleObjectIdRowStatusEntry, mscExampleDecimalPfIntArrayEntry=mscExampleDecimalPfIntArrayEntry, mscExampleEnumProvStructEnumVectorTable=mscExampleEnumProvStructEnumVectorTable, mscExampleExtendedOperStructExtendedArrayTable=mscExampleExtendedOperStructExtendedArrayTable, mscExampleObjectIdProvisionalEntry=mscExampleObjectIdProvisionalEntry, mscExampleHexOsHexVectorValue=mscExampleHexOsHexVectorValue, mscExampleHexOfHexArrayColumnIndex=mscExampleHexOfHexArrayColumnIndex, mscExampleExtendedProvFreeExtendedReplicatedEntry=mscExampleExtendedProvFreeExtendedReplicatedEntry, mscExampleEnumProvFreeEnumReplicatedValue=mscExampleEnumProvFreeEnumReplicatedValue, mscRegistered=mscRegistered, mscExampleSignedProvFreeSignedReplicatedValue=mscExampleSignedProvFreeSignedReplicatedValue, mscExampleExtendedOperationalEntry=mscExampleExtendedOperationalEntry, mscExampleOperStringSubCreatedTable=mscExampleOperStringSubCreatedTable, mscExampleExtendedProvFreeExtendedListRowStatus=mscExampleExtendedProvFreeExtendedListRowStatus, mscExampleDecimalOfIntVectorValue=mscExampleDecimalOfIntVectorValue, mscExampleNsapIndex=mscExampleNsapIndex, mscExampleWildBcdProvFreeWildBcdListValue=mscExampleWildBcdProvFreeWildBcdListValue, casTestCapabilitiesCA02A=casTestCapabilitiesCA02A, mscExampleObjectIdProvFreeObjId=mscExampleObjectIdProvFreeObjId, mscExampleHexProvStructHexArrayValue=mscExampleHexProvStructHexArrayValue, mscExampleHexProvFreeHexReplicated1Value=mscExampleHexProvFreeHexReplicated1Value, mscFriDynOpDynamicRowStatusEntry=mscFriDynOpDynamicRowStatusEntry, mscExampleHexProvFreeHex=mscExampleHexProvFreeHex, mscExampleHexProvFreeHexReplicatedTable=mscExampleHexProvFreeHexReplicatedTable, mscExampleRequiredIndicesComponentName=mscExampleRequiredIndicesComponentName, mscFriComponentName=mscFriComponentName, mscExampleSequenceIndicesProvisionedTable=mscExampleSequenceIndicesProvisionedTable)
mibBuilder.exportSymbols("Nortel-MsCarrier-MscPassport-CasTestMIB", mscExampleOneIndexRowStatus=mscExampleOneIndexRowStatus, mscFriDynOpDynOpJrRowStatus=mscFriDynOpDynOpJrRowStatus, mscExampleMiscellaneousProvFreeTimeTimeOnly1=mscExampleMiscellaneousProvFreeTimeTimeOnly1, mscExampleBcdProvFreeBcdReplicatedEntry=mscExampleBcdProvFreeBcdReplicatedEntry, mscExampleDecimal=mscExampleDecimal, mscExampleWildBcdProvStructWildBcd=mscExampleWildBcdProvStructWildBcd, mscFriProvisionalStructSimpleDashed=mscFriProvisionalStructSimpleDashed, mscExampleSequenceRowStatus=mscExampleSequenceRowStatus, mscExampleTwoIndicesStorageType=mscExampleTwoIndicesStorageType, mscExampleDashedIndicesRowStatusTable=mscExampleDashedIndicesRowStatusTable, mscExampleFixedPtProvFreeFixedPtArrayTable=mscExampleFixedPtProvFreeFixedPtArrayTable, mscExampleTwoIndicesRowStatusTable=mscExampleTwoIndicesRowStatusTable, mscExampleBcdIndicesTwoIndex=mscExampleBcdIndicesTwoIndex, mscExampleDashedOfDashedVectorIndex=mscExampleDashedOfDashedVectorIndex, mscExampleDashedRowStatus=mscExampleDashedRowStatus, mscExampleFixedPtOperFreeFixedPtArrayColumnIndex=mscExampleFixedPtOperFreeFixedPtArrayColumnIndex, mscExampleHexProvFreeHexArray1Value=mscExampleHexProvFreeHexArray1Value, mscExampleOperDecimalSubCreatedTable=mscExampleOperDecimalSubCreatedTable, mscExampleDashedRowStatusTable=mscExampleDashedRowStatusTable, mscExampleExtendedProvFreeExtendedVectorValue=mscExampleExtendedProvFreeExtendedVectorValue, mscFriOperationalFreeSimpleComponent=mscFriOperationalFreeSimpleComponent, mscFriOfListEnumerationValue=mscFriOfListEnumerationValue, mscExampleStringProvFreeStrVectorEntry=mscExampleStringProvFreeStrVectorEntry, mscExampleWildBcdOperStructWildBcdVectorValue=mscExampleWildBcdOperStructWildBcdVectorValue, mscExampleBcdOperFreeBcdVectorIndex=mscExampleBcdOperFreeBcdVectorIndex, mscExampleProvisionalTable=mscExampleProvisionalTable, mscExampleEnumIndicesStorageType=mscExampleEnumIndicesStorageType, mscExampleOneIndexComponentName=mscExampleOneIndexComponentName, mscExampleFixedPtOperFreeFixedPtVectorTable=mscExampleFixedPtOperFreeFixedPtVectorTable, mscExampleWildBcdRowStatusEntry=mscExampleWildBcdRowStatusEntry, mscExampleNsapStorageType=mscExampleNsapStorageType, mscExampleProvEnumSubCreatedRowStatus=mscExampleProvEnumSubCreatedRowStatus, mscExampleHexStrIndicesRowStatus=mscExampleHexStrIndicesRowStatus, mscFriDynOpDynamicOperationalTable=mscFriDynOpDynamicOperationalTable, mscExampleObjectIdComponentName=mscExampleObjectIdComponentName, mscExampleFixedPtOperFreeFixedPtVectorEntry=mscExampleFixedPtOperFreeFixedPtVectorEntry, mscExampleDecimalOsIntVectorValue=mscExampleDecimalOsIntVectorValue, mscExampleDecimalOsIntArrayTable=mscExampleDecimalOsIntArrayTable, mscExampleSignedProvisionalEntry=mscExampleSignedProvisionalEntry, mscExampleExtendedOperFreeExtendedVectorIndex=mscExampleExtendedOperFreeExtendedVectorIndex, mscExampleMiscellaneousProvFreeTimeDateTimeMinute=mscExampleMiscellaneousProvFreeTimeDateTimeMinute, mscExampleEnumOperFreeEnumListEntry=mscExampleEnumOperFreeEnumListEntry, mscExampleSignedRowStatus=mscExampleSignedRowStatus, mscExampleStringProvFreeAsciiOnly=mscExampleStringProvFreeAsciiOnly, mscExampleWildBcdOperationalEntry=mscExampleWildBcdOperationalEntry, mscExampleStringOperFreeStrListTable=mscExampleStringOperFreeStrListTable, mscFriPfListSignedTable=mscFriPfListSignedTable, mscExampleDecimalPfIntList1Entry=mscExampleDecimalPfIntList1Entry, mscExampleSignedOperFreeSignedVectorValue=mscExampleSignedOperFreeSignedVectorValue, mscExampleMiscellaneousProvFreeTimeList3Entry=mscExampleMiscellaneousProvFreeTimeList3Entry, mscExampleExtendedProvFreeExtendedVectorEntry=mscExampleExtendedProvFreeExtendedVectorEntry, mscExampleHexProvFreeHexReplicatedEntry=mscExampleHexProvFreeHexReplicatedEntry, mscExampleHexProvFreeHexReplicatedValue=mscExampleHexProvFreeHexReplicatedValue, mscFriDnaOperationalTable=mscFriDnaOperationalTable, mscExampleExtendedRowStatus=mscExampleExtendedRowStatus, mscExampleHexProvFreeHexVector1Value=mscExampleHexProvFreeHexVector1Value, mscExampleFourIndicesProvAttribute=mscExampleFourIndicesProvAttribute, mscExampleBcdRowStatusEntry=mscExampleBcdRowStatusEntry, mscExampleDashedOfDashedArrayTable=mscExampleDashedOfDashedArrayTable, mscFriDynOpDynOpJrOperationalEntry=mscFriDynOpDynOpJrOperationalEntry, mscFriOperationalFreeSimpleSigned=mscFriOperationalFreeSimpleSigned, mscExampleIpAddressOperStructIpAddressVectorValue=mscExampleIpAddressOperStructIpAddressVectorValue, mscExampleBcdIndicesRowStatusEntry=mscExampleBcdIndicesRowStatusEntry, mscExampleDecimalPfIntVectorValue=mscExampleDecimalPfIntVectorValue, mscExampleDashedIndicesStorageType=mscExampleDashedIndicesStorageType, mscExampleFixedPtOperFreeFixedPtReplicatedTable=mscExampleFixedPtOperFreeFixedPtReplicatedTable, mscFriOperationalStructSimpleSequence=mscFriOperationalStructSimpleSequence, mscExampleWildBcdOperFreeWildBcdReplicatedIndex=mscExampleWildBcdOperFreeWildBcdReplicatedIndex, mscExampleExtendedOperFreeExtendedListEntry=mscExampleExtendedOperFreeExtendedListEntry, mscExampleDashedProvFreeDashedArrayColumnIndex=mscExampleDashedProvFreeDashedArrayColumnIndex, mscExampleMiscellaneousProvFreeTimeListEntry=mscExampleMiscellaneousProvFreeTimeListEntry, mscExampleProvSignedSubCreatedRowStatus=mscExampleProvSignedSubCreatedRowStatus, mscExampleSignedProvisionalTable=mscExampleSignedProvisionalTable, mscExampleSignedOperFreeSignedListRowStatus=mscExampleSignedOperFreeSignedListRowStatus, mscFriDynOpOptionalRowStatus=mscFriDynOpOptionalRowStatus, mscFriDnaProvisionalEntry=mscFriDnaProvisionalEntry, mscExampleProvStringSubCreatedTable=mscExampleProvStringSubCreatedTable, mscExampleFixedPtOperStructFixedPtArrayRowIndex=mscExampleFixedPtOperStructFixedPtArrayRowIndex, mscExampleWildBcdOperFreeWildBcd=mscExampleWildBcdOperFreeWildBcd, mscExampleEnumOperFreeEnumReplicatedValue=mscExampleEnumOperFreeEnumReplicatedValue, mscExampleExtendedOperStructExtendedArrayRowIndex=mscExampleExtendedOperStructExtendedArrayRowIndex, mscExampleEnumOperFreeEnumListTable=mscExampleEnumOperFreeEnumListTable, mscExampleDecimalIndicesProvisionedTable=mscExampleDecimalIndicesProvisionedTable, mscExampleExtendedProvStructExtendedVectorValue=mscExampleExtendedProvStructExtendedVectorValue, mscExampleDecimalOfIntArrayEntry=mscExampleDecimalOfIntArrayEntry, mscExampleFixedPtComponentName=mscExampleFixedPtComponentName, mscExampleFixedPtRowStatus=mscExampleFixedPtRowStatus, mscExampleSignedProvFreeSignedReplicatedRowStatus=mscExampleSignedProvFreeSignedReplicatedRowStatus, mscExampleEnumProvFreeEnumVector1Index=mscExampleEnumProvFreeEnumVector1Index, mscExampleBcdOperFreeBcdVectorValue=mscExampleBcdOperFreeBcdVectorValue, mscExampleDecimalPfIntArrayTable=mscExampleDecimalPfIntArrayTable, mscExampleHexProvFreeHexArray2RowIndex=mscExampleHexProvFreeHexArray2RowIndex, mscExampleBcdProvFreeBcdReplicated1RowStatus=mscExampleBcdProvFreeBcdReplicated1RowStatus, mscExampleObjectIdRowStatus=mscExampleObjectIdRowStatus, mscExampleMiscellaneousOperStructCounter64=mscExampleMiscellaneousOperStructCounter64, mscExampleProvStringSubCreatedEntry=mscExampleProvStringSubCreatedEntry, mscExampleNsapNativeValue=mscExampleNsapNativeValue, mscExampleMiscellaneousOperFreeTimeListRowStatus=mscExampleMiscellaneousOperFreeTimeListRowStatus, mscExampleSignedProvFreeSignedReplicatedEntry=mscExampleSignedProvFreeSignedReplicatedEntry, mscFriEventRowStatusTable=mscFriEventRowStatusTable, mscExampleFixedPtOperFreeFixedPtReplicatedValue=mscExampleFixedPtOperFreeFixedPtReplicatedValue, mscExampleMiscellaneousProvFreeTimeListTable=mscExampleMiscellaneousProvFreeTimeListTable, mscFriRowStatusTable=mscFriRowStatusTable, mscExampleHexProvFreeHexArrayColumnIndex=mscExampleHexProvFreeHexArrayColumnIndex, mscExampleFixedPtOperStructFixedPtVectorEntry=mscExampleFixedPtOperStructFixedPtVectorEntry, mscExampleOperEnumSubCreatedValue=mscExampleOperEnumSubCreatedValue, mscExampleOperEnumSubCreatedEntry=mscExampleOperEnumSubCreatedEntry, mscExampleBcd=mscExampleBcd, mscExampleIpAddrIndices=mscExampleIpAddrIndices, mscRegisteredIndex=mscRegisteredIndex, mscExampleDecimalOsIntVectorIndex=mscExampleDecimalOsIntVectorIndex, mscExampleStringOperStructHexOnly=mscExampleStringOperStructHexOnly, mscExampleDashedIndicesProvisionedTable=mscExampleDashedIndicesProvisionedTable, mscExampleStringProvFreeStrArrayRowIndex=mscExampleStringProvFreeStrArrayRowIndex, mscExampleSignedOperFreeSignedListEntry=mscExampleSignedOperFreeSignedListEntry, mscExampleMiscellaneousProvFreeLongListRowStatus=mscExampleMiscellaneousProvFreeLongListRowStatus, mscExampleBcdComponentName=mscExampleBcdComponentName, mscExampleBcdOperFreeBcdListValue=mscExampleBcdOperFreeBcdListValue, mscExampleOperDecimalSubCreatedEntry=mscExampleOperDecimalSubCreatedEntry, mscFriProvisionalStructSimpleHex=mscFriProvisionalStructSimpleHex, mscExampleWildBcdOperFreeWildBcdReplicatedRowStatus=mscExampleWildBcdOperFreeWildBcdReplicatedRowStatus, mscExampleDashedOperStructDashed=mscExampleDashedOperStructDashed, mscExampleHex=mscExampleHex, mscExampleDashedOfDashedArrayColumnIndex=mscExampleDashedOfDashedArrayColumnIndex, mscExampleHexProvFreeHexVector2Entry=mscExampleHexProvFreeHexVector2Entry, mscExampleWildBcdProvFreeWildBcdVectorValue=mscExampleWildBcdProvFreeWildBcdVectorValue, mscExampleHexProvFreeHexReplicated1Index=mscExampleHexProvFreeHexReplicated1Index, mscExampleStringProvisionalEntry=mscExampleStringProvisionalEntry, mscExampleObjectIdOperationalTable=mscExampleObjectIdOperationalTable, mscExampleFixedPtOperFreeFixedPtArrayTable=mscExampleFixedPtOperFreeFixedPtArrayTable, mscExampleExtendedOperFreeExtendedVectorValue=mscExampleExtendedOperFreeExtendedVectorValue, mscExampleWildBcdProvFreeWildBcdArrayRowIndex=mscExampleWildBcdProvFreeWildBcdArrayRowIndex, mscExampleEnumComponentName=mscExampleEnumComponentName, mscFriEscapeSet=mscFriEscapeSet, mscFriProvisionalTable=mscFriProvisionalTable, mscExampleDashedProvFreeDashedVectorValue=mscExampleDashedProvFreeDashedVectorValue, mscFriProvisionalFreeSimpleDashed=mscFriProvisionalFreeSimpleDashed, mscFriDynOpDynOpJr=mscFriDynOpDynOpJr, mscExampleStringProvFreeHexOnly1=mscExampleStringProvFreeHexOnly1, mscExampleEnumProvStructEnumArrayTable=mscExampleEnumProvStructEnumArrayTable, mscExampleStringOperFreeStrArrayColumnIndex=mscExampleStringOperFreeStrArrayColumnIndex, mscExampleWildBcdProvFreeWildBcd=mscExampleWildBcdProvFreeWildBcd, mscExampleEnumOperFreeEnumSet=mscExampleEnumOperFreeEnumSet, mscExampleSequenceProvisionalTable=mscExampleSequenceProvisionalTable, mscFriDynOpRowStatusTable=mscFriDynOpRowStatusTable, mscExampleEnumProvFreeEnumReplicatedRowStatus=mscExampleEnumProvFreeEnumReplicatedRowStatus, mscExampleAsciiIndicesTwoIndex=mscExampleAsciiIndicesTwoIndex, mscExampleStringProvFreeStrVector1Index=mscExampleStringProvFreeStrVector1Index, mscFriProvisionalStructSimpleSequence=mscFriProvisionalStructSimpleSequence, mscExampleIpAddressProvFreeIpAddressArrayColumnIndex=mscExampleIpAddressProvFreeIpAddressArrayColumnIndex, mscExampleWildBcdOperFreeWildBcdListTable=mscExampleWildBcdOperFreeWildBcdListTable, mscExampleStringOperFreeStrArrayRowIndex=mscExampleStringOperFreeStrArrayRowIndex, mscExampleEnumIndicesThreeIndex=mscExampleEnumIndicesThreeIndex, mscExampleMiscellaneousOperFreeGauge64=mscExampleMiscellaneousOperFreeGauge64, mscExampleFourIndicesRowStatusEntry=mscExampleFourIndicesRowStatusEntry, mscExampleSequenceProvFreeSequenceListTable=mscExampleSequenceProvFreeSequenceListTable, mscExampleBcdRowStatus=mscExampleBcdRowStatus, mscExampleNsapRowStatus=mscExampleNsapRowStatus, mscExampleNsapAtmAddrEntry=mscExampleNsapAtmAddrEntry, mscExampleEnumProvFreeEnumArray1Entry=mscExampleEnumProvFreeEnumArray1Entry, mscExampleBcdProvFreeBcdList1Table=mscExampleBcdProvFreeBcdList1Table, mscExampleBcdProvFreeBcdVector1Entry=mscExampleBcdProvFreeBcdVector1Entry, mscExampleEnumRowStatusEntry=mscExampleEnumRowStatusEntry, mscExampleIpAddressProvFreeIpAddressArray1Entry=mscExampleIpAddressProvFreeIpAddressArray1Entry, mscExampleMiscellaneousProvFreeLongReplicatedValue=mscExampleMiscellaneousProvFreeLongReplicatedValue, mscExampleSignedOperFreeSignedVectorIndex=mscExampleSignedOperFreeSignedVectorIndex, mscExampleFixedPtOperFreeFixedPtListValue=mscExampleFixedPtOperFreeFixedPtListValue, mscExampleWildBcdProvFreeWildBcdReplicatedValue=mscExampleWildBcdProvFreeWildBcdReplicatedValue, mscExampleHexProvFreeHexListEntry=mscExampleHexProvFreeHexListEntry, mscFriOperationalFreeSimpleAscii=mscFriOperationalFreeSimpleAscii, mscExampleDecimalOfIntVectorIndex=mscExampleDecimalOfIntVectorIndex, mscExampleFixedPtOperStructFixedPtVectorValue=mscExampleFixedPtOperStructFixedPtVectorValue, mscExampleStringProvisionalTable=mscExampleStringProvisionalTable, mscExampleDecimalOsIntVectorTable=mscExampleDecimalOsIntVectorTable, mscExampleObjectIdOperFreeObjIdReplicatedTable=mscExampleObjectIdOperFreeObjIdReplicatedTable, mscExampleHexOfHexArrayTable=mscExampleHexOfHexArrayTable, mscExampleExtendedProvStructExtendedArrayValue=mscExampleExtendedProvStructExtendedArrayValue, mscExampleWildBcdProvFreeWildBcdVectorEntry=mscExampleWildBcdProvFreeWildBcdVectorEntry, mscExampleWildBcdOperFreeWildBcdReplicatedValue=mscExampleWildBcdOperFreeWildBcdReplicatedValue, mscExampleHexProvFreeHexArray2Entry=mscExampleHexProvFreeHexArray2Entry, mscFriProvisionalEntry=mscFriProvisionalEntry, mscExampleDecimalProvisionalTable=mscExampleDecimalProvisionalTable, mscExampleIpAddressProvFreeIpAddressListValue=mscExampleIpAddressProvFreeIpAddressListValue, mscExampleObjectIdOperFreeObjIdListValue=mscExampleObjectIdOperFreeObjIdListValue, mscFriAdminState=mscFriAdminState, mscExampleSequenceOperFreeSequenceListEntry=mscExampleSequenceOperFreeSequenceListEntry, mscExampleBcdOperFreeBcdListRowStatus=mscExampleBcdOperFreeBcdListRowStatus, mscExampleEnumStorageType=mscExampleEnumStorageType, mscExampleDashedOfDashedReplicatedEntry=mscExampleDashedOfDashedReplicatedEntry, mscExampleFixedPtProvFixedPtSubcomponent=mscExampleFixedPtProvFixedPtSubcomponent, mscExampleSignedProvFreeSignedListValue=mscExampleSignedProvFreeSignedListValue, mscExampleAsciiIndicesOneIndex=mscExampleAsciiIndicesOneIndex, mscExampleDecimalOsIntArrayEntry=mscExampleDecimalOsIntArrayEntry, mscExampleMiscellaneousStorageType=mscExampleMiscellaneousStorageType, mscExampleDecimalIndicesComponentName=mscExampleDecimalIndicesComponentName, mscExampleStringRowStatus=mscExampleStringRowStatus, mscExampleStringProvFreeStrVector1Entry=mscExampleStringProvFreeStrVector1Entry, mscExampleWildBcdRowStatus=mscExampleWildBcdRowStatus, mscExampleWildBcdProvFreeWildBcdListRowStatus=mscExampleWildBcdProvFreeWildBcdListRowStatus, mscExampleSignedProvFreeSignedListEntry=mscExampleSignedProvFreeSignedListEntry, mscExampleSignedOperFreeSignedReplicatedRowStatus=mscExampleSignedOperFreeSignedReplicatedRowStatus, mscExampleDecimalIndicesProvAttribute=mscExampleDecimalIndicesProvAttribute, mscExampleDashedProvStructDashedVectorEntry=mscExampleDashedProvStructDashedVectorEntry, mscExampleDecimalPfIntArray1Entry=mscExampleDecimalPfIntArray1Entry, mscExampleSequenceProvFreeSequenceReplicatedTable=mscExampleSequenceProvFreeSequenceReplicatedTable, mscExampleEnumProvFreeEnumArrayTable=mscExampleEnumProvFreeEnumArrayTable, mscExampleMiscellaneousProvFreeTime=mscExampleMiscellaneousProvFreeTime, mscFriPfListSignedEntry=mscFriPfListSignedEntry, mscExampleOperFixedPtSubcomponentsCreatedValue=mscExampleOperFixedPtSubcomponentsCreatedValue, mscExampleHexOperationalTable=mscExampleHexOperationalTable, mscExampleBcdProvFreeBcdVectorIndex=mscExampleBcdProvFreeBcdVectorIndex, mscExampleIpAddressOperStructIpAddress=mscExampleIpAddressOperStructIpAddress, mscExampleIpAddressOperStructIpAddressArrayEntry=mscExampleIpAddressOperStructIpAddressArrayEntry, mscExampleSequenceProvFreeSequence=mscExampleSequenceProvFreeSequence, mscExampleSignedProvSignedSub=mscExampleSignedProvSignedSub, mscExampleSignedProvFreeSignedArrayRowIndex=mscExampleSignedProvFreeSignedArrayRowIndex, mscFriProvisionalStructSimpleUnsigned=mscFriProvisionalStructSimpleUnsigned, mscExampleMiscellaneousProvFreeTimeReplicatedIndex=mscExampleMiscellaneousProvFreeTimeReplicatedIndex, mscExampleMiscellaneousProvFreeLongListEntry=mscExampleMiscellaneousProvFreeLongListEntry, mscExampleOperDecimalSubCreatedRowStatus=mscExampleOperDecimalSubCreatedRowStatus, mscExampleWildBcdProvisionalEntry=mscExampleWildBcdProvisionalEntry, mscExampleHexOperationalEntry=mscExampleHexOperationalEntry, mscExampleFixedPtProvFreeFixedPtReplicatedIndex=mscExampleFixedPtProvFreeFixedPtReplicatedIndex, mscExampleDecimalIndicesOneIndex=mscExampleDecimalIndicesOneIndex, mscFriDynOpInitialProvAttribute=mscFriDynOpInitialProvAttribute, mscExampleStringOperFreeStrArrayEntry=mscExampleStringOperFreeStrArrayEntry, mscExampleStringOperFreeStrVectorValue=mscExampleStringOperFreeStrVectorValue, mscExampleMiscellaneousOperFreeLongListRowStatus=mscExampleMiscellaneousOperFreeLongListRowStatus, mscExampleDecimalOsIntArrayValue=mscExampleDecimalOsIntArrayValue, mscExampleWildBcdOperStructWildBcdArrayEntry=mscExampleWildBcdOperStructWildBcdArrayEntry, mscExampleObjectIdIndex=mscExampleObjectIdIndex, mscExampleSequenceProvFreeSequenceReplicatedIndex=mscExampleSequenceProvFreeSequenceReplicatedIndex, mscFriDynOpInitial=mscFriDynOpInitial, mscFriDynOpOptionalIndex=mscFriDynOpOptionalIndex, mscExampleExtendedProvStructExtendedVectorIndex=mscExampleExtendedProvStructExtendedVectorIndex, mscExampleHexProvFreeHexVector1Index=mscExampleHexProvFreeHexVector1Index, mscExampleFixedPtOperStructFixedPtArrayColumnIndex=mscExampleFixedPtOperStructFixedPtArrayColumnIndex, mscExampleHexProvFreeHexList1Table=mscExampleHexProvFreeHexList1Table, mscExampleBcdProvFreeBcdArrayValue=mscExampleBcdProvFreeBcdArrayValue, mscExampleSequenceOperFreeSequenceReplicatedEntry=mscExampleSequenceOperFreeSequenceReplicatedEntry, mscExampleHexProvFreeHexList1Value=mscExampleHexProvFreeHexList1Value, mscExampleExtendedProvFreeExtendedReplicatedIndex=mscExampleExtendedProvFreeExtendedReplicatedIndex, mscExampleIpAddressProvStructIpAddressArrayTable=mscExampleIpAddressProvStructIpAddressArrayTable, mscExampleOperationalTable=mscExampleOperationalTable, mscExampleDashedOfDashedVectorTable=mscExampleDashedOfDashedVectorTable, mscExampleHexIndices=mscExampleHexIndices, mscExampleRowStatus=mscExampleRowStatus, mscFriDynOpOperationalTable=mscFriDynOpOperationalTable, mscExampleSignedOperFreeSignedListTable=mscExampleSignedOperFreeSignedListTable, mscFriUsageState=mscFriUsageState, mscExampleMiscellaneousProvFreeTimeList2RowStatus=mscExampleMiscellaneousProvFreeTimeList2RowStatus, mscFriRowStatus=mscFriRowStatus, mscExampleProvEnumSubCreatedEntry=mscExampleProvEnumSubCreatedEntry, mscExampleMiscellaneousRowStatusEntry=mscExampleMiscellaneousRowStatusEntry)
mibBuilder.exportSymbols("Nortel-MsCarrier-MscPassport-CasTestMIB", mscExampleEnumOperationalEntry=mscExampleEnumOperationalEntry, mscExampleFixedPtOperStructFixedPtArrayTable=mscExampleFixedPtOperStructFixedPtArrayTable, mscExampleAsciiIndicesRowStatusEntry=mscExampleAsciiIndicesRowStatusEntry, mscFriEscapeCopyAttribute=mscFriEscapeCopyAttribute, mscExampleDashedProvFreeDashedArrayTable=mscExampleDashedProvFreeDashedArrayTable, mscExampleSequenceProvFreeSequenceListEntry=mscExampleSequenceProvFreeSequenceListEntry, mscExampleStringOperStructStrVectorIndex=mscExampleStringOperStructStrVectorIndex, mscExampleFixedPtProvFreeFixedPtArrayValue=mscExampleFixedPtProvFreeFixedPtArrayValue, mscExampleBcdProvFreeBcdVectorTable=mscExampleBcdProvFreeBcdVectorTable, mscFriProvisionalFreeSimpleFixed=mscFriProvisionalFreeSimpleFixed, mscExampleBcdOperFreeBcdArrayColumnIndex=mscExampleBcdOperFreeBcdArrayColumnIndex, mscFriStorageType=mscFriStorageType, mscExampleHexProvFreeHexListTable=mscExampleHexProvFreeHexListTable, mscExampleSignedProvStructSignedArrayColumnIndex=mscExampleSignedProvStructSignedArrayColumnIndex, mscExampleWildBcdProvFreeWildBcdListEntry=mscExampleWildBcdProvFreeWildBcdListEntry, mscExampleIpAddressOperFreeIpAddressListTable=mscExampleIpAddressOperFreeIpAddressListTable, mscExampleBcdOperFreeBcdReplicatedValue=mscExampleBcdOperFreeBcdReplicatedValue, mscExampleDecimalOsIntArrayColumnIndex=mscExampleDecimalOsIntArrayColumnIndex, mscExampleHexOsHexArrayRowIndex=mscExampleHexOsHexArrayRowIndex, mscFriProvisionalStructSimpleBcd=mscFriProvisionalStructSimpleBcd, mscExampleThreeIndicesTwoIndex=mscExampleThreeIndicesTwoIndex, mscExampleIpAddressProvFreeIpAddressVectorValue=mscExampleIpAddressProvFreeIpAddressVectorValue, mscExampleHexIndicesStorageType=mscExampleHexIndicesStorageType, mscExampleSequenceProvFreeSequenceListRowStatus=mscExampleSequenceProvFreeSequenceListRowStatus, mscExampleExtendedProvFreeExtendedArrayValue=mscExampleExtendedProvFreeExtendedArrayValue, mscExampleHexStrIndicesTwoIndex=mscExampleHexStrIndicesTwoIndex, mscExampleIpAddressRowStatusEntry=mscExampleIpAddressRowStatusEntry, mscExampleSignedProvFreeSignedArray1RowIndex=mscExampleSignedProvFreeSignedArray1RowIndex, mscFriDynOpOperationalEntry=mscFriDynOpOperationalEntry, mscExampleBcdProvFreeBcdArrayEntry=mscExampleBcdProvFreeBcdArrayEntry, mscExampleSequenceIndicesOneIndex=mscExampleSequenceIndicesOneIndex, mscExampleObjIdIndicesStorageType=mscExampleObjIdIndicesStorageType, mscExampleTwoIndicesRowStatus=mscExampleTwoIndicesRowStatus, mscExampleFixedPtOperationalEntry=mscExampleFixedPtOperationalEntry, mscExampleStringOperFreeStrArrayTable=mscExampleStringOperFreeStrArrayTable, mscExampleDecimalOperFreeTimeInterval=mscExampleDecimalOperFreeTimeInterval, mscExampleBcdProvStructBcdArrayEntry=mscExampleBcdProvStructBcdArrayEntry, mscExampleHexProvFreeHexVectorValue=mscExampleHexProvFreeHexVectorValue, mscExampleIpAddressOperFreeIpAddressArrayEntry=mscExampleIpAddressOperFreeIpAddressArrayEntry, mscExampleWildBcdProvFreeWildBcdArrayValue=mscExampleWildBcdProvFreeWildBcdArrayValue, mscExampleMiscellaneousProvFreeTimeList1Entry=mscExampleMiscellaneousProvFreeTimeList1Entry, mscExampleHexIndicesProvisionedEntry=mscExampleHexIndicesProvisionedEntry, mscExampleDashedProvFreeDashedVectorEntry=mscExampleDashedProvFreeDashedVectorEntry, mscExampleHexIndex=mscExampleHexIndex, mscExampleBcdProvFreeBcdArray1RowIndex=mscExampleBcdProvFreeBcdArray1RowIndex, mscExampleStringOperStructStrVectorEntry=mscExampleStringOperStructStrVectorEntry, mscExampleSignedOperFreeSignedReplicatedEntry=mscExampleSignedOperFreeSignedReplicatedEntry, mscExampleFixedPtProvFreeFixedPtListEntry=mscExampleFixedPtProvFreeFixedPtListEntry, mscExampleDashedIndices=mscExampleDashedIndices, mscExampleIpAddressProvFreeIpAddressArrayRowIndex=mscExampleIpAddressProvFreeIpAddressArrayRowIndex, mscExampleStringProvStructStrArrayColumnIndex=mscExampleStringProvStructStrArrayColumnIndex, mscExampleProvisionalEntry=mscExampleProvisionalEntry, mscExampleFixedPtOperationalTable=mscExampleFixedPtOperationalTable, mscExampleDashedProvStructDashedArrayRowIndex=mscExampleDashedProvStructDashedArrayRowIndex, mscExampleExtendedIndex=mscExampleExtendedIndex, mscExampleHexOfHexVectorIndex=mscExampleHexOfHexVectorIndex, mscExampleEnumOperStructEnumVectorValue=mscExampleEnumOperStructEnumVectorValue, mscExample=mscExample, casTestCapabilities=casTestCapabilities, mscExampleObjectIdOperFreeObjIdReplicatedValue=mscExampleObjectIdOperFreeObjIdReplicatedValue, mscExampleSignedProvStructSignedArrayTable=mscExampleSignedProvStructSignedArrayTable, mscExampleMiscellaneousProvFreeTimeTimeOnly=mscExampleMiscellaneousProvFreeTimeTimeOnly, mscExampleBcdProvFreeBcdListRowStatus=mscExampleBcdProvFreeBcdListRowStatus, mscExampleEnumProvFreeEnum=mscExampleEnumProvFreeEnum, mscExampleStringProvFreeStrListTable=mscExampleStringProvFreeStrListTable, mscExampleMiscellaneousOperFreeLongListEntry=mscExampleMiscellaneousOperFreeLongListEntry, mscExampleSequenceOperFreeSequenceListValue=mscExampleSequenceOperFreeSequenceListValue, mscExampleHexProvStructHexArrayRowIndex=mscExampleHexProvStructHexArrayRowIndex, mscExampleStringOperStructStrArrayColumnIndex=mscExampleStringOperStructStrArrayColumnIndex, mscExampleObjIdIndicesTwoIndex=mscExampleObjIdIndicesTwoIndex, mscExampleStringProvFreeStrArrayEntry=mscExampleStringProvFreeStrArrayEntry, mscExampleOperSignedSubCreatedValue=mscExampleOperSignedSubCreatedValue, mscExampleDecimalPsIntVectorEntry=mscExampleDecimalPsIntVectorEntry, mscExampleEnumProvFreeEnumVectorEntry=mscExampleEnumProvFreeEnumVectorEntry, mscExampleExtendedOperFreeExtendedArrayColumnIndex=mscExampleExtendedOperFreeExtendedArrayColumnIndex, mscExampleIpAddressOperFreeIpAddressReplicatedIndex=mscExampleIpAddressOperFreeIpAddressReplicatedIndex, mscExampleThreeIndicesRowStatusEntry=mscExampleThreeIndicesRowStatusEntry, mscExampleHexStrIndicesProvisionedEntry=mscExampleHexStrIndicesProvisionedEntry, mscExampleIpAddress=mscExampleIpAddress, mscExampleFourIndicesTwoIndex=mscExampleFourIndicesTwoIndex, mscExampleIpAddressProvFreeIpAddressListTable=mscExampleIpAddressProvFreeIpAddressListTable, mscExampleIpAddressIndex=mscExampleIpAddressIndex, mscExampleObjectIdOperFreeObjId=mscExampleObjectIdOperFreeObjId, mscExampleIpAddressProvFreeIpAddressReplicatedRowStatus=mscExampleIpAddressProvFreeIpAddressReplicatedRowStatus, mscExampleObjectIdProvFreeObjIdListEntry=mscExampleObjectIdProvFreeObjIdListEntry, mscFriRegisteredRowStatusEntry=mscFriRegisteredRowStatusEntry, mscFriDynOpDynamicAttribute=mscFriDynOpDynamicAttribute, mscExampleEnumProvFreeEnumListValue=mscExampleEnumProvFreeEnumListValue, mscExampleIpAddressOperFreeIpAddressVectorValue=mscExampleIpAddressOperFreeIpAddressVectorValue, mscExampleBcdOperFreeBcd=mscExampleBcdOperFreeBcd, mscExampleSignedProvFreeSignedArrayEntry=mscExampleSignedProvFreeSignedArrayEntry, mscExampleStringOperStructStrVectorValue=mscExampleStringOperStructStrVectorValue, mscExampleSignedOperFreeSignedVectorTable=mscExampleSignedOperFreeSignedVectorTable, mscExampleEnumOperFreeEnumArrayMonthIndex=mscExampleEnumOperFreeEnumArrayMonthIndex, mscExampleStringProvFreeStrList1Table=mscExampleStringProvFreeStrList1Table, mscFriProvisionalFreeSimpleHex=mscFriProvisionalFreeSimpleHex, mscFriOperationalStructSetUnsigned=mscFriOperationalStructSetUnsigned, mscExampleDecimalPfIntListValue=mscExampleDecimalPfIntListValue, mscExampleBcdIndicesRowStatusTable=mscExampleBcdIndicesRowStatusTable, mscExampleWildBcdOperFreeWildBcdArrayColumnIndex=mscExampleWildBcdOperFreeWildBcdArrayColumnIndex, mscExampleEnumProvFreeEnumArrayMonthIndex=mscExampleEnumProvFreeEnumArrayMonthIndex, mscFriPfListSignedValue=mscFriPfListSignedValue, mscExampleStringProvStructStrVectorValue=mscExampleStringProvStructStrVectorValue, mscExampleFixedPtOperFreeFixedPtArrayValue=mscExampleFixedPtOperFreeFixedPtArrayValue, mscExampleMiscellaneousOperFreeLongListTable=mscExampleMiscellaneousOperFreeLongListTable, mscExampleIpAddressOperFreeIpAddressReplicatedRowStatus=mscExampleIpAddressOperFreeIpAddressReplicatedRowStatus, mscExampleIpAddressOperFreeIpAddressReplicatedTable=mscExampleIpAddressOperFreeIpAddressReplicatedTable, mscExampleMiscellaneousProvFreeTimeList3Value=mscExampleMiscellaneousProvFreeTimeList3Value, mscExampleFixedPtProvStructFixedPtVectorIndex=mscExampleFixedPtProvStructFixedPtVectorIndex, mscExampleWildBcdOperStructWildBcdArrayTable=mscExampleWildBcdOperStructWildBcdArrayTable, mscExampleDecimalPsIntVectorTable=mscExampleDecimalPsIntVectorTable, mscExampleStringRowStatusTable=mscExampleStringRowStatusTable, mscExampleMiscellaneousOperFreeTimeDateTimeMinute=mscExampleMiscellaneousOperFreeTimeDateTimeMinute, mscExampleStringOperFreeStrVectorTable=mscExampleStringOperFreeStrVectorTable, mscExampleBcdProvStructBcdVectorEntry=mscExampleBcdProvStructBcdVectorEntry, mscExampleHexProvStructHex=mscExampleHexProvStructHex, mscFriDynamicStorageType=mscFriDynamicStorageType, casTestCapabilitiesCA=casTestCapabilitiesCA, mscExampleHexOfHexVectorEntry=mscExampleHexOfHexVectorEntry, mscExampleDecimalPfIntArray1Table=mscExampleDecimalPfIntArray1Table, mscExampleHexProvFreeHexArrayValue=mscExampleHexProvFreeHexArrayValue, mscExampleDecimalOsIntArrayRowIndex=mscExampleDecimalOsIntArrayRowIndex, mscExampleMiscellaneousProvFreeTimeList3Table=mscExampleMiscellaneousProvFreeTimeList3Table, mscExampleHexStrIndicesComponentName=mscExampleHexStrIndicesComponentName, mscExampleMiscellaneousOperFreeTimeTimeOnly=mscExampleMiscellaneousOperFreeTimeTimeOnly, mscExampleAsciiIndicesProvisionedEntry=mscExampleAsciiIndicesProvisionedEntry, mscExampleEnumIndicesComponentName=mscExampleEnumIndicesComponentName, mscExampleWildBcdStorageType=mscExampleWildBcdStorageType, mscExampleBcdProvFreeBcdList1Entry=mscExampleBcdProvFreeBcdList1Entry, mscFriPfListFixedRowStatus=mscFriPfListFixedRowStatus, mscExampleDecimalOfIntReplicatedIndex=mscExampleDecimalOfIntReplicatedIndex, mscFriOfListEnumerationRowStatus=mscFriOfListEnumerationRowStatus, mscExampleObjectIdStorageType=mscExampleObjectIdStorageType, mscExampleIpAddressOperStructIpAddressVectorIndex=mscExampleIpAddressOperStructIpAddressVectorIndex, mscExampleFixedPtProvisionalEntry=mscExampleFixedPtProvisionalEntry, mscExampleWildBcdProvFreeWildBcdArrayColumnIndex=mscExampleWildBcdProvFreeWildBcdArrayColumnIndex, mscExampleIpAddressProvFreeIpAddressArray1RowIndex=mscExampleIpAddressProvFreeIpAddressArray1RowIndex, mscExampleDecimalPsIntArrayTable=mscExampleDecimalPsIntArrayTable, mscExampleProvFixedPtSubCreatedTable=mscExampleProvFixedPtSubCreatedTable, mscFriOperationalTable=mscFriOperationalTable, mscFriDnaStorageType=mscFriDnaStorageType, mscExampleSequenceProvFreeSequenceListValue=mscExampleSequenceProvFreeSequenceListValue, mscExampleOperFixedPtSubcomponentsCreatedEntry=mscExampleOperFixedPtSubcomponentsCreatedEntry, mscExampleWildBcdProvisionalTable=mscExampleWildBcdProvisionalTable, mscFriEscapeCheckAttribute=mscFriEscapeCheckAttribute, mscExampleBcdIndicesRowStatus=mscExampleBcdIndicesRowStatus, mscFriStandbyStatus=mscFriStandbyStatus, mscExampleHexStrIndicesRowStatusEntry=mscExampleHexStrIndicesRowStatusEntry, mscExampleDecimalOfIntArrayColumnIndex=mscExampleDecimalOfIntArrayColumnIndex, mscExampleAsciiIndicesStorageType=mscExampleAsciiIndicesStorageType, mscExampleIpAddressProvFreeIpAddress1=mscExampleIpAddressProvFreeIpAddress1, mscExampleIpAddressOperStructIpAddressArrayRowIndex=mscExampleIpAddressOperStructIpAddressArrayRowIndex, mscExampleHexIndicesProvAttribute=mscExampleHexIndicesProvAttribute, mscExampleStringOperFreeStrReplicatedRowStatus=mscExampleStringOperFreeStrReplicatedRowStatus, mscExampleEnumOperStructEnumVectorTable=mscExampleEnumOperStructEnumVectorTable, mscFriDynamicIndex=mscFriDynamicIndex, mscExampleSignedOperStructSignedArrayColumnIndex=mscExampleSignedOperStructSignedArrayColumnIndex, mscExampleBcdOperStructBcdArrayRowIndex=mscExampleBcdOperStructBcdArrayRowIndex, mscExampleBcdIndicesProvisionedTable=mscExampleBcdIndicesProvisionedTable, mscExampleDecimalOperFreeInteger=mscExampleDecimalOperFreeInteger, mscExampleEnumProvStructEnumArrayDayIndex=mscExampleEnumProvStructEnumArrayDayIndex, mscExampleOperFixedPtSubcomponentsCreatedTable=mscExampleOperFixedPtSubcomponentsCreatedTable, mscFriOfListEnumerationTable=mscFriOfListEnumerationTable, mscExampleHexProvFreeHexReplicated1RowStatus=mscExampleHexProvFreeHexReplicated1RowStatus, mscFriOperationalFreeSimpleDashed=mscFriOperationalFreeSimpleDashed, mscExampleExtendedProvStructExtendedVectorEntry=mscExampleExtendedProvStructExtendedVectorEntry, mscExampleProvStringSubCreatedValue=mscExampleProvStringSubCreatedValue, mscExampleBcdProvEnumSub=mscExampleBcdProvEnumSub, mscExampleProvMyComponentName=mscExampleProvMyComponentName, mscExampleBcdOperStructBcdArrayEntry=mscExampleBcdOperStructBcdArrayEntry, mscExampleHexProvFreeHexVectorIndex=mscExampleHexProvFreeHexVectorIndex, mscExampleSignedProvStructSignedVectorEntry=mscExampleSignedProvStructSignedVectorEntry, mscExampleBcdProvStructBcdVectorValue=mscExampleBcdProvStructBcdVectorValue, mscExampleMiscellaneousProvEnumSub=mscExampleMiscellaneousProvEnumSub, mscExampleDecimalOfIntArrayValue=mscExampleDecimalOfIntArrayValue, mscExampleSignedProvFreeSignedReplicatedIndex=mscExampleSignedProvFreeSignedReplicatedIndex, mscExampleDashedProvFreeDashedArrayRowIndex=mscExampleDashedProvFreeDashedArrayRowIndex, mscExampleStringProvFreeStrReplicatedEntry=mscExampleStringProvFreeStrReplicatedEntry, mscExampleDashedProvFreeDashed=mscExampleDashedProvFreeDashed, mscExampleHexRowStatus=mscExampleHexRowStatus, mscExampleSequenceIndex=mscExampleSequenceIndex, mscExampleStringProvStructStrArrayEntry=mscExampleStringProvStructStrArrayEntry, mscExampleEnumOperFreeEnumReplicatedTable=mscExampleEnumOperFreeEnumReplicatedTable, mscExampleSignedProvFreeSignedVectorTable=mscExampleSignedProvFreeSignedVectorTable, mscExampleRequiredIndicesRowStatusEntry=mscExampleRequiredIndicesRowStatusEntry, mscExampleExtendedProvFreeExtendedReplicatedRowStatus=mscExampleExtendedProvFreeExtendedReplicatedRowStatus, mscExampleHexStrIndicesThreeIndex=mscExampleHexStrIndicesThreeIndex, mscExampleObjIdIndicesProvAttribute=mscExampleObjIdIndicesProvAttribute, mscExampleIpAddressProvStructIpAddressArrayRowIndex=mscExampleIpAddressProvStructIpAddressArrayRowIndex, mscExampleHexOfHexReplicatedEntry=mscExampleHexOfHexReplicatedEntry, mscExampleProvEnumSubCreatedTable=mscExampleProvEnumSubCreatedTable, mscExampleStringOperFreeStrListRowStatus=mscExampleStringOperFreeStrListRowStatus, mscExampleOneIndexRowStatusEntry=mscExampleOneIndexRowStatusEntry, mscFriPfListFixedTable=mscFriPfListFixedTable, mscExampleDashedOfDashedVectorValue=mscExampleDashedOfDashedVectorValue, mscExampleWildBcdOperFreeWildBcdArrayValue=mscExampleWildBcdOperFreeWildBcdArrayValue, mscExampleDecimalPfIntReplicatedTable=mscExampleDecimalPfIntReplicatedTable, mscExampleExtendedProvFreeExtendedArrayRowIndex=mscExampleExtendedProvFreeExtendedArrayRowIndex, mscExampleFixedPtOperFreeFixedPt=mscExampleFixedPtOperFreeFixedPt, mscExampleSignedOperStructSignedArrayEntry=mscExampleSignedOperStructSignedArrayEntry, mscExampleBcdProvStructBcdVectorIndex=mscExampleBcdProvStructBcdVectorIndex, mscExampleFixedPtProvStructFixedPtArrayTable=mscExampleFixedPtProvStructFixedPtArrayTable, mscExampleMiscellaneousProvStructLong=mscExampleMiscellaneousProvStructLong, mscExampleStringProvFreeStrArrayTable=mscExampleStringProvFreeStrArrayTable, mscFriDnaRowStatus=mscFriDnaRowStatus, mscExampleStringProvFreeStrArray1RowIndex=mscExampleStringProvFreeStrArray1RowIndex, mscExampleIpAddressProvFreeIpAddressArrayValue=mscExampleIpAddressProvFreeIpAddressArrayValue, mscExampleObjIdIndicesRowStatusEntry=mscExampleObjIdIndicesRowStatusEntry, mscExampleHexProvFreeHexList1RowStatus=mscExampleHexProvFreeHexList1RowStatus, mscExampleFixedPtProvFreeFixedPtVectorTable=mscExampleFixedPtProvFreeFixedPtVectorTable, mscExampleFixedPtProvFreeFixedPtReplicatedEntry=mscExampleFixedPtProvFreeFixedPtReplicatedEntry, mscRegisteredDataTable=mscRegisteredDataTable, mscExampleDecimalOperStructIntSet=mscExampleDecimalOperStructIntSet, mscExampleNsapRowStatusEntry=mscExampleNsapRowStatusEntry, mscExampleDashedProvFreeDashedArrayEntry=mscExampleDashedProvFreeDashedArrayEntry, mscExampleEnumOperStructEnumArrayMonthIndex=mscExampleEnumOperStructEnumArrayMonthIndex, mscExampleDecimalPfIntReplicated1RowStatus=mscExampleDecimalPfIntReplicated1RowStatus, mscExampleSignedProvFreeSignedListRowStatus=mscExampleSignedProvFreeSignedListRowStatus, mscExampleEnumProvStructEnumArrayMonthIndex=mscExampleEnumProvStructEnumArrayMonthIndex, mscExampleHexOfHexListTable=mscExampleHexOfHexListTable, mscExampleHexProvStructHexVectorEntry=mscExampleHexProvStructHexVectorEntry, mscExampleEnumIndicesProvisionedEntry=mscExampleEnumIndicesProvisionedEntry, mscExampleSequenceProvisionalEntry=mscExampleSequenceProvisionalEntry, mscExampleDashedOperationalEntry=mscExampleDashedOperationalEntry, mscExampleOneIndexRowStatusTable=mscExampleOneIndexRowStatusTable, mscExampleSequenceOperFreeSequenceListTable=mscExampleSequenceOperFreeSequenceListTable, mscExampleStringProvFreeStrListEntry=mscExampleStringProvFreeStrListEntry, mscExampleIpAddressProvStructIpAddressVectorValue=mscExampleIpAddressProvStructIpAddressVectorValue, mscExampleEnumProvisionalEntry=mscExampleEnumProvisionalEntry, mscExampleIpAddressProvFreeIpAddressList1RowStatus=mscExampleIpAddressProvFreeIpAddressList1RowStatus, mscExampleDecimalIndices=mscExampleDecimalIndices, mscExampleStringOperFreeStrReplicatedTable=mscExampleStringOperFreeStrReplicatedTable, mscExampleDashedOfDashedArrayValue=mscExampleDashedOfDashedArrayValue, mscExampleExtendedOperStructExtendedArrayValue=mscExampleExtendedOperStructExtendedArrayValue, mscExampleEnumOperStructEnumArrayValue=mscExampleEnumOperStructEnumArrayValue, mscExampleBcdIndicesComponentName=mscExampleBcdIndicesComponentName, mscFriPfListUnsignedTable=mscFriPfListUnsignedTable, mscExampleWildBcdOperStructWildBcdVectorEntry=mscExampleWildBcdOperStructWildBcdVectorEntry, mscExampleIpAddressOperFreeIpAddressReplicatedValue=mscExampleIpAddressOperFreeIpAddressReplicatedValue, mscExampleEnumProvStructEnumVectorEntry=mscExampleEnumProvStructEnumVectorEntry, mscExampleBcdOperStructBcdArrayTable=mscExampleBcdOperStructBcdArrayTable, mscExampleRowStatusEntry=mscExampleRowStatusEntry, mscExampleFixedPtOperStructFixedPtArrayValue=mscExampleFixedPtOperStructFixedPtArrayValue, mscExampleMiscellaneousProvisionalEntry=mscExampleMiscellaneousProvisionalEntry, mscExampleEnumIndicesOneIndex=mscExampleEnumIndicesOneIndex, mscExampleSignedOperStructSignedVectorValue=mscExampleSignedOperStructSignedVectorValue, mscExampleFixedPtOperFreeFixedPtListRowStatus=mscExampleFixedPtOperFreeFixedPtListRowStatus, mscExampleDashedProvFreeDashedArrayValue=mscExampleDashedProvFreeDashedArrayValue, mscExampleThreeIndicesOneIndex=mscExampleThreeIndicesOneIndex, mscExampleHexOsHexArrayEntry=mscExampleHexOsHexArrayEntry, mscExampleMiscellaneousIndex=mscExampleMiscellaneousIndex, mscExampleIpAddressProvFreeIpAddressListEntry=mscExampleIpAddressProvFreeIpAddressListEntry, mscExampleOneIndex=mscExampleOneIndex, mscExampleFixedPtProvStructFixedPtArrayEntry=mscExampleFixedPtProvStructFixedPtArrayEntry)
mibBuilder.exportSymbols("Nortel-MsCarrier-MscPassport-CasTestMIB", mscExampleMiscellaneousOperFreeLongListValue=mscExampleMiscellaneousOperFreeLongListValue, mscExampleFixedPtOperFreeFixedPtVectorValue=mscExampleFixedPtOperFreeFixedPtVectorValue, mscExampleDashedRowStatusEntry=mscExampleDashedRowStatusEntry, mscExampleStringProvFreeHexOnly=mscExampleStringProvFreeHexOnly, mscExampleHexOfHexVectorValue=mscExampleHexOfHexVectorValue, mscFriRegisteredRowStatus=mscFriRegisteredRowStatus, mscExampleHexProvFreeHexReplicated1Table=mscExampleHexProvFreeHexReplicated1Table, mscFriOfListComponentTable=mscFriOfListComponentTable, mscExampleFixedPtStorageType=mscExampleFixedPtStorageType, mscExampleDashedComponentName=mscExampleDashedComponentName, mscExampleStringOperationalTable=mscExampleStringOperationalTable, mscExampleHexStrIndicesProvAttribute=mscExampleHexStrIndicesProvAttribute, mscExampleHexIndicesProvisionedTable=mscExampleHexIndicesProvisionedTable, mscExampleEnumIndex=mscExampleEnumIndex, mscExampleDecimalPfIntReplicatedRowStatus=mscExampleDecimalPfIntReplicatedRowStatus, mscExampleBcdOperFreeBcdListTable=mscExampleBcdOperFreeBcdListTable, mscExampleMiscellaneousRowStatus=mscExampleMiscellaneousRowStatus, mscExampleHexOfHexReplicatedValue=mscExampleHexOfHexReplicatedValue, mscExampleEnumOperStructEnumArrayEntry=mscExampleEnumOperStructEnumArrayEntry, mscExampleHexOfHexReplicatedIndex=mscExampleHexOfHexReplicatedIndex, mscExampleHexProvFreeHexArrayTable=mscExampleHexProvFreeHexArrayTable, mscExampleFixedPtProvisionalTable=mscExampleFixedPtProvisionalTable, mscFriRegisteredAttribute=mscFriRegisteredAttribute, mscFriDynOpOptionalRowStatusTable=mscFriDynOpOptionalRowStatusTable, mscFriEventRowStatus=mscFriEventRowStatus, mscExampleFixedPtProvFreeFixedPtArrayColumnIndex=mscExampleFixedPtProvFreeFixedPtArrayColumnIndex, mscExampleBcdProvStructBcdArrayRowIndex=mscExampleBcdProvStructBcdArrayRowIndex, mscExampleDashedOsDashedVectorEntry=mscExampleDashedOsDashedVectorEntry, mscExampleDashedOsDashedVectorIndex=mscExampleDashedOsDashedVectorIndex, mscExampleDecimalOfIntReplicatedValue=mscExampleDecimalOfIntReplicatedValue, mscFriDynOpDynamicRowStatus=mscFriDynOpDynamicRowStatus, mscExampleDecimalIndicesRowStatusTable=mscExampleDecimalIndicesRowStatusTable, mscExampleThreeIndicesRowStatusTable=mscExampleThreeIndicesRowStatusTable, mscExampleDashed=mscExampleDashed, mscExampleSignedProvFreeSignedArrayValue=mscExampleSignedProvFreeSignedArrayValue, mscFriDynOpDynOpJrOperationalTable=mscFriDynOpDynOpJrOperationalTable, mscExampleSignedProvFreeSignedArrayTable=mscExampleSignedProvFreeSignedArrayTable, mscExampleMiscellaneous=mscExampleMiscellaneous, mscExampleExtendedProvStructExtendedVectorTable=mscExampleExtendedProvStructExtendedVectorTable, mscExampleObjectIdProvFreeObjIdListRowStatus=mscExampleObjectIdProvFreeObjIdListRowStatus, mscExampleSequenceIndicesProvisionedEntry=mscExampleSequenceIndicesProvisionedEntry, mscExampleRequiredIndicesStorageType=mscExampleRequiredIndicesStorageType, mscExampleExtendedOperFreeExtendedListRowStatus=mscExampleExtendedOperFreeExtendedListRowStatus, mscExampleIpAddressProvFreeIpAddressVector1Index=mscExampleIpAddressProvFreeIpAddressVector1Index, mscExampleIpAddressProvFreeIpAddress=mscExampleIpAddressProvFreeIpAddress, mscExampleIpAddressProvFreeIpAddressArray1Value=mscExampleIpAddressProvFreeIpAddressArray1Value, mscExampleStringProvFreeStrVectorIndex=mscExampleStringProvFreeStrVectorIndex, mscExampleOperSignedSubCreatedRowStatus=mscExampleOperSignedSubCreatedRowStatus, mscFriDnaOperationalEntry=mscFriDnaOperationalEntry, mscExampleIpAddrIndicesRowStatusTable=mscExampleIpAddrIndicesRowStatusTable, mscFriRegisteredStorageType=mscFriRegisteredStorageType, mscExampleEnumProvStructEnum=mscExampleEnumProvStructEnum, mscFriDynOpDynOpJrRowStatusTable=mscFriDynOpDynOpJrRowStatusTable, mscExampleDecimalRowStatusTable=mscExampleDecimalRowStatusTable, mscExampleIpAddressOperStructIpAddressArrayColumnIndex=mscExampleIpAddressOperStructIpAddressArrayColumnIndex, mscExampleSignedOperFreeSignedArrayTable=mscExampleSignedOperFreeSignedArrayTable, mscExampleIpAddressOperFreeIpAddress=mscExampleIpAddressOperFreeIpAddress, mscExampleAsciiIndicesThreeIndex=mscExampleAsciiIndicesThreeIndex, mscExampleExtendedProvStructExtendedArrayColumnIndex=mscExampleExtendedProvStructExtendedArrayColumnIndex, mscExampleEnumOperFreeEnumReplicatedRowStatus=mscExampleEnumOperFreeEnumReplicatedRowStatus, mscFriRowStatusEntry=mscFriRowStatusEntry, mscExampleStringProvStructStrArrayValue=mscExampleStringProvStructStrArrayValue, mscExampleSignedOperStructSignedVectorEntry=mscExampleSignedOperStructSignedVectorEntry, mscExampleBcdOperStructBcdArrayColumnIndex=mscExampleBcdOperStructBcdArrayColumnIndex, mscExampleDashedProvFreeDashedReplicatedIndex=mscExampleDashedProvFreeDashedReplicatedIndex, mscFriOfListComponentEntry=mscFriOfListComponentEntry, mscFriProvisionalStructSetEnumeration=mscFriProvisionalStructSetEnumeration, mscExampleDashedIndicesOneIndex=mscExampleDashedIndicesOneIndex, mscFriDnaIndex=mscFriDnaIndex, mscExampleExtendedProvisionalTable=mscExampleExtendedProvisionalTable, mscExampleMiscellaneousProvFreeTimeListValue=mscExampleMiscellaneousProvFreeTimeListValue, mscExampleDashedOfDashedVectorEntry=mscExampleDashedOfDashedVectorEntry, mscExampleOperSignedSubCreatedEntry=mscExampleOperSignedSubCreatedEntry, mscExampleEnum=mscExampleEnum, mscExampleMiscellaneousOperFreeTimeListValue=mscExampleMiscellaneousOperFreeTimeListValue, mscExampleIpAddressOperFreeIpAddressListRowStatus=mscExampleIpAddressOperFreeIpAddressListRowStatus, mscExampleThreeIndicesProvisionedEntry=mscExampleThreeIndicesProvisionedEntry, mscExampleStringProvFreeStrVectorValue=mscExampleStringProvFreeStrVectorValue, mscExampleDashedOsDashedArrayEntry=mscExampleDashedOsDashedArrayEntry, mscExampleIpAddressOperFreeIpAddressListEntry=mscExampleIpAddressOperFreeIpAddressListEntry, mscExampleFixedPtProvFreeFixedPtVectorValue=mscExampleFixedPtProvFreeFixedPtVectorValue, mscExampleHexIndicesTwoIndex=mscExampleHexIndicesTwoIndex, mscFriDynamicOperationalEntry=mscFriDynamicOperationalEntry, mscExampleBcdProvStructBcdArrayValue=mscExampleBcdProvStructBcdArrayValue, mscExampleOperStringSubCreatedRowStatus=mscExampleOperStringSubCreatedRowStatus, mscExampleHexProvFreeHexList1Entry=mscExampleHexProvFreeHexList1Entry, mscExampleStringProvFreeStrVectorTable=mscExampleStringProvFreeStrVectorTable, mscFriRegisteredComponentName=mscFriRegisteredComponentName, mscExampleObjIdIndicesThreeIndex=mscExampleObjIdIndicesThreeIndex, mscExampleBcdProvFreeBcdArrayTable=mscExampleBcdProvFreeBcdArrayTable, mscExampleHexOsHexVectorEntry=mscExampleHexOsHexVectorEntry, mscFriDynOpOptionalRowStatusEntry=mscFriDynOpOptionalRowStatusEntry, mscFriDynamicAttribute=mscFriDynamicAttribute, mscExampleIpAddressProvFreeIpAddressArray1ColumnIndex=mscExampleIpAddressProvFreeIpAddressArray1ColumnIndex, mscExampleWildBcdRowStatusTable=mscExampleWildBcdRowStatusTable, mscExampleOneIndexProvisionedTable=mscExampleOneIndexProvisionedTable, mscExampleDashedIndicesTwoIndex=mscExampleDashedIndicesTwoIndex, mscExampleDecimalOfIntArrayRowIndex=mscExampleDecimalOfIntArrayRowIndex, mscExampleEnumProvFreeEnumList1RowStatus=mscExampleEnumProvFreeEnumList1RowStatus, mscExampleMiscellaneousProvFreeTimeReplicatedTable=mscExampleMiscellaneousProvFreeTimeReplicatedTable, mscExampleWildBcdProvStructWildBcdArrayColumnIndex=mscExampleWildBcdProvStructWildBcdArrayColumnIndex, mscExampleStorageType=mscExampleStorageType, mscExampleStringOperFreeAsciiOnly=mscExampleStringOperFreeAsciiOnly, mscExampleBcdProvFreeBcdArray1Value=mscExampleBcdProvFreeBcdArray1Value, mscExampleEnumRowStatusTable=mscExampleEnumRowStatusTable, mscExampleFixedPtProvStructFixedPtArrayValue=mscExampleFixedPtProvStructFixedPtArrayValue, mscExampleIpAddressProvFreeIpAddressList1Entry=mscExampleIpAddressProvFreeIpAddressList1Entry, mscExampleMiscellaneousComponentName=mscExampleMiscellaneousComponentName, mscExampleFixedPtOperFreeFixedPtVectorIndex=mscExampleFixedPtOperFreeFixedPtVectorIndex, mscExampleIpAddressProvFreeIpAddressList1Table=mscExampleIpAddressProvFreeIpAddressList1Table, mscFriDynOpDynamicComponentName=mscFriDynOpDynamicComponentName, mscExampleBcdOperFreeBcdArrayRowIndex=mscExampleBcdOperFreeBcdArrayRowIndex, mscExampleHexProvFreeHex1=mscExampleHexProvFreeHex1, mscExampleFixedPtRowStatusEntry=mscExampleFixedPtRowStatusEntry, mscExampleSignedProvFreeSignedVectorEntry=mscExampleSignedProvFreeSignedVectorEntry, mscFriStateEntry=mscFriStateEntry, mscExampleHexProvFreeHexVectorEntry=mscExampleHexProvFreeHexVectorEntry, mscExampleSequenceRowStatusTable=mscExampleSequenceRowStatusTable, mscExampleHexOperStructHex=mscExampleHexOperStructHex, mscExampleNsapNativeTable=mscExampleNsapNativeTable, mscExampleEnumProvFreeEnumList1Table=mscExampleEnumProvFreeEnumList1Table, mscFriProvisionalFreeSimpleSigned=mscFriProvisionalFreeSimpleSigned, mscExampleSignedOperationalTable=mscExampleSignedOperationalTable, mscExampleRequiredIndicesProvisionedTable=mscExampleRequiredIndicesProvisionedTable, mscExampleIpAddressProvisionalTable=mscExampleIpAddressProvisionalTable, mscExampleSignedOperFreeSignedArrayValue=mscExampleSignedOperFreeSignedArrayValue, mscExampleFixedPtOperStructFixedPtVectorIndex=mscExampleFixedPtOperStructFixedPtVectorIndex, mscExampleSignedOperFreeSignedArrayEntry=mscExampleSignedOperFreeSignedArrayEntry, mscRegisteredRowStatusTable=mscRegisteredRowStatusTable, mscExampleExtendedRowStatusEntry=mscExampleExtendedRowStatusEntry, mscExampleWildBcdOperStructWildBcdArrayRowIndex=mscExampleWildBcdOperStructWildBcdArrayRowIndex, mscExampleSequenceOperFreeSequenceListRowStatus=mscExampleSequenceOperFreeSequenceListRowStatus, mscExampleEnumOperFreeEnumVectorIndex=mscExampleEnumOperFreeEnumVectorIndex, mscExampleSignedProvFreeSignedReplicatedTable=mscExampleSignedProvFreeSignedReplicatedTable, mscExampleAsciiIndicesProvisionedTable=mscExampleAsciiIndicesProvisionedTable, mscFriDynOpOptionalProvisionedTable=mscFriDynOpOptionalProvisionedTable, mscExampleWildBcdOperFreeWildBcdListRowStatus=mscExampleWildBcdOperFreeWildBcdListRowStatus, mscExampleEnumProvStructEnumSet=mscExampleEnumProvStructEnumSet, mscExampleObjectIdProvFreeObjIdReplicatedEntry=mscExampleObjectIdProvFreeObjIdReplicatedEntry, mscExampleDecimalPfIntList1RowStatus=mscExampleDecimalPfIntList1RowStatus, mscExampleIpAddressOperFreeIpAddressArrayTable=mscExampleIpAddressOperFreeIpAddressArrayTable, mscExampleMiscellaneousProvisionalTable=mscExampleMiscellaneousProvisionalTable, mscExampleDecimalPfIntVectorTable=mscExampleDecimalPfIntVectorTable, mscExampleStringProvStructStrArrayRowIndex=mscExampleStringProvStructStrArrayRowIndex, mscExampleHexProvFreeHexVector2Value=mscExampleHexProvFreeHexVector2Value, mscExampleStringOperFreeStrVectorIndex=mscExampleStringOperFreeStrVectorIndex, mscExampleDecimalProvFreeInteger1=mscExampleDecimalProvFreeInteger1, mscExampleWildBcdIndex=mscExampleWildBcdIndex, mscExampleHexOsHexVectorIndex=mscExampleHexOsHexVectorIndex, mscExampleOneIndexProvAttribute=mscExampleOneIndexProvAttribute, mscExampleSignedOperStructSignedVectorIndex=mscExampleSignedOperStructSignedVectorIndex, mscFriEscapeCopyComponent=mscFriEscapeCopyComponent, mscFriEscapeDefaultsGroup=mscFriEscapeDefaultsGroup, mscExampleBcdProvFreeBcdArrayColumnIndex=mscExampleBcdProvFreeBcdArrayColumnIndex, mscExampleDecimalOfIntVectorTable=mscExampleDecimalOfIntVectorTable, mscExampleMiscellaneousProvFreeTimeDateOnly1=mscExampleMiscellaneousProvFreeTimeDateOnly1, mscFriStateTable=mscFriStateTable, mscExampleWildBcdProvFreeWildBcdReplicatedEntry=mscExampleWildBcdProvFreeWildBcdReplicatedEntry, mscExampleMiscellaneousOperFreeLongReplicatedRowStatus=mscExampleMiscellaneousOperFreeLongReplicatedRowStatus, mscExampleWildBcdProvStructWildBcdVectorEntry=mscExampleWildBcdProvStructWildBcdVectorEntry, mscExampleWildBcdOperFreeWildBcdReplicatedTable=mscExampleWildBcdOperFreeWildBcdReplicatedTable, mscExampleEnumProvStructEnumArrayEntry=mscExampleEnumProvStructEnumArrayEntry, mscExampleFixedPt=mscExampleFixedPt, mscExampleEnumProvStructEnumArrayValue=mscExampleEnumProvStructEnumArrayValue, mscExampleExtendedOperStructExtendedVectorIndex=mscExampleExtendedOperStructExtendedVectorIndex, mscFriRegisteredDataTable=mscFriRegisteredDataTable, mscExampleDecimalPfIntListRowStatus=mscExampleDecimalPfIntListRowStatus, mscExampleDecimalOperFreeCounter32=mscExampleDecimalOperFreeCounter32, mscExampleDashedIndicesThreeIndex=mscExampleDashedIndicesThreeIndex, mscFriDynOpInitialProvisionedTable=mscFriDynOpInitialProvisionedTable, mscExampleWildBcdOperFreeWildBcdVectorEntry=mscExampleWildBcdOperFreeWildBcdVectorEntry, mscExampleTwoIndicesComponentName=mscExampleTwoIndicesComponentName, mscFriEventComponentName=mscFriEventComponentName, mscExampleDashedOsDashedVectorTable=mscExampleDashedOsDashedVectorTable, mscRegisteredRowStatus=mscRegisteredRowStatus, mscExampleOneIndexStorageType=mscExampleOneIndexStorageType, mscExampleDashedIndicesComponentName=mscExampleDashedIndicesComponentName, mscFriOperationalFreeSimpleHex=mscFriOperationalFreeSimpleHex, mscExampleDashedOsDashedArrayTable=mscExampleDashedOsDashedArrayTable, mscExampleHexProvStructHexVectorIndex=mscExampleHexProvStructHexVectorIndex, mscExampleMiscellaneousProvFreeTimeDateOnly=mscExampleMiscellaneousProvFreeTimeDateOnly, mscExampleBcdOperFreeBcdVectorTable=mscExampleBcdOperFreeBcdVectorTable, mscExampleDecimalPfIntArray1ColumnIndex=mscExampleDecimalPfIntArray1ColumnIndex, mscExampleHexOperFreeHex=mscExampleHexOperFreeHex, mscExampleTwoIndicesProvAttribute=mscExampleTwoIndicesProvAttribute, mscExampleHexProvFreeHexArray2ColumnIndex=mscExampleHexProvFreeHexArray2ColumnIndex, mscExampleExtendedOperStructExtendedVectorValue=mscExampleExtendedOperStructExtendedVectorValue, mscExampleSequenceOperStructSequence=mscExampleSequenceOperStructSequence, mscExampleIpAddrIndicesThreeIndex=mscExampleIpAddrIndicesThreeIndex, mscExampleObjIdIndicesProvisionedEntry=mscExampleObjIdIndicesProvisionedEntry, mscExampleIpAddressProvEnumSub=mscExampleIpAddressProvEnumSub, mscFriDynOpOptionalProvisionedEntry=mscFriDynOpOptionalProvisionedEntry, mscExampleIpAddressProvFreeIpAddressArray1Table=mscExampleIpAddressProvFreeIpAddressArray1Table, mscExampleEnumProvFreeEnumListTable=mscExampleEnumProvFreeEnumListTable, mscExampleDecimalPfIntReplicated1Index=mscExampleDecimalPfIntReplicated1Index, mscExampleDashedOsDashedArrayValue=mscExampleDashedOsDashedArrayValue, mscFriDynOpDynOpJrIndex=mscFriDynOpDynOpJrIndex, mscExampleObjIdIndicesRowStatusTable=mscExampleObjIdIndicesRowStatusTable, mscExampleStringProvFreeStrArray1Entry=mscExampleStringProvFreeStrArray1Entry, mscExampleBcdProvFreeBcdVectorEntry=mscExampleBcdProvFreeBcdVectorEntry, mscExampleWildBcdComponentName=mscExampleWildBcdComponentName, mscExampleEnumOperFreeEnumVectorTable=mscExampleEnumOperFreeEnumVectorTable, mscExampleStringRowStatusEntry=mscExampleStringRowStatusEntry, mscExampleOperFixedPtSubcomponentsCreatedRowStatus=mscExampleOperFixedPtSubcomponentsCreatedRowStatus, mscExampleStringIndex=mscExampleStringIndex, mscExampleDecimalComponentName=mscExampleDecimalComponentName, mscExampleStringOperFreeStrArrayValue=mscExampleStringOperFreeStrArrayValue, mscExampleDecimalPfIntReplicated1Value=mscExampleDecimalPfIntReplicated1Value, mscExampleIpAddrIndicesOneIndex=mscExampleIpAddrIndicesOneIndex, mscFriPfListAsciiRowStatus=mscFriPfListAsciiRowStatus, mscExampleDecimalOsIntVectorEntry=mscExampleDecimalOsIntVectorEntry, mscExampleDashedIndicesProvAttribute=mscExampleDashedIndicesProvAttribute, mscExampleDecimalProvStructIntSet=mscExampleDecimalProvStructIntSet, mscExampleStringProvFreeStrList1Value=mscExampleStringProvFreeStrList1Value, mscExampleStringProvStructStrVectorEntry=mscExampleStringProvStructStrVectorEntry, mscFriIndex=mscFriIndex, mscFriOperationalStructSimpleSigned=mscFriOperationalStructSimpleSigned, mscFriDynOpDynamicStorageType=mscFriDynOpDynamicStorageType, mscExampleWildBcdOperStructWildBcd=mscExampleWildBcdOperStructWildBcd, mscExampleIpAddressProvFreeIpAddressVector1Value=mscExampleIpAddressProvFreeIpAddressVector1Value, mscExampleNsap=mscExampleNsap, mscExampleOperDecimalSubCreatedValue=mscExampleOperDecimalSubCreatedValue, mscExampleWildBcdOperFreeWildBcdArrayTable=mscExampleWildBcdOperFreeWildBcdArrayTable, mscFriDynOpDynamic=mscFriDynOpDynamic, casTestGroupCA02A=casTestGroupCA02A, mscExampleExtendedProvFreeExtendedVectorIndex=mscExampleExtendedProvFreeExtendedVectorIndex, mscExampleBcdProvFreeBcdReplicated1Value=mscExampleBcdProvFreeBcdReplicated1Value, mscFriOfListEnumerationEntry=mscFriOfListEnumerationEntry, mscExampleMiscellaneousProvFreeTimeReplicatedRowStatus=mscExampleMiscellaneousProvFreeTimeReplicatedRowStatus, mscExampleEnumOperFreeEnumVectorValue=mscExampleEnumOperFreeEnumVectorValue, mscExampleSignedProvFreeSignedVector1Index=mscExampleSignedProvFreeSignedVector1Index, mscExampleBcdProvStructBcdVectorTable=mscExampleBcdProvStructBcdVectorTable, mscExampleDecimalIndicesProvisionedEntry=mscExampleDecimalIndicesProvisionedEntry, mscExampleEnumOperStructEnumVectorIndex=mscExampleEnumOperStructEnumVectorIndex, mscExampleHexProvFreeHexReplicatedIndex=mscExampleHexProvFreeHexReplicatedIndex)
| (object_identifier, integer, octet_string) = mibBuilder.importSymbols('ASN1', 'ObjectIdentifier', 'Integer', 'OctetString')
(named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues')
(constraints_union, constraints_intersection, value_range_constraint, single_value_constraint, value_size_constraint) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'ConstraintsUnion', 'ConstraintsIntersection', 'ValueRangeConstraint', 'SingleValueConstraint', 'ValueSizeConstraint')
(row_status, storage_type, counter32, gauge32, display_string, time_interval, unsigned32, row_pointer, integer32) = mibBuilder.importSymbols('Nortel-MsCarrier-MscPassport-StandardTextualConventionsMIB', 'RowStatus', 'StorageType', 'Counter32', 'Gauge32', 'DisplayString', 'TimeInterval', 'Unsigned32', 'RowPointer', 'Integer32')
(passport_counter64, hex_string, wildcarded_digit_string, integer_sequence, unsigned64, ascii_string_index, dashed_hex_string, ascii_string, fixed_point1, digit_string, fixed_point3, fixed_point4, non_replicated, hex, gauge64, link, enterprise_date_and_time, extended_ascii_string, fixed_point2) = mibBuilder.importSymbols('Nortel-MsCarrier-MscPassport-TextualConventionsMIB', 'PassportCounter64', 'HexString', 'WildcardedDigitString', 'IntegerSequence', 'Unsigned64', 'AsciiStringIndex', 'DashedHexString', 'AsciiString', 'FixedPoint1', 'DigitString', 'FixedPoint3', 'FixedPoint4', 'NonReplicated', 'Hex', 'Gauge64', 'Link', 'EnterpriseDateAndTime', 'ExtendedAsciiString', 'FixedPoint2')
(msc_components, msc_passport_mi_bs) = mibBuilder.importSymbols('Nortel-MsCarrier-MscPassport-UsefulDefinitionsMIB', 'mscComponents', 'mscPassportMIBs')
(notification_group, module_compliance) = mibBuilder.importSymbols('SNMPv2-CONF', 'NotificationGroup', 'ModuleCompliance')
(iso, object_identity, counter32, bits, time_ticks, gauge32, unsigned32, mib_scalar, mib_table, mib_table_row, mib_table_column, notification_type, counter64, ip_address, integer32, module_identity, mib_identifier) = mibBuilder.importSymbols('SNMPv2-SMI', 'iso', 'ObjectIdentity', 'Counter32', 'Bits', 'TimeTicks', 'Gauge32', 'Unsigned32', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn', 'NotificationType', 'Counter64', 'IpAddress', 'Integer32', 'ModuleIdentity', 'MibIdentifier')
(textual_convention, display_string) = mibBuilder.importSymbols('SNMPv2-TC', 'TextualConvention', 'DisplayString')
cas_test_mib = mib_identifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 2, 103))
msc_example = mib_identifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000))
msc_example_row_status_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1))
if mibBuilder.loadTexts:
mscExampleRowStatusTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleRowStatusTable.setDescription('This entry controls the addition and deletion of mscExample components.')
msc_example_row_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'))
if mibBuilder.loadTexts:
mscExampleRowStatusEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleRowStatusEntry.setDescription('A single entry in the table represents a single mscExample component.')
msc_example_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1, 1, 1), row_status()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleRowStatus.setDescription('This variable is used as the basis for SNMP naming of mscExample components. These components can be added and deleted.')
msc_example_component_name = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1, 1, 2), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mscExampleComponentName.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleComponentName.setDescription("This variable provides the component's string name for use with the ASCII Console Interface")
msc_example_storage_type = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1, 1, 4), storage_type()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mscExampleStorageType.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleStorageType.setDescription('This variable represents the storage type value for the mscExample tables.')
msc_example_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1, 1, 10), non_replicated())
if mibBuilder.loadTexts:
mscExampleIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleIndex.setDescription('This variable represents the index for the mscExample tables.')
msc_example_operational_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 100))
if mibBuilder.loadTexts:
mscExampleOperationalTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleOperationalTable.setDescription('')
msc_example_operational_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 100, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'))
if mibBuilder.loadTexts:
mscExampleOperationalEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleOperationalEntry.setDescription('An entry in the mscExampleOperationalTable.')
msc_example_oper_my_component_name = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 100, 1, 1), row_pointer()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleOperMyComponentName.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleOperMyComponentName.setDescription('')
msc_example_provisional_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 101))
if mibBuilder.loadTexts:
mscExampleProvisionalTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleProvisionalTable.setDescription('')
msc_example_provisional_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 101, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'))
if mibBuilder.loadTexts:
mscExampleProvisionalEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleProvisionalEntry.setDescription('An entry in the mscExampleProvisionalTable.')
msc_example_prov_my_component_name = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 101, 1, 1), row_pointer()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleProvMyComponentName.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleProvMyComponentName.setDescription('')
msc_example_oper_decimal_sub_created_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1002))
if mibBuilder.loadTexts:
mscExampleOperDecimalSubCreatedTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleOperDecimalSubCreatedTable.setDescription('')
msc_example_oper_decimal_sub_created_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1002, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleOperDecimalSubCreatedValue'))
if mibBuilder.loadTexts:
mscExampleOperDecimalSubCreatedEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleOperDecimalSubCreatedEntry.setDescription('An entry in the mscExampleOperDecimalSubCreatedTable.')
msc_example_oper_decimal_sub_created_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1002, 1, 1), row_pointer()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleOperDecimalSubCreatedValue.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleOperDecimalSubCreatedValue.setDescription('This variable represents both the value and the index for the mscExampleOperDecimalSubCreatedTable.')
msc_example_oper_decimal_sub_created_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1002, 1, 2), row_status()).setMaxAccess('writeonly')
if mibBuilder.loadTexts:
mscExampleOperDecimalSubCreatedRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleOperDecimalSubCreatedRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleOperDecimalSubCreatedTable.')
msc_example_oper_fixed_pt_subcomponents_created_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1003))
if mibBuilder.loadTexts:
mscExampleOperFixedPtSubcomponentsCreatedTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleOperFixedPtSubcomponentsCreatedTable.setDescription('')
msc_example_oper_fixed_pt_subcomponents_created_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1003, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleOperFixedPtSubcomponentsCreatedValue'))
if mibBuilder.loadTexts:
mscExampleOperFixedPtSubcomponentsCreatedEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleOperFixedPtSubcomponentsCreatedEntry.setDescription('An entry in the mscExampleOperFixedPtSubcomponentsCreatedTable.')
msc_example_oper_fixed_pt_subcomponents_created_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1003, 1, 1), row_pointer()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleOperFixedPtSubcomponentsCreatedValue.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleOperFixedPtSubcomponentsCreatedValue.setDescription('This variable represents both the value and the index for the mscExampleOperFixedPtSubcomponentsCreatedTable.')
msc_example_oper_fixed_pt_subcomponents_created_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1003, 1, 2), row_status()).setMaxAccess('writeonly')
if mibBuilder.loadTexts:
mscExampleOperFixedPtSubcomponentsCreatedRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleOperFixedPtSubcomponentsCreatedRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleOperFixedPtSubcomponentsCreatedTable.')
msc_example_oper_string_sub_created_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1004))
if mibBuilder.loadTexts:
mscExampleOperStringSubCreatedTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleOperStringSubCreatedTable.setDescription('')
msc_example_oper_string_sub_created_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1004, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleOperStringSubCreatedValue'))
if mibBuilder.loadTexts:
mscExampleOperStringSubCreatedEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleOperStringSubCreatedEntry.setDescription('An entry in the mscExampleOperStringSubCreatedTable.')
msc_example_oper_string_sub_created_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1004, 1, 1), row_pointer()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleOperStringSubCreatedValue.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleOperStringSubCreatedValue.setDescription('This variable represents both the value and the index for the mscExampleOperStringSubCreatedTable.')
msc_example_oper_string_sub_created_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1004, 1, 2), row_status()).setMaxAccess('writeonly')
if mibBuilder.loadTexts:
mscExampleOperStringSubCreatedRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleOperStringSubCreatedRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleOperStringSubCreatedTable.')
msc_example_oper_enum_sub_created_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1005))
if mibBuilder.loadTexts:
mscExampleOperEnumSubCreatedTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleOperEnumSubCreatedTable.setDescription('')
msc_example_oper_enum_sub_created_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1005, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleOperEnumSubCreatedValue'))
if mibBuilder.loadTexts:
mscExampleOperEnumSubCreatedEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleOperEnumSubCreatedEntry.setDescription('An entry in the mscExampleOperEnumSubCreatedTable.')
msc_example_oper_enum_sub_created_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1005, 1, 1), row_pointer()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleOperEnumSubCreatedValue.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleOperEnumSubCreatedValue.setDescription('This variable represents both the value and the index for the mscExampleOperEnumSubCreatedTable.')
msc_example_oper_enum_sub_created_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1005, 1, 2), row_status()).setMaxAccess('writeonly')
if mibBuilder.loadTexts:
mscExampleOperEnumSubCreatedRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleOperEnumSubCreatedRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleOperEnumSubCreatedTable.')
msc_example_oper_signed_sub_created_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1006))
if mibBuilder.loadTexts:
mscExampleOperSignedSubCreatedTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleOperSignedSubCreatedTable.setDescription('')
msc_example_oper_signed_sub_created_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1006, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleOperSignedSubCreatedValue'))
if mibBuilder.loadTexts:
mscExampleOperSignedSubCreatedEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleOperSignedSubCreatedEntry.setDescription('An entry in the mscExampleOperSignedSubCreatedTable.')
msc_example_oper_signed_sub_created_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1006, 1, 1), row_pointer()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleOperSignedSubCreatedValue.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleOperSignedSubCreatedValue.setDescription('This variable represents both the value and the index for the mscExampleOperSignedSubCreatedTable.')
msc_example_oper_signed_sub_created_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1006, 1, 2), row_status()).setMaxAccess('writeonly')
if mibBuilder.loadTexts:
mscExampleOperSignedSubCreatedRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleOperSignedSubCreatedRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleOperSignedSubCreatedTable.')
msc_example_prov_decimal_sub_created_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1007))
if mibBuilder.loadTexts:
mscExampleProvDecimalSubCreatedTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleProvDecimalSubCreatedTable.setDescription('')
msc_example_prov_decimal_sub_created_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1007, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleProvDecimalSubCreatedValue'))
if mibBuilder.loadTexts:
mscExampleProvDecimalSubCreatedEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleProvDecimalSubCreatedEntry.setDescription('An entry in the mscExampleProvDecimalSubCreatedTable.')
msc_example_prov_decimal_sub_created_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1007, 1, 1), link()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleProvDecimalSubCreatedValue.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleProvDecimalSubCreatedValue.setDescription('This variable represents both the value and the index for the mscExampleProvDecimalSubCreatedTable.')
msc_example_prov_decimal_sub_created_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1007, 1, 2), row_status()).setMaxAccess('writeonly')
if mibBuilder.loadTexts:
mscExampleProvDecimalSubCreatedRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleProvDecimalSubCreatedRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleProvDecimalSubCreatedTable.')
msc_example_prov_fixed_pt_sub_created_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1008))
if mibBuilder.loadTexts:
mscExampleProvFixedPtSubCreatedTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleProvFixedPtSubCreatedTable.setDescription('')
msc_example_prov_fixed_pt_sub_created_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1008, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleProvFixedPtSubCreatedValue'))
if mibBuilder.loadTexts:
mscExampleProvFixedPtSubCreatedEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleProvFixedPtSubCreatedEntry.setDescription('An entry in the mscExampleProvFixedPtSubCreatedTable.')
msc_example_prov_fixed_pt_sub_created_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1008, 1, 1), link()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleProvFixedPtSubCreatedValue.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleProvFixedPtSubCreatedValue.setDescription('This variable represents both the value and the index for the mscExampleProvFixedPtSubCreatedTable.')
msc_example_prov_fixed_pt_sub_created_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1008, 1, 2), row_status()).setMaxAccess('writeonly')
if mibBuilder.loadTexts:
mscExampleProvFixedPtSubCreatedRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleProvFixedPtSubCreatedRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleProvFixedPtSubCreatedTable.')
msc_example_prov_signed_sub_created_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1009))
if mibBuilder.loadTexts:
mscExampleProvSignedSubCreatedTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleProvSignedSubCreatedTable.setDescription('')
msc_example_prov_signed_sub_created_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1009, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleProvSignedSubCreatedValue'))
if mibBuilder.loadTexts:
mscExampleProvSignedSubCreatedEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleProvSignedSubCreatedEntry.setDescription('An entry in the mscExampleProvSignedSubCreatedTable.')
msc_example_prov_signed_sub_created_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1009, 1, 1), link()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleProvSignedSubCreatedValue.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleProvSignedSubCreatedValue.setDescription('This variable represents both the value and the index for the mscExampleProvSignedSubCreatedTable.')
msc_example_prov_signed_sub_created_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1009, 1, 2), row_status()).setMaxAccess('writeonly')
if mibBuilder.loadTexts:
mscExampleProvSignedSubCreatedRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleProvSignedSubCreatedRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleProvSignedSubCreatedTable.')
msc_example_prov_string_sub_created_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1010))
if mibBuilder.loadTexts:
mscExampleProvStringSubCreatedTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleProvStringSubCreatedTable.setDescription('')
msc_example_prov_string_sub_created_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1010, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleProvStringSubCreatedValue'))
if mibBuilder.loadTexts:
mscExampleProvStringSubCreatedEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleProvStringSubCreatedEntry.setDescription('An entry in the mscExampleProvStringSubCreatedTable.')
msc_example_prov_string_sub_created_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1010, 1, 1), link()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleProvStringSubCreatedValue.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleProvStringSubCreatedValue.setDescription('This variable represents both the value and the index for the mscExampleProvStringSubCreatedTable.')
msc_example_prov_string_sub_created_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1010, 1, 2), row_status()).setMaxAccess('writeonly')
if mibBuilder.loadTexts:
mscExampleProvStringSubCreatedRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleProvStringSubCreatedRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleProvStringSubCreatedTable.')
msc_example_prov_enum_sub_created_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1011))
if mibBuilder.loadTexts:
mscExampleProvEnumSubCreatedTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleProvEnumSubCreatedTable.setDescription('')
msc_example_prov_enum_sub_created_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1011, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleProvEnumSubCreatedValue'))
if mibBuilder.loadTexts:
mscExampleProvEnumSubCreatedEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleProvEnumSubCreatedEntry.setDescription('An entry in the mscExampleProvEnumSubCreatedTable.')
msc_example_prov_enum_sub_created_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1011, 1, 1), link()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleProvEnumSubCreatedValue.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleProvEnumSubCreatedValue.setDescription('This variable represents both the value and the index for the mscExampleProvEnumSubCreatedTable.')
msc_example_prov_enum_sub_created_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1011, 1, 2), row_status()).setMaxAccess('writeonly')
if mibBuilder.loadTexts:
mscExampleProvEnumSubCreatedRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleProvEnumSubCreatedRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleProvEnumSubCreatedTable.')
msc_example_decimal = mib_identifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2))
msc_example_decimal_row_status_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1))
if mibBuilder.loadTexts:
mscExampleDecimalRowStatusTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDecimalRowStatusTable.setDescription('This entry controls the addition and deletion of mscExampleDecimal components.')
msc_example_decimal_row_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDecimalIndex'))
if mibBuilder.loadTexts:
mscExampleDecimalRowStatusEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDecimalRowStatusEntry.setDescription('A single entry in the table represents a single mscExampleDecimal component.')
msc_example_decimal_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1, 1, 1), row_status()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleDecimalRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDecimalRowStatus.setDescription('This variable is used as the basis for SNMP naming of mscExampleDecimal components. These components can be added and deleted.')
msc_example_decimal_component_name = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1, 1, 2), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mscExampleDecimalComponentName.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDecimalComponentName.setDescription("This variable provides the component's string name for use with the ASCII Console Interface")
msc_example_decimal_storage_type = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1, 1, 4), storage_type()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mscExampleDecimalStorageType.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDecimalStorageType.setDescription('This variable represents the storage type value for the mscExampleDecimal tables.')
msc_example_decimal_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1, 1, 10), integer32().subtype(subtypeSpec=value_range_constraint(0, 1023)))
if mibBuilder.loadTexts:
mscExampleDecimalIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDecimalIndex.setDescription('This variable represents the index for the mscExampleDecimal tables.')
msc_example_decimal_operational_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 10))
if mibBuilder.loadTexts:
mscExampleDecimalOperationalTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDecimalOperationalTable.setDescription('')
msc_example_decimal_operational_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 10, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDecimalIndex'))
if mibBuilder.loadTexts:
mscExampleDecimalOperationalEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDecimalOperationalEntry.setDescription('An entry in the mscExampleDecimalOperationalTable.')
msc_example_decimal_oper_struct_integer = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 10, 1, 1), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 255))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleDecimalOperStructInteger.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDecimalOperStructInteger.setDescription('')
msc_example_decimal_oper_struct_int_set = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 10, 1, 2), octet_string().subtype(subtypeSpec=value_size_constraint(2, 2)).setFixedLength(2)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleDecimalOperStructIntSet.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDecimalOperStructIntSet.setDescription('Description of bits: n0(0) n1(1) n2(2) n3(3) n4(4) n5(5) n6(6) n7(7) n8(8) n9(9) n10(10) n11(11) n12(12) n13(13) n14(14) n15(15)')
msc_example_decimal_oper_free_integer = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 10, 1, 3), unsigned32().subtype(subtypeSpec=constraints_union(value_range_constraint(0, 10), value_range_constraint(100, 200)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleDecimalOperFreeInteger.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDecimalOperFreeInteger.setDescription('')
msc_example_decimal_oper_free_int_set = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 10, 1, 4), octet_string().subtype(subtypeSpec=value_size_constraint(1, 1)).setFixedLength(1)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleDecimalOperFreeIntSet.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDecimalOperFreeIntSet.setDescription('Description of bits: n0(0) n1(1) n2(2) n3(3) n4(4) n5(5)')
msc_example_decimal_oper_free_counter32 = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 10, 1, 5), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mscExampleDecimalOperFreeCounter32.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDecimalOperFreeCounter32.setDescription('')
msc_example_decimal_oper_free_gauge32 = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 10, 1, 6), gauge32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleDecimalOperFreeGauge32.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDecimalOperFreeGauge32.setDescription('')
msc_example_decimal_oper_free_time_interval = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 10, 1, 7), time_interval().subtype(subtypeSpec=value_range_constraint(0, 2147483647))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleDecimalOperFreeTimeInterval.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDecimalOperFreeTimeInterval.setDescription('')
msc_example_decimal_provisional_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 11))
if mibBuilder.loadTexts:
mscExampleDecimalProvisionalTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDecimalProvisionalTable.setDescription('')
msc_example_decimal_provisional_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 11, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDecimalIndex'))
if mibBuilder.loadTexts:
mscExampleDecimalProvisionalEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDecimalProvisionalEntry.setDescription('An entry in the mscExampleDecimalProvisionalTable.')
msc_example_decimal_prov_decimal_sub = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 11, 1, 1), link()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleDecimalProvDecimalSub.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDecimalProvDecimalSub.setDescription('')
msc_example_decimal_prov_struct_integer = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 11, 1, 2), unsigned32().subtype(subtypeSpec=constraints_union(value_range_constraint(0, 252), value_range_constraint(253, 253), value_range_constraint(254, 254), value_range_constraint(255, 255))).clone(253)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleDecimalProvStructInteger.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDecimalProvStructInteger.setDescription('VALUES ( 253 = infinity 254 = notApplicable 255 = notMeasured )')
msc_example_decimal_prov_struct_int_set = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 11, 1, 3), octet_string().subtype(subtypeSpec=value_size_constraint(2, 2)).setFixedLength(2).clone(hexValue='aaaa')).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleDecimalProvStructIntSet.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDecimalProvStructIntSet.setDescription('Description of bits: n0(0) n1(1) n2(2) n3(3) n4(4) n5(5) n6(6) n7(7) n8(8) n9(9) n10(10) n11(11) n12(12) n13(13) n14(14) n15(15)')
msc_example_decimal_prov_free_integer = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 11, 1, 4), unsigned32().subtype(subtypeSpec=constraints_union(value_range_constraint(0, 10), value_range_constraint(100, 200))).clone(101)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleDecimalProvFreeInteger.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDecimalProvFreeInteger.setDescription('')
msc_example_decimal_prov_free_integer1 = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 11, 1, 5), unsigned32().subtype(subtypeSpec=constraints_union(value_range_constraint(1, 10), value_range_constraint(100, 200))).clone(1)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleDecimalProvFreeInteger1.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDecimalProvFreeInteger1.setDescription('')
msc_example_decimal_prov_free_integer2 = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 11, 1, 6), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleDecimalProvFreeInteger2.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDecimalProvFreeInteger2.setDescription('')
msc_example_decimal_prov_free_int_set = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 11, 1, 7), octet_string().subtype(subtypeSpec=value_size_constraint(2, 2)).setFixedLength(2).clone(hexValue='5555')).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleDecimalProvFreeIntSet.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDecimalProvFreeIntSet.setDescription('Description of bits: n0(0) n1(1) n2(2) n3(3) n4(4) n5(5) n6(6) n7(7) n8(8) n9(9) n10(10) n11(11) n12(12) n13(13) n14(14) n15(15)')
msc_example_decimal_prov_free_int_set1 = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 11, 1, 8), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4).clone(hexValue='80000001')).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleDecimalProvFreeIntSet1.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDecimalProvFreeIntSet1.setDescription('Description of bits: n0(0) n1(1) n2(2) n3(3) n4(4) n5(5) n6(6) n7(7) n8(8) n9(9) n10(10) n11(11) n12(12) n13(13) n14(14) n15(15) n16(16) n17(17) n18(18) n19(19) n20(20) n21(21) n22(22) n23(23) n24(24) n25(25) n26(26) n27(27) n28(28) n29(29) n30(30) n31(31)')
msc_example_decimal_os_int_vector_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1012))
if mibBuilder.loadTexts:
mscExampleDecimalOsIntVectorTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDecimalOsIntVectorTable.setDescription('')
msc_example_decimal_os_int_vector_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1012, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDecimalIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDecimalOsIntVectorIndex'))
if mibBuilder.loadTexts:
mscExampleDecimalOsIntVectorEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDecimalOsIntVectorEntry.setDescription('An entry in the mscExampleDecimalOsIntVectorTable.')
msc_example_decimal_os_int_vector_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1012, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 9)))
if mibBuilder.loadTexts:
mscExampleDecimalOsIntVectorIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDecimalOsIntVectorIndex.setDescription('This variable represents the mscExampleDecimalOsIntVectorTable specific index for the mscExampleDecimalOsIntVectorTable.')
msc_example_decimal_os_int_vector_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1012, 1, 2), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 100))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleDecimalOsIntVectorValue.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDecimalOsIntVectorValue.setDescription('This variable represents an individual value for the mscExampleDecimalOsIntVectorTable.')
msc_example_decimal_os_int_array_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1013))
if mibBuilder.loadTexts:
mscExampleDecimalOsIntArrayTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDecimalOsIntArrayTable.setDescription('')
msc_example_decimal_os_int_array_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1013, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDecimalIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDecimalOsIntArrayRowIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDecimalOsIntArrayColumnIndex'))
if mibBuilder.loadTexts:
mscExampleDecimalOsIntArrayEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDecimalOsIntArrayEntry.setDescription('An entry in the mscExampleDecimalOsIntArrayTable.')
msc_example_decimal_os_int_array_row_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1013, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 2)))
if mibBuilder.loadTexts:
mscExampleDecimalOsIntArrayRowIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDecimalOsIntArrayRowIndex.setDescription('This variable represents the next to last index for the mscExampleDecimalOsIntArrayTable.')
msc_example_decimal_os_int_array_column_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1013, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 3)))
if mibBuilder.loadTexts:
mscExampleDecimalOsIntArrayColumnIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDecimalOsIntArrayColumnIndex.setDescription('This variable represents the final index for the mscExampleDecimalOsIntArrayTable.')
msc_example_decimal_os_int_array_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1013, 1, 3), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 255))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleDecimalOsIntArrayValue.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDecimalOsIntArrayValue.setDescription('This variable represents an individual value for the mscExampleDecimalOsIntArrayTable.')
msc_example_decimal_of_int_vector_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1014))
if mibBuilder.loadTexts:
mscExampleDecimalOfIntVectorTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDecimalOfIntVectorTable.setDescription('')
msc_example_decimal_of_int_vector_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1014, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDecimalIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDecimalOfIntVectorIndex'))
if mibBuilder.loadTexts:
mscExampleDecimalOfIntVectorEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDecimalOfIntVectorEntry.setDescription('An entry in the mscExampleDecimalOfIntVectorTable.')
msc_example_decimal_of_int_vector_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1014, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 9)))
if mibBuilder.loadTexts:
mscExampleDecimalOfIntVectorIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDecimalOfIntVectorIndex.setDescription('This variable represents the mscExampleDecimalOfIntVectorTable specific index for the mscExampleDecimalOfIntVectorTable.')
msc_example_decimal_of_int_vector_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1014, 1, 2), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 100))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleDecimalOfIntVectorValue.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDecimalOfIntVectorValue.setDescription('This variable represents an individual value for the mscExampleDecimalOfIntVectorTable.')
msc_example_decimal_of_int_array_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1015))
if mibBuilder.loadTexts:
mscExampleDecimalOfIntArrayTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDecimalOfIntArrayTable.setDescription('')
msc_example_decimal_of_int_array_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1015, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDecimalIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDecimalOfIntArrayRowIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDecimalOfIntArrayColumnIndex'))
if mibBuilder.loadTexts:
mscExampleDecimalOfIntArrayEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDecimalOfIntArrayEntry.setDescription('An entry in the mscExampleDecimalOfIntArrayTable.')
msc_example_decimal_of_int_array_row_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1015, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 2)))
if mibBuilder.loadTexts:
mscExampleDecimalOfIntArrayRowIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDecimalOfIntArrayRowIndex.setDescription('This variable represents the next to last index for the mscExampleDecimalOfIntArrayTable.')
msc_example_decimal_of_int_array_column_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1015, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 3)))
if mibBuilder.loadTexts:
mscExampleDecimalOfIntArrayColumnIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDecimalOfIntArrayColumnIndex.setDescription('This variable represents the final index for the mscExampleDecimalOfIntArrayTable.')
msc_example_decimal_of_int_array_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1015, 1, 3), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 255))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleDecimalOfIntArrayValue.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDecimalOfIntArrayValue.setDescription('This variable represents an individual value for the mscExampleDecimalOfIntArrayTable.')
msc_example_decimal_of_int_replicated_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1016))
if mibBuilder.loadTexts:
mscExampleDecimalOfIntReplicatedTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDecimalOfIntReplicatedTable.setDescription('')
msc_example_decimal_of_int_replicated_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1016, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDecimalIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDecimalOfIntReplicatedIndex'))
if mibBuilder.loadTexts:
mscExampleDecimalOfIntReplicatedEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDecimalOfIntReplicatedEntry.setDescription('An entry in the mscExampleDecimalOfIntReplicatedTable.')
msc_example_decimal_of_int_replicated_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1016, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 9)))
if mibBuilder.loadTexts:
mscExampleDecimalOfIntReplicatedIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDecimalOfIntReplicatedIndex.setDescription('This variable represents the index for the mscExampleDecimalOfIntReplicatedTable.')
msc_example_decimal_of_int_replicated_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1016, 1, 2), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleDecimalOfIntReplicatedValue.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDecimalOfIntReplicatedValue.setDescription('This variable represents an individual value for the mscExampleDecimalOfIntReplicatedTable.')
msc_example_decimal_of_int_replicated_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1016, 1, 3), row_status()).setMaxAccess('writeonly')
if mibBuilder.loadTexts:
mscExampleDecimalOfIntReplicatedRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDecimalOfIntReplicatedRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleDecimalOfIntReplicatedTable.')
msc_example_decimal_of_int_list_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1017))
if mibBuilder.loadTexts:
mscExampleDecimalOfIntListTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDecimalOfIntListTable.setDescription('')
msc_example_decimal_of_int_list_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1017, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDecimalIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDecimalOfIntListValue'))
if mibBuilder.loadTexts:
mscExampleDecimalOfIntListEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDecimalOfIntListEntry.setDescription('An entry in the mscExampleDecimalOfIntListTable.')
msc_example_decimal_of_int_list_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1017, 1, 1), integer32().subtype(subtypeSpec=constraints_union(value_range_constraint(0, 10), value_range_constraint(1000, 2000)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleDecimalOfIntListValue.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDecimalOfIntListValue.setDescription('This variable represents both the value and the index for the mscExampleDecimalOfIntListTable.')
msc_example_decimal_of_int_list_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1017, 1, 2), row_status()).setMaxAccess('writeonly')
if mibBuilder.loadTexts:
mscExampleDecimalOfIntListRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDecimalOfIntListRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleDecimalOfIntListTable.')
msc_example_decimal_ps_int_vector_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1018))
if mibBuilder.loadTexts:
mscExampleDecimalPsIntVectorTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDecimalPsIntVectorTable.setDescription('')
msc_example_decimal_ps_int_vector_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1018, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDecimalIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDecimalPsIntVectorIndex'))
if mibBuilder.loadTexts:
mscExampleDecimalPsIntVectorEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDecimalPsIntVectorEntry.setDescription('An entry in the mscExampleDecimalPsIntVectorTable.')
msc_example_decimal_ps_int_vector_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1018, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 9)))
if mibBuilder.loadTexts:
mscExampleDecimalPsIntVectorIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDecimalPsIntVectorIndex.setDescription('This variable represents the mscExampleDecimalPsIntVectorTable specific index for the mscExampleDecimalPsIntVectorTable.')
msc_example_decimal_ps_int_vector_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1018, 1, 2), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 100))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleDecimalPsIntVectorValue.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDecimalPsIntVectorValue.setDescription('This variable represents an individual value for the mscExampleDecimalPsIntVectorTable.')
msc_example_decimal_ps_int_array_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1019))
if mibBuilder.loadTexts:
mscExampleDecimalPsIntArrayTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDecimalPsIntArrayTable.setDescription('')
msc_example_decimal_ps_int_array_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1019, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDecimalIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDecimalPsIntArrayRowIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDecimalPsIntArrayColumnIndex'))
if mibBuilder.loadTexts:
mscExampleDecimalPsIntArrayEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDecimalPsIntArrayEntry.setDescription('An entry in the mscExampleDecimalPsIntArrayTable.')
msc_example_decimal_ps_int_array_row_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1019, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 2)))
if mibBuilder.loadTexts:
mscExampleDecimalPsIntArrayRowIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDecimalPsIntArrayRowIndex.setDescription('This variable represents the next to last index for the mscExampleDecimalPsIntArrayTable.')
msc_example_decimal_ps_int_array_column_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1019, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 3)))
if mibBuilder.loadTexts:
mscExampleDecimalPsIntArrayColumnIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDecimalPsIntArrayColumnIndex.setDescription('This variable represents the final index for the mscExampleDecimalPsIntArrayTable.')
msc_example_decimal_ps_int_array_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1019, 1, 3), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 255))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleDecimalPsIntArrayValue.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDecimalPsIntArrayValue.setDescription('This variable represents an individual value for the mscExampleDecimalPsIntArrayTable.')
msc_example_decimal_pf_int_vector_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1020))
if mibBuilder.loadTexts:
mscExampleDecimalPfIntVectorTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDecimalPfIntVectorTable.setDescription('')
msc_example_decimal_pf_int_vector_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1020, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDecimalIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDecimalPfIntVectorIndex'))
if mibBuilder.loadTexts:
mscExampleDecimalPfIntVectorEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDecimalPfIntVectorEntry.setDescription('An entry in the mscExampleDecimalPfIntVectorTable.')
msc_example_decimal_pf_int_vector_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1020, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 9)))
if mibBuilder.loadTexts:
mscExampleDecimalPfIntVectorIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDecimalPfIntVectorIndex.setDescription('This variable represents the mscExampleDecimalPfIntVectorTable specific index for the mscExampleDecimalPfIntVectorTable.')
msc_example_decimal_pf_int_vector_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1020, 1, 2), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 100))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleDecimalPfIntVectorValue.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDecimalPfIntVectorValue.setDescription('This variable represents an individual value for the mscExampleDecimalPfIntVectorTable.')
msc_example_decimal_pf_int_vector1_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1021))
if mibBuilder.loadTexts:
mscExampleDecimalPfIntVector1Table.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDecimalPfIntVector1Table.setDescription('')
msc_example_decimal_pf_int_vector1_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1021, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDecimalIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDecimalPfIntVector1Index'))
if mibBuilder.loadTexts:
mscExampleDecimalPfIntVector1Entry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDecimalPfIntVector1Entry.setDescription('An entry in the mscExampleDecimalPfIntVector1Table.')
msc_example_decimal_pf_int_vector1_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1021, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 15)))
if mibBuilder.loadTexts:
mscExampleDecimalPfIntVector1Index.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDecimalPfIntVector1Index.setDescription('This variable represents the mscExampleDecimalPfIntVector1Table specific index for the mscExampleDecimalPfIntVector1Table.')
msc_example_decimal_pf_int_vector1_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1021, 1, 2), unsigned32().subtype(subtypeSpec=constraints_union(value_range_constraint(0, 50), value_range_constraint(100, 150)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleDecimalPfIntVector1Value.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDecimalPfIntVector1Value.setDescription('This variable represents an individual value for the mscExampleDecimalPfIntVector1Table.')
msc_example_decimal_pf_int_array_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1022))
if mibBuilder.loadTexts:
mscExampleDecimalPfIntArrayTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDecimalPfIntArrayTable.setDescription('')
msc_example_decimal_pf_int_array_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1022, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDecimalIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDecimalPfIntArrayRowIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDecimalPfIntArrayColumnIndex'))
if mibBuilder.loadTexts:
mscExampleDecimalPfIntArrayEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDecimalPfIntArrayEntry.setDescription('An entry in the mscExampleDecimalPfIntArrayTable.')
msc_example_decimal_pf_int_array_row_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1022, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 2)))
if mibBuilder.loadTexts:
mscExampleDecimalPfIntArrayRowIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDecimalPfIntArrayRowIndex.setDescription('This variable represents the next to last index for the mscExampleDecimalPfIntArrayTable.')
msc_example_decimal_pf_int_array_column_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1022, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 3)))
if mibBuilder.loadTexts:
mscExampleDecimalPfIntArrayColumnIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDecimalPfIntArrayColumnIndex.setDescription('This variable represents the final index for the mscExampleDecimalPfIntArrayTable.')
msc_example_decimal_pf_int_array_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1022, 1, 3), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 255))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleDecimalPfIntArrayValue.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDecimalPfIntArrayValue.setDescription('This variable represents an individual value for the mscExampleDecimalPfIntArrayTable.')
msc_example_decimal_pf_int_array1_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1023))
if mibBuilder.loadTexts:
mscExampleDecimalPfIntArray1Table.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDecimalPfIntArray1Table.setDescription('')
msc_example_decimal_pf_int_array1_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1023, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDecimalIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDecimalPfIntArray1RowIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDecimalPfIntArray1ColumnIndex'))
if mibBuilder.loadTexts:
mscExampleDecimalPfIntArray1Entry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDecimalPfIntArray1Entry.setDescription('An entry in the mscExampleDecimalPfIntArray1Table.')
msc_example_decimal_pf_int_array1_row_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1023, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 2)))
if mibBuilder.loadTexts:
mscExampleDecimalPfIntArray1RowIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDecimalPfIntArray1RowIndex.setDescription('This variable represents the next to last index for the mscExampleDecimalPfIntArray1Table.')
msc_example_decimal_pf_int_array1_column_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1023, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 3)))
if mibBuilder.loadTexts:
mscExampleDecimalPfIntArray1ColumnIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDecimalPfIntArray1ColumnIndex.setDescription('This variable represents the final index for the mscExampleDecimalPfIntArray1Table.')
msc_example_decimal_pf_int_array1_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1023, 1, 3), unsigned32().subtype(subtypeSpec=constraints_union(value_range_constraint(0, 10), value_range_constraint(20, 200)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleDecimalPfIntArray1Value.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDecimalPfIntArray1Value.setDescription('This variable represents an individual value for the mscExampleDecimalPfIntArray1Table.')
msc_example_decimal_pf_int_replicated_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1024))
if mibBuilder.loadTexts:
mscExampleDecimalPfIntReplicatedTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDecimalPfIntReplicatedTable.setDescription('')
msc_example_decimal_pf_int_replicated_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1024, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDecimalIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDecimalPfIntReplicatedIndex'))
if mibBuilder.loadTexts:
mscExampleDecimalPfIntReplicatedEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDecimalPfIntReplicatedEntry.setDescription('An entry in the mscExampleDecimalPfIntReplicatedTable.')
msc_example_decimal_pf_int_replicated_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1024, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 9)))
if mibBuilder.loadTexts:
mscExampleDecimalPfIntReplicatedIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDecimalPfIntReplicatedIndex.setDescription('This variable represents the index for the mscExampleDecimalPfIntReplicatedTable.')
msc_example_decimal_pf_int_replicated_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1024, 1, 2), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleDecimalPfIntReplicatedValue.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDecimalPfIntReplicatedValue.setDescription('This variable represents an individual value for the mscExampleDecimalPfIntReplicatedTable.')
msc_example_decimal_pf_int_replicated_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1024, 1, 3), row_status()).setMaxAccess('writeonly')
if mibBuilder.loadTexts:
mscExampleDecimalPfIntReplicatedRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDecimalPfIntReplicatedRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleDecimalPfIntReplicatedTable.')
msc_example_decimal_pf_int_replicated1_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1025))
if mibBuilder.loadTexts:
mscExampleDecimalPfIntReplicated1Table.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDecimalPfIntReplicated1Table.setDescription('')
msc_example_decimal_pf_int_replicated1_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1025, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDecimalIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDecimalPfIntReplicated1Index'))
if mibBuilder.loadTexts:
mscExampleDecimalPfIntReplicated1Entry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDecimalPfIntReplicated1Entry.setDescription('An entry in the mscExampleDecimalPfIntReplicated1Table.')
msc_example_decimal_pf_int_replicated1_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1025, 1, 1), integer32().subtype(subtypeSpec=constraints_union(value_range_constraint(0, 9), value_range_constraint(11, 19))))
if mibBuilder.loadTexts:
mscExampleDecimalPfIntReplicated1Index.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDecimalPfIntReplicated1Index.setDescription('This variable represents the index for the mscExampleDecimalPfIntReplicated1Table.')
msc_example_decimal_pf_int_replicated1_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1025, 1, 2), unsigned32().subtype(subtypeSpec=constraints_union(value_range_constraint(0, 3), value_range_constraint(30, 300)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleDecimalPfIntReplicated1Value.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDecimalPfIntReplicated1Value.setDescription('This variable represents an individual value for the mscExampleDecimalPfIntReplicated1Table.')
msc_example_decimal_pf_int_replicated1_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1025, 1, 3), row_status()).setMaxAccess('writeonly')
if mibBuilder.loadTexts:
mscExampleDecimalPfIntReplicated1RowStatus.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDecimalPfIntReplicated1RowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleDecimalPfIntReplicated1Table.')
msc_example_decimal_pf_int_list_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1026))
if mibBuilder.loadTexts:
mscExampleDecimalPfIntListTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDecimalPfIntListTable.setDescription('')
msc_example_decimal_pf_int_list_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1026, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDecimalIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDecimalPfIntListValue'))
if mibBuilder.loadTexts:
mscExampleDecimalPfIntListEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDecimalPfIntListEntry.setDescription('An entry in the mscExampleDecimalPfIntListTable.')
msc_example_decimal_pf_int_list_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1026, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 1000))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleDecimalPfIntListValue.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDecimalPfIntListValue.setDescription('This variable represents both the value and the index for the mscExampleDecimalPfIntListTable.')
msc_example_decimal_pf_int_list_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1026, 1, 2), row_status()).setMaxAccess('writeonly')
if mibBuilder.loadTexts:
mscExampleDecimalPfIntListRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDecimalPfIntListRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleDecimalPfIntListTable.')
msc_example_decimal_pf_int_list1_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1027))
if mibBuilder.loadTexts:
mscExampleDecimalPfIntList1Table.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDecimalPfIntList1Table.setDescription('')
msc_example_decimal_pf_int_list1_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1027, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDecimalIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDecimalPfIntList1Value'))
if mibBuilder.loadTexts:
mscExampleDecimalPfIntList1Entry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDecimalPfIntList1Entry.setDescription('An entry in the mscExampleDecimalPfIntList1Table.')
msc_example_decimal_pf_int_list1_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1027, 1, 1), integer32().subtype(subtypeSpec=constraints_union(value_range_constraint(1, 10), value_range_constraint(15, 50)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleDecimalPfIntList1Value.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDecimalPfIntList1Value.setDescription('This variable represents both the value and the index for the mscExampleDecimalPfIntList1Table.')
msc_example_decimal_pf_int_list1_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1027, 1, 2), row_status()).setMaxAccess('writeonly')
if mibBuilder.loadTexts:
mscExampleDecimalPfIntList1RowStatus.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDecimalPfIntList1RowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleDecimalPfIntList1Table.')
msc_example_hex = mib_identifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3))
msc_example_hex_row_status_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1))
if mibBuilder.loadTexts:
mscExampleHexRowStatusTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleHexRowStatusTable.setDescription('This entry controls the addition and deletion of mscExampleHex components.')
msc_example_hex_row_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleHexIndex'))
if mibBuilder.loadTexts:
mscExampleHexRowStatusEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleHexRowStatusEntry.setDescription('A single entry in the table represents a single mscExampleHex component.')
msc_example_hex_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1, 1, 1), row_status()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleHexRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleHexRowStatus.setDescription('This variable is used as the basis for SNMP naming of mscExampleHex components. These components can be added and deleted.')
msc_example_hex_component_name = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1, 1, 2), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mscExampleHexComponentName.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleHexComponentName.setDescription("This variable provides the component's string name for use with the ASCII Console Interface")
msc_example_hex_storage_type = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1, 1, 4), storage_type()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mscExampleHexStorageType.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleHexStorageType.setDescription('This variable represents the storage type value for the mscExampleHex tables.')
msc_example_hex_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1, 1, 10), integer32().subtype(subtypeSpec=value_range_constraint(0, 255)))
if mibBuilder.loadTexts:
mscExampleHexIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleHexIndex.setDescription('This variable represents the index for the mscExampleHex tables.')
msc_example_hex_operational_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 10))
if mibBuilder.loadTexts:
mscExampleHexOperationalTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleHexOperationalTable.setDescription('')
msc_example_hex_operational_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 10, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleHexIndex'))
if mibBuilder.loadTexts:
mscExampleHexOperationalEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleHexOperationalEntry.setDescription('An entry in the mscExampleHexOperationalTable.')
msc_example_hex_oper_struct_hex = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 10, 1, 1), hex().subtype(subtypeSpec=value_range_constraint(0, 256))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleHexOperStructHex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleHexOperStructHex.setDescription('')
msc_example_hex_oper_free_hex = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 10, 1, 2), hex().subtype(subtypeSpec=value_range_constraint(0, 256))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleHexOperFreeHex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleHexOperFreeHex.setDescription('')
msc_example_hex_provisional_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 11))
if mibBuilder.loadTexts:
mscExampleHexProvisionalTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleHexProvisionalTable.setDescription('')
msc_example_hex_provisional_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 11, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleHexIndex'))
if mibBuilder.loadTexts:
mscExampleHexProvisionalEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleHexProvisionalEntry.setDescription('An entry in the mscExampleHexProvisionalTable.')
msc_example_hex_prov_enum_sub = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 11, 1, 1), link()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleHexProvEnumSub.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleHexProvEnumSub.setDescription('')
msc_example_hex_prov_struct_hex = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 11, 1, 2), hex().subtype(subtypeSpec=constraints_union(value_range_constraint(0, 256), value_range_constraint(512, 512), value_range_constraint(513, 513), value_range_constraint(514, 514))).clone(512)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleHexProvStructHex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleHexProvStructHex.setDescription('VALUES ( 512 = infinity 513 = notApplicable 514 = notMeasured )')
msc_example_hex_prov_free_hex = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 11, 1, 3), hex().subtype(subtypeSpec=value_range_constraint(0, 256)).clone(18)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleHexProvFreeHex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleHexProvFreeHex.setDescription('')
msc_example_hex_prov_free_hex1 = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 11, 1, 4), hex().subtype(subtypeSpec=constraints_union(value_range_constraint(0, 16), value_range_constraint(256, 4096)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleHexProvFreeHex1.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleHexProvFreeHex1.setDescription('')
msc_example_hex_os_hex_vector_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1040))
if mibBuilder.loadTexts:
mscExampleHexOsHexVectorTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleHexOsHexVectorTable.setDescription('')
msc_example_hex_os_hex_vector_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1040, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleHexIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleHexOsHexVectorIndex'))
if mibBuilder.loadTexts:
mscExampleHexOsHexVectorEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleHexOsHexVectorEntry.setDescription('An entry in the mscExampleHexOsHexVectorTable.')
msc_example_hex_os_hex_vector_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1040, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 9)))
if mibBuilder.loadTexts:
mscExampleHexOsHexVectorIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleHexOsHexVectorIndex.setDescription('This variable represents the mscExampleHexOsHexVectorTable specific index for the mscExampleHexOsHexVectorTable.')
msc_example_hex_os_hex_vector_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1040, 1, 2), hex().subtype(subtypeSpec=value_range_constraint(0, 255))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleHexOsHexVectorValue.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleHexOsHexVectorValue.setDescription('This variable represents an individual value for the mscExampleHexOsHexVectorTable.')
msc_example_hex_os_hex_array_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1041))
if mibBuilder.loadTexts:
mscExampleHexOsHexArrayTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleHexOsHexArrayTable.setDescription('')
msc_example_hex_os_hex_array_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1041, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleHexIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleHexOsHexArrayRowIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleHexOsHexArrayColumnIndex'))
if mibBuilder.loadTexts:
mscExampleHexOsHexArrayEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleHexOsHexArrayEntry.setDescription('An entry in the mscExampleHexOsHexArrayTable.')
msc_example_hex_os_hex_array_row_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1041, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 2)))
if mibBuilder.loadTexts:
mscExampleHexOsHexArrayRowIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleHexOsHexArrayRowIndex.setDescription('This variable represents the next to last index for the mscExampleHexOsHexArrayTable.')
msc_example_hex_os_hex_array_column_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1041, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 3)))
if mibBuilder.loadTexts:
mscExampleHexOsHexArrayColumnIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleHexOsHexArrayColumnIndex.setDescription('This variable represents the final index for the mscExampleHexOsHexArrayTable.')
msc_example_hex_os_hex_array_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1041, 1, 3), hex().subtype(subtypeSpec=value_range_constraint(0, 255))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleHexOsHexArrayValue.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleHexOsHexArrayValue.setDescription('This variable represents an individual value for the mscExampleHexOsHexArrayTable.')
msc_example_hex_of_hex_vector_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1042))
if mibBuilder.loadTexts:
mscExampleHexOfHexVectorTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleHexOfHexVectorTable.setDescription('')
msc_example_hex_of_hex_vector_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1042, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleHexIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleHexOfHexVectorIndex'))
if mibBuilder.loadTexts:
mscExampleHexOfHexVectorEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleHexOfHexVectorEntry.setDescription('An entry in the mscExampleHexOfHexVectorTable.')
msc_example_hex_of_hex_vector_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1042, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 9)))
if mibBuilder.loadTexts:
mscExampleHexOfHexVectorIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleHexOfHexVectorIndex.setDescription('This variable represents the mscExampleHexOfHexVectorTable specific index for the mscExampleHexOfHexVectorTable.')
msc_example_hex_of_hex_vector_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1042, 1, 2), hex().subtype(subtypeSpec=value_range_constraint(0, 256))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleHexOfHexVectorValue.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleHexOfHexVectorValue.setDescription('This variable represents an individual value for the mscExampleHexOfHexVectorTable.')
msc_example_hex_of_hex_array_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1043))
if mibBuilder.loadTexts:
mscExampleHexOfHexArrayTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleHexOfHexArrayTable.setDescription('')
msc_example_hex_of_hex_array_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1043, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleHexIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleHexOfHexArrayRowIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleHexOfHexArrayColumnIndex'))
if mibBuilder.loadTexts:
mscExampleHexOfHexArrayEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleHexOfHexArrayEntry.setDescription('An entry in the mscExampleHexOfHexArrayTable.')
msc_example_hex_of_hex_array_row_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1043, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 2)))
if mibBuilder.loadTexts:
mscExampleHexOfHexArrayRowIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleHexOfHexArrayRowIndex.setDescription('This variable represents the next to last index for the mscExampleHexOfHexArrayTable.')
msc_example_hex_of_hex_array_column_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1043, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 3)))
if mibBuilder.loadTexts:
mscExampleHexOfHexArrayColumnIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleHexOfHexArrayColumnIndex.setDescription('This variable represents the final index for the mscExampleHexOfHexArrayTable.')
msc_example_hex_of_hex_array_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1043, 1, 3), hex().subtype(subtypeSpec=value_range_constraint(0, 255))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleHexOfHexArrayValue.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleHexOfHexArrayValue.setDescription('This variable represents an individual value for the mscExampleHexOfHexArrayTable.')
msc_example_hex_of_hex_replicated_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1044))
if mibBuilder.loadTexts:
mscExampleHexOfHexReplicatedTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleHexOfHexReplicatedTable.setDescription('')
msc_example_hex_of_hex_replicated_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1044, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleHexIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleHexOfHexReplicatedIndex'))
if mibBuilder.loadTexts:
mscExampleHexOfHexReplicatedEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleHexOfHexReplicatedEntry.setDescription('An entry in the mscExampleHexOfHexReplicatedTable.')
msc_example_hex_of_hex_replicated_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1044, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 9)))
if mibBuilder.loadTexts:
mscExampleHexOfHexReplicatedIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleHexOfHexReplicatedIndex.setDescription('This variable represents the index for the mscExampleHexOfHexReplicatedTable.')
msc_example_hex_of_hex_replicated_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1044, 1, 2), hex().subtype(subtypeSpec=value_range_constraint(0, 256))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleHexOfHexReplicatedValue.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleHexOfHexReplicatedValue.setDescription('This variable represents an individual value for the mscExampleHexOfHexReplicatedTable.')
msc_example_hex_of_hex_replicated_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1044, 1, 3), row_status()).setMaxAccess('writeonly')
if mibBuilder.loadTexts:
mscExampleHexOfHexReplicatedRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleHexOfHexReplicatedRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleHexOfHexReplicatedTable.')
msc_example_hex_of_hex_list_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1045))
if mibBuilder.loadTexts:
mscExampleHexOfHexListTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleHexOfHexListTable.setDescription('')
msc_example_hex_of_hex_list_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1045, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleHexIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleHexOfHexListValue'))
if mibBuilder.loadTexts:
mscExampleHexOfHexListEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleHexOfHexListEntry.setDescription('An entry in the mscExampleHexOfHexListTable.')
msc_example_hex_of_hex_list_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1045, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 4096))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleHexOfHexListValue.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleHexOfHexListValue.setDescription('This variable represents both the value and the index for the mscExampleHexOfHexListTable.')
msc_example_hex_of_hex_list_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1045, 1, 2), row_status()).setMaxAccess('writeonly')
if mibBuilder.loadTexts:
mscExampleHexOfHexListRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleHexOfHexListRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleHexOfHexListTable.')
msc_example_hex_prov_struct_hex_vector_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1046))
if mibBuilder.loadTexts:
mscExampleHexProvStructHexVectorTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleHexProvStructHexVectorTable.setDescription('')
msc_example_hex_prov_struct_hex_vector_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1046, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleHexIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleHexProvStructHexVectorIndex'))
if mibBuilder.loadTexts:
mscExampleHexProvStructHexVectorEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleHexProvStructHexVectorEntry.setDescription('An entry in the mscExampleHexProvStructHexVectorTable.')
msc_example_hex_prov_struct_hex_vector_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1046, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 9)))
if mibBuilder.loadTexts:
mscExampleHexProvStructHexVectorIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleHexProvStructHexVectorIndex.setDescription('This variable represents the mscExampleHexProvStructHexVectorTable specific index for the mscExampleHexProvStructHexVectorTable.')
msc_example_hex_prov_struct_hex_vector_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1046, 1, 2), hex().subtype(subtypeSpec=value_range_constraint(0, 255))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleHexProvStructHexVectorValue.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleHexProvStructHexVectorValue.setDescription('This variable represents an individual value for the mscExampleHexProvStructHexVectorTable.')
msc_example_hex_prov_struct_hex_array_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1047))
if mibBuilder.loadTexts:
mscExampleHexProvStructHexArrayTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleHexProvStructHexArrayTable.setDescription('')
msc_example_hex_prov_struct_hex_array_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1047, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleHexIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleHexProvStructHexArrayRowIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleHexProvStructHexArrayColumnIndex'))
if mibBuilder.loadTexts:
mscExampleHexProvStructHexArrayEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleHexProvStructHexArrayEntry.setDescription('An entry in the mscExampleHexProvStructHexArrayTable.')
msc_example_hex_prov_struct_hex_array_row_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1047, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 2)))
if mibBuilder.loadTexts:
mscExampleHexProvStructHexArrayRowIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleHexProvStructHexArrayRowIndex.setDescription('This variable represents the next to last index for the mscExampleHexProvStructHexArrayTable.')
msc_example_hex_prov_struct_hex_array_column_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1047, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 3)))
if mibBuilder.loadTexts:
mscExampleHexProvStructHexArrayColumnIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleHexProvStructHexArrayColumnIndex.setDescription('This variable represents the final index for the mscExampleHexProvStructHexArrayTable.')
msc_example_hex_prov_struct_hex_array_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1047, 1, 3), hex().subtype(subtypeSpec=value_range_constraint(0, 255))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleHexProvStructHexArrayValue.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleHexProvStructHexArrayValue.setDescription('This variable represents an individual value for the mscExampleHexProvStructHexArrayTable.')
msc_example_hex_prov_free_hex_vector_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1048))
if mibBuilder.loadTexts:
mscExampleHexProvFreeHexVectorTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleHexProvFreeHexVectorTable.setDescription('')
msc_example_hex_prov_free_hex_vector_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1048, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleHexIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleHexProvFreeHexVectorIndex'))
if mibBuilder.loadTexts:
mscExampleHexProvFreeHexVectorEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleHexProvFreeHexVectorEntry.setDescription('An entry in the mscExampleHexProvFreeHexVectorTable.')
msc_example_hex_prov_free_hex_vector_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1048, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 9)))
if mibBuilder.loadTexts:
mscExampleHexProvFreeHexVectorIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleHexProvFreeHexVectorIndex.setDescription('This variable represents the mscExampleHexProvFreeHexVectorTable specific index for the mscExampleHexProvFreeHexVectorTable.')
msc_example_hex_prov_free_hex_vector_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1048, 1, 2), hex().subtype(subtypeSpec=value_range_constraint(0, 256))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleHexProvFreeHexVectorValue.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleHexProvFreeHexVectorValue.setDescription('This variable represents an individual value for the mscExampleHexProvFreeHexVectorTable.')
msc_example_hex_prov_free_hex_vector1_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1049))
if mibBuilder.loadTexts:
mscExampleHexProvFreeHexVector1Table.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleHexProvFreeHexVector1Table.setDescription('')
msc_example_hex_prov_free_hex_vector1_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1049, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleHexIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleHexProvFreeHexVector1Index'))
if mibBuilder.loadTexts:
mscExampleHexProvFreeHexVector1Entry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleHexProvFreeHexVector1Entry.setDescription('An entry in the mscExampleHexProvFreeHexVector1Table.')
msc_example_hex_prov_free_hex_vector1_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1049, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 9)))
if mibBuilder.loadTexts:
mscExampleHexProvFreeHexVector1Index.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleHexProvFreeHexVector1Index.setDescription('This variable represents the mscExampleHexProvFreeHexVector1Table specific index for the mscExampleHexProvFreeHexVector1Table.')
msc_example_hex_prov_free_hex_vector1_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1049, 1, 2), hex().subtype(subtypeSpec=constraints_union(value_range_constraint(0, 16), value_range_constraint(256, 4096)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleHexProvFreeHexVector1Value.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleHexProvFreeHexVector1Value.setDescription('This variable represents an individual value for the mscExampleHexProvFreeHexVector1Table.')
msc_example_hex_prov_free_hex_vector2_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1050))
if mibBuilder.loadTexts:
mscExampleHexProvFreeHexVector2Table.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleHexProvFreeHexVector2Table.setDescription('')
msc_example_hex_prov_free_hex_vector2_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1050, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleHexIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleHexProvFreeHexVector2Index'))
if mibBuilder.loadTexts:
mscExampleHexProvFreeHexVector2Entry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleHexProvFreeHexVector2Entry.setDescription('An entry in the mscExampleHexProvFreeHexVector2Table.')
msc_example_hex_prov_free_hex_vector2_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1050, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 5)))
if mibBuilder.loadTexts:
mscExampleHexProvFreeHexVector2Index.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleHexProvFreeHexVector2Index.setDescription('This variable represents the mscExampleHexProvFreeHexVector2Table specific index for the mscExampleHexProvFreeHexVector2Table.')
msc_example_hex_prov_free_hex_vector2_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1050, 1, 2), hex().subtype(subtypeSpec=constraints_union(value_range_constraint(0, 16), value_range_constraint(256, 4096)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleHexProvFreeHexVector2Value.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleHexProvFreeHexVector2Value.setDescription('This variable represents an individual value for the mscExampleHexProvFreeHexVector2Table.')
msc_example_hex_prov_free_hex_array_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1051))
if mibBuilder.loadTexts:
mscExampleHexProvFreeHexArrayTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleHexProvFreeHexArrayTable.setDescription('')
msc_example_hex_prov_free_hex_array_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1051, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleHexIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleHexProvFreeHexArrayRowIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleHexProvFreeHexArrayColumnIndex'))
if mibBuilder.loadTexts:
mscExampleHexProvFreeHexArrayEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleHexProvFreeHexArrayEntry.setDescription('An entry in the mscExampleHexProvFreeHexArrayTable.')
msc_example_hex_prov_free_hex_array_row_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1051, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 2)))
if mibBuilder.loadTexts:
mscExampleHexProvFreeHexArrayRowIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleHexProvFreeHexArrayRowIndex.setDescription('This variable represents the next to last index for the mscExampleHexProvFreeHexArrayTable.')
msc_example_hex_prov_free_hex_array_column_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1051, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 3)))
if mibBuilder.loadTexts:
mscExampleHexProvFreeHexArrayColumnIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleHexProvFreeHexArrayColumnIndex.setDescription('This variable represents the final index for the mscExampleHexProvFreeHexArrayTable.')
msc_example_hex_prov_free_hex_array_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1051, 1, 3), hex().subtype(subtypeSpec=value_range_constraint(0, 255))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleHexProvFreeHexArrayValue.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleHexProvFreeHexArrayValue.setDescription('This variable represents an individual value for the mscExampleHexProvFreeHexArrayTable.')
msc_example_hex_prov_free_hex_array1_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1052))
if mibBuilder.loadTexts:
mscExampleHexProvFreeHexArray1Table.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleHexProvFreeHexArray1Table.setDescription('')
msc_example_hex_prov_free_hex_array1_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1052, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleHexIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleHexProvFreeHexArray1RowIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleHexProvFreeHexArray1ColumnIndex'))
if mibBuilder.loadTexts:
mscExampleHexProvFreeHexArray1Entry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleHexProvFreeHexArray1Entry.setDescription('An entry in the mscExampleHexProvFreeHexArray1Table.')
msc_example_hex_prov_free_hex_array1_row_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1052, 1, 1), integer32().subtype(subtypeSpec=constraints_union(value_range_constraint(0, 1), value_range_constraint(3, 4))))
if mibBuilder.loadTexts:
mscExampleHexProvFreeHexArray1RowIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleHexProvFreeHexArray1RowIndex.setDescription('This variable represents the next to last index for the mscExampleHexProvFreeHexArray1Table.')
msc_example_hex_prov_free_hex_array1_column_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1052, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 3)))
if mibBuilder.loadTexts:
mscExampleHexProvFreeHexArray1ColumnIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleHexProvFreeHexArray1ColumnIndex.setDescription('This variable represents the final index for the mscExampleHexProvFreeHexArray1Table.')
msc_example_hex_prov_free_hex_array1_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1052, 1, 3), hex().subtype(subtypeSpec=constraints_union(value_range_constraint(0, 16), value_range_constraint(80, 256)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleHexProvFreeHexArray1Value.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleHexProvFreeHexArray1Value.setDescription('This variable represents an individual value for the mscExampleHexProvFreeHexArray1Table.')
msc_example_hex_prov_free_hex_array2_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1053))
if mibBuilder.loadTexts:
mscExampleHexProvFreeHexArray2Table.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleHexProvFreeHexArray2Table.setDescription('')
msc_example_hex_prov_free_hex_array2_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1053, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleHexIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleHexProvFreeHexArray2RowIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleHexProvFreeHexArray2ColumnIndex'))
if mibBuilder.loadTexts:
mscExampleHexProvFreeHexArray2Entry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleHexProvFreeHexArray2Entry.setDescription('An entry in the mscExampleHexProvFreeHexArray2Table.')
msc_example_hex_prov_free_hex_array2_row_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1053, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 3)))
if mibBuilder.loadTexts:
mscExampleHexProvFreeHexArray2RowIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleHexProvFreeHexArray2RowIndex.setDescription('This variable represents the next to last index for the mscExampleHexProvFreeHexArray2Table.')
msc_example_hex_prov_free_hex_array2_column_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1053, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 3)))
if mibBuilder.loadTexts:
mscExampleHexProvFreeHexArray2ColumnIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleHexProvFreeHexArray2ColumnIndex.setDescription('This variable represents the final index for the mscExampleHexProvFreeHexArray2Table.')
msc_example_hex_prov_free_hex_array2_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1053, 1, 3), hex().subtype(subtypeSpec=constraints_union(value_range_constraint(0, 16), value_range_constraint(80, 256)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleHexProvFreeHexArray2Value.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleHexProvFreeHexArray2Value.setDescription('This variable represents an individual value for the mscExampleHexProvFreeHexArray2Table.')
msc_example_hex_prov_free_hex_replicated_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1054))
if mibBuilder.loadTexts:
mscExampleHexProvFreeHexReplicatedTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleHexProvFreeHexReplicatedTable.setDescription('')
msc_example_hex_prov_free_hex_replicated_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1054, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleHexIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleHexProvFreeHexReplicatedIndex'))
if mibBuilder.loadTexts:
mscExampleHexProvFreeHexReplicatedEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleHexProvFreeHexReplicatedEntry.setDescription('An entry in the mscExampleHexProvFreeHexReplicatedTable.')
msc_example_hex_prov_free_hex_replicated_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1054, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 9)))
if mibBuilder.loadTexts:
mscExampleHexProvFreeHexReplicatedIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleHexProvFreeHexReplicatedIndex.setDescription('This variable represents the index for the mscExampleHexProvFreeHexReplicatedTable.')
msc_example_hex_prov_free_hex_replicated_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1054, 1, 2), hex().subtype(subtypeSpec=value_range_constraint(0, 256))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleHexProvFreeHexReplicatedValue.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleHexProvFreeHexReplicatedValue.setDescription('This variable represents an individual value for the mscExampleHexProvFreeHexReplicatedTable.')
msc_example_hex_prov_free_hex_replicated_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1054, 1, 3), row_status()).setMaxAccess('writeonly')
if mibBuilder.loadTexts:
mscExampleHexProvFreeHexReplicatedRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleHexProvFreeHexReplicatedRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleHexProvFreeHexReplicatedTable.')
msc_example_hex_prov_free_hex_replicated1_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1055))
if mibBuilder.loadTexts:
mscExampleHexProvFreeHexReplicated1Table.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleHexProvFreeHexReplicated1Table.setDescription('')
msc_example_hex_prov_free_hex_replicated1_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1055, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleHexIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleHexProvFreeHexReplicated1Index'))
if mibBuilder.loadTexts:
mscExampleHexProvFreeHexReplicated1Entry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleHexProvFreeHexReplicated1Entry.setDescription('An entry in the mscExampleHexProvFreeHexReplicated1Table.')
msc_example_hex_prov_free_hex_replicated1_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1055, 1, 1), integer32().subtype(subtypeSpec=constraints_union(value_range_constraint(0, 3), value_range_constraint(5, 9))))
if mibBuilder.loadTexts:
mscExampleHexProvFreeHexReplicated1Index.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleHexProvFreeHexReplicated1Index.setDescription('This variable represents the index for the mscExampleHexProvFreeHexReplicated1Table.')
msc_example_hex_prov_free_hex_replicated1_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1055, 1, 2), hex().subtype(subtypeSpec=constraints_union(value_range_constraint(0, 32), value_range_constraint(80, 256)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleHexProvFreeHexReplicated1Value.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleHexProvFreeHexReplicated1Value.setDescription('This variable represents an individual value for the mscExampleHexProvFreeHexReplicated1Table.')
msc_example_hex_prov_free_hex_replicated1_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1055, 1, 3), row_status()).setMaxAccess('writeonly')
if mibBuilder.loadTexts:
mscExampleHexProvFreeHexReplicated1RowStatus.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleHexProvFreeHexReplicated1RowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleHexProvFreeHexReplicated1Table.')
msc_example_hex_prov_free_hex_list_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1056))
if mibBuilder.loadTexts:
mscExampleHexProvFreeHexListTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleHexProvFreeHexListTable.setDescription('')
msc_example_hex_prov_free_hex_list_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1056, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleHexIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleHexProvFreeHexListValue'))
if mibBuilder.loadTexts:
mscExampleHexProvFreeHexListEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleHexProvFreeHexListEntry.setDescription('An entry in the mscExampleHexProvFreeHexListTable.')
msc_example_hex_prov_free_hex_list_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1056, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 4096))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleHexProvFreeHexListValue.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleHexProvFreeHexListValue.setDescription('This variable represents both the value and the index for the mscExampleHexProvFreeHexListTable.')
msc_example_hex_prov_free_hex_list_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1056, 1, 2), row_status()).setMaxAccess('writeonly')
if mibBuilder.loadTexts:
mscExampleHexProvFreeHexListRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleHexProvFreeHexListRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleHexProvFreeHexListTable.')
msc_example_hex_prov_free_hex_list1_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1057))
if mibBuilder.loadTexts:
mscExampleHexProvFreeHexList1Table.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleHexProvFreeHexList1Table.setDescription('')
msc_example_hex_prov_free_hex_list1_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1057, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleHexIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleHexProvFreeHexList1Value'))
if mibBuilder.loadTexts:
mscExampleHexProvFreeHexList1Entry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleHexProvFreeHexList1Entry.setDescription('An entry in the mscExampleHexProvFreeHexList1Table.')
msc_example_hex_prov_free_hex_list1_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1057, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 4096))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleHexProvFreeHexList1Value.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleHexProvFreeHexList1Value.setDescription('This variable represents both the value and the index for the mscExampleHexProvFreeHexList1Table.')
msc_example_hex_prov_free_hex_list1_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1057, 1, 2), row_status()).setMaxAccess('writeonly')
if mibBuilder.loadTexts:
mscExampleHexProvFreeHexList1RowStatus.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleHexProvFreeHexList1RowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleHexProvFreeHexList1Table.')
msc_example_ip_address = mib_identifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4))
msc_example_ip_address_row_status_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1))
if mibBuilder.loadTexts:
mscExampleIpAddressRowStatusTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleIpAddressRowStatusTable.setDescription('This entry controls the addition and deletion of mscExampleIpAddress components.')
msc_example_ip_address_row_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIpAddressIndex'))
if mibBuilder.loadTexts:
mscExampleIpAddressRowStatusEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleIpAddressRowStatusEntry.setDescription('A single entry in the table represents a single mscExampleIpAddress component.')
msc_example_ip_address_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1, 1, 1), row_status()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleIpAddressRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleIpAddressRowStatus.setDescription('This variable is used as the basis for SNMP naming of mscExampleIpAddress components. These components can be added and deleted.')
msc_example_ip_address_component_name = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1, 1, 2), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mscExampleIpAddressComponentName.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleIpAddressComponentName.setDescription("This variable provides the component's string name for use with the ASCII Console Interface")
msc_example_ip_address_storage_type = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1, 1, 4), storage_type()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mscExampleIpAddressStorageType.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleIpAddressStorageType.setDescription('This variable represents the storage type value for the mscExampleIpAddress tables.')
msc_example_ip_address_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1, 1, 10), ip_address())
if mibBuilder.loadTexts:
mscExampleIpAddressIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleIpAddressIndex.setDescription('This variable represents the index for the mscExampleIpAddress tables.')
msc_example_ip_address_operational_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 10))
if mibBuilder.loadTexts:
mscExampleIpAddressOperationalTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleIpAddressOperationalTable.setDescription('')
msc_example_ip_address_operational_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 10, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIpAddressIndex'))
if mibBuilder.loadTexts:
mscExampleIpAddressOperationalEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleIpAddressOperationalEntry.setDescription('An entry in the mscExampleIpAddressOperationalTable.')
msc_example_ip_address_oper_struct_ip_address = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 10, 1, 1), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleIpAddressOperStructIpAddress.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleIpAddressOperStructIpAddress.setDescription('')
msc_example_ip_address_oper_free_ip_address = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 10, 1, 2), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleIpAddressOperFreeIpAddress.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleIpAddressOperFreeIpAddress.setDescription('')
msc_example_ip_address_provisional_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 11))
if mibBuilder.loadTexts:
mscExampleIpAddressProvisionalTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleIpAddressProvisionalTable.setDescription('')
msc_example_ip_address_provisional_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 11, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIpAddressIndex'))
if mibBuilder.loadTexts:
mscExampleIpAddressProvisionalEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleIpAddressProvisionalEntry.setDescription('An entry in the mscExampleIpAddressProvisionalTable.')
msc_example_ip_address_prov_enum_sub = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 11, 1, 1), link()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleIpAddressProvEnumSub.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleIpAddressProvEnumSub.setDescription('')
msc_example_ip_address_prov_struct_ip_address = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 11, 1, 2), ip_address().clone(hexValue='7f000100')).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleIpAddressProvStructIpAddress.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleIpAddressProvStructIpAddress.setDescription('')
msc_example_ip_address_prov_free_ip_address = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 11, 1, 3), ip_address().clone(hexValue='7f7f7f7f')).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleIpAddressProvFreeIpAddress.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleIpAddressProvFreeIpAddress.setDescription('')
msc_example_ip_address_prov_free_ip_address1 = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 11, 1, 4), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleIpAddressProvFreeIpAddress1.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleIpAddressProvFreeIpAddress1.setDescription('')
msc_example_ip_address_oper_struct_ip_address_vector_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1058))
if mibBuilder.loadTexts:
mscExampleIpAddressOperStructIpAddressVectorTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleIpAddressOperStructIpAddressVectorTable.setDescription('')
msc_example_ip_address_oper_struct_ip_address_vector_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1058, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIpAddressIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIpAddressOperStructIpAddressVectorIndex'))
if mibBuilder.loadTexts:
mscExampleIpAddressOperStructIpAddressVectorEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleIpAddressOperStructIpAddressVectorEntry.setDescription('An entry in the mscExampleIpAddressOperStructIpAddressVectorTable.')
msc_example_ip_address_oper_struct_ip_address_vector_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1058, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 9)))
if mibBuilder.loadTexts:
mscExampleIpAddressOperStructIpAddressVectorIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleIpAddressOperStructIpAddressVectorIndex.setDescription('This variable represents the mscExampleIpAddressOperStructIpAddressVectorTable specific index for the mscExampleIpAddressOperStructIpAddressVectorTable.')
msc_example_ip_address_oper_struct_ip_address_vector_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1058, 1, 2), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleIpAddressOperStructIpAddressVectorValue.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleIpAddressOperStructIpAddressVectorValue.setDescription('This variable represents an individual value for the mscExampleIpAddressOperStructIpAddressVectorTable.')
msc_example_ip_address_oper_struct_ip_address_array_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1059))
if mibBuilder.loadTexts:
mscExampleIpAddressOperStructIpAddressArrayTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleIpAddressOperStructIpAddressArrayTable.setDescription('')
msc_example_ip_address_oper_struct_ip_address_array_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1059, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIpAddressIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIpAddressOperStructIpAddressArrayRowIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIpAddressOperStructIpAddressArrayColumnIndex'))
if mibBuilder.loadTexts:
mscExampleIpAddressOperStructIpAddressArrayEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleIpAddressOperStructIpAddressArrayEntry.setDescription('An entry in the mscExampleIpAddressOperStructIpAddressArrayTable.')
msc_example_ip_address_oper_struct_ip_address_array_row_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1059, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 2)))
if mibBuilder.loadTexts:
mscExampleIpAddressOperStructIpAddressArrayRowIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleIpAddressOperStructIpAddressArrayRowIndex.setDescription('This variable represents the next to last index for the mscExampleIpAddressOperStructIpAddressArrayTable.')
msc_example_ip_address_oper_struct_ip_address_array_column_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1059, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 3)))
if mibBuilder.loadTexts:
mscExampleIpAddressOperStructIpAddressArrayColumnIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleIpAddressOperStructIpAddressArrayColumnIndex.setDescription('This variable represents the final index for the mscExampleIpAddressOperStructIpAddressArrayTable.')
msc_example_ip_address_oper_struct_ip_address_array_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1059, 1, 3), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleIpAddressOperStructIpAddressArrayValue.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleIpAddressOperStructIpAddressArrayValue.setDescription('This variable represents an individual value for the mscExampleIpAddressOperStructIpAddressArrayTable.')
msc_example_ip_address_oper_free_ip_address_vector_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1060))
if mibBuilder.loadTexts:
mscExampleIpAddressOperFreeIpAddressVectorTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleIpAddressOperFreeIpAddressVectorTable.setDescription('')
msc_example_ip_address_oper_free_ip_address_vector_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1060, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIpAddressIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIpAddressOperFreeIpAddressVectorIndex'))
if mibBuilder.loadTexts:
mscExampleIpAddressOperFreeIpAddressVectorEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleIpAddressOperFreeIpAddressVectorEntry.setDescription('An entry in the mscExampleIpAddressOperFreeIpAddressVectorTable.')
msc_example_ip_address_oper_free_ip_address_vector_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1060, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 9)))
if mibBuilder.loadTexts:
mscExampleIpAddressOperFreeIpAddressVectorIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleIpAddressOperFreeIpAddressVectorIndex.setDescription('This variable represents the mscExampleIpAddressOperFreeIpAddressVectorTable specific index for the mscExampleIpAddressOperFreeIpAddressVectorTable.')
msc_example_ip_address_oper_free_ip_address_vector_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1060, 1, 2), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleIpAddressOperFreeIpAddressVectorValue.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleIpAddressOperFreeIpAddressVectorValue.setDescription('This variable represents an individual value for the mscExampleIpAddressOperFreeIpAddressVectorTable.')
msc_example_ip_address_oper_free_ip_address_array_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1061))
if mibBuilder.loadTexts:
mscExampleIpAddressOperFreeIpAddressArrayTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleIpAddressOperFreeIpAddressArrayTable.setDescription('')
msc_example_ip_address_oper_free_ip_address_array_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1061, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIpAddressIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIpAddressOperFreeIpAddressArrayRowIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIpAddressOperFreeIpAddressArrayColumnIndex'))
if mibBuilder.loadTexts:
mscExampleIpAddressOperFreeIpAddressArrayEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleIpAddressOperFreeIpAddressArrayEntry.setDescription('An entry in the mscExampleIpAddressOperFreeIpAddressArrayTable.')
msc_example_ip_address_oper_free_ip_address_array_row_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1061, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 2)))
if mibBuilder.loadTexts:
mscExampleIpAddressOperFreeIpAddressArrayRowIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleIpAddressOperFreeIpAddressArrayRowIndex.setDescription('This variable represents the next to last index for the mscExampleIpAddressOperFreeIpAddressArrayTable.')
msc_example_ip_address_oper_free_ip_address_array_column_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1061, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 3)))
if mibBuilder.loadTexts:
mscExampleIpAddressOperFreeIpAddressArrayColumnIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleIpAddressOperFreeIpAddressArrayColumnIndex.setDescription('This variable represents the final index for the mscExampleIpAddressOperFreeIpAddressArrayTable.')
msc_example_ip_address_oper_free_ip_address_array_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1061, 1, 3), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleIpAddressOperFreeIpAddressArrayValue.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleIpAddressOperFreeIpAddressArrayValue.setDescription('This variable represents an individual value for the mscExampleIpAddressOperFreeIpAddressArrayTable.')
msc_example_ip_address_oper_free_ip_address_replicated_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1062))
if mibBuilder.loadTexts:
mscExampleIpAddressOperFreeIpAddressReplicatedTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleIpAddressOperFreeIpAddressReplicatedTable.setDescription('')
msc_example_ip_address_oper_free_ip_address_replicated_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1062, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIpAddressIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIpAddressOperFreeIpAddressReplicatedIndex'))
if mibBuilder.loadTexts:
mscExampleIpAddressOperFreeIpAddressReplicatedEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleIpAddressOperFreeIpAddressReplicatedEntry.setDescription('An entry in the mscExampleIpAddressOperFreeIpAddressReplicatedTable.')
msc_example_ip_address_oper_free_ip_address_replicated_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1062, 1, 1), ip_address())
if mibBuilder.loadTexts:
mscExampleIpAddressOperFreeIpAddressReplicatedIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleIpAddressOperFreeIpAddressReplicatedIndex.setDescription('This variable represents the index for the mscExampleIpAddressOperFreeIpAddressReplicatedTable.')
msc_example_ip_address_oper_free_ip_address_replicated_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1062, 1, 2), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleIpAddressOperFreeIpAddressReplicatedValue.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleIpAddressOperFreeIpAddressReplicatedValue.setDescription('This variable represents an individual value for the mscExampleIpAddressOperFreeIpAddressReplicatedTable.')
msc_example_ip_address_oper_free_ip_address_replicated_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1062, 1, 3), row_status()).setMaxAccess('writeonly')
if mibBuilder.loadTexts:
mscExampleIpAddressOperFreeIpAddressReplicatedRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleIpAddressOperFreeIpAddressReplicatedRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleIpAddressOperFreeIpAddressReplicatedTable.')
msc_example_ip_address_oper_free_ip_address_list_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1063))
if mibBuilder.loadTexts:
mscExampleIpAddressOperFreeIpAddressListTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleIpAddressOperFreeIpAddressListTable.setDescription('')
msc_example_ip_address_oper_free_ip_address_list_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1063, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIpAddressIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIpAddressOperFreeIpAddressListValue'))
if mibBuilder.loadTexts:
mscExampleIpAddressOperFreeIpAddressListEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleIpAddressOperFreeIpAddressListEntry.setDescription('An entry in the mscExampleIpAddressOperFreeIpAddressListTable.')
msc_example_ip_address_oper_free_ip_address_list_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1063, 1, 1), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleIpAddressOperFreeIpAddressListValue.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleIpAddressOperFreeIpAddressListValue.setDescription('This variable represents both the value and the index for the mscExampleIpAddressOperFreeIpAddressListTable.')
msc_example_ip_address_oper_free_ip_address_list_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1063, 1, 2), row_status()).setMaxAccess('writeonly')
if mibBuilder.loadTexts:
mscExampleIpAddressOperFreeIpAddressListRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleIpAddressOperFreeIpAddressListRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleIpAddressOperFreeIpAddressListTable.')
msc_example_ip_address_prov_struct_ip_address_vector_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1064))
if mibBuilder.loadTexts:
mscExampleIpAddressProvStructIpAddressVectorTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleIpAddressProvStructIpAddressVectorTable.setDescription('')
msc_example_ip_address_prov_struct_ip_address_vector_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1064, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIpAddressIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIpAddressProvStructIpAddressVectorIndex'))
if mibBuilder.loadTexts:
mscExampleIpAddressProvStructIpAddressVectorEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleIpAddressProvStructIpAddressVectorEntry.setDescription('An entry in the mscExampleIpAddressProvStructIpAddressVectorTable.')
msc_example_ip_address_prov_struct_ip_address_vector_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1064, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 9)))
if mibBuilder.loadTexts:
mscExampleIpAddressProvStructIpAddressVectorIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleIpAddressProvStructIpAddressVectorIndex.setDescription('This variable represents the mscExampleIpAddressProvStructIpAddressVectorTable specific index for the mscExampleIpAddressProvStructIpAddressVectorTable.')
msc_example_ip_address_prov_struct_ip_address_vector_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1064, 1, 2), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleIpAddressProvStructIpAddressVectorValue.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleIpAddressProvStructIpAddressVectorValue.setDescription('This variable represents an individual value for the mscExampleIpAddressProvStructIpAddressVectorTable.')
msc_example_ip_address_prov_struct_ip_address_array_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1065))
if mibBuilder.loadTexts:
mscExampleIpAddressProvStructIpAddressArrayTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleIpAddressProvStructIpAddressArrayTable.setDescription('')
msc_example_ip_address_prov_struct_ip_address_array_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1065, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIpAddressIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIpAddressProvStructIpAddressArrayRowIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIpAddressProvStructIpAddressArrayColumnIndex'))
if mibBuilder.loadTexts:
mscExampleIpAddressProvStructIpAddressArrayEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleIpAddressProvStructIpAddressArrayEntry.setDescription('An entry in the mscExampleIpAddressProvStructIpAddressArrayTable.')
msc_example_ip_address_prov_struct_ip_address_array_row_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1065, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 2)))
if mibBuilder.loadTexts:
mscExampleIpAddressProvStructIpAddressArrayRowIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleIpAddressProvStructIpAddressArrayRowIndex.setDescription('This variable represents the next to last index for the mscExampleIpAddressProvStructIpAddressArrayTable.')
msc_example_ip_address_prov_struct_ip_address_array_column_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1065, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 3)))
if mibBuilder.loadTexts:
mscExampleIpAddressProvStructIpAddressArrayColumnIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleIpAddressProvStructIpAddressArrayColumnIndex.setDescription('This variable represents the final index for the mscExampleIpAddressProvStructIpAddressArrayTable.')
msc_example_ip_address_prov_struct_ip_address_array_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1065, 1, 3), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleIpAddressProvStructIpAddressArrayValue.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleIpAddressProvStructIpAddressArrayValue.setDescription('This variable represents an individual value for the mscExampleIpAddressProvStructIpAddressArrayTable.')
msc_example_ip_address_prov_free_ip_address_vector_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1066))
if mibBuilder.loadTexts:
mscExampleIpAddressProvFreeIpAddressVectorTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleIpAddressProvFreeIpAddressVectorTable.setDescription('')
msc_example_ip_address_prov_free_ip_address_vector_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1066, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIpAddressIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIpAddressProvFreeIpAddressVectorIndex'))
if mibBuilder.loadTexts:
mscExampleIpAddressProvFreeIpAddressVectorEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleIpAddressProvFreeIpAddressVectorEntry.setDescription('An entry in the mscExampleIpAddressProvFreeIpAddressVectorTable.')
msc_example_ip_address_prov_free_ip_address_vector_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1066, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 9)))
if mibBuilder.loadTexts:
mscExampleIpAddressProvFreeIpAddressVectorIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleIpAddressProvFreeIpAddressVectorIndex.setDescription('This variable represents the mscExampleIpAddressProvFreeIpAddressVectorTable specific index for the mscExampleIpAddressProvFreeIpAddressVectorTable.')
msc_example_ip_address_prov_free_ip_address_vector_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1066, 1, 2), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleIpAddressProvFreeIpAddressVectorValue.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleIpAddressProvFreeIpAddressVectorValue.setDescription('This variable represents an individual value for the mscExampleIpAddressProvFreeIpAddressVectorTable.')
msc_example_ip_address_prov_free_ip_address_vector1_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1067))
if mibBuilder.loadTexts:
mscExampleIpAddressProvFreeIpAddressVector1Table.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleIpAddressProvFreeIpAddressVector1Table.setDescription('')
msc_example_ip_address_prov_free_ip_address_vector1_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1067, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIpAddressIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIpAddressProvFreeIpAddressVector1Index'))
if mibBuilder.loadTexts:
mscExampleIpAddressProvFreeIpAddressVector1Entry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleIpAddressProvFreeIpAddressVector1Entry.setDescription('An entry in the mscExampleIpAddressProvFreeIpAddressVector1Table.')
msc_example_ip_address_prov_free_ip_address_vector1_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1067, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 3)))
if mibBuilder.loadTexts:
mscExampleIpAddressProvFreeIpAddressVector1Index.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleIpAddressProvFreeIpAddressVector1Index.setDescription('This variable represents the mscExampleIpAddressProvFreeIpAddressVector1Table specific index for the mscExampleIpAddressProvFreeIpAddressVector1Table.')
msc_example_ip_address_prov_free_ip_address_vector1_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1067, 1, 2), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleIpAddressProvFreeIpAddressVector1Value.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleIpAddressProvFreeIpAddressVector1Value.setDescription('This variable represents an individual value for the mscExampleIpAddressProvFreeIpAddressVector1Table.')
msc_example_ip_address_prov_free_ip_address_array_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1068))
if mibBuilder.loadTexts:
mscExampleIpAddressProvFreeIpAddressArrayTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleIpAddressProvFreeIpAddressArrayTable.setDescription('')
msc_example_ip_address_prov_free_ip_address_array_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1068, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIpAddressIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIpAddressProvFreeIpAddressArrayRowIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIpAddressProvFreeIpAddressArrayColumnIndex'))
if mibBuilder.loadTexts:
mscExampleIpAddressProvFreeIpAddressArrayEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleIpAddressProvFreeIpAddressArrayEntry.setDescription('An entry in the mscExampleIpAddressProvFreeIpAddressArrayTable.')
msc_example_ip_address_prov_free_ip_address_array_row_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1068, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 2)))
if mibBuilder.loadTexts:
mscExampleIpAddressProvFreeIpAddressArrayRowIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleIpAddressProvFreeIpAddressArrayRowIndex.setDescription('This variable represents the next to last index for the mscExampleIpAddressProvFreeIpAddressArrayTable.')
msc_example_ip_address_prov_free_ip_address_array_column_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1068, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 3)))
if mibBuilder.loadTexts:
mscExampleIpAddressProvFreeIpAddressArrayColumnIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleIpAddressProvFreeIpAddressArrayColumnIndex.setDescription('This variable represents the final index for the mscExampleIpAddressProvFreeIpAddressArrayTable.')
msc_example_ip_address_prov_free_ip_address_array_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1068, 1, 3), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleIpAddressProvFreeIpAddressArrayValue.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleIpAddressProvFreeIpAddressArrayValue.setDescription('This variable represents an individual value for the mscExampleIpAddressProvFreeIpAddressArrayTable.')
msc_example_ip_address_prov_free_ip_address_array1_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1069))
if mibBuilder.loadTexts:
mscExampleIpAddressProvFreeIpAddressArray1Table.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleIpAddressProvFreeIpAddressArray1Table.setDescription('')
msc_example_ip_address_prov_free_ip_address_array1_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1069, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIpAddressIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIpAddressProvFreeIpAddressArray1RowIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIpAddressProvFreeIpAddressArray1ColumnIndex'))
if mibBuilder.loadTexts:
mscExampleIpAddressProvFreeIpAddressArray1Entry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleIpAddressProvFreeIpAddressArray1Entry.setDescription('An entry in the mscExampleIpAddressProvFreeIpAddressArray1Table.')
msc_example_ip_address_prov_free_ip_address_array1_row_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1069, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 3)))
if mibBuilder.loadTexts:
mscExampleIpAddressProvFreeIpAddressArray1RowIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleIpAddressProvFreeIpAddressArray1RowIndex.setDescription('This variable represents the next to last index for the mscExampleIpAddressProvFreeIpAddressArray1Table.')
msc_example_ip_address_prov_free_ip_address_array1_column_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1069, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 3)))
if mibBuilder.loadTexts:
mscExampleIpAddressProvFreeIpAddressArray1ColumnIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleIpAddressProvFreeIpAddressArray1ColumnIndex.setDescription('This variable represents the final index for the mscExampleIpAddressProvFreeIpAddressArray1Table.')
msc_example_ip_address_prov_free_ip_address_array1_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1069, 1, 3), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleIpAddressProvFreeIpAddressArray1Value.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleIpAddressProvFreeIpAddressArray1Value.setDescription('This variable represents an individual value for the mscExampleIpAddressProvFreeIpAddressArray1Table.')
msc_example_ip_address_prov_free_ip_address_replicated_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1070))
if mibBuilder.loadTexts:
mscExampleIpAddressProvFreeIpAddressReplicatedTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleIpAddressProvFreeIpAddressReplicatedTable.setDescription('')
msc_example_ip_address_prov_free_ip_address_replicated_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1070, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIpAddressIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIpAddressProvFreeIpAddressReplicatedIndex'))
if mibBuilder.loadTexts:
mscExampleIpAddressProvFreeIpAddressReplicatedEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleIpAddressProvFreeIpAddressReplicatedEntry.setDescription('An entry in the mscExampleIpAddressProvFreeIpAddressReplicatedTable.')
msc_example_ip_address_prov_free_ip_address_replicated_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1070, 1, 1), ip_address())
if mibBuilder.loadTexts:
mscExampleIpAddressProvFreeIpAddressReplicatedIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleIpAddressProvFreeIpAddressReplicatedIndex.setDescription('This variable represents the index for the mscExampleIpAddressProvFreeIpAddressReplicatedTable.')
msc_example_ip_address_prov_free_ip_address_replicated_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1070, 1, 2), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleIpAddressProvFreeIpAddressReplicatedValue.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleIpAddressProvFreeIpAddressReplicatedValue.setDescription('This variable represents an individual value for the mscExampleIpAddressProvFreeIpAddressReplicatedTable.')
msc_example_ip_address_prov_free_ip_address_replicated_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1070, 1, 3), row_status()).setMaxAccess('writeonly')
if mibBuilder.loadTexts:
mscExampleIpAddressProvFreeIpAddressReplicatedRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleIpAddressProvFreeIpAddressReplicatedRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleIpAddressProvFreeIpAddressReplicatedTable.')
msc_example_ip_address_prov_free_ip_address_list_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1071))
if mibBuilder.loadTexts:
mscExampleIpAddressProvFreeIpAddressListTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleIpAddressProvFreeIpAddressListTable.setDescription('')
msc_example_ip_address_prov_free_ip_address_list_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1071, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIpAddressIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIpAddressProvFreeIpAddressListValue'))
if mibBuilder.loadTexts:
mscExampleIpAddressProvFreeIpAddressListEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleIpAddressProvFreeIpAddressListEntry.setDescription('An entry in the mscExampleIpAddressProvFreeIpAddressListTable.')
msc_example_ip_address_prov_free_ip_address_list_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1071, 1, 1), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleIpAddressProvFreeIpAddressListValue.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleIpAddressProvFreeIpAddressListValue.setDescription('This variable represents both the value and the index for the mscExampleIpAddressProvFreeIpAddressListTable.')
msc_example_ip_address_prov_free_ip_address_list_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1071, 1, 2), row_status()).setMaxAccess('writeonly')
if mibBuilder.loadTexts:
mscExampleIpAddressProvFreeIpAddressListRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleIpAddressProvFreeIpAddressListRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleIpAddressProvFreeIpAddressListTable.')
msc_example_ip_address_prov_free_ip_address_list1_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1072))
if mibBuilder.loadTexts:
mscExampleIpAddressProvFreeIpAddressList1Table.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleIpAddressProvFreeIpAddressList1Table.setDescription('')
msc_example_ip_address_prov_free_ip_address_list1_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1072, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIpAddressIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIpAddressProvFreeIpAddressList1Value'))
if mibBuilder.loadTexts:
mscExampleIpAddressProvFreeIpAddressList1Entry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleIpAddressProvFreeIpAddressList1Entry.setDescription('An entry in the mscExampleIpAddressProvFreeIpAddressList1Table.')
msc_example_ip_address_prov_free_ip_address_list1_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1072, 1, 1), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleIpAddressProvFreeIpAddressList1Value.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleIpAddressProvFreeIpAddressList1Value.setDescription('This variable represents both the value and the index for the mscExampleIpAddressProvFreeIpAddressList1Table.')
msc_example_ip_address_prov_free_ip_address_list1_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1072, 1, 2), row_status()).setMaxAccess('writeonly')
if mibBuilder.loadTexts:
mscExampleIpAddressProvFreeIpAddressList1RowStatus.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleIpAddressProvFreeIpAddressList1RowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleIpAddressProvFreeIpAddressList1Table.')
msc_example_string = mib_identifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5))
msc_example_string_row_status_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1))
if mibBuilder.loadTexts:
mscExampleStringRowStatusTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleStringRowStatusTable.setDescription('This entry controls the addition and deletion of mscExampleString components.')
msc_example_string_row_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleStringIndex'))
if mibBuilder.loadTexts:
mscExampleStringRowStatusEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleStringRowStatusEntry.setDescription('A single entry in the table represents a single mscExampleString component.')
msc_example_string_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1, 1, 1), row_status()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleStringRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleStringRowStatus.setDescription('This variable is used as the basis for SNMP naming of mscExampleString components. These components can be added and deleted.')
msc_example_string_component_name = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1, 1, 2), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mscExampleStringComponentName.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleStringComponentName.setDescription("This variable provides the component's string name for use with the ASCII Console Interface")
msc_example_string_storage_type = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1, 1, 4), storage_type()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mscExampleStringStorageType.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleStringStorageType.setDescription('This variable represents the storage type value for the mscExampleString tables.')
msc_example_string_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1, 1, 10), ascii_string_index().subtype(subtypeSpec=value_size_constraint(1, 10)))
if mibBuilder.loadTexts:
mscExampleStringIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleStringIndex.setDescription('This variable represents the index for the mscExampleString tables.')
msc_example_string_operational_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 10))
if mibBuilder.loadTexts:
mscExampleStringOperationalTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleStringOperationalTable.setDescription('')
msc_example_string_operational_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 10, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleStringIndex'))
if mibBuilder.loadTexts:
mscExampleStringOperationalEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleStringOperationalEntry.setDescription('An entry in the mscExampleStringOperationalTable.')
msc_example_string_oper_struct_ascii_only = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 10, 1, 1), ascii_string().subtype(subtypeSpec=value_size_constraint(0, 5))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleStringOperStructAsciiOnly.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleStringOperStructAsciiOnly.setDescription('')
msc_example_string_oper_struct_hex_only = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 10, 1, 2), hex_string().subtype(subtypeSpec=value_size_constraint(1, 10))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleStringOperStructHexOnly.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleStringOperStructHexOnly.setDescription('')
msc_example_string_oper_free_ascii_only = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 10, 1, 3), ascii_string().subtype(subtypeSpec=value_size_constraint(0, 5))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleStringOperFreeAsciiOnly.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleStringOperFreeAsciiOnly.setDescription('')
msc_example_string_oper_free_hex_only = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 10, 1, 4), hex_string().subtype(subtypeSpec=value_size_constraint(1, 10))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleStringOperFreeHexOnly.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleStringOperFreeHexOnly.setDescription('')
msc_example_string_provisional_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 11))
if mibBuilder.loadTexts:
mscExampleStringProvisionalTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleStringProvisionalTable.setDescription('')
msc_example_string_provisional_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 11, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleStringIndex'))
if mibBuilder.loadTexts:
mscExampleStringProvisionalEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleStringProvisionalEntry.setDescription('An entry in the mscExampleStringProvisionalTable.')
msc_example_string_prov_string_sub = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 11, 1, 1), link()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleStringProvStringSub.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleStringProvStringSub.setDescription('')
msc_example_string_prov_struct_ascii_only = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 11, 1, 2), ascii_string().subtype(subtypeSpec=value_size_constraint(2, 4)).clone(hexValue='596f2e')).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleStringProvStructAsciiOnly.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleStringProvStructAsciiOnly.setDescription('')
msc_example_string_prov_struct_hex_only = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 11, 1, 3), hex_string().subtype(subtypeSpec=value_size_constraint(1, 10))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleStringProvStructHexOnly.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleStringProvStructHexOnly.setDescription('')
msc_example_string_prov_free_ascii_only = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 11, 1, 4), ascii_string().subtype(subtypeSpec=value_size_constraint(0, 59)).clone(hexValue='46726565205374616e64696e6720537472696e6720212121')).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleStringProvFreeAsciiOnly.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleStringProvFreeAsciiOnly.setDescription('')
msc_example_string_prov_free_ascii_only1 = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 11, 1, 5), ascii_string().subtype(subtypeSpec=value_size_constraint(0, 5))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleStringProvFreeAsciiOnly1.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleStringProvFreeAsciiOnly1.setDescription('')
msc_example_string_prov_free_hex_only = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 11, 1, 6), hex_string().subtype(subtypeSpec=value_size_constraint(1, 10)).clone(hexValue='0102030405060708090A')).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleStringProvFreeHexOnly.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleStringProvFreeHexOnly.setDescription('')
msc_example_string_prov_free_hex_only1 = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 11, 1, 7), hex_string().subtype(subtypeSpec=value_size_constraint(0, 10))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleStringProvFreeHexOnly1.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleStringProvFreeHexOnly1.setDescription('')
msc_example_string_oper_struct_str_vector_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1073))
if mibBuilder.loadTexts:
mscExampleStringOperStructStrVectorTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleStringOperStructStrVectorTable.setDescription('')
msc_example_string_oper_struct_str_vector_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1073, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleStringIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleStringOperStructStrVectorIndex'))
if mibBuilder.loadTexts:
mscExampleStringOperStructStrVectorEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleStringOperStructStrVectorEntry.setDescription('An entry in the mscExampleStringOperStructStrVectorTable.')
msc_example_string_oper_struct_str_vector_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1073, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 9)))
if mibBuilder.loadTexts:
mscExampleStringOperStructStrVectorIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleStringOperStructStrVectorIndex.setDescription('This variable represents the mscExampleStringOperStructStrVectorTable specific index for the mscExampleStringOperStructStrVectorTable.')
msc_example_string_oper_struct_str_vector_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1073, 1, 2), ascii_string().subtype(subtypeSpec=value_size_constraint(0, 5))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleStringOperStructStrVectorValue.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleStringOperStructStrVectorValue.setDescription('This variable represents an individual value for the mscExampleStringOperStructStrVectorTable.')
msc_example_string_oper_struct_str_array_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1074))
if mibBuilder.loadTexts:
mscExampleStringOperStructStrArrayTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleStringOperStructStrArrayTable.setDescription('')
msc_example_string_oper_struct_str_array_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1074, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleStringIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleStringOperStructStrArrayRowIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleStringOperStructStrArrayColumnIndex'))
if mibBuilder.loadTexts:
mscExampleStringOperStructStrArrayEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleStringOperStructStrArrayEntry.setDescription('An entry in the mscExampleStringOperStructStrArrayTable.')
msc_example_string_oper_struct_str_array_row_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1074, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 2)))
if mibBuilder.loadTexts:
mscExampleStringOperStructStrArrayRowIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleStringOperStructStrArrayRowIndex.setDescription('This variable represents the next to last index for the mscExampleStringOperStructStrArrayTable.')
msc_example_string_oper_struct_str_array_column_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1074, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 3)))
if mibBuilder.loadTexts:
mscExampleStringOperStructStrArrayColumnIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleStringOperStructStrArrayColumnIndex.setDescription('This variable represents the final index for the mscExampleStringOperStructStrArrayTable.')
msc_example_string_oper_struct_str_array_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1074, 1, 3), ascii_string().subtype(subtypeSpec=value_size_constraint(0, 5))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleStringOperStructStrArrayValue.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleStringOperStructStrArrayValue.setDescription('This variable represents an individual value for the mscExampleStringOperStructStrArrayTable.')
msc_example_string_oper_free_str_vector_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1075))
if mibBuilder.loadTexts:
mscExampleStringOperFreeStrVectorTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleStringOperFreeStrVectorTable.setDescription('')
msc_example_string_oper_free_str_vector_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1075, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleStringIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleStringOperFreeStrVectorIndex'))
if mibBuilder.loadTexts:
mscExampleStringOperFreeStrVectorEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleStringOperFreeStrVectorEntry.setDescription('An entry in the mscExampleStringOperFreeStrVectorTable.')
msc_example_string_oper_free_str_vector_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1075, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 9)))
if mibBuilder.loadTexts:
mscExampleStringOperFreeStrVectorIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleStringOperFreeStrVectorIndex.setDescription('This variable represents the mscExampleStringOperFreeStrVectorTable specific index for the mscExampleStringOperFreeStrVectorTable.')
msc_example_string_oper_free_str_vector_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1075, 1, 2), ascii_string().subtype(subtypeSpec=value_size_constraint(0, 5))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleStringOperFreeStrVectorValue.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleStringOperFreeStrVectorValue.setDescription('This variable represents an individual value for the mscExampleStringOperFreeStrVectorTable.')
msc_example_string_oper_free_str_array_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1076))
if mibBuilder.loadTexts:
mscExampleStringOperFreeStrArrayTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleStringOperFreeStrArrayTable.setDescription('')
msc_example_string_oper_free_str_array_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1076, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleStringIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleStringOperFreeStrArrayRowIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleStringOperFreeStrArrayColumnIndex'))
if mibBuilder.loadTexts:
mscExampleStringOperFreeStrArrayEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleStringOperFreeStrArrayEntry.setDescription('An entry in the mscExampleStringOperFreeStrArrayTable.')
msc_example_string_oper_free_str_array_row_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1076, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 2)))
if mibBuilder.loadTexts:
mscExampleStringOperFreeStrArrayRowIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleStringOperFreeStrArrayRowIndex.setDescription('This variable represents the next to last index for the mscExampleStringOperFreeStrArrayTable.')
msc_example_string_oper_free_str_array_column_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1076, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 3)))
if mibBuilder.loadTexts:
mscExampleStringOperFreeStrArrayColumnIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleStringOperFreeStrArrayColumnIndex.setDescription('This variable represents the final index for the mscExampleStringOperFreeStrArrayTable.')
msc_example_string_oper_free_str_array_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1076, 1, 3), ascii_string().subtype(subtypeSpec=value_size_constraint(0, 5))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleStringOperFreeStrArrayValue.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleStringOperFreeStrArrayValue.setDescription('This variable represents an individual value for the mscExampleStringOperFreeStrArrayTable.')
msc_example_string_oper_free_str_replicated_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1077))
if mibBuilder.loadTexts:
mscExampleStringOperFreeStrReplicatedTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleStringOperFreeStrReplicatedTable.setDescription('')
msc_example_string_oper_free_str_replicated_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1077, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleStringIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleStringOperFreeStrReplicatedIndex'))
if mibBuilder.loadTexts:
mscExampleStringOperFreeStrReplicatedEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleStringOperFreeStrReplicatedEntry.setDescription('An entry in the mscExampleStringOperFreeStrReplicatedTable.')
msc_example_string_oper_free_str_replicated_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1077, 1, 1), ascii_string().subtype(subtypeSpec=value_size_constraint(0, 5)))
if mibBuilder.loadTexts:
mscExampleStringOperFreeStrReplicatedIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleStringOperFreeStrReplicatedIndex.setDescription('This variable represents the index for the mscExampleStringOperFreeStrReplicatedTable.')
msc_example_string_oper_free_str_replicated_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1077, 1, 2), ascii_string().subtype(subtypeSpec=value_size_constraint(0, 5))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleStringOperFreeStrReplicatedValue.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleStringOperFreeStrReplicatedValue.setDescription('This variable represents an individual value for the mscExampleStringOperFreeStrReplicatedTable.')
msc_example_string_oper_free_str_replicated_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1077, 1, 3), row_status()).setMaxAccess('writeonly')
if mibBuilder.loadTexts:
mscExampleStringOperFreeStrReplicatedRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleStringOperFreeStrReplicatedRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleStringOperFreeStrReplicatedTable.')
msc_example_string_oper_free_str_list_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1078))
if mibBuilder.loadTexts:
mscExampleStringOperFreeStrListTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleStringOperFreeStrListTable.setDescription('')
msc_example_string_oper_free_str_list_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1078, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleStringIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleStringOperFreeStrListValue'))
if mibBuilder.loadTexts:
mscExampleStringOperFreeStrListEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleStringOperFreeStrListEntry.setDescription('An entry in the mscExampleStringOperFreeStrListTable.')
msc_example_string_oper_free_str_list_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1078, 1, 1), ascii_string().subtype(subtypeSpec=value_size_constraint(0, 10))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleStringOperFreeStrListValue.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleStringOperFreeStrListValue.setDescription('This variable represents both the value and the index for the mscExampleStringOperFreeStrListTable.')
msc_example_string_oper_free_str_list_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1078, 1, 2), row_status()).setMaxAccess('writeonly')
if mibBuilder.loadTexts:
mscExampleStringOperFreeStrListRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleStringOperFreeStrListRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleStringOperFreeStrListTable.')
msc_example_string_prov_struct_str_vector_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1079))
if mibBuilder.loadTexts:
mscExampleStringProvStructStrVectorTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleStringProvStructStrVectorTable.setDescription('')
msc_example_string_prov_struct_str_vector_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1079, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleStringIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleStringProvStructStrVectorIndex'))
if mibBuilder.loadTexts:
mscExampleStringProvStructStrVectorEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleStringProvStructStrVectorEntry.setDescription('An entry in the mscExampleStringProvStructStrVectorTable.')
msc_example_string_prov_struct_str_vector_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1079, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 9)))
if mibBuilder.loadTexts:
mscExampleStringProvStructStrVectorIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleStringProvStructStrVectorIndex.setDescription('This variable represents the mscExampleStringProvStructStrVectorTable specific index for the mscExampleStringProvStructStrVectorTable.')
msc_example_string_prov_struct_str_vector_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1079, 1, 2), ascii_string().subtype(subtypeSpec=value_size_constraint(0, 5))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleStringProvStructStrVectorValue.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleStringProvStructStrVectorValue.setDescription('This variable represents an individual value for the mscExampleStringProvStructStrVectorTable.')
msc_example_string_prov_struct_str_array_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1080))
if mibBuilder.loadTexts:
mscExampleStringProvStructStrArrayTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleStringProvStructStrArrayTable.setDescription('')
msc_example_string_prov_struct_str_array_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1080, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleStringIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleStringProvStructStrArrayRowIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleStringProvStructStrArrayColumnIndex'))
if mibBuilder.loadTexts:
mscExampleStringProvStructStrArrayEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleStringProvStructStrArrayEntry.setDescription('An entry in the mscExampleStringProvStructStrArrayTable.')
msc_example_string_prov_struct_str_array_row_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1080, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 2)))
if mibBuilder.loadTexts:
mscExampleStringProvStructStrArrayRowIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleStringProvStructStrArrayRowIndex.setDescription('This variable represents the next to last index for the mscExampleStringProvStructStrArrayTable.')
msc_example_string_prov_struct_str_array_column_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1080, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 3)))
if mibBuilder.loadTexts:
mscExampleStringProvStructStrArrayColumnIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleStringProvStructStrArrayColumnIndex.setDescription('This variable represents the final index for the mscExampleStringProvStructStrArrayTable.')
msc_example_string_prov_struct_str_array_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1080, 1, 3), ascii_string().subtype(subtypeSpec=value_size_constraint(0, 5))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleStringProvStructStrArrayValue.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleStringProvStructStrArrayValue.setDescription('This variable represents an individual value for the mscExampleStringProvStructStrArrayTable.')
msc_example_string_prov_free_str_vector_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1081))
if mibBuilder.loadTexts:
mscExampleStringProvFreeStrVectorTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleStringProvFreeStrVectorTable.setDescription('')
msc_example_string_prov_free_str_vector_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1081, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleStringIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleStringProvFreeStrVectorIndex'))
if mibBuilder.loadTexts:
mscExampleStringProvFreeStrVectorEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleStringProvFreeStrVectorEntry.setDescription('An entry in the mscExampleStringProvFreeStrVectorTable.')
msc_example_string_prov_free_str_vector_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1081, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 9)))
if mibBuilder.loadTexts:
mscExampleStringProvFreeStrVectorIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleStringProvFreeStrVectorIndex.setDescription('This variable represents the mscExampleStringProvFreeStrVectorTable specific index for the mscExampleStringProvFreeStrVectorTable.')
msc_example_string_prov_free_str_vector_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1081, 1, 2), ascii_string().subtype(subtypeSpec=value_size_constraint(0, 5))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleStringProvFreeStrVectorValue.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleStringProvFreeStrVectorValue.setDescription('This variable represents an individual value for the mscExampleStringProvFreeStrVectorTable.')
msc_example_string_prov_free_str_vector1_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1082))
if mibBuilder.loadTexts:
mscExampleStringProvFreeStrVector1Table.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleStringProvFreeStrVector1Table.setDescription('')
msc_example_string_prov_free_str_vector1_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1082, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleStringIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleStringProvFreeStrVector1Index'))
if mibBuilder.loadTexts:
mscExampleStringProvFreeStrVector1Entry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleStringProvFreeStrVector1Entry.setDescription('An entry in the mscExampleStringProvFreeStrVector1Table.')
msc_example_string_prov_free_str_vector1_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1082, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 5)))
if mibBuilder.loadTexts:
mscExampleStringProvFreeStrVector1Index.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleStringProvFreeStrVector1Index.setDescription('This variable represents the mscExampleStringProvFreeStrVector1Table specific index for the mscExampleStringProvFreeStrVector1Table.')
msc_example_string_prov_free_str_vector1_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1082, 1, 2), ascii_string().subtype(subtypeSpec=value_size_constraint(0, 5))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleStringProvFreeStrVector1Value.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleStringProvFreeStrVector1Value.setDescription('This variable represents an individual value for the mscExampleStringProvFreeStrVector1Table.')
msc_example_string_prov_free_str_array_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1083))
if mibBuilder.loadTexts:
mscExampleStringProvFreeStrArrayTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleStringProvFreeStrArrayTable.setDescription('')
msc_example_string_prov_free_str_array_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1083, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleStringIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleStringProvFreeStrArrayRowIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleStringProvFreeStrArrayColumnIndex'))
if mibBuilder.loadTexts:
mscExampleStringProvFreeStrArrayEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleStringProvFreeStrArrayEntry.setDescription('An entry in the mscExampleStringProvFreeStrArrayTable.')
msc_example_string_prov_free_str_array_row_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1083, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 2)))
if mibBuilder.loadTexts:
mscExampleStringProvFreeStrArrayRowIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleStringProvFreeStrArrayRowIndex.setDescription('This variable represents the next to last index for the mscExampleStringProvFreeStrArrayTable.')
msc_example_string_prov_free_str_array_column_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1083, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 3)))
if mibBuilder.loadTexts:
mscExampleStringProvFreeStrArrayColumnIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleStringProvFreeStrArrayColumnIndex.setDescription('This variable represents the final index for the mscExampleStringProvFreeStrArrayTable.')
msc_example_string_prov_free_str_array_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1083, 1, 3), ascii_string().subtype(subtypeSpec=value_size_constraint(0, 5))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleStringProvFreeStrArrayValue.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleStringProvFreeStrArrayValue.setDescription('This variable represents an individual value for the mscExampleStringProvFreeStrArrayTable.')
msc_example_string_prov_free_str_array1_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1084))
if mibBuilder.loadTexts:
mscExampleStringProvFreeStrArray1Table.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleStringProvFreeStrArray1Table.setDescription('')
msc_example_string_prov_free_str_array1_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1084, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleStringIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleStringProvFreeStrArray1RowIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleStringProvFreeStrArray1ColumnIndex'))
if mibBuilder.loadTexts:
mscExampleStringProvFreeStrArray1Entry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleStringProvFreeStrArray1Entry.setDescription('An entry in the mscExampleStringProvFreeStrArray1Table.')
msc_example_string_prov_free_str_array1_row_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1084, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 4)))
if mibBuilder.loadTexts:
mscExampleStringProvFreeStrArray1RowIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleStringProvFreeStrArray1RowIndex.setDescription('This variable represents the next to last index for the mscExampleStringProvFreeStrArray1Table.')
msc_example_string_prov_free_str_array1_column_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1084, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 3)))
if mibBuilder.loadTexts:
mscExampleStringProvFreeStrArray1ColumnIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleStringProvFreeStrArray1ColumnIndex.setDescription('This variable represents the final index for the mscExampleStringProvFreeStrArray1Table.')
msc_example_string_prov_free_str_array1_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1084, 1, 3), ascii_string().subtype(subtypeSpec=value_size_constraint(0, 5))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleStringProvFreeStrArray1Value.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleStringProvFreeStrArray1Value.setDescription('This variable represents an individual value for the mscExampleStringProvFreeStrArray1Table.')
msc_example_string_prov_free_str_replicated_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1085))
if mibBuilder.loadTexts:
mscExampleStringProvFreeStrReplicatedTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleStringProvFreeStrReplicatedTable.setDescription('')
msc_example_string_prov_free_str_replicated_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1085, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleStringIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleStringProvFreeStrReplicatedIndex'))
if mibBuilder.loadTexts:
mscExampleStringProvFreeStrReplicatedEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleStringProvFreeStrReplicatedEntry.setDescription('An entry in the mscExampleStringProvFreeStrReplicatedTable.')
msc_example_string_prov_free_str_replicated_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1085, 1, 1), ascii_string().subtype(subtypeSpec=value_size_constraint(0, 5)))
if mibBuilder.loadTexts:
mscExampleStringProvFreeStrReplicatedIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleStringProvFreeStrReplicatedIndex.setDescription('This variable represents the index for the mscExampleStringProvFreeStrReplicatedTable.')
msc_example_string_prov_free_str_replicated_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1085, 1, 2), ascii_string().subtype(subtypeSpec=value_size_constraint(0, 5))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleStringProvFreeStrReplicatedValue.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleStringProvFreeStrReplicatedValue.setDescription('This variable represents an individual value for the mscExampleStringProvFreeStrReplicatedTable.')
msc_example_string_prov_free_str_replicated_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1085, 1, 3), row_status()).setMaxAccess('writeonly')
if mibBuilder.loadTexts:
mscExampleStringProvFreeStrReplicatedRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleStringProvFreeStrReplicatedRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleStringProvFreeStrReplicatedTable.')
msc_example_string_prov_free_str_list_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1086))
if mibBuilder.loadTexts:
mscExampleStringProvFreeStrListTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleStringProvFreeStrListTable.setDescription('')
msc_example_string_prov_free_str_list_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1086, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleStringIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleStringProvFreeStrListValue'))
if mibBuilder.loadTexts:
mscExampleStringProvFreeStrListEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleStringProvFreeStrListEntry.setDescription('An entry in the mscExampleStringProvFreeStrListTable.')
msc_example_string_prov_free_str_list_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1086, 1, 1), ascii_string().subtype(subtypeSpec=value_size_constraint(0, 10))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleStringProvFreeStrListValue.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleStringProvFreeStrListValue.setDescription('This variable represents both the value and the index for the mscExampleStringProvFreeStrListTable.')
msc_example_string_prov_free_str_list_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1086, 1, 2), row_status()).setMaxAccess('writeonly')
if mibBuilder.loadTexts:
mscExampleStringProvFreeStrListRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleStringProvFreeStrListRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleStringProvFreeStrListTable.')
msc_example_string_prov_free_str_list1_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1087))
if mibBuilder.loadTexts:
mscExampleStringProvFreeStrList1Table.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleStringProvFreeStrList1Table.setDescription('')
msc_example_string_prov_free_str_list1_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1087, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleStringIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleStringProvFreeStrList1Value'))
if mibBuilder.loadTexts:
mscExampleStringProvFreeStrList1Entry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleStringProvFreeStrList1Entry.setDescription('An entry in the mscExampleStringProvFreeStrList1Table.')
msc_example_string_prov_free_str_list1_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1087, 1, 1), ascii_string().subtype(subtypeSpec=value_size_constraint(0, 10))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleStringProvFreeStrList1Value.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleStringProvFreeStrList1Value.setDescription('This variable represents both the value and the index for the mscExampleStringProvFreeStrList1Table.')
msc_example_string_prov_free_str_list1_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1087, 1, 2), row_status()).setMaxAccess('writeonly')
if mibBuilder.loadTexts:
mscExampleStringProvFreeStrList1RowStatus.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleStringProvFreeStrList1RowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleStringProvFreeStrList1Table.')
msc_example_fixed_pt = mib_identifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6))
msc_example_fixed_pt_row_status_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1))
if mibBuilder.loadTexts:
mscExampleFixedPtRowStatusTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleFixedPtRowStatusTable.setDescription('This entry controls the addition and deletion of mscExampleFixedPt components.')
msc_example_fixed_pt_row_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleFixedPtIndex'))
if mibBuilder.loadTexts:
mscExampleFixedPtRowStatusEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleFixedPtRowStatusEntry.setDescription('A single entry in the table represents a single mscExampleFixedPt component.')
msc_example_fixed_pt_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1, 1, 1), row_status()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleFixedPtRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleFixedPtRowStatus.setDescription('This variable is used as the basis for SNMP naming of mscExampleFixedPt components. These components can be added and deleted.')
msc_example_fixed_pt_component_name = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1, 1, 2), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mscExampleFixedPtComponentName.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleFixedPtComponentName.setDescription("This variable provides the component's string name for use with the ASCII Console Interface")
msc_example_fixed_pt_storage_type = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1, 1, 4), storage_type()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mscExampleFixedPtStorageType.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleFixedPtStorageType.setDescription('This variable represents the storage type value for the mscExampleFixedPt tables.')
msc_example_fixed_pt_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1, 1, 10), non_replicated())
if mibBuilder.loadTexts:
mscExampleFixedPtIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleFixedPtIndex.setDescription('This variable represents the index for the mscExampleFixedPt tables.')
msc_example_fixed_pt_operational_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 10))
if mibBuilder.loadTexts:
mscExampleFixedPtOperationalTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleFixedPtOperationalTable.setDescription('')
msc_example_fixed_pt_operational_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 10, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleFixedPtIndex'))
if mibBuilder.loadTexts:
mscExampleFixedPtOperationalEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleFixedPtOperationalEntry.setDescription('An entry in the mscExampleFixedPtOperationalTable.')
msc_example_fixed_pt_oper_struct_fixed_pt = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 10, 1, 1), fixed_point4().subtype(subtypeSpec=value_range_constraint(100, 2553300))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleFixedPtOperStructFixedPt.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleFixedPtOperStructFixedPt.setDescription('')
msc_example_fixed_pt_oper_free_fixed_pt = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 10, 1, 2), fixed_point2().subtype(subtypeSpec=constraints_union(value_range_constraint(0, 1099), value_range_constraint(10001, 20000)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleFixedPtOperFreeFixedPt.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleFixedPtOperFreeFixedPt.setDescription('')
msc_example_fixed_pt_oper_free_fixed_pt_set = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 10, 1, 3), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleFixedPtOperFreeFixedPtSet.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleFixedPtOperFreeFixedPtSet.setDescription('Description of bits: n0(0) n1(1) n2(2) n3(3) n4(4) n5(5) n6(6) n7(7) n8(8) n9(9) n10(10) n11(11) n12(12) n13(13) n14(14) n15(15) n16(16) n17(17) n18(18) n19(19) n20(20) n21(21) n22(22) n23(23) n24(24) n25(25) n26(26) n27(27) n28(28) n29(29) n30(30)')
msc_example_fixed_pt_provisional_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 11))
if mibBuilder.loadTexts:
mscExampleFixedPtProvisionalTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleFixedPtProvisionalTable.setDescription('')
msc_example_fixed_pt_provisional_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 11, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleFixedPtIndex'))
if mibBuilder.loadTexts:
mscExampleFixedPtProvisionalEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleFixedPtProvisionalEntry.setDescription('An entry in the mscExampleFixedPtProvisionalTable.')
msc_example_fixed_pt_prov_fixed_pt_subcomponent = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 11, 1, 1), link()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleFixedPtProvFixedPtSubcomponent.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleFixedPtProvFixedPtSubcomponent.setDescription('')
msc_example_fixed_pt_prov_struct_fixed_pt = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 11, 1, 2), fixed_point3().subtype(subtypeSpec=constraints_union(value_range_constraint(0, 252000), value_range_constraint(253000, 253000), value_range_constraint(254000, 254000), value_range_constraint(255000, 255000))).clone(253000)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleFixedPtProvStructFixedPt.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleFixedPtProvStructFixedPt.setDescription('VALUES ( 253000 = infinity 254000 = notApplicable 255000 = notMeasured )')
msc_example_fixed_pt_prov_struct_fixed_pt_set = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 11, 1, 3), octet_string().subtype(subtypeSpec=value_size_constraint(1, 1)).setFixedLength(1).clone(hexValue='c8')).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleFixedPtProvStructFixedPtSet.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleFixedPtProvStructFixedPtSet.setDescription('Description of bits: n0(0) n1(1) n2(2) n3(3) n4(4) n5(5)')
msc_example_fixed_pt_prov_free_fixed_pt = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 11, 1, 4), fixed_point2().subtype(subtypeSpec=constraints_union(value_range_constraint(0, 1099), value_range_constraint(10001, 20099))).clone(10101)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleFixedPtProvFreeFixedPt.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleFixedPtProvFreeFixedPt.setDescription('')
msc_example_fixed_pt_prov_free_fixed_pt_set = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 11, 1, 5), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4).clone(hexValue='05500002')).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleFixedPtProvFreeFixedPtSet.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleFixedPtProvFreeFixedPtSet.setDescription('Description of bits: n0(0) n1(1) n2(2) n3(3) n4(4) n5(5) n6(6) n7(7) n8(8) n9(9) n10(10) n11(11) n12(12) n13(13) n14(14) n15(15) n16(16) n17(17) n18(18) n19(19) n20(20) n21(21) n22(22) n23(23) n24(24) n25(25) n26(26) n27(27) n28(28) n29(29) n30(30)')
msc_example_fixed_pt_oper_struct_fixed_pt_vector_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1028))
if mibBuilder.loadTexts:
mscExampleFixedPtOperStructFixedPtVectorTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleFixedPtOperStructFixedPtVectorTable.setDescription('')
msc_example_fixed_pt_oper_struct_fixed_pt_vector_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1028, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleFixedPtIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleFixedPtOperStructFixedPtVectorIndex'))
if mibBuilder.loadTexts:
mscExampleFixedPtOperStructFixedPtVectorEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleFixedPtOperStructFixedPtVectorEntry.setDescription('An entry in the mscExampleFixedPtOperStructFixedPtVectorTable.')
msc_example_fixed_pt_oper_struct_fixed_pt_vector_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1028, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 9)))
if mibBuilder.loadTexts:
mscExampleFixedPtOperStructFixedPtVectorIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleFixedPtOperStructFixedPtVectorIndex.setDescription('This variable represents the mscExampleFixedPtOperStructFixedPtVectorTable specific index for the mscExampleFixedPtOperStructFixedPtVectorTable.')
msc_example_fixed_pt_oper_struct_fixed_pt_vector_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1028, 1, 2), fixed_point3().subtype(subtypeSpec=value_range_constraint(0, 100100))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleFixedPtOperStructFixedPtVectorValue.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleFixedPtOperStructFixedPtVectorValue.setDescription('This variable represents an individual value for the mscExampleFixedPtOperStructFixedPtVectorTable.')
msc_example_fixed_pt_oper_struct_fixed_pt_array_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1029))
if mibBuilder.loadTexts:
mscExampleFixedPtOperStructFixedPtArrayTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleFixedPtOperStructFixedPtArrayTable.setDescription('')
msc_example_fixed_pt_oper_struct_fixed_pt_array_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1029, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleFixedPtIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleFixedPtOperStructFixedPtArrayRowIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleFixedPtOperStructFixedPtArrayColumnIndex'))
if mibBuilder.loadTexts:
mscExampleFixedPtOperStructFixedPtArrayEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleFixedPtOperStructFixedPtArrayEntry.setDescription('An entry in the mscExampleFixedPtOperStructFixedPtArrayTable.')
msc_example_fixed_pt_oper_struct_fixed_pt_array_row_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1029, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 2)))
if mibBuilder.loadTexts:
mscExampleFixedPtOperStructFixedPtArrayRowIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleFixedPtOperStructFixedPtArrayRowIndex.setDescription('This variable represents the next to last index for the mscExampleFixedPtOperStructFixedPtArrayTable.')
msc_example_fixed_pt_oper_struct_fixed_pt_array_column_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1029, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 3)))
if mibBuilder.loadTexts:
mscExampleFixedPtOperStructFixedPtArrayColumnIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleFixedPtOperStructFixedPtArrayColumnIndex.setDescription('This variable represents the final index for the mscExampleFixedPtOperStructFixedPtArrayTable.')
msc_example_fixed_pt_oper_struct_fixed_pt_array_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1029, 1, 3), fixed_point3().subtype(subtypeSpec=value_range_constraint(80, 255880))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleFixedPtOperStructFixedPtArrayValue.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleFixedPtOperStructFixedPtArrayValue.setDescription('This variable represents an individual value for the mscExampleFixedPtOperStructFixedPtArrayTable.')
msc_example_fixed_pt_oper_free_fixed_pt_vector_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1030))
if mibBuilder.loadTexts:
mscExampleFixedPtOperFreeFixedPtVectorTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleFixedPtOperFreeFixedPtVectorTable.setDescription('')
msc_example_fixed_pt_oper_free_fixed_pt_vector_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1030, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleFixedPtIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleFixedPtOperFreeFixedPtVectorIndex'))
if mibBuilder.loadTexts:
mscExampleFixedPtOperFreeFixedPtVectorEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleFixedPtOperFreeFixedPtVectorEntry.setDescription('An entry in the mscExampleFixedPtOperFreeFixedPtVectorTable.')
msc_example_fixed_pt_oper_free_fixed_pt_vector_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1030, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 9)))
if mibBuilder.loadTexts:
mscExampleFixedPtOperFreeFixedPtVectorIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleFixedPtOperFreeFixedPtVectorIndex.setDescription('This variable represents the mscExampleFixedPtOperFreeFixedPtVectorTable specific index for the mscExampleFixedPtOperFreeFixedPtVectorTable.')
msc_example_fixed_pt_oper_free_fixed_pt_vector_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1030, 1, 2), fixed_point2().subtype(subtypeSpec=value_range_constraint(0, 10000))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleFixedPtOperFreeFixedPtVectorValue.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleFixedPtOperFreeFixedPtVectorValue.setDescription('This variable represents an individual value for the mscExampleFixedPtOperFreeFixedPtVectorTable.')
msc_example_fixed_pt_oper_free_fixed_pt_array_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1031))
if mibBuilder.loadTexts:
mscExampleFixedPtOperFreeFixedPtArrayTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleFixedPtOperFreeFixedPtArrayTable.setDescription('')
msc_example_fixed_pt_oper_free_fixed_pt_array_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1031, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleFixedPtIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleFixedPtOperFreeFixedPtArrayRowIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleFixedPtOperFreeFixedPtArrayColumnIndex'))
if mibBuilder.loadTexts:
mscExampleFixedPtOperFreeFixedPtArrayEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleFixedPtOperFreeFixedPtArrayEntry.setDescription('An entry in the mscExampleFixedPtOperFreeFixedPtArrayTable.')
msc_example_fixed_pt_oper_free_fixed_pt_array_row_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1031, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 2)))
if mibBuilder.loadTexts:
mscExampleFixedPtOperFreeFixedPtArrayRowIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleFixedPtOperFreeFixedPtArrayRowIndex.setDescription('This variable represents the next to last index for the mscExampleFixedPtOperFreeFixedPtArrayTable.')
msc_example_fixed_pt_oper_free_fixed_pt_array_column_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1031, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 3)))
if mibBuilder.loadTexts:
mscExampleFixedPtOperFreeFixedPtArrayColumnIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleFixedPtOperFreeFixedPtArrayColumnIndex.setDescription('This variable represents the final index for the mscExampleFixedPtOperFreeFixedPtArrayTable.')
msc_example_fixed_pt_oper_free_fixed_pt_array_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1031, 1, 3), fixed_point3().subtype(subtypeSpec=value_range_constraint(255, 255))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleFixedPtOperFreeFixedPtArrayValue.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleFixedPtOperFreeFixedPtArrayValue.setDescription('This variable represents an individual value for the mscExampleFixedPtOperFreeFixedPtArrayTable.')
msc_example_fixed_pt_oper_free_fixed_pt_replicated_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1032))
if mibBuilder.loadTexts:
mscExampleFixedPtOperFreeFixedPtReplicatedTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleFixedPtOperFreeFixedPtReplicatedTable.setDescription('')
msc_example_fixed_pt_oper_free_fixed_pt_replicated_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1032, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleFixedPtIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleFixedPtOperFreeFixedPtReplicatedIndex'))
if mibBuilder.loadTexts:
mscExampleFixedPtOperFreeFixedPtReplicatedEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleFixedPtOperFreeFixedPtReplicatedEntry.setDescription('An entry in the mscExampleFixedPtOperFreeFixedPtReplicatedTable.')
msc_example_fixed_pt_oper_free_fixed_pt_replicated_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1032, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 9)))
if mibBuilder.loadTexts:
mscExampleFixedPtOperFreeFixedPtReplicatedIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleFixedPtOperFreeFixedPtReplicatedIndex.setDescription('This variable represents the index for the mscExampleFixedPtOperFreeFixedPtReplicatedTable.')
msc_example_fixed_pt_oper_free_fixed_pt_replicated_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1032, 1, 2), fixed_point1().subtype(subtypeSpec=value_range_constraint(0, 655350))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleFixedPtOperFreeFixedPtReplicatedValue.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleFixedPtOperFreeFixedPtReplicatedValue.setDescription('This variable represents an individual value for the mscExampleFixedPtOperFreeFixedPtReplicatedTable.')
msc_example_fixed_pt_oper_free_fixed_pt_replicated_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1032, 1, 3), row_status()).setMaxAccess('writeonly')
if mibBuilder.loadTexts:
mscExampleFixedPtOperFreeFixedPtReplicatedRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleFixedPtOperFreeFixedPtReplicatedRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleFixedPtOperFreeFixedPtReplicatedTable.')
msc_example_fixed_pt_oper_free_fixed_pt_list_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1033))
if mibBuilder.loadTexts:
mscExampleFixedPtOperFreeFixedPtListTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleFixedPtOperFreeFixedPtListTable.setDescription('')
msc_example_fixed_pt_oper_free_fixed_pt_list_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1033, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleFixedPtIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleFixedPtOperFreeFixedPtListValue'))
if mibBuilder.loadTexts:
mscExampleFixedPtOperFreeFixedPtListEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleFixedPtOperFreeFixedPtListEntry.setDescription('An entry in the mscExampleFixedPtOperFreeFixedPtListTable.')
msc_example_fixed_pt_oper_free_fixed_pt_list_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1033, 1, 1), integer32().subtype(subtypeSpec=constraints_union(value_range_constraint(0, 100), value_range_constraint(10000, 20000)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleFixedPtOperFreeFixedPtListValue.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleFixedPtOperFreeFixedPtListValue.setDescription('This variable represents both the value and the index for the mscExampleFixedPtOperFreeFixedPtListTable.')
msc_example_fixed_pt_oper_free_fixed_pt_list_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1033, 1, 2), row_status()).setMaxAccess('writeonly')
if mibBuilder.loadTexts:
mscExampleFixedPtOperFreeFixedPtListRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleFixedPtOperFreeFixedPtListRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleFixedPtOperFreeFixedPtListTable.')
msc_example_fixed_pt_prov_struct_fixed_pt_vector_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1034))
if mibBuilder.loadTexts:
mscExampleFixedPtProvStructFixedPtVectorTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleFixedPtProvStructFixedPtVectorTable.setDescription('')
msc_example_fixed_pt_prov_struct_fixed_pt_vector_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1034, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleFixedPtIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleFixedPtProvStructFixedPtVectorIndex'))
if mibBuilder.loadTexts:
mscExampleFixedPtProvStructFixedPtVectorEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleFixedPtProvStructFixedPtVectorEntry.setDescription('An entry in the mscExampleFixedPtProvStructFixedPtVectorTable.')
msc_example_fixed_pt_prov_struct_fixed_pt_vector_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1034, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 9)))
if mibBuilder.loadTexts:
mscExampleFixedPtProvStructFixedPtVectorIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleFixedPtProvStructFixedPtVectorIndex.setDescription('This variable represents the mscExampleFixedPtProvStructFixedPtVectorTable specific index for the mscExampleFixedPtProvStructFixedPtVectorTable.')
msc_example_fixed_pt_prov_struct_fixed_pt_vector_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1034, 1, 2), fixed_point3().subtype(subtypeSpec=value_range_constraint(0, 100100))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleFixedPtProvStructFixedPtVectorValue.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleFixedPtProvStructFixedPtVectorValue.setDescription('This variable represents an individual value for the mscExampleFixedPtProvStructFixedPtVectorTable.')
msc_example_fixed_pt_prov_struct_fixed_pt_array_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1035))
if mibBuilder.loadTexts:
mscExampleFixedPtProvStructFixedPtArrayTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleFixedPtProvStructFixedPtArrayTable.setDescription('')
msc_example_fixed_pt_prov_struct_fixed_pt_array_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1035, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleFixedPtIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleFixedPtProvStructFixedPtArrayRowIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleFixedPtProvStructFixedPtArrayColumnIndex'))
if mibBuilder.loadTexts:
mscExampleFixedPtProvStructFixedPtArrayEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleFixedPtProvStructFixedPtArrayEntry.setDescription('An entry in the mscExampleFixedPtProvStructFixedPtArrayTable.')
msc_example_fixed_pt_prov_struct_fixed_pt_array_row_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1035, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 2)))
if mibBuilder.loadTexts:
mscExampleFixedPtProvStructFixedPtArrayRowIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleFixedPtProvStructFixedPtArrayRowIndex.setDescription('This variable represents the next to last index for the mscExampleFixedPtProvStructFixedPtArrayTable.')
msc_example_fixed_pt_prov_struct_fixed_pt_array_column_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1035, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 3)))
if mibBuilder.loadTexts:
mscExampleFixedPtProvStructFixedPtArrayColumnIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleFixedPtProvStructFixedPtArrayColumnIndex.setDescription('This variable represents the final index for the mscExampleFixedPtProvStructFixedPtArrayTable.')
msc_example_fixed_pt_prov_struct_fixed_pt_array_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1035, 1, 3), fixed_point1().subtype(subtypeSpec=value_range_constraint(255, 300))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleFixedPtProvStructFixedPtArrayValue.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleFixedPtProvStructFixedPtArrayValue.setDescription('This variable represents an individual value for the mscExampleFixedPtProvStructFixedPtArrayTable.')
msc_example_fixed_pt_prov_free_fixed_pt_vector_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1036))
if mibBuilder.loadTexts:
mscExampleFixedPtProvFreeFixedPtVectorTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleFixedPtProvFreeFixedPtVectorTable.setDescription('')
msc_example_fixed_pt_prov_free_fixed_pt_vector_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1036, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleFixedPtIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleFixedPtProvFreeFixedPtVectorIndex'))
if mibBuilder.loadTexts:
mscExampleFixedPtProvFreeFixedPtVectorEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleFixedPtProvFreeFixedPtVectorEntry.setDescription('An entry in the mscExampleFixedPtProvFreeFixedPtVectorTable.')
msc_example_fixed_pt_prov_free_fixed_pt_vector_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1036, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 9)))
if mibBuilder.loadTexts:
mscExampleFixedPtProvFreeFixedPtVectorIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleFixedPtProvFreeFixedPtVectorIndex.setDescription('This variable represents the mscExampleFixedPtProvFreeFixedPtVectorTable specific index for the mscExampleFixedPtProvFreeFixedPtVectorTable.')
msc_example_fixed_pt_prov_free_fixed_pt_vector_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1036, 1, 2), fixed_point1().subtype(subtypeSpec=value_range_constraint(0, 1000))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleFixedPtProvFreeFixedPtVectorValue.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleFixedPtProvFreeFixedPtVectorValue.setDescription('This variable represents an individual value for the mscExampleFixedPtProvFreeFixedPtVectorTable.')
msc_example_fixed_pt_prov_free_fixed_pt_array_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1037))
if mibBuilder.loadTexts:
mscExampleFixedPtProvFreeFixedPtArrayTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleFixedPtProvFreeFixedPtArrayTable.setDescription('')
msc_example_fixed_pt_prov_free_fixed_pt_array_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1037, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleFixedPtIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleFixedPtProvFreeFixedPtArrayRowIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleFixedPtProvFreeFixedPtArrayColumnIndex'))
if mibBuilder.loadTexts:
mscExampleFixedPtProvFreeFixedPtArrayEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleFixedPtProvFreeFixedPtArrayEntry.setDescription('An entry in the mscExampleFixedPtProvFreeFixedPtArrayTable.')
msc_example_fixed_pt_prov_free_fixed_pt_array_row_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1037, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 2)))
if mibBuilder.loadTexts:
mscExampleFixedPtProvFreeFixedPtArrayRowIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleFixedPtProvFreeFixedPtArrayRowIndex.setDescription('This variable represents the next to last index for the mscExampleFixedPtProvFreeFixedPtArrayTable.')
msc_example_fixed_pt_prov_free_fixed_pt_array_column_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1037, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 3)))
if mibBuilder.loadTexts:
mscExampleFixedPtProvFreeFixedPtArrayColumnIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleFixedPtProvFreeFixedPtArrayColumnIndex.setDescription('This variable represents the final index for the mscExampleFixedPtProvFreeFixedPtArrayTable.')
msc_example_fixed_pt_prov_free_fixed_pt_array_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1037, 1, 3), fixed_point2().subtype(subtypeSpec=value_range_constraint(0, 25555))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleFixedPtProvFreeFixedPtArrayValue.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleFixedPtProvFreeFixedPtArrayValue.setDescription('This variable represents an individual value for the mscExampleFixedPtProvFreeFixedPtArrayTable.')
msc_example_fixed_pt_prov_free_fixed_pt_replicated_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1038))
if mibBuilder.loadTexts:
mscExampleFixedPtProvFreeFixedPtReplicatedTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleFixedPtProvFreeFixedPtReplicatedTable.setDescription('')
msc_example_fixed_pt_prov_free_fixed_pt_replicated_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1038, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleFixedPtIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleFixedPtProvFreeFixedPtReplicatedIndex'))
if mibBuilder.loadTexts:
mscExampleFixedPtProvFreeFixedPtReplicatedEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleFixedPtProvFreeFixedPtReplicatedEntry.setDescription('An entry in the mscExampleFixedPtProvFreeFixedPtReplicatedTable.')
msc_example_fixed_pt_prov_free_fixed_pt_replicated_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1038, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 9)))
if mibBuilder.loadTexts:
mscExampleFixedPtProvFreeFixedPtReplicatedIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleFixedPtProvFreeFixedPtReplicatedIndex.setDescription('This variable represents the index for the mscExampleFixedPtProvFreeFixedPtReplicatedTable.')
msc_example_fixed_pt_prov_free_fixed_pt_replicated_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1038, 1, 2), fixed_point2().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleFixedPtProvFreeFixedPtReplicatedValue.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleFixedPtProvFreeFixedPtReplicatedValue.setDescription('This variable represents an individual value for the mscExampleFixedPtProvFreeFixedPtReplicatedTable.')
msc_example_fixed_pt_prov_free_fixed_pt_replicated_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1038, 1, 3), row_status()).setMaxAccess('writeonly')
if mibBuilder.loadTexts:
mscExampleFixedPtProvFreeFixedPtReplicatedRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleFixedPtProvFreeFixedPtReplicatedRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleFixedPtProvFreeFixedPtReplicatedTable.')
msc_example_fixed_pt_prov_free_fixed_pt_list_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1039))
if mibBuilder.loadTexts:
mscExampleFixedPtProvFreeFixedPtListTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleFixedPtProvFreeFixedPtListTable.setDescription('')
msc_example_fixed_pt_prov_free_fixed_pt_list_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1039, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleFixedPtIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleFixedPtProvFreeFixedPtListValue'))
if mibBuilder.loadTexts:
mscExampleFixedPtProvFreeFixedPtListEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleFixedPtProvFreeFixedPtListEntry.setDescription('An entry in the mscExampleFixedPtProvFreeFixedPtListTable.')
msc_example_fixed_pt_prov_free_fixed_pt_list_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1039, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(100, 100000))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleFixedPtProvFreeFixedPtListValue.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleFixedPtProvFreeFixedPtListValue.setDescription('This variable represents both the value and the index for the mscExampleFixedPtProvFreeFixedPtListTable.')
msc_example_fixed_pt_prov_free_fixed_pt_list_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1039, 1, 2), row_status()).setMaxAccess('writeonly')
if mibBuilder.loadTexts:
mscExampleFixedPtProvFreeFixedPtListRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleFixedPtProvFreeFixedPtListRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleFixedPtProvFreeFixedPtListTable.')
msc_example_dashed = mib_identifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7))
msc_example_dashed_row_status_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1))
if mibBuilder.loadTexts:
mscExampleDashedRowStatusTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDashedRowStatusTable.setDescription('This entry controls the addition and deletion of mscExampleDashed components.')
msc_example_dashed_row_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDashedIndex'))
if mibBuilder.loadTexts:
mscExampleDashedRowStatusEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDashedRowStatusEntry.setDescription('A single entry in the table represents a single mscExampleDashed component.')
msc_example_dashed_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1, 1, 1), row_status()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleDashedRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDashedRowStatus.setDescription('This variable is used as the basis for SNMP naming of mscExampleDashed components. These components can be added and deleted.')
msc_example_dashed_component_name = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1, 1, 2), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mscExampleDashedComponentName.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDashedComponentName.setDescription("This variable provides the component's string name for use with the ASCII Console Interface")
msc_example_dashed_storage_type = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1, 1, 4), storage_type()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mscExampleDashedStorageType.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDashedStorageType.setDescription('This variable represents the storage type value for the mscExampleDashed tables.')
msc_example_dashed_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1, 1, 10), dashed_hex_string().subtype(subtypeSpec=value_size_constraint(1, 10)))
if mibBuilder.loadTexts:
mscExampleDashedIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDashedIndex.setDescription('This variable represents the index for the mscExampleDashed tables.')
msc_example_dashed_operational_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 10))
if mibBuilder.loadTexts:
mscExampleDashedOperationalTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDashedOperationalTable.setDescription('')
msc_example_dashed_operational_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 10, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDashedIndex'))
if mibBuilder.loadTexts:
mscExampleDashedOperationalEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDashedOperationalEntry.setDescription('An entry in the mscExampleDashedOperationalTable.')
msc_example_dashed_oper_struct_dashed = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 10, 1, 1), dashed_hex_string().subtype(subtypeSpec=value_size_constraint(1, 10))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleDashedOperStructDashed.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDashedOperStructDashed.setDescription('')
msc_example_dashed_oper_free_dashed = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 10, 1, 2), dashed_hex_string().subtype(subtypeSpec=value_size_constraint(1, 10)).clone(hexValue='123456')).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleDashedOperFreeDashed.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDashedOperFreeDashed.setDescription('')
msc_example_dashed_provisional_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 11))
if mibBuilder.loadTexts:
mscExampleDashedProvisionalTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDashedProvisionalTable.setDescription('')
msc_example_dashed_provisional_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 11, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDashedIndex'))
if mibBuilder.loadTexts:
mscExampleDashedProvisionalEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDashedProvisionalEntry.setDescription('An entry in the mscExampleDashedProvisionalTable.')
msc_example_dashed_prov_struct_dashed = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 11, 1, 1), dashed_hex_string().subtype(subtypeSpec=value_size_constraint(1, 10))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleDashedProvStructDashed.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDashedProvStructDashed.setDescription('')
msc_example_dashed_prov_free_dashed = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 11, 1, 2), dashed_hex_string().subtype(subtypeSpec=value_size_constraint(1, 10)).clone(hexValue='123456')).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleDashedProvFreeDashed.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDashedProvFreeDashed.setDescription('')
msc_example_dashed_os_dashed_array_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1088))
if mibBuilder.loadTexts:
mscExampleDashedOsDashedArrayTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDashedOsDashedArrayTable.setDescription('')
msc_example_dashed_os_dashed_array_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1088, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDashedIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDashedOsDashedArrayRowIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDashedOsDashedArrayColumnIndex'))
if mibBuilder.loadTexts:
mscExampleDashedOsDashedArrayEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDashedOsDashedArrayEntry.setDescription('An entry in the mscExampleDashedOsDashedArrayTable.')
msc_example_dashed_os_dashed_array_row_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1088, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 2)))
if mibBuilder.loadTexts:
mscExampleDashedOsDashedArrayRowIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDashedOsDashedArrayRowIndex.setDescription('This variable represents the next to last index for the mscExampleDashedOsDashedArrayTable.')
msc_example_dashed_os_dashed_array_column_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1088, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 3)))
if mibBuilder.loadTexts:
mscExampleDashedOsDashedArrayColumnIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDashedOsDashedArrayColumnIndex.setDescription('This variable represents the final index for the mscExampleDashedOsDashedArrayTable.')
msc_example_dashed_os_dashed_array_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1088, 1, 3), dashed_hex_string().subtype(subtypeSpec=value_size_constraint(1, 5))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleDashedOsDashedArrayValue.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDashedOsDashedArrayValue.setDescription('This variable represents an individual value for the mscExampleDashedOsDashedArrayTable.')
msc_example_dashed_os_dashed_vector_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1089))
if mibBuilder.loadTexts:
mscExampleDashedOsDashedVectorTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDashedOsDashedVectorTable.setDescription('')
msc_example_dashed_os_dashed_vector_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1089, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDashedIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDashedOsDashedVectorIndex'))
if mibBuilder.loadTexts:
mscExampleDashedOsDashedVectorEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDashedOsDashedVectorEntry.setDescription('An entry in the mscExampleDashedOsDashedVectorTable.')
msc_example_dashed_os_dashed_vector_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1089, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 9)))
if mibBuilder.loadTexts:
mscExampleDashedOsDashedVectorIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDashedOsDashedVectorIndex.setDescription('This variable represents the mscExampleDashedOsDashedVectorTable specific index for the mscExampleDashedOsDashedVectorTable.')
msc_example_dashed_os_dashed_vector_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1089, 1, 2), dashed_hex_string().subtype(subtypeSpec=value_size_constraint(1, 5))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleDashedOsDashedVectorValue.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDashedOsDashedVectorValue.setDescription('This variable represents an individual value for the mscExampleDashedOsDashedVectorTable.')
msc_example_dashed_of_dashed_list_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1090))
if mibBuilder.loadTexts:
mscExampleDashedOfDashedListTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDashedOfDashedListTable.setDescription('')
msc_example_dashed_of_dashed_list_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1090, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDashedIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDashedOfDashedListValue'))
if mibBuilder.loadTexts:
mscExampleDashedOfDashedListEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDashedOfDashedListEntry.setDescription('An entry in the mscExampleDashedOfDashedListTable.')
msc_example_dashed_of_dashed_list_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1090, 1, 1), dashed_hex_string().subtype(subtypeSpec=value_size_constraint(1, 5))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleDashedOfDashedListValue.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDashedOfDashedListValue.setDescription('This variable represents both the value and the index for the mscExampleDashedOfDashedListTable.')
msc_example_dashed_of_dashed_list_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1090, 1, 2), row_status()).setMaxAccess('writeonly')
if mibBuilder.loadTexts:
mscExampleDashedOfDashedListRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDashedOfDashedListRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleDashedOfDashedListTable.')
msc_example_dashed_of_dashed_replicated_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1091))
if mibBuilder.loadTexts:
mscExampleDashedOfDashedReplicatedTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDashedOfDashedReplicatedTable.setDescription('')
msc_example_dashed_of_dashed_replicated_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1091, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDashedIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDashedOfDashedReplicatedIndex'))
if mibBuilder.loadTexts:
mscExampleDashedOfDashedReplicatedEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDashedOfDashedReplicatedEntry.setDescription('An entry in the mscExampleDashedOfDashedReplicatedTable.')
msc_example_dashed_of_dashed_replicated_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1091, 1, 1), dashed_hex_string().subtype(subtypeSpec=value_size_constraint(1, 5)))
if mibBuilder.loadTexts:
mscExampleDashedOfDashedReplicatedIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDashedOfDashedReplicatedIndex.setDescription('This variable represents the index for the mscExampleDashedOfDashedReplicatedTable.')
msc_example_dashed_of_dashed_replicated_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1091, 1, 2), dashed_hex_string().subtype(subtypeSpec=value_size_constraint(1, 10))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleDashedOfDashedReplicatedValue.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDashedOfDashedReplicatedValue.setDescription('This variable represents an individual value for the mscExampleDashedOfDashedReplicatedTable.')
msc_example_dashed_of_dashed_replicated_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1091, 1, 3), row_status()).setMaxAccess('writeonly')
if mibBuilder.loadTexts:
mscExampleDashedOfDashedReplicatedRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDashedOfDashedReplicatedRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleDashedOfDashedReplicatedTable.')
msc_example_dashed_of_dashed_array_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1092))
if mibBuilder.loadTexts:
mscExampleDashedOfDashedArrayTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDashedOfDashedArrayTable.setDescription('')
msc_example_dashed_of_dashed_array_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1092, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDashedIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDashedOfDashedArrayRowIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDashedOfDashedArrayColumnIndex'))
if mibBuilder.loadTexts:
mscExampleDashedOfDashedArrayEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDashedOfDashedArrayEntry.setDescription('An entry in the mscExampleDashedOfDashedArrayTable.')
msc_example_dashed_of_dashed_array_row_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1092, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 2)))
if mibBuilder.loadTexts:
mscExampleDashedOfDashedArrayRowIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDashedOfDashedArrayRowIndex.setDescription('This variable represents the next to last index for the mscExampleDashedOfDashedArrayTable.')
msc_example_dashed_of_dashed_array_column_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1092, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 3)))
if mibBuilder.loadTexts:
mscExampleDashedOfDashedArrayColumnIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDashedOfDashedArrayColumnIndex.setDescription('This variable represents the final index for the mscExampleDashedOfDashedArrayTable.')
msc_example_dashed_of_dashed_array_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1092, 1, 3), dashed_hex_string().subtype(subtypeSpec=value_size_constraint(1, 5))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleDashedOfDashedArrayValue.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDashedOfDashedArrayValue.setDescription('This variable represents an individual value for the mscExampleDashedOfDashedArrayTable.')
msc_example_dashed_of_dashed_vector_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1093))
if mibBuilder.loadTexts:
mscExampleDashedOfDashedVectorTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDashedOfDashedVectorTable.setDescription('')
msc_example_dashed_of_dashed_vector_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1093, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDashedIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDashedOfDashedVectorIndex'))
if mibBuilder.loadTexts:
mscExampleDashedOfDashedVectorEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDashedOfDashedVectorEntry.setDescription('An entry in the mscExampleDashedOfDashedVectorTable.')
msc_example_dashed_of_dashed_vector_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1093, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 9)))
if mibBuilder.loadTexts:
mscExampleDashedOfDashedVectorIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDashedOfDashedVectorIndex.setDescription('This variable represents the mscExampleDashedOfDashedVectorTable specific index for the mscExampleDashedOfDashedVectorTable.')
msc_example_dashed_of_dashed_vector_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1093, 1, 2), dashed_hex_string().subtype(subtypeSpec=value_size_constraint(1, 5))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleDashedOfDashedVectorValue.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDashedOfDashedVectorValue.setDescription('This variable represents an individual value for the mscExampleDashedOfDashedVectorTable.')
msc_example_dashed_prov_struct_dashed_array_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1094))
if mibBuilder.loadTexts:
mscExampleDashedProvStructDashedArrayTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDashedProvStructDashedArrayTable.setDescription('')
msc_example_dashed_prov_struct_dashed_array_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1094, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDashedIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDashedProvStructDashedArrayRowIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDashedProvStructDashedArrayColumnIndex'))
if mibBuilder.loadTexts:
mscExampleDashedProvStructDashedArrayEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDashedProvStructDashedArrayEntry.setDescription('An entry in the mscExampleDashedProvStructDashedArrayTable.')
msc_example_dashed_prov_struct_dashed_array_row_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1094, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 2)))
if mibBuilder.loadTexts:
mscExampleDashedProvStructDashedArrayRowIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDashedProvStructDashedArrayRowIndex.setDescription('This variable represents the next to last index for the mscExampleDashedProvStructDashedArrayTable.')
msc_example_dashed_prov_struct_dashed_array_column_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1094, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 3)))
if mibBuilder.loadTexts:
mscExampleDashedProvStructDashedArrayColumnIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDashedProvStructDashedArrayColumnIndex.setDescription('This variable represents the final index for the mscExampleDashedProvStructDashedArrayTable.')
msc_example_dashed_prov_struct_dashed_array_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1094, 1, 3), dashed_hex_string().subtype(subtypeSpec=value_size_constraint(0, 5))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleDashedProvStructDashedArrayValue.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDashedProvStructDashedArrayValue.setDescription('This variable represents an individual value for the mscExampleDashedProvStructDashedArrayTable.')
msc_example_dashed_prov_struct_dashed_vector_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1095))
if mibBuilder.loadTexts:
mscExampleDashedProvStructDashedVectorTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDashedProvStructDashedVectorTable.setDescription('')
msc_example_dashed_prov_struct_dashed_vector_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1095, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDashedIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDashedProvStructDashedVectorIndex'))
if mibBuilder.loadTexts:
mscExampleDashedProvStructDashedVectorEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDashedProvStructDashedVectorEntry.setDescription('An entry in the mscExampleDashedProvStructDashedVectorTable.')
msc_example_dashed_prov_struct_dashed_vector_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1095, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 9)))
if mibBuilder.loadTexts:
mscExampleDashedProvStructDashedVectorIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDashedProvStructDashedVectorIndex.setDescription('This variable represents the mscExampleDashedProvStructDashedVectorTable specific index for the mscExampleDashedProvStructDashedVectorTable.')
msc_example_dashed_prov_struct_dashed_vector_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1095, 1, 2), dashed_hex_string().subtype(subtypeSpec=value_size_constraint(0, 5))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleDashedProvStructDashedVectorValue.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDashedProvStructDashedVectorValue.setDescription('This variable represents an individual value for the mscExampleDashedProvStructDashedVectorTable.')
msc_example_dashed_prov_free_dashed_list_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1096))
if mibBuilder.loadTexts:
mscExampleDashedProvFreeDashedListTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDashedProvFreeDashedListTable.setDescription('')
msc_example_dashed_prov_free_dashed_list_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1096, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDashedIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDashedProvFreeDashedListValue'))
if mibBuilder.loadTexts:
mscExampleDashedProvFreeDashedListEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDashedProvFreeDashedListEntry.setDescription('An entry in the mscExampleDashedProvFreeDashedListTable.')
msc_example_dashed_prov_free_dashed_list_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1096, 1, 1), dashed_hex_string().subtype(subtypeSpec=value_size_constraint(1, 5))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleDashedProvFreeDashedListValue.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDashedProvFreeDashedListValue.setDescription('This variable represents both the value and the index for the mscExampleDashedProvFreeDashedListTable.')
msc_example_dashed_prov_free_dashed_list_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1096, 1, 2), row_status()).setMaxAccess('writeonly')
if mibBuilder.loadTexts:
mscExampleDashedProvFreeDashedListRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDashedProvFreeDashedListRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleDashedProvFreeDashedListTable.')
msc_example_dashed_prov_free_dashed_replicated_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1097))
if mibBuilder.loadTexts:
mscExampleDashedProvFreeDashedReplicatedTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDashedProvFreeDashedReplicatedTable.setDescription('')
msc_example_dashed_prov_free_dashed_replicated_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1097, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDashedIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDashedProvFreeDashedReplicatedIndex'))
if mibBuilder.loadTexts:
mscExampleDashedProvFreeDashedReplicatedEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDashedProvFreeDashedReplicatedEntry.setDescription('An entry in the mscExampleDashedProvFreeDashedReplicatedTable.')
msc_example_dashed_prov_free_dashed_replicated_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1097, 1, 1), dashed_hex_string().subtype(subtypeSpec=value_size_constraint(1, 5)))
if mibBuilder.loadTexts:
mscExampleDashedProvFreeDashedReplicatedIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDashedProvFreeDashedReplicatedIndex.setDescription('This variable represents the index for the mscExampleDashedProvFreeDashedReplicatedTable.')
msc_example_dashed_prov_free_dashed_replicated_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1097, 1, 2), dashed_hex_string().subtype(subtypeSpec=value_size_constraint(1, 10))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleDashedProvFreeDashedReplicatedValue.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDashedProvFreeDashedReplicatedValue.setDescription('This variable represents an individual value for the mscExampleDashedProvFreeDashedReplicatedTable.')
msc_example_dashed_prov_free_dashed_replicated_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1097, 1, 3), row_status()).setMaxAccess('writeonly')
if mibBuilder.loadTexts:
mscExampleDashedProvFreeDashedReplicatedRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDashedProvFreeDashedReplicatedRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleDashedProvFreeDashedReplicatedTable.')
msc_example_dashed_prov_free_dashed_array_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1098))
if mibBuilder.loadTexts:
mscExampleDashedProvFreeDashedArrayTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDashedProvFreeDashedArrayTable.setDescription('')
msc_example_dashed_prov_free_dashed_array_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1098, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDashedIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDashedProvFreeDashedArrayRowIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDashedProvFreeDashedArrayColumnIndex'))
if mibBuilder.loadTexts:
mscExampleDashedProvFreeDashedArrayEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDashedProvFreeDashedArrayEntry.setDescription('An entry in the mscExampleDashedProvFreeDashedArrayTable.')
msc_example_dashed_prov_free_dashed_array_row_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1098, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 2)))
if mibBuilder.loadTexts:
mscExampleDashedProvFreeDashedArrayRowIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDashedProvFreeDashedArrayRowIndex.setDescription('This variable represents the next to last index for the mscExampleDashedProvFreeDashedArrayTable.')
msc_example_dashed_prov_free_dashed_array_column_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1098, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 3)))
if mibBuilder.loadTexts:
mscExampleDashedProvFreeDashedArrayColumnIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDashedProvFreeDashedArrayColumnIndex.setDescription('This variable represents the final index for the mscExampleDashedProvFreeDashedArrayTable.')
msc_example_dashed_prov_free_dashed_array_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1098, 1, 3), dashed_hex_string().subtype(subtypeSpec=value_size_constraint(0, 5))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleDashedProvFreeDashedArrayValue.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDashedProvFreeDashedArrayValue.setDescription('This variable represents an individual value for the mscExampleDashedProvFreeDashedArrayTable.')
msc_example_dashed_prov_free_dashed_vector_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1099))
if mibBuilder.loadTexts:
mscExampleDashedProvFreeDashedVectorTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDashedProvFreeDashedVectorTable.setDescription('')
msc_example_dashed_prov_free_dashed_vector_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1099, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDashedIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDashedProvFreeDashedVectorIndex'))
if mibBuilder.loadTexts:
mscExampleDashedProvFreeDashedVectorEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDashedProvFreeDashedVectorEntry.setDescription('An entry in the mscExampleDashedProvFreeDashedVectorTable.')
msc_example_dashed_prov_free_dashed_vector_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1099, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 9)))
if mibBuilder.loadTexts:
mscExampleDashedProvFreeDashedVectorIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDashedProvFreeDashedVectorIndex.setDescription('This variable represents the mscExampleDashedProvFreeDashedVectorTable specific index for the mscExampleDashedProvFreeDashedVectorTable.')
msc_example_dashed_prov_free_dashed_vector_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1099, 1, 2), dashed_hex_string().subtype(subtypeSpec=value_size_constraint(0, 5))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleDashedProvFreeDashedVectorValue.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDashedProvFreeDashedVectorValue.setDescription('This variable represents an individual value for the mscExampleDashedProvFreeDashedVectorTable.')
msc_example_extended = mib_identifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8))
msc_example_extended_row_status_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1))
if mibBuilder.loadTexts:
mscExampleExtendedRowStatusTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleExtendedRowStatusTable.setDescription('This entry controls the addition and deletion of mscExampleExtended components.')
msc_example_extended_row_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleExtendedIndex'))
if mibBuilder.loadTexts:
mscExampleExtendedRowStatusEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleExtendedRowStatusEntry.setDescription('A single entry in the table represents a single mscExampleExtended component.')
msc_example_extended_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1, 1, 1), row_status()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleExtendedRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleExtendedRowStatus.setDescription('This variable is used as the basis for SNMP naming of mscExampleExtended components. These components can be added and deleted.')
msc_example_extended_component_name = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1, 1, 2), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mscExampleExtendedComponentName.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleExtendedComponentName.setDescription("This variable provides the component's string name for use with the ASCII Console Interface")
msc_example_extended_storage_type = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1, 1, 4), storage_type()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mscExampleExtendedStorageType.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleExtendedStorageType.setDescription('This variable represents the storage type value for the mscExampleExtended tables.')
msc_example_extended_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1, 1, 10), non_replicated())
if mibBuilder.loadTexts:
mscExampleExtendedIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleExtendedIndex.setDescription('This variable represents the index for the mscExampleExtended tables.')
msc_example_extended_operational_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 10))
if mibBuilder.loadTexts:
mscExampleExtendedOperationalTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleExtendedOperationalTable.setDescription('')
msc_example_extended_operational_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 10, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleExtendedIndex'))
if mibBuilder.loadTexts:
mscExampleExtendedOperationalEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleExtendedOperationalEntry.setDescription('An entry in the mscExampleExtendedOperationalTable.')
msc_example_extended_oper_struct_extended = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 10, 1, 1), extended_ascii_string().subtype(subtypeSpec=value_size_constraint(1, 10))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleExtendedOperStructExtended.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleExtendedOperStructExtended.setDescription('')
msc_example_extended_oper_free_extended = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 10, 1, 2), extended_ascii_string().subtype(subtypeSpec=value_size_constraint(1, 10)).clone(hexValue='68656c6c6f5c6162')).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleExtendedOperFreeExtended.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleExtendedOperFreeExtended.setDescription('')
msc_example_extended_provisional_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 11))
if mibBuilder.loadTexts:
mscExampleExtendedProvisionalTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleExtendedProvisionalTable.setDescription('')
msc_example_extended_provisional_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 11, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleExtendedIndex'))
if mibBuilder.loadTexts:
mscExampleExtendedProvisionalEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleExtendedProvisionalEntry.setDescription('An entry in the mscExampleExtendedProvisionalTable.')
msc_example_extended_prov_enum_sub = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 11, 1, 1), link()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleExtendedProvEnumSub.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleExtendedProvEnumSub.setDescription('')
msc_example_extended_prov_struct_extended = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 11, 1, 2), extended_ascii_string().subtype(subtypeSpec=value_size_constraint(1, 10))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleExtendedProvStructExtended.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleExtendedProvStructExtended.setDescription('')
msc_example_extended_prov_free_extended = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 11, 1, 3), extended_ascii_string().subtype(subtypeSpec=value_size_constraint(1, 10)).clone(hexValue='48656c6c6f5c61626364')).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleExtendedProvFreeExtended.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleExtendedProvFreeExtended.setDescription('')
msc_example_extended_oper_struct_extended_array_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1100))
if mibBuilder.loadTexts:
mscExampleExtendedOperStructExtendedArrayTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleExtendedOperStructExtendedArrayTable.setDescription('')
msc_example_extended_oper_struct_extended_array_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1100, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleExtendedIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleExtendedOperStructExtendedArrayRowIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleExtendedOperStructExtendedArrayColumnIndex'))
if mibBuilder.loadTexts:
mscExampleExtendedOperStructExtendedArrayEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleExtendedOperStructExtendedArrayEntry.setDescription('An entry in the mscExampleExtendedOperStructExtendedArrayTable.')
msc_example_extended_oper_struct_extended_array_row_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1100, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 2)))
if mibBuilder.loadTexts:
mscExampleExtendedOperStructExtendedArrayRowIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleExtendedOperStructExtendedArrayRowIndex.setDescription('This variable represents the next to last index for the mscExampleExtendedOperStructExtendedArrayTable.')
msc_example_extended_oper_struct_extended_array_column_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1100, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 3)))
if mibBuilder.loadTexts:
mscExampleExtendedOperStructExtendedArrayColumnIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleExtendedOperStructExtendedArrayColumnIndex.setDescription('This variable represents the final index for the mscExampleExtendedOperStructExtendedArrayTable.')
msc_example_extended_oper_struct_extended_array_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1100, 1, 3), extended_ascii_string().subtype(subtypeSpec=value_size_constraint(1, 5))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleExtendedOperStructExtendedArrayValue.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleExtendedOperStructExtendedArrayValue.setDescription('This variable represents an individual value for the mscExampleExtendedOperStructExtendedArrayTable.')
msc_example_extended_oper_struct_extended_vector_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1101))
if mibBuilder.loadTexts:
mscExampleExtendedOperStructExtendedVectorTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleExtendedOperStructExtendedVectorTable.setDescription('')
msc_example_extended_oper_struct_extended_vector_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1101, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleExtendedIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleExtendedOperStructExtendedVectorIndex'))
if mibBuilder.loadTexts:
mscExampleExtendedOperStructExtendedVectorEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleExtendedOperStructExtendedVectorEntry.setDescription('An entry in the mscExampleExtendedOperStructExtendedVectorTable.')
msc_example_extended_oper_struct_extended_vector_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1101, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 9)))
if mibBuilder.loadTexts:
mscExampleExtendedOperStructExtendedVectorIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleExtendedOperStructExtendedVectorIndex.setDescription('This variable represents the mscExampleExtendedOperStructExtendedVectorTable specific index for the mscExampleExtendedOperStructExtendedVectorTable.')
msc_example_extended_oper_struct_extended_vector_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1101, 1, 2), extended_ascii_string().subtype(subtypeSpec=value_size_constraint(1, 5))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleExtendedOperStructExtendedVectorValue.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleExtendedOperStructExtendedVectorValue.setDescription('This variable represents an individual value for the mscExampleExtendedOperStructExtendedVectorTable.')
msc_example_extended_oper_free_extended_list_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1102))
if mibBuilder.loadTexts:
mscExampleExtendedOperFreeExtendedListTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleExtendedOperFreeExtendedListTable.setDescription('')
msc_example_extended_oper_free_extended_list_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1102, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleExtendedIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleExtendedOperFreeExtendedListValue'))
if mibBuilder.loadTexts:
mscExampleExtendedOperFreeExtendedListEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleExtendedOperFreeExtendedListEntry.setDescription('An entry in the mscExampleExtendedOperFreeExtendedListTable.')
msc_example_extended_oper_free_extended_list_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1102, 1, 1), extended_ascii_string().subtype(subtypeSpec=value_size_constraint(1, 5))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleExtendedOperFreeExtendedListValue.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleExtendedOperFreeExtendedListValue.setDescription('This variable represents both the value and the index for the mscExampleExtendedOperFreeExtendedListTable.')
msc_example_extended_oper_free_extended_list_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1102, 1, 2), row_status()).setMaxAccess('writeonly')
if mibBuilder.loadTexts:
mscExampleExtendedOperFreeExtendedListRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleExtendedOperFreeExtendedListRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleExtendedOperFreeExtendedListTable.')
msc_example_extended_oper_free_extended_replicated_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1103))
if mibBuilder.loadTexts:
mscExampleExtendedOperFreeExtendedReplicatedTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleExtendedOperFreeExtendedReplicatedTable.setDescription('')
msc_example_extended_oper_free_extended_replicated_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1103, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleExtendedIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleExtendedOperFreeExtendedReplicatedIndex'))
if mibBuilder.loadTexts:
mscExampleExtendedOperFreeExtendedReplicatedEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleExtendedOperFreeExtendedReplicatedEntry.setDescription('An entry in the mscExampleExtendedOperFreeExtendedReplicatedTable.')
msc_example_extended_oper_free_extended_replicated_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1103, 1, 1), extended_ascii_string().subtype(subtypeSpec=value_size_constraint(1, 5)))
if mibBuilder.loadTexts:
mscExampleExtendedOperFreeExtendedReplicatedIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleExtendedOperFreeExtendedReplicatedIndex.setDescription('This variable represents the index for the mscExampleExtendedOperFreeExtendedReplicatedTable.')
msc_example_extended_oper_free_extended_replicated_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1103, 1, 2), extended_ascii_string().subtype(subtypeSpec=value_size_constraint(1, 10))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleExtendedOperFreeExtendedReplicatedValue.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleExtendedOperFreeExtendedReplicatedValue.setDescription('This variable represents an individual value for the mscExampleExtendedOperFreeExtendedReplicatedTable.')
msc_example_extended_oper_free_extended_replicated_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1103, 1, 3), row_status()).setMaxAccess('writeonly')
if mibBuilder.loadTexts:
mscExampleExtendedOperFreeExtendedReplicatedRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleExtendedOperFreeExtendedReplicatedRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleExtendedOperFreeExtendedReplicatedTable.')
msc_example_extended_oper_free_extended_array_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1104))
if mibBuilder.loadTexts:
mscExampleExtendedOperFreeExtendedArrayTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleExtendedOperFreeExtendedArrayTable.setDescription('')
msc_example_extended_oper_free_extended_array_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1104, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleExtendedIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleExtendedOperFreeExtendedArrayRowIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleExtendedOperFreeExtendedArrayColumnIndex'))
if mibBuilder.loadTexts:
mscExampleExtendedOperFreeExtendedArrayEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleExtendedOperFreeExtendedArrayEntry.setDescription('An entry in the mscExampleExtendedOperFreeExtendedArrayTable.')
msc_example_extended_oper_free_extended_array_row_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1104, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 2)))
if mibBuilder.loadTexts:
mscExampleExtendedOperFreeExtendedArrayRowIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleExtendedOperFreeExtendedArrayRowIndex.setDescription('This variable represents the next to last index for the mscExampleExtendedOperFreeExtendedArrayTable.')
msc_example_extended_oper_free_extended_array_column_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1104, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 3)))
if mibBuilder.loadTexts:
mscExampleExtendedOperFreeExtendedArrayColumnIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleExtendedOperFreeExtendedArrayColumnIndex.setDescription('This variable represents the final index for the mscExampleExtendedOperFreeExtendedArrayTable.')
msc_example_extended_oper_free_extended_array_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1104, 1, 3), extended_ascii_string().subtype(subtypeSpec=value_size_constraint(1, 5))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleExtendedOperFreeExtendedArrayValue.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleExtendedOperFreeExtendedArrayValue.setDescription('This variable represents an individual value for the mscExampleExtendedOperFreeExtendedArrayTable.')
msc_example_extended_oper_free_extended_vector_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1105))
if mibBuilder.loadTexts:
mscExampleExtendedOperFreeExtendedVectorTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleExtendedOperFreeExtendedVectorTable.setDescription('')
msc_example_extended_oper_free_extended_vector_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1105, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleExtendedIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleExtendedOperFreeExtendedVectorIndex'))
if mibBuilder.loadTexts:
mscExampleExtendedOperFreeExtendedVectorEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleExtendedOperFreeExtendedVectorEntry.setDescription('An entry in the mscExampleExtendedOperFreeExtendedVectorTable.')
msc_example_extended_oper_free_extended_vector_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1105, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 9)))
if mibBuilder.loadTexts:
mscExampleExtendedOperFreeExtendedVectorIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleExtendedOperFreeExtendedVectorIndex.setDescription('This variable represents the mscExampleExtendedOperFreeExtendedVectorTable specific index for the mscExampleExtendedOperFreeExtendedVectorTable.')
msc_example_extended_oper_free_extended_vector_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1105, 1, 2), extended_ascii_string().subtype(subtypeSpec=value_size_constraint(1, 5))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleExtendedOperFreeExtendedVectorValue.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleExtendedOperFreeExtendedVectorValue.setDescription('This variable represents an individual value for the mscExampleExtendedOperFreeExtendedVectorTable.')
msc_example_extended_prov_struct_extended_array_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1106))
if mibBuilder.loadTexts:
mscExampleExtendedProvStructExtendedArrayTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleExtendedProvStructExtendedArrayTable.setDescription('')
msc_example_extended_prov_struct_extended_array_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1106, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleExtendedIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleExtendedProvStructExtendedArrayRowIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleExtendedProvStructExtendedArrayColumnIndex'))
if mibBuilder.loadTexts:
mscExampleExtendedProvStructExtendedArrayEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleExtendedProvStructExtendedArrayEntry.setDescription('An entry in the mscExampleExtendedProvStructExtendedArrayTable.')
msc_example_extended_prov_struct_extended_array_row_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1106, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 2)))
if mibBuilder.loadTexts:
mscExampleExtendedProvStructExtendedArrayRowIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleExtendedProvStructExtendedArrayRowIndex.setDescription('This variable represents the next to last index for the mscExampleExtendedProvStructExtendedArrayTable.')
msc_example_extended_prov_struct_extended_array_column_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1106, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 3)))
if mibBuilder.loadTexts:
mscExampleExtendedProvStructExtendedArrayColumnIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleExtendedProvStructExtendedArrayColumnIndex.setDescription('This variable represents the final index for the mscExampleExtendedProvStructExtendedArrayTable.')
msc_example_extended_prov_struct_extended_array_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1106, 1, 3), extended_ascii_string().subtype(subtypeSpec=value_size_constraint(0, 5))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleExtendedProvStructExtendedArrayValue.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleExtendedProvStructExtendedArrayValue.setDescription('This variable represents an individual value for the mscExampleExtendedProvStructExtendedArrayTable.')
msc_example_extended_prov_struct_extended_vector_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1107))
if mibBuilder.loadTexts:
mscExampleExtendedProvStructExtendedVectorTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleExtendedProvStructExtendedVectorTable.setDescription('')
msc_example_extended_prov_struct_extended_vector_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1107, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleExtendedIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleExtendedProvStructExtendedVectorIndex'))
if mibBuilder.loadTexts:
mscExampleExtendedProvStructExtendedVectorEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleExtendedProvStructExtendedVectorEntry.setDescription('An entry in the mscExampleExtendedProvStructExtendedVectorTable.')
msc_example_extended_prov_struct_extended_vector_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1107, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 9)))
if mibBuilder.loadTexts:
mscExampleExtendedProvStructExtendedVectorIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleExtendedProvStructExtendedVectorIndex.setDescription('This variable represents the mscExampleExtendedProvStructExtendedVectorTable specific index for the mscExampleExtendedProvStructExtendedVectorTable.')
msc_example_extended_prov_struct_extended_vector_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1107, 1, 2), extended_ascii_string().subtype(subtypeSpec=value_size_constraint(0, 5))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleExtendedProvStructExtendedVectorValue.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleExtendedProvStructExtendedVectorValue.setDescription('This variable represents an individual value for the mscExampleExtendedProvStructExtendedVectorTable.')
msc_example_extended_prov_free_extended_list_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1108))
if mibBuilder.loadTexts:
mscExampleExtendedProvFreeExtendedListTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleExtendedProvFreeExtendedListTable.setDescription('')
msc_example_extended_prov_free_extended_list_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1108, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleExtendedIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleExtendedProvFreeExtendedListValue'))
if mibBuilder.loadTexts:
mscExampleExtendedProvFreeExtendedListEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleExtendedProvFreeExtendedListEntry.setDescription('An entry in the mscExampleExtendedProvFreeExtendedListTable.')
msc_example_extended_prov_free_extended_list_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1108, 1, 1), extended_ascii_string().subtype(subtypeSpec=value_size_constraint(1, 5))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleExtendedProvFreeExtendedListValue.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleExtendedProvFreeExtendedListValue.setDescription('This variable represents both the value and the index for the mscExampleExtendedProvFreeExtendedListTable.')
msc_example_extended_prov_free_extended_list_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1108, 1, 2), row_status()).setMaxAccess('writeonly')
if mibBuilder.loadTexts:
mscExampleExtendedProvFreeExtendedListRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleExtendedProvFreeExtendedListRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleExtendedProvFreeExtendedListTable.')
msc_example_extended_prov_free_extended_replicated_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1109))
if mibBuilder.loadTexts:
mscExampleExtendedProvFreeExtendedReplicatedTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleExtendedProvFreeExtendedReplicatedTable.setDescription('')
msc_example_extended_prov_free_extended_replicated_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1109, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleExtendedIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleExtendedProvFreeExtendedReplicatedIndex'))
if mibBuilder.loadTexts:
mscExampleExtendedProvFreeExtendedReplicatedEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleExtendedProvFreeExtendedReplicatedEntry.setDescription('An entry in the mscExampleExtendedProvFreeExtendedReplicatedTable.')
msc_example_extended_prov_free_extended_replicated_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1109, 1, 1), extended_ascii_string().subtype(subtypeSpec=value_size_constraint(1, 5)))
if mibBuilder.loadTexts:
mscExampleExtendedProvFreeExtendedReplicatedIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleExtendedProvFreeExtendedReplicatedIndex.setDescription('This variable represents the index for the mscExampleExtendedProvFreeExtendedReplicatedTable.')
msc_example_extended_prov_free_extended_replicated_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1109, 1, 2), extended_ascii_string().subtype(subtypeSpec=value_size_constraint(1, 10))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleExtendedProvFreeExtendedReplicatedValue.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleExtendedProvFreeExtendedReplicatedValue.setDescription('This variable represents an individual value for the mscExampleExtendedProvFreeExtendedReplicatedTable.')
msc_example_extended_prov_free_extended_replicated_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1109, 1, 3), row_status()).setMaxAccess('writeonly')
if mibBuilder.loadTexts:
mscExampleExtendedProvFreeExtendedReplicatedRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleExtendedProvFreeExtendedReplicatedRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleExtendedProvFreeExtendedReplicatedTable.')
msc_example_extended_prov_free_extended_array_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1110))
if mibBuilder.loadTexts:
mscExampleExtendedProvFreeExtendedArrayTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleExtendedProvFreeExtendedArrayTable.setDescription('')
msc_example_extended_prov_free_extended_array_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1110, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleExtendedIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleExtendedProvFreeExtendedArrayRowIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleExtendedProvFreeExtendedArrayColumnIndex'))
if mibBuilder.loadTexts:
mscExampleExtendedProvFreeExtendedArrayEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleExtendedProvFreeExtendedArrayEntry.setDescription('An entry in the mscExampleExtendedProvFreeExtendedArrayTable.')
msc_example_extended_prov_free_extended_array_row_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1110, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 2)))
if mibBuilder.loadTexts:
mscExampleExtendedProvFreeExtendedArrayRowIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleExtendedProvFreeExtendedArrayRowIndex.setDescription('This variable represents the next to last index for the mscExampleExtendedProvFreeExtendedArrayTable.')
msc_example_extended_prov_free_extended_array_column_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1110, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 3)))
if mibBuilder.loadTexts:
mscExampleExtendedProvFreeExtendedArrayColumnIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleExtendedProvFreeExtendedArrayColumnIndex.setDescription('This variable represents the final index for the mscExampleExtendedProvFreeExtendedArrayTable.')
msc_example_extended_prov_free_extended_array_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1110, 1, 3), extended_ascii_string().subtype(subtypeSpec=value_size_constraint(0, 5))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleExtendedProvFreeExtendedArrayValue.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleExtendedProvFreeExtendedArrayValue.setDescription('This variable represents an individual value for the mscExampleExtendedProvFreeExtendedArrayTable.')
msc_example_extended_prov_free_extended_vector_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1111))
if mibBuilder.loadTexts:
mscExampleExtendedProvFreeExtendedVectorTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleExtendedProvFreeExtendedVectorTable.setDescription('')
msc_example_extended_prov_free_extended_vector_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1111, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleExtendedIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleExtendedProvFreeExtendedVectorIndex'))
if mibBuilder.loadTexts:
mscExampleExtendedProvFreeExtendedVectorEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleExtendedProvFreeExtendedVectorEntry.setDescription('An entry in the mscExampleExtendedProvFreeExtendedVectorTable.')
msc_example_extended_prov_free_extended_vector_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1111, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 9)))
if mibBuilder.loadTexts:
mscExampleExtendedProvFreeExtendedVectorIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleExtendedProvFreeExtendedVectorIndex.setDescription('This variable represents the mscExampleExtendedProvFreeExtendedVectorTable specific index for the mscExampleExtendedProvFreeExtendedVectorTable.')
msc_example_extended_prov_free_extended_vector_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1111, 1, 2), extended_ascii_string().subtype(subtypeSpec=value_size_constraint(0, 5))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleExtendedProvFreeExtendedVectorValue.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleExtendedProvFreeExtendedVectorValue.setDescription('This variable represents an individual value for the mscExampleExtendedProvFreeExtendedVectorTable.')
msc_example_bcd = mib_identifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9))
msc_example_bcd_row_status_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1))
if mibBuilder.loadTexts:
mscExampleBcdRowStatusTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleBcdRowStatusTable.setDescription('This entry controls the addition and deletion of mscExampleBcd components.')
msc_example_bcd_row_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleBcdIndex'))
if mibBuilder.loadTexts:
mscExampleBcdRowStatusEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleBcdRowStatusEntry.setDescription('A single entry in the table represents a single mscExampleBcd component.')
msc_example_bcd_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1, 1, 1), row_status()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleBcdRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleBcdRowStatus.setDescription('This variable is used as the basis for SNMP naming of mscExampleBcd components. These components can be added and deleted.')
msc_example_bcd_component_name = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1, 1, 2), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mscExampleBcdComponentName.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleBcdComponentName.setDescription("This variable provides the component's string name for use with the ASCII Console Interface")
msc_example_bcd_storage_type = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1, 1, 4), storage_type()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mscExampleBcdStorageType.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleBcdStorageType.setDescription('This variable represents the storage type value for the mscExampleBcd tables.')
msc_example_bcd_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1, 1, 10), digit_string().subtype(subtypeSpec=value_size_constraint(1, 10)))
if mibBuilder.loadTexts:
mscExampleBcdIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleBcdIndex.setDescription('This variable represents the index for the mscExampleBcd tables.')
msc_example_bcd_operational_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 10))
if mibBuilder.loadTexts:
mscExampleBcdOperationalTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleBcdOperationalTable.setDescription('')
msc_example_bcd_operational_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 10, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleBcdIndex'))
if mibBuilder.loadTexts:
mscExampleBcdOperationalEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleBcdOperationalEntry.setDescription('An entry in the mscExampleBcdOperationalTable.')
msc_example_bcd_oper_struct_bcd = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 10, 1, 1), digit_string().subtype(subtypeSpec=value_size_constraint(0, 16))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleBcdOperStructBcd.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleBcdOperStructBcd.setDescription('')
msc_example_bcd_oper_free_bcd = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 10, 1, 2), digit_string().subtype(subtypeSpec=value_size_constraint(0, 16))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleBcdOperFreeBcd.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleBcdOperFreeBcd.setDescription('')
msc_example_bcd_provisional_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 11))
if mibBuilder.loadTexts:
mscExampleBcdProvisionalTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleBcdProvisionalTable.setDescription('')
msc_example_bcd_provisional_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 11, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleBcdIndex'))
if mibBuilder.loadTexts:
mscExampleBcdProvisionalEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleBcdProvisionalEntry.setDescription('An entry in the mscExampleBcdProvisionalTable.')
msc_example_bcd_prov_enum_sub = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 11, 1, 1), link()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleBcdProvEnumSub.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleBcdProvEnumSub.setDescription('')
msc_example_bcd_prov_struct_bcd = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 11, 1, 2), digit_string().subtype(subtypeSpec=value_size_constraint(0, 16)).clone(hexValue='30313233343536373839')).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleBcdProvStructBcd.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleBcdProvStructBcd.setDescription('')
msc_example_bcd_prov_free_bcd = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 11, 1, 3), digit_string().subtype(subtypeSpec=value_size_constraint(4, 16)).clone(hexValue='31323334353637383930')).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleBcdProvFreeBcd.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleBcdProvFreeBcd.setDescription('')
msc_example_bcd_prov_free_bcd1 = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 11, 1, 4), digit_string().subtype(subtypeSpec=value_size_constraint(4, 8))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleBcdProvFreeBcd1.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleBcdProvFreeBcd1.setDescription('')
msc_example_bcd_oper_struct_bcd_vector_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1120))
if mibBuilder.loadTexts:
mscExampleBcdOperStructBcdVectorTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleBcdOperStructBcdVectorTable.setDescription('')
msc_example_bcd_oper_struct_bcd_vector_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1120, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleBcdIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleBcdOperStructBcdVectorIndex'))
if mibBuilder.loadTexts:
mscExampleBcdOperStructBcdVectorEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleBcdOperStructBcdVectorEntry.setDescription('An entry in the mscExampleBcdOperStructBcdVectorTable.')
msc_example_bcd_oper_struct_bcd_vector_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1120, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 9)))
if mibBuilder.loadTexts:
mscExampleBcdOperStructBcdVectorIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleBcdOperStructBcdVectorIndex.setDescription('This variable represents the mscExampleBcdOperStructBcdVectorTable specific index for the mscExampleBcdOperStructBcdVectorTable.')
msc_example_bcd_oper_struct_bcd_vector_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1120, 1, 2), digit_string().subtype(subtypeSpec=value_size_constraint(0, 5))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleBcdOperStructBcdVectorValue.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleBcdOperStructBcdVectorValue.setDescription('This variable represents an individual value for the mscExampleBcdOperStructBcdVectorTable.')
msc_example_bcd_oper_struct_bcd_array_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1121))
if mibBuilder.loadTexts:
mscExampleBcdOperStructBcdArrayTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleBcdOperStructBcdArrayTable.setDescription('')
msc_example_bcd_oper_struct_bcd_array_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1121, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleBcdIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleBcdOperStructBcdArrayRowIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleBcdOperStructBcdArrayColumnIndex'))
if mibBuilder.loadTexts:
mscExampleBcdOperStructBcdArrayEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleBcdOperStructBcdArrayEntry.setDescription('An entry in the mscExampleBcdOperStructBcdArrayTable.')
msc_example_bcd_oper_struct_bcd_array_row_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1121, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 2)))
if mibBuilder.loadTexts:
mscExampleBcdOperStructBcdArrayRowIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleBcdOperStructBcdArrayRowIndex.setDescription('This variable represents the next to last index for the mscExampleBcdOperStructBcdArrayTable.')
msc_example_bcd_oper_struct_bcd_array_column_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1121, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 3)))
if mibBuilder.loadTexts:
mscExampleBcdOperStructBcdArrayColumnIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleBcdOperStructBcdArrayColumnIndex.setDescription('This variable represents the final index for the mscExampleBcdOperStructBcdArrayTable.')
msc_example_bcd_oper_struct_bcd_array_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1121, 1, 3), digit_string().subtype(subtypeSpec=value_size_constraint(0, 5))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleBcdOperStructBcdArrayValue.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleBcdOperStructBcdArrayValue.setDescription('This variable represents an individual value for the mscExampleBcdOperStructBcdArrayTable.')
msc_example_bcd_oper_free_bcd_vector_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1122))
if mibBuilder.loadTexts:
mscExampleBcdOperFreeBcdVectorTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleBcdOperFreeBcdVectorTable.setDescription('')
msc_example_bcd_oper_free_bcd_vector_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1122, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleBcdIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleBcdOperFreeBcdVectorIndex'))
if mibBuilder.loadTexts:
mscExampleBcdOperFreeBcdVectorEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleBcdOperFreeBcdVectorEntry.setDescription('An entry in the mscExampleBcdOperFreeBcdVectorTable.')
msc_example_bcd_oper_free_bcd_vector_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1122, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 9)))
if mibBuilder.loadTexts:
mscExampleBcdOperFreeBcdVectorIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleBcdOperFreeBcdVectorIndex.setDescription('This variable represents the mscExampleBcdOperFreeBcdVectorTable specific index for the mscExampleBcdOperFreeBcdVectorTable.')
msc_example_bcd_oper_free_bcd_vector_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1122, 1, 2), digit_string().subtype(subtypeSpec=value_size_constraint(0, 5))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleBcdOperFreeBcdVectorValue.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleBcdOperFreeBcdVectorValue.setDescription('This variable represents an individual value for the mscExampleBcdOperFreeBcdVectorTable.')
msc_example_bcd_oper_free_bcd_array_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1123))
if mibBuilder.loadTexts:
mscExampleBcdOperFreeBcdArrayTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleBcdOperFreeBcdArrayTable.setDescription('')
msc_example_bcd_oper_free_bcd_array_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1123, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleBcdIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleBcdOperFreeBcdArrayRowIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleBcdOperFreeBcdArrayColumnIndex'))
if mibBuilder.loadTexts:
mscExampleBcdOperFreeBcdArrayEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleBcdOperFreeBcdArrayEntry.setDescription('An entry in the mscExampleBcdOperFreeBcdArrayTable.')
msc_example_bcd_oper_free_bcd_array_row_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1123, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 2)))
if mibBuilder.loadTexts:
mscExampleBcdOperFreeBcdArrayRowIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleBcdOperFreeBcdArrayRowIndex.setDescription('This variable represents the next to last index for the mscExampleBcdOperFreeBcdArrayTable.')
msc_example_bcd_oper_free_bcd_array_column_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1123, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 3)))
if mibBuilder.loadTexts:
mscExampleBcdOperFreeBcdArrayColumnIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleBcdOperFreeBcdArrayColumnIndex.setDescription('This variable represents the final index for the mscExampleBcdOperFreeBcdArrayTable.')
msc_example_bcd_oper_free_bcd_array_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1123, 1, 3), digit_string().subtype(subtypeSpec=value_size_constraint(0, 5))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleBcdOperFreeBcdArrayValue.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleBcdOperFreeBcdArrayValue.setDescription('This variable represents an individual value for the mscExampleBcdOperFreeBcdArrayTable.')
msc_example_bcd_oper_free_bcd_replicated_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1124))
if mibBuilder.loadTexts:
mscExampleBcdOperFreeBcdReplicatedTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleBcdOperFreeBcdReplicatedTable.setDescription('')
msc_example_bcd_oper_free_bcd_replicated_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1124, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleBcdIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleBcdOperFreeBcdReplicatedIndex'))
if mibBuilder.loadTexts:
mscExampleBcdOperFreeBcdReplicatedEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleBcdOperFreeBcdReplicatedEntry.setDescription('An entry in the mscExampleBcdOperFreeBcdReplicatedTable.')
msc_example_bcd_oper_free_bcd_replicated_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1124, 1, 1), digit_string().subtype(subtypeSpec=value_size_constraint(0, 5)))
if mibBuilder.loadTexts:
mscExampleBcdOperFreeBcdReplicatedIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleBcdOperFreeBcdReplicatedIndex.setDescription('This variable represents the index for the mscExampleBcdOperFreeBcdReplicatedTable.')
msc_example_bcd_oper_free_bcd_replicated_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1124, 1, 2), digit_string().subtype(subtypeSpec=value_size_constraint(0, 16))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleBcdOperFreeBcdReplicatedValue.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleBcdOperFreeBcdReplicatedValue.setDescription('This variable represents an individual value for the mscExampleBcdOperFreeBcdReplicatedTable.')
msc_example_bcd_oper_free_bcd_replicated_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1124, 1, 3), row_status()).setMaxAccess('writeonly')
if mibBuilder.loadTexts:
mscExampleBcdOperFreeBcdReplicatedRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleBcdOperFreeBcdReplicatedRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleBcdOperFreeBcdReplicatedTable.')
msc_example_bcd_oper_free_bcd_list_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1125))
if mibBuilder.loadTexts:
mscExampleBcdOperFreeBcdListTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleBcdOperFreeBcdListTable.setDescription('')
msc_example_bcd_oper_free_bcd_list_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1125, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleBcdIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleBcdOperFreeBcdListValue'))
if mibBuilder.loadTexts:
mscExampleBcdOperFreeBcdListEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleBcdOperFreeBcdListEntry.setDescription('An entry in the mscExampleBcdOperFreeBcdListTable.')
msc_example_bcd_oper_free_bcd_list_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1125, 1, 1), digit_string().subtype(subtypeSpec=value_size_constraint(0, 16))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleBcdOperFreeBcdListValue.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleBcdOperFreeBcdListValue.setDescription('This variable represents both the value and the index for the mscExampleBcdOperFreeBcdListTable.')
msc_example_bcd_oper_free_bcd_list_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1125, 1, 2), row_status()).setMaxAccess('writeonly')
if mibBuilder.loadTexts:
mscExampleBcdOperFreeBcdListRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleBcdOperFreeBcdListRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleBcdOperFreeBcdListTable.')
msc_example_bcd_prov_struct_bcd_vector_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1126))
if mibBuilder.loadTexts:
mscExampleBcdProvStructBcdVectorTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleBcdProvStructBcdVectorTable.setDescription('')
msc_example_bcd_prov_struct_bcd_vector_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1126, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleBcdIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleBcdProvStructBcdVectorIndex'))
if mibBuilder.loadTexts:
mscExampleBcdProvStructBcdVectorEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleBcdProvStructBcdVectorEntry.setDescription('An entry in the mscExampleBcdProvStructBcdVectorTable.')
msc_example_bcd_prov_struct_bcd_vector_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1126, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 9)))
if mibBuilder.loadTexts:
mscExampleBcdProvStructBcdVectorIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleBcdProvStructBcdVectorIndex.setDescription('This variable represents the mscExampleBcdProvStructBcdVectorTable specific index for the mscExampleBcdProvStructBcdVectorTable.')
msc_example_bcd_prov_struct_bcd_vector_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1126, 1, 2), digit_string().subtype(subtypeSpec=value_size_constraint(0, 5))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleBcdProvStructBcdVectorValue.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleBcdProvStructBcdVectorValue.setDescription('This variable represents an individual value for the mscExampleBcdProvStructBcdVectorTable.')
msc_example_bcd_prov_struct_bcd_array_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1127))
if mibBuilder.loadTexts:
mscExampleBcdProvStructBcdArrayTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleBcdProvStructBcdArrayTable.setDescription('')
msc_example_bcd_prov_struct_bcd_array_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1127, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleBcdIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleBcdProvStructBcdArrayRowIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleBcdProvStructBcdArrayColumnIndex'))
if mibBuilder.loadTexts:
mscExampleBcdProvStructBcdArrayEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleBcdProvStructBcdArrayEntry.setDescription('An entry in the mscExampleBcdProvStructBcdArrayTable.')
msc_example_bcd_prov_struct_bcd_array_row_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1127, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 2)))
if mibBuilder.loadTexts:
mscExampleBcdProvStructBcdArrayRowIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleBcdProvStructBcdArrayRowIndex.setDescription('This variable represents the next to last index for the mscExampleBcdProvStructBcdArrayTable.')
msc_example_bcd_prov_struct_bcd_array_column_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1127, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 3)))
if mibBuilder.loadTexts:
mscExampleBcdProvStructBcdArrayColumnIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleBcdProvStructBcdArrayColumnIndex.setDescription('This variable represents the final index for the mscExampleBcdProvStructBcdArrayTable.')
msc_example_bcd_prov_struct_bcd_array_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1127, 1, 3), digit_string().subtype(subtypeSpec=value_size_constraint(0, 5))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleBcdProvStructBcdArrayValue.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleBcdProvStructBcdArrayValue.setDescription('This variable represents an individual value for the mscExampleBcdProvStructBcdArrayTable.')
msc_example_bcd_prov_free_bcd_vector_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1128))
if mibBuilder.loadTexts:
mscExampleBcdProvFreeBcdVectorTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleBcdProvFreeBcdVectorTable.setDescription('')
msc_example_bcd_prov_free_bcd_vector_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1128, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleBcdIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleBcdProvFreeBcdVectorIndex'))
if mibBuilder.loadTexts:
mscExampleBcdProvFreeBcdVectorEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleBcdProvFreeBcdVectorEntry.setDescription('An entry in the mscExampleBcdProvFreeBcdVectorTable.')
msc_example_bcd_prov_free_bcd_vector_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1128, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 9)))
if mibBuilder.loadTexts:
mscExampleBcdProvFreeBcdVectorIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleBcdProvFreeBcdVectorIndex.setDescription('This variable represents the mscExampleBcdProvFreeBcdVectorTable specific index for the mscExampleBcdProvFreeBcdVectorTable.')
msc_example_bcd_prov_free_bcd_vector_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1128, 1, 2), digit_string().subtype(subtypeSpec=value_size_constraint(0, 5))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleBcdProvFreeBcdVectorValue.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleBcdProvFreeBcdVectorValue.setDescription('This variable represents an individual value for the mscExampleBcdProvFreeBcdVectorTable.')
msc_example_bcd_prov_free_bcd_vector1_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1129))
if mibBuilder.loadTexts:
mscExampleBcdProvFreeBcdVector1Table.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleBcdProvFreeBcdVector1Table.setDescription('')
msc_example_bcd_prov_free_bcd_vector1_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1129, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleBcdIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleBcdProvFreeBcdVector1Index'))
if mibBuilder.loadTexts:
mscExampleBcdProvFreeBcdVector1Entry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleBcdProvFreeBcdVector1Entry.setDescription('An entry in the mscExampleBcdProvFreeBcdVector1Table.')
msc_example_bcd_prov_free_bcd_vector1_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1129, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 15)))
if mibBuilder.loadTexts:
mscExampleBcdProvFreeBcdVector1Index.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleBcdProvFreeBcdVector1Index.setDescription('This variable represents the mscExampleBcdProvFreeBcdVector1Table specific index for the mscExampleBcdProvFreeBcdVector1Table.')
msc_example_bcd_prov_free_bcd_vector1_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1129, 1, 2), digit_string().subtype(subtypeSpec=value_size_constraint(0, 5))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleBcdProvFreeBcdVector1Value.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleBcdProvFreeBcdVector1Value.setDescription('This variable represents an individual value for the mscExampleBcdProvFreeBcdVector1Table.')
msc_example_bcd_prov_free_bcd_array_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1130))
if mibBuilder.loadTexts:
mscExampleBcdProvFreeBcdArrayTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleBcdProvFreeBcdArrayTable.setDescription('')
msc_example_bcd_prov_free_bcd_array_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1130, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleBcdIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleBcdProvFreeBcdArrayRowIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleBcdProvFreeBcdArrayColumnIndex'))
if mibBuilder.loadTexts:
mscExampleBcdProvFreeBcdArrayEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleBcdProvFreeBcdArrayEntry.setDescription('An entry in the mscExampleBcdProvFreeBcdArrayTable.')
msc_example_bcd_prov_free_bcd_array_row_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1130, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 2)))
if mibBuilder.loadTexts:
mscExampleBcdProvFreeBcdArrayRowIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleBcdProvFreeBcdArrayRowIndex.setDescription('This variable represents the next to last index for the mscExampleBcdProvFreeBcdArrayTable.')
msc_example_bcd_prov_free_bcd_array_column_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1130, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 3)))
if mibBuilder.loadTexts:
mscExampleBcdProvFreeBcdArrayColumnIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleBcdProvFreeBcdArrayColumnIndex.setDescription('This variable represents the final index for the mscExampleBcdProvFreeBcdArrayTable.')
msc_example_bcd_prov_free_bcd_array_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1130, 1, 3), digit_string().subtype(subtypeSpec=value_size_constraint(0, 5))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleBcdProvFreeBcdArrayValue.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleBcdProvFreeBcdArrayValue.setDescription('This variable represents an individual value for the mscExampleBcdProvFreeBcdArrayTable.')
msc_example_bcd_prov_free_bcd_array1_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1131))
if mibBuilder.loadTexts:
mscExampleBcdProvFreeBcdArray1Table.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleBcdProvFreeBcdArray1Table.setDescription('')
msc_example_bcd_prov_free_bcd_array1_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1131, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleBcdIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleBcdProvFreeBcdArray1RowIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleBcdProvFreeBcdArray1ColumnIndex'))
if mibBuilder.loadTexts:
mscExampleBcdProvFreeBcdArray1Entry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleBcdProvFreeBcdArray1Entry.setDescription('An entry in the mscExampleBcdProvFreeBcdArray1Table.')
msc_example_bcd_prov_free_bcd_array1_row_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1131, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 3)))
if mibBuilder.loadTexts:
mscExampleBcdProvFreeBcdArray1RowIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleBcdProvFreeBcdArray1RowIndex.setDescription('This variable represents the next to last index for the mscExampleBcdProvFreeBcdArray1Table.')
msc_example_bcd_prov_free_bcd_array1_column_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1131, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 3)))
if mibBuilder.loadTexts:
mscExampleBcdProvFreeBcdArray1ColumnIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleBcdProvFreeBcdArray1ColumnIndex.setDescription('This variable represents the final index for the mscExampleBcdProvFreeBcdArray1Table.')
msc_example_bcd_prov_free_bcd_array1_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1131, 1, 3), digit_string().subtype(subtypeSpec=value_size_constraint(0, 5))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleBcdProvFreeBcdArray1Value.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleBcdProvFreeBcdArray1Value.setDescription('This variable represents an individual value for the mscExampleBcdProvFreeBcdArray1Table.')
msc_example_bcd_prov_free_bcd_replicated_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1132))
if mibBuilder.loadTexts:
mscExampleBcdProvFreeBcdReplicatedTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleBcdProvFreeBcdReplicatedTable.setDescription('')
msc_example_bcd_prov_free_bcd_replicated_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1132, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleBcdIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleBcdProvFreeBcdReplicatedIndex'))
if mibBuilder.loadTexts:
mscExampleBcdProvFreeBcdReplicatedEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleBcdProvFreeBcdReplicatedEntry.setDescription('An entry in the mscExampleBcdProvFreeBcdReplicatedTable.')
msc_example_bcd_prov_free_bcd_replicated_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1132, 1, 1), digit_string().subtype(subtypeSpec=value_size_constraint(0, 5)))
if mibBuilder.loadTexts:
mscExampleBcdProvFreeBcdReplicatedIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleBcdProvFreeBcdReplicatedIndex.setDescription('This variable represents the index for the mscExampleBcdProvFreeBcdReplicatedTable.')
msc_example_bcd_prov_free_bcd_replicated_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1132, 1, 2), digit_string().subtype(subtypeSpec=value_size_constraint(0, 16))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleBcdProvFreeBcdReplicatedValue.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleBcdProvFreeBcdReplicatedValue.setDescription('This variable represents an individual value for the mscExampleBcdProvFreeBcdReplicatedTable.')
msc_example_bcd_prov_free_bcd_replicated_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1132, 1, 3), row_status()).setMaxAccess('writeonly')
if mibBuilder.loadTexts:
mscExampleBcdProvFreeBcdReplicatedRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleBcdProvFreeBcdReplicatedRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleBcdProvFreeBcdReplicatedTable.')
msc_example_bcd_prov_free_bcd_replicated1_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1133))
if mibBuilder.loadTexts:
mscExampleBcdProvFreeBcdReplicated1Table.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleBcdProvFreeBcdReplicated1Table.setDescription('')
msc_example_bcd_prov_free_bcd_replicated1_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1133, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleBcdIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleBcdProvFreeBcdReplicated1Index'))
if mibBuilder.loadTexts:
mscExampleBcdProvFreeBcdReplicated1Entry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleBcdProvFreeBcdReplicated1Entry.setDescription('An entry in the mscExampleBcdProvFreeBcdReplicated1Table.')
msc_example_bcd_prov_free_bcd_replicated1_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1133, 1, 1), digit_string().subtype(subtypeSpec=value_size_constraint(1, 7)))
if mibBuilder.loadTexts:
mscExampleBcdProvFreeBcdReplicated1Index.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleBcdProvFreeBcdReplicated1Index.setDescription('This variable represents the index for the mscExampleBcdProvFreeBcdReplicated1Table.')
msc_example_bcd_prov_free_bcd_replicated1_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1133, 1, 2), digit_string().subtype(subtypeSpec=value_size_constraint(0, 5))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleBcdProvFreeBcdReplicated1Value.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleBcdProvFreeBcdReplicated1Value.setDescription('This variable represents an individual value for the mscExampleBcdProvFreeBcdReplicated1Table.')
msc_example_bcd_prov_free_bcd_replicated1_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1133, 1, 3), row_status()).setMaxAccess('writeonly')
if mibBuilder.loadTexts:
mscExampleBcdProvFreeBcdReplicated1RowStatus.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleBcdProvFreeBcdReplicated1RowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleBcdProvFreeBcdReplicated1Table.')
msc_example_bcd_prov_free_bcd_list_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1134))
if mibBuilder.loadTexts:
mscExampleBcdProvFreeBcdListTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleBcdProvFreeBcdListTable.setDescription('')
msc_example_bcd_prov_free_bcd_list_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1134, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleBcdIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleBcdProvFreeBcdListValue'))
if mibBuilder.loadTexts:
mscExampleBcdProvFreeBcdListEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleBcdProvFreeBcdListEntry.setDescription('An entry in the mscExampleBcdProvFreeBcdListTable.')
msc_example_bcd_prov_free_bcd_list_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1134, 1, 1), digit_string().subtype(subtypeSpec=value_size_constraint(0, 16))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleBcdProvFreeBcdListValue.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleBcdProvFreeBcdListValue.setDescription('This variable represents both the value and the index for the mscExampleBcdProvFreeBcdListTable.')
msc_example_bcd_prov_free_bcd_list_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1134, 1, 2), row_status()).setMaxAccess('writeonly')
if mibBuilder.loadTexts:
mscExampleBcdProvFreeBcdListRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleBcdProvFreeBcdListRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleBcdProvFreeBcdListTable.')
msc_example_bcd_prov_free_bcd_list1_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1135))
if mibBuilder.loadTexts:
mscExampleBcdProvFreeBcdList1Table.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleBcdProvFreeBcdList1Table.setDescription('')
msc_example_bcd_prov_free_bcd_list1_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1135, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleBcdIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleBcdProvFreeBcdList1Value'))
if mibBuilder.loadTexts:
mscExampleBcdProvFreeBcdList1Entry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleBcdProvFreeBcdList1Entry.setDescription('An entry in the mscExampleBcdProvFreeBcdList1Table.')
msc_example_bcd_prov_free_bcd_list1_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1135, 1, 1), digit_string().subtype(subtypeSpec=value_size_constraint(0, 16))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleBcdProvFreeBcdList1Value.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleBcdProvFreeBcdList1Value.setDescription('This variable represents both the value and the index for the mscExampleBcdProvFreeBcdList1Table.')
msc_example_bcd_prov_free_bcd_list1_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1135, 1, 2), row_status()).setMaxAccess('writeonly')
if mibBuilder.loadTexts:
mscExampleBcdProvFreeBcdList1RowStatus.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleBcdProvFreeBcdList1RowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleBcdProvFreeBcdList1Table.')
msc_example_wild_bcd = mib_identifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10))
msc_example_wild_bcd_row_status_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1))
if mibBuilder.loadTexts:
mscExampleWildBcdRowStatusTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleWildBcdRowStatusTable.setDescription('This entry controls the addition and deletion of mscExampleWildBcd components.')
msc_example_wild_bcd_row_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleWildBcdIndex'))
if mibBuilder.loadTexts:
mscExampleWildBcdRowStatusEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleWildBcdRowStatusEntry.setDescription('A single entry in the table represents a single mscExampleWildBcd component.')
msc_example_wild_bcd_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1, 1, 1), row_status()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleWildBcdRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleWildBcdRowStatus.setDescription('This variable is used as the basis for SNMP naming of mscExampleWildBcd components. These components can be added and deleted.')
msc_example_wild_bcd_component_name = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1, 1, 2), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mscExampleWildBcdComponentName.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleWildBcdComponentName.setDescription("This variable provides the component's string name for use with the ASCII Console Interface")
msc_example_wild_bcd_storage_type = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1, 1, 4), storage_type()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mscExampleWildBcdStorageType.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleWildBcdStorageType.setDescription('This variable represents the storage type value for the mscExampleWildBcd tables.')
msc_example_wild_bcd_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1, 1, 10), wildcarded_digit_string().subtype(subtypeSpec=value_size_constraint(1, 10)))
if mibBuilder.loadTexts:
mscExampleWildBcdIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleWildBcdIndex.setDescription('This variable represents the index for the mscExampleWildBcd tables.')
msc_example_wild_bcd_operational_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 10))
if mibBuilder.loadTexts:
mscExampleWildBcdOperationalTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleWildBcdOperationalTable.setDescription('')
msc_example_wild_bcd_operational_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 10, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleWildBcdIndex'))
if mibBuilder.loadTexts:
mscExampleWildBcdOperationalEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleWildBcdOperationalEntry.setDescription('An entry in the mscExampleWildBcdOperationalTable.')
msc_example_wild_bcd_oper_struct_wild_bcd = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 10, 1, 1), wildcarded_digit_string().subtype(subtypeSpec=value_size_constraint(0, 16))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleWildBcdOperStructWildBcd.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleWildBcdOperStructWildBcd.setDescription('')
msc_example_wild_bcd_oper_free_wild_bcd = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 10, 1, 2), wildcarded_digit_string().subtype(subtypeSpec=value_size_constraint(0, 16))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleWildBcdOperFreeWildBcd.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleWildBcdOperFreeWildBcd.setDescription('')
msc_example_wild_bcd_provisional_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 11))
if mibBuilder.loadTexts:
mscExampleWildBcdProvisionalTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleWildBcdProvisionalTable.setDescription('')
msc_example_wild_bcd_provisional_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 11, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleWildBcdIndex'))
if mibBuilder.loadTexts:
mscExampleWildBcdProvisionalEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleWildBcdProvisionalEntry.setDescription('An entry in the mscExampleWildBcdProvisionalTable.')
msc_example_wild_bcd_prov_struct_wild_bcd = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 11, 1, 1), wildcarded_digit_string().subtype(subtypeSpec=value_size_constraint(0, 16)).clone(hexValue='30313233343536373839')).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleWildBcdProvStructWildBcd.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleWildBcdProvStructWildBcd.setDescription('')
msc_example_wild_bcd_prov_free_wild_bcd = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 11, 1, 2), wildcarded_digit_string().subtype(subtypeSpec=value_size_constraint(4, 16)).clone(hexValue='31323334353637383930')).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleWildBcdProvFreeWildBcd.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleWildBcdProvFreeWildBcd.setDescription('')
msc_example_wild_bcd_oper_struct_wild_bcd_vector_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1136))
if mibBuilder.loadTexts:
mscExampleWildBcdOperStructWildBcdVectorTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleWildBcdOperStructWildBcdVectorTable.setDescription('')
msc_example_wild_bcd_oper_struct_wild_bcd_vector_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1136, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleWildBcdIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleWildBcdOperStructWildBcdVectorIndex'))
if mibBuilder.loadTexts:
mscExampleWildBcdOperStructWildBcdVectorEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleWildBcdOperStructWildBcdVectorEntry.setDescription('An entry in the mscExampleWildBcdOperStructWildBcdVectorTable.')
msc_example_wild_bcd_oper_struct_wild_bcd_vector_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1136, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 9)))
if mibBuilder.loadTexts:
mscExampleWildBcdOperStructWildBcdVectorIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleWildBcdOperStructWildBcdVectorIndex.setDescription('This variable represents the mscExampleWildBcdOperStructWildBcdVectorTable specific index for the mscExampleWildBcdOperStructWildBcdVectorTable.')
msc_example_wild_bcd_oper_struct_wild_bcd_vector_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1136, 1, 2), wildcarded_digit_string().subtype(subtypeSpec=value_size_constraint(0, 5))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleWildBcdOperStructWildBcdVectorValue.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleWildBcdOperStructWildBcdVectorValue.setDescription('This variable represents an individual value for the mscExampleWildBcdOperStructWildBcdVectorTable.')
msc_example_wild_bcd_oper_struct_wild_bcd_array_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1137))
if mibBuilder.loadTexts:
mscExampleWildBcdOperStructWildBcdArrayTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleWildBcdOperStructWildBcdArrayTable.setDescription('')
msc_example_wild_bcd_oper_struct_wild_bcd_array_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1137, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleWildBcdIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleWildBcdOperStructWildBcdArrayRowIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleWildBcdOperStructWildBcdArrayColumnIndex'))
if mibBuilder.loadTexts:
mscExampleWildBcdOperStructWildBcdArrayEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleWildBcdOperStructWildBcdArrayEntry.setDescription('An entry in the mscExampleWildBcdOperStructWildBcdArrayTable.')
msc_example_wild_bcd_oper_struct_wild_bcd_array_row_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1137, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 2)))
if mibBuilder.loadTexts:
mscExampleWildBcdOperStructWildBcdArrayRowIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleWildBcdOperStructWildBcdArrayRowIndex.setDescription('This variable represents the next to last index for the mscExampleWildBcdOperStructWildBcdArrayTable.')
msc_example_wild_bcd_oper_struct_wild_bcd_array_column_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1137, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 3)))
if mibBuilder.loadTexts:
mscExampleWildBcdOperStructWildBcdArrayColumnIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleWildBcdOperStructWildBcdArrayColumnIndex.setDescription('This variable represents the final index for the mscExampleWildBcdOperStructWildBcdArrayTable.')
msc_example_wild_bcd_oper_struct_wild_bcd_array_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1137, 1, 3), wildcarded_digit_string().subtype(subtypeSpec=value_size_constraint(0, 5))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleWildBcdOperStructWildBcdArrayValue.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleWildBcdOperStructWildBcdArrayValue.setDescription('This variable represents an individual value for the mscExampleWildBcdOperStructWildBcdArrayTable.')
msc_example_wild_bcd_oper_free_wild_bcd_vector_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1138))
if mibBuilder.loadTexts:
mscExampleWildBcdOperFreeWildBcdVectorTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleWildBcdOperFreeWildBcdVectorTable.setDescription('')
msc_example_wild_bcd_oper_free_wild_bcd_vector_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1138, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleWildBcdIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleWildBcdOperFreeWildBcdVectorIndex'))
if mibBuilder.loadTexts:
mscExampleWildBcdOperFreeWildBcdVectorEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleWildBcdOperFreeWildBcdVectorEntry.setDescription('An entry in the mscExampleWildBcdOperFreeWildBcdVectorTable.')
msc_example_wild_bcd_oper_free_wild_bcd_vector_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1138, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 9)))
if mibBuilder.loadTexts:
mscExampleWildBcdOperFreeWildBcdVectorIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleWildBcdOperFreeWildBcdVectorIndex.setDescription('This variable represents the mscExampleWildBcdOperFreeWildBcdVectorTable specific index for the mscExampleWildBcdOperFreeWildBcdVectorTable.')
msc_example_wild_bcd_oper_free_wild_bcd_vector_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1138, 1, 2), wildcarded_digit_string().subtype(subtypeSpec=value_size_constraint(0, 5))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleWildBcdOperFreeWildBcdVectorValue.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleWildBcdOperFreeWildBcdVectorValue.setDescription('This variable represents an individual value for the mscExampleWildBcdOperFreeWildBcdVectorTable.')
msc_example_wild_bcd_oper_free_wild_bcd_array_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1139))
if mibBuilder.loadTexts:
mscExampleWildBcdOperFreeWildBcdArrayTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleWildBcdOperFreeWildBcdArrayTable.setDescription('')
msc_example_wild_bcd_oper_free_wild_bcd_array_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1139, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleWildBcdIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleWildBcdOperFreeWildBcdArrayRowIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleWildBcdOperFreeWildBcdArrayColumnIndex'))
if mibBuilder.loadTexts:
mscExampleWildBcdOperFreeWildBcdArrayEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleWildBcdOperFreeWildBcdArrayEntry.setDescription('An entry in the mscExampleWildBcdOperFreeWildBcdArrayTable.')
msc_example_wild_bcd_oper_free_wild_bcd_array_row_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1139, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 2)))
if mibBuilder.loadTexts:
mscExampleWildBcdOperFreeWildBcdArrayRowIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleWildBcdOperFreeWildBcdArrayRowIndex.setDescription('This variable represents the next to last index for the mscExampleWildBcdOperFreeWildBcdArrayTable.')
msc_example_wild_bcd_oper_free_wild_bcd_array_column_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1139, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 3)))
if mibBuilder.loadTexts:
mscExampleWildBcdOperFreeWildBcdArrayColumnIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleWildBcdOperFreeWildBcdArrayColumnIndex.setDescription('This variable represents the final index for the mscExampleWildBcdOperFreeWildBcdArrayTable.')
msc_example_wild_bcd_oper_free_wild_bcd_array_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1139, 1, 3), wildcarded_digit_string().subtype(subtypeSpec=value_size_constraint(0, 5))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleWildBcdOperFreeWildBcdArrayValue.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleWildBcdOperFreeWildBcdArrayValue.setDescription('This variable represents an individual value for the mscExampleWildBcdOperFreeWildBcdArrayTable.')
msc_example_wild_bcd_oper_free_wild_bcd_replicated_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1140))
if mibBuilder.loadTexts:
mscExampleWildBcdOperFreeWildBcdReplicatedTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleWildBcdOperFreeWildBcdReplicatedTable.setDescription('')
msc_example_wild_bcd_oper_free_wild_bcd_replicated_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1140, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleWildBcdIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleWildBcdOperFreeWildBcdReplicatedIndex'))
if mibBuilder.loadTexts:
mscExampleWildBcdOperFreeWildBcdReplicatedEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleWildBcdOperFreeWildBcdReplicatedEntry.setDescription('An entry in the mscExampleWildBcdOperFreeWildBcdReplicatedTable.')
msc_example_wild_bcd_oper_free_wild_bcd_replicated_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1140, 1, 1), wildcarded_digit_string().subtype(subtypeSpec=value_size_constraint(0, 5)))
if mibBuilder.loadTexts:
mscExampleWildBcdOperFreeWildBcdReplicatedIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleWildBcdOperFreeWildBcdReplicatedIndex.setDescription('This variable represents the index for the mscExampleWildBcdOperFreeWildBcdReplicatedTable.')
msc_example_wild_bcd_oper_free_wild_bcd_replicated_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1140, 1, 2), wildcarded_digit_string().subtype(subtypeSpec=value_size_constraint(0, 16))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleWildBcdOperFreeWildBcdReplicatedValue.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleWildBcdOperFreeWildBcdReplicatedValue.setDescription('This variable represents an individual value for the mscExampleWildBcdOperFreeWildBcdReplicatedTable.')
msc_example_wild_bcd_oper_free_wild_bcd_replicated_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1140, 1, 3), row_status()).setMaxAccess('writeonly')
if mibBuilder.loadTexts:
mscExampleWildBcdOperFreeWildBcdReplicatedRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleWildBcdOperFreeWildBcdReplicatedRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleWildBcdOperFreeWildBcdReplicatedTable.')
msc_example_wild_bcd_oper_free_wild_bcd_list_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1141))
if mibBuilder.loadTexts:
mscExampleWildBcdOperFreeWildBcdListTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleWildBcdOperFreeWildBcdListTable.setDescription('')
msc_example_wild_bcd_oper_free_wild_bcd_list_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1141, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleWildBcdIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleWildBcdOperFreeWildBcdListValue'))
if mibBuilder.loadTexts:
mscExampleWildBcdOperFreeWildBcdListEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleWildBcdOperFreeWildBcdListEntry.setDescription('An entry in the mscExampleWildBcdOperFreeWildBcdListTable.')
msc_example_wild_bcd_oper_free_wild_bcd_list_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1141, 1, 1), wildcarded_digit_string().subtype(subtypeSpec=value_size_constraint(0, 16))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleWildBcdOperFreeWildBcdListValue.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleWildBcdOperFreeWildBcdListValue.setDescription('This variable represents both the value and the index for the mscExampleWildBcdOperFreeWildBcdListTable.')
msc_example_wild_bcd_oper_free_wild_bcd_list_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1141, 1, 2), row_status()).setMaxAccess('writeonly')
if mibBuilder.loadTexts:
mscExampleWildBcdOperFreeWildBcdListRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleWildBcdOperFreeWildBcdListRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleWildBcdOperFreeWildBcdListTable.')
msc_example_wild_bcd_prov_struct_wild_bcd_vector_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1142))
if mibBuilder.loadTexts:
mscExampleWildBcdProvStructWildBcdVectorTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleWildBcdProvStructWildBcdVectorTable.setDescription('')
msc_example_wild_bcd_prov_struct_wild_bcd_vector_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1142, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleWildBcdIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleWildBcdProvStructWildBcdVectorIndex'))
if mibBuilder.loadTexts:
mscExampleWildBcdProvStructWildBcdVectorEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleWildBcdProvStructWildBcdVectorEntry.setDescription('An entry in the mscExampleWildBcdProvStructWildBcdVectorTable.')
msc_example_wild_bcd_prov_struct_wild_bcd_vector_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1142, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 9)))
if mibBuilder.loadTexts:
mscExampleWildBcdProvStructWildBcdVectorIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleWildBcdProvStructWildBcdVectorIndex.setDescription('This variable represents the mscExampleWildBcdProvStructWildBcdVectorTable specific index for the mscExampleWildBcdProvStructWildBcdVectorTable.')
msc_example_wild_bcd_prov_struct_wild_bcd_vector_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1142, 1, 2), wildcarded_digit_string().subtype(subtypeSpec=value_size_constraint(0, 5))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleWildBcdProvStructWildBcdVectorValue.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleWildBcdProvStructWildBcdVectorValue.setDescription('This variable represents an individual value for the mscExampleWildBcdProvStructWildBcdVectorTable.')
msc_example_wild_bcd_prov_struct_wild_bcd_array_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1143))
if mibBuilder.loadTexts:
mscExampleWildBcdProvStructWildBcdArrayTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleWildBcdProvStructWildBcdArrayTable.setDescription('')
msc_example_wild_bcd_prov_struct_wild_bcd_array_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1143, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleWildBcdIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleWildBcdProvStructWildBcdArrayRowIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleWildBcdProvStructWildBcdArrayColumnIndex'))
if mibBuilder.loadTexts:
mscExampleWildBcdProvStructWildBcdArrayEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleWildBcdProvStructWildBcdArrayEntry.setDescription('An entry in the mscExampleWildBcdProvStructWildBcdArrayTable.')
msc_example_wild_bcd_prov_struct_wild_bcd_array_row_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1143, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 2)))
if mibBuilder.loadTexts:
mscExampleWildBcdProvStructWildBcdArrayRowIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleWildBcdProvStructWildBcdArrayRowIndex.setDescription('This variable represents the next to last index for the mscExampleWildBcdProvStructWildBcdArrayTable.')
msc_example_wild_bcd_prov_struct_wild_bcd_array_column_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1143, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 3)))
if mibBuilder.loadTexts:
mscExampleWildBcdProvStructWildBcdArrayColumnIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleWildBcdProvStructWildBcdArrayColumnIndex.setDescription('This variable represents the final index for the mscExampleWildBcdProvStructWildBcdArrayTable.')
msc_example_wild_bcd_prov_struct_wild_bcd_array_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1143, 1, 3), wildcarded_digit_string().subtype(subtypeSpec=value_size_constraint(0, 5))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleWildBcdProvStructWildBcdArrayValue.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleWildBcdProvStructWildBcdArrayValue.setDescription('This variable represents an individual value for the mscExampleWildBcdProvStructWildBcdArrayTable.')
msc_example_wild_bcd_prov_free_wild_bcd_vector_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1144))
if mibBuilder.loadTexts:
mscExampleWildBcdProvFreeWildBcdVectorTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleWildBcdProvFreeWildBcdVectorTable.setDescription('')
msc_example_wild_bcd_prov_free_wild_bcd_vector_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1144, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleWildBcdIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleWildBcdProvFreeWildBcdVectorIndex'))
if mibBuilder.loadTexts:
mscExampleWildBcdProvFreeWildBcdVectorEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleWildBcdProvFreeWildBcdVectorEntry.setDescription('An entry in the mscExampleWildBcdProvFreeWildBcdVectorTable.')
msc_example_wild_bcd_prov_free_wild_bcd_vector_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1144, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 9)))
if mibBuilder.loadTexts:
mscExampleWildBcdProvFreeWildBcdVectorIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleWildBcdProvFreeWildBcdVectorIndex.setDescription('This variable represents the mscExampleWildBcdProvFreeWildBcdVectorTable specific index for the mscExampleWildBcdProvFreeWildBcdVectorTable.')
msc_example_wild_bcd_prov_free_wild_bcd_vector_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1144, 1, 2), wildcarded_digit_string().subtype(subtypeSpec=value_size_constraint(0, 5))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleWildBcdProvFreeWildBcdVectorValue.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleWildBcdProvFreeWildBcdVectorValue.setDescription('This variable represents an individual value for the mscExampleWildBcdProvFreeWildBcdVectorTable.')
msc_example_wild_bcd_prov_free_wild_bcd_array_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1145))
if mibBuilder.loadTexts:
mscExampleWildBcdProvFreeWildBcdArrayTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleWildBcdProvFreeWildBcdArrayTable.setDescription('')
msc_example_wild_bcd_prov_free_wild_bcd_array_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1145, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleWildBcdIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleWildBcdProvFreeWildBcdArrayRowIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleWildBcdProvFreeWildBcdArrayColumnIndex'))
if mibBuilder.loadTexts:
mscExampleWildBcdProvFreeWildBcdArrayEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleWildBcdProvFreeWildBcdArrayEntry.setDescription('An entry in the mscExampleWildBcdProvFreeWildBcdArrayTable.')
msc_example_wild_bcd_prov_free_wild_bcd_array_row_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1145, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 2)))
if mibBuilder.loadTexts:
mscExampleWildBcdProvFreeWildBcdArrayRowIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleWildBcdProvFreeWildBcdArrayRowIndex.setDescription('This variable represents the next to last index for the mscExampleWildBcdProvFreeWildBcdArrayTable.')
msc_example_wild_bcd_prov_free_wild_bcd_array_column_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1145, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 3)))
if mibBuilder.loadTexts:
mscExampleWildBcdProvFreeWildBcdArrayColumnIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleWildBcdProvFreeWildBcdArrayColumnIndex.setDescription('This variable represents the final index for the mscExampleWildBcdProvFreeWildBcdArrayTable.')
msc_example_wild_bcd_prov_free_wild_bcd_array_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1145, 1, 3), wildcarded_digit_string().subtype(subtypeSpec=value_size_constraint(0, 5))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleWildBcdProvFreeWildBcdArrayValue.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleWildBcdProvFreeWildBcdArrayValue.setDescription('This variable represents an individual value for the mscExampleWildBcdProvFreeWildBcdArrayTable.')
msc_example_wild_bcd_prov_free_wild_bcd_replicated_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1146))
if mibBuilder.loadTexts:
mscExampleWildBcdProvFreeWildBcdReplicatedTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleWildBcdProvFreeWildBcdReplicatedTable.setDescription('')
msc_example_wild_bcd_prov_free_wild_bcd_replicated_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1146, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleWildBcdIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleWildBcdProvFreeWildBcdReplicatedIndex'))
if mibBuilder.loadTexts:
mscExampleWildBcdProvFreeWildBcdReplicatedEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleWildBcdProvFreeWildBcdReplicatedEntry.setDescription('An entry in the mscExampleWildBcdProvFreeWildBcdReplicatedTable.')
msc_example_wild_bcd_prov_free_wild_bcd_replicated_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1146, 1, 1), wildcarded_digit_string().subtype(subtypeSpec=value_size_constraint(0, 5)))
if mibBuilder.loadTexts:
mscExampleWildBcdProvFreeWildBcdReplicatedIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleWildBcdProvFreeWildBcdReplicatedIndex.setDescription('This variable represents the index for the mscExampleWildBcdProvFreeWildBcdReplicatedTable.')
msc_example_wild_bcd_prov_free_wild_bcd_replicated_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1146, 1, 2), wildcarded_digit_string().subtype(subtypeSpec=value_size_constraint(0, 16))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleWildBcdProvFreeWildBcdReplicatedValue.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleWildBcdProvFreeWildBcdReplicatedValue.setDescription('This variable represents an individual value for the mscExampleWildBcdProvFreeWildBcdReplicatedTable.')
msc_example_wild_bcd_prov_free_wild_bcd_replicated_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1146, 1, 3), row_status()).setMaxAccess('writeonly')
if mibBuilder.loadTexts:
mscExampleWildBcdProvFreeWildBcdReplicatedRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleWildBcdProvFreeWildBcdReplicatedRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleWildBcdProvFreeWildBcdReplicatedTable.')
msc_example_wild_bcd_prov_free_wild_bcd_list_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1147))
if mibBuilder.loadTexts:
mscExampleWildBcdProvFreeWildBcdListTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleWildBcdProvFreeWildBcdListTable.setDescription('')
msc_example_wild_bcd_prov_free_wild_bcd_list_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1147, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleWildBcdIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleWildBcdProvFreeWildBcdListValue'))
if mibBuilder.loadTexts:
mscExampleWildBcdProvFreeWildBcdListEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleWildBcdProvFreeWildBcdListEntry.setDescription('An entry in the mscExampleWildBcdProvFreeWildBcdListTable.')
msc_example_wild_bcd_prov_free_wild_bcd_list_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1147, 1, 1), wildcarded_digit_string().subtype(subtypeSpec=value_size_constraint(0, 16))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleWildBcdProvFreeWildBcdListValue.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleWildBcdProvFreeWildBcdListValue.setDescription('This variable represents both the value and the index for the mscExampleWildBcdProvFreeWildBcdListTable.')
msc_example_wild_bcd_prov_free_wild_bcd_list_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1147, 1, 2), row_status()).setMaxAccess('writeonly')
if mibBuilder.loadTexts:
mscExampleWildBcdProvFreeWildBcdListRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleWildBcdProvFreeWildBcdListRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleWildBcdProvFreeWildBcdListTable.')
msc_example_enum = mib_identifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11))
msc_example_enum_row_status_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1))
if mibBuilder.loadTexts:
mscExampleEnumRowStatusTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleEnumRowStatusTable.setDescription('This entry controls the addition and deletion of mscExampleEnum components.')
msc_example_enum_row_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleEnumIndex'))
if mibBuilder.loadTexts:
mscExampleEnumRowStatusEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleEnumRowStatusEntry.setDescription('A single entry in the table represents a single mscExampleEnum component.')
msc_example_enum_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1, 1, 1), row_status()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleEnumRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleEnumRowStatus.setDescription('This variable is used as the basis for SNMP naming of mscExampleEnum components. These components can be added and deleted.')
msc_example_enum_component_name = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1, 1, 2), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mscExampleEnumComponentName.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleEnumComponentName.setDescription("This variable provides the component's string name for use with the ASCII Console Interface")
msc_example_enum_storage_type = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1, 1, 4), storage_type()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mscExampleEnumStorageType.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleEnumStorageType.setDescription('This variable represents the storage type value for the mscExampleEnum tables.')
msc_example_enum_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1, 1, 10), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('first', 1), ('second', 2), ('third', 3))))
if mibBuilder.loadTexts:
mscExampleEnumIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleEnumIndex.setDescription('This variable represents the index for the mscExampleEnum tables.')
msc_example_enum_operational_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 10))
if mibBuilder.loadTexts:
mscExampleEnumOperationalTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleEnumOperationalTable.setDescription('')
msc_example_enum_operational_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 10, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleEnumIndex'))
if mibBuilder.loadTexts:
mscExampleEnumOperationalEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleEnumOperationalEntry.setDescription('An entry in the mscExampleEnumOperationalTable.')
msc_example_enum_oper_struct_enum = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 10, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4))).clone(namedValues=named_values(('monday', 0), ('tuesday', 1), ('wednesday', 2), ('thursday', 3), ('friday', 4)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleEnumOperStructEnum.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleEnumOperStructEnum.setDescription('')
msc_example_enum_oper_struct_enum_set = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 10, 1, 2), octet_string().subtype(subtypeSpec=value_size_constraint(1, 1)).setFixedLength(1)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleEnumOperStructEnumSet.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleEnumOperStructEnumSet.setDescription('Description of bits: monday(0) tuesday(1) wednesday(2) thursday(3) friday(4) saturday(5) sunday(6)')
msc_example_enum_oper_free_enum = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 10, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5))).clone(namedValues=named_values(('january', 0), ('february', 1), ('march', 2), ('april', 3), ('may', 4), ('june', 5)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleEnumOperFreeEnum.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleEnumOperFreeEnum.setDescription('')
msc_example_enum_oper_free_enum_set = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 10, 1, 4), octet_string().subtype(subtypeSpec=value_size_constraint(2, 2)).setFixedLength(2)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleEnumOperFreeEnumSet.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleEnumOperFreeEnumSet.setDescription('Description of bits: notused0(0) notused1(1) notused2(2) notused3(3) notused4(4) notused5(5) july(6) august(7) september(8) october(9) november(10) december(11)')
msc_example_enum_provisional_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 11))
if mibBuilder.loadTexts:
mscExampleEnumProvisionalTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleEnumProvisionalTable.setDescription('')
msc_example_enum_provisional_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 11, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleEnumIndex'))
if mibBuilder.loadTexts:
mscExampleEnumProvisionalEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleEnumProvisionalEntry.setDescription('An entry in the mscExampleEnumProvisionalTable.')
msc_example_enum_prov_enum_sub = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 11, 1, 1), link()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleEnumProvEnumSub.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleEnumProvEnumSub.setDescription('')
msc_example_enum_prov_struct_enum = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 11, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4))).clone(namedValues=named_values(('monday', 0), ('tuesday', 1), ('wednesday', 2), ('thursday', 3), ('friday', 4))).clone('friday')).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleEnumProvStructEnum.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleEnumProvStructEnum.setDescription('')
msc_example_enum_prov_struct_enum_set = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 11, 1, 3), octet_string().subtype(subtypeSpec=value_size_constraint(1, 1)).setFixedLength(1).clone(hexValue='aa')).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleEnumProvStructEnumSet.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleEnumProvStructEnumSet.setDescription('Description of bits: monday(0) tuesday(1) wednesday(2) thursday(3) friday(4) saturday(5) sunday(6)')
msc_example_enum_prov_free_enum = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 11, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5))).clone(namedValues=named_values(('january', 0), ('february', 1), ('march', 2), ('april', 3), ('may', 4), ('june', 5))).clone('may')).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleEnumProvFreeEnum.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleEnumProvFreeEnum.setDescription('')
msc_example_enum_prov_free_enum1 = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 11, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 11, 12, 13, 14))).clone(namedValues=named_values(('apple', 1), ('orange', 2), ('banana', 3), ('pear', 11), ('grapes', 12), ('pineapple', 13), ('watermelon', 14)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleEnumProvFreeEnum1.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleEnumProvFreeEnum1.setDescription('')
msc_example_enum_prov_free_enum_set = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 11, 1, 6), octet_string().subtype(subtypeSpec=value_size_constraint(2, 2)).setFixedLength(2).clone(hexValue='0070')).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleEnumProvFreeEnumSet.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleEnumProvFreeEnumSet.setDescription('Description of bits: notused0(0) notused1(1) notused2(2) notused3(3) notused4(4) notused5(5) july(6) august(7) september(8) october(9) november(10) december(11)')
msc_example_enum_prov_free_enum_set1 = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 11, 1, 7), octet_string().subtype(subtypeSpec=value_size_constraint(2, 2)).setFixedLength(2)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleEnumProvFreeEnumSet1.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleEnumProvFreeEnumSet1.setDescription('Description of bits: notused0(0) apple(1) orange(2) banana(3) notused4(4) notused5(5) notused6(6) notused7(7) notused8(8) notused9(9) notused10(10) pear(11) grapes(12) pineapple(13) watermelon(14)')
msc_example_enum_oper_struct_enum_vector_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1162))
if mibBuilder.loadTexts:
mscExampleEnumOperStructEnumVectorTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleEnumOperStructEnumVectorTable.setDescription('')
msc_example_enum_oper_struct_enum_vector_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1162, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleEnumIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleEnumOperStructEnumVectorIndex'))
if mibBuilder.loadTexts:
mscExampleEnumOperStructEnumVectorEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleEnumOperStructEnumVectorEntry.setDescription('An entry in the mscExampleEnumOperStructEnumVectorTable.')
msc_example_enum_oper_struct_enum_vector_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1162, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5, 6))).clone(namedValues=named_values(('monday', 0), ('tuesday', 1), ('wednesday', 2), ('thursday', 3), ('friday', 4), ('saturday', 5), ('sunday', 6))))
if mibBuilder.loadTexts:
mscExampleEnumOperStructEnumVectorIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleEnumOperStructEnumVectorIndex.setDescription('This variable represents the mscExampleEnumOperStructEnumVectorTable specific index for the mscExampleEnumOperStructEnumVectorTable.')
msc_example_enum_oper_struct_enum_vector_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1162, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5, 6))).clone(namedValues=named_values(('monday', 0), ('tuesday', 1), ('wednesday', 2), ('thursday', 3), ('friday', 4), ('saturday', 5), ('sunday', 6)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleEnumOperStructEnumVectorValue.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleEnumOperStructEnumVectorValue.setDescription('This variable represents an individual value for the mscExampleEnumOperStructEnumVectorTable.')
msc_example_enum_oper_struct_enum_array_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1163))
if mibBuilder.loadTexts:
mscExampleEnumOperStructEnumArrayTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleEnumOperStructEnumArrayTable.setDescription('')
msc_example_enum_oper_struct_enum_array_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1163, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleEnumIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleEnumOperStructEnumArrayMonthIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleEnumOperStructEnumArrayDayIndex'))
if mibBuilder.loadTexts:
mscExampleEnumOperStructEnumArrayEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleEnumOperStructEnumArrayEntry.setDescription('An entry in the mscExampleEnumOperStructEnumArrayTable.')
msc_example_enum_oper_struct_enum_array_month_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1163, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11))).clone(namedValues=named_values(('january', 0), ('february', 1), ('march', 2), ('april', 3), ('may', 4), ('june', 5), ('july', 6), ('august', 7), ('september', 8), ('october', 9), ('november', 10), ('december', 11))))
if mibBuilder.loadTexts:
mscExampleEnumOperStructEnumArrayMonthIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleEnumOperStructEnumArrayMonthIndex.setDescription('This variable represents the next to last index for the mscExampleEnumOperStructEnumArrayTable.')
msc_example_enum_oper_struct_enum_array_day_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1163, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5, 6))).clone(namedValues=named_values(('mondayaaaa', 0), ('tuesdayaaaa', 1), ('wednesdayaaaa', 2), ('thursdayaaaa', 3), ('fridayaaaa', 4), ('saturdayaaaa', 5), ('sundayaaaa', 6))))
if mibBuilder.loadTexts:
mscExampleEnumOperStructEnumArrayDayIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleEnumOperStructEnumArrayDayIndex.setDescription('This variable represents the final index for the mscExampleEnumOperStructEnumArrayTable.')
msc_example_enum_oper_struct_enum_array_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1163, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11))).clone(namedValues=named_values(('january', 0), ('february', 1), ('march', 2), ('april', 3), ('may', 4), ('june', 5), ('july', 6), ('august', 7), ('september', 8), ('october', 9), ('november', 10), ('december', 11)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleEnumOperStructEnumArrayValue.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleEnumOperStructEnumArrayValue.setDescription('This variable represents an individual value for the mscExampleEnumOperStructEnumArrayTable.')
msc_example_enum_oper_free_enum_vector_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1164))
if mibBuilder.loadTexts:
mscExampleEnumOperFreeEnumVectorTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleEnumOperFreeEnumVectorTable.setDescription('')
msc_example_enum_oper_free_enum_vector_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1164, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleEnumIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleEnumOperFreeEnumVectorIndex'))
if mibBuilder.loadTexts:
mscExampleEnumOperFreeEnumVectorEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleEnumOperFreeEnumVectorEntry.setDescription('An entry in the mscExampleEnumOperFreeEnumVectorTable.')
msc_example_enum_oper_free_enum_vector_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1164, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5, 6))).clone(namedValues=named_values(('monday', 0), ('tuesday', 1), ('wednesday', 2), ('thursday', 3), ('friday', 4), ('saturday', 5), ('sunday', 6))))
if mibBuilder.loadTexts:
mscExampleEnumOperFreeEnumVectorIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleEnumOperFreeEnumVectorIndex.setDescription('This variable represents the mscExampleEnumOperFreeEnumVectorTable specific index for the mscExampleEnumOperFreeEnumVectorTable.')
msc_example_enum_oper_free_enum_vector_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1164, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4))).clone(namedValues=named_values(('monday', 0), ('tuesday', 1), ('wednesday', 2), ('thursday', 3), ('friday', 4)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleEnumOperFreeEnumVectorValue.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleEnumOperFreeEnumVectorValue.setDescription('This variable represents an individual value for the mscExampleEnumOperFreeEnumVectorTable.')
msc_example_enum_oper_free_enum_array_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1165))
if mibBuilder.loadTexts:
mscExampleEnumOperFreeEnumArrayTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleEnumOperFreeEnumArrayTable.setDescription('')
msc_example_enum_oper_free_enum_array_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1165, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleEnumIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleEnumOperFreeEnumArrayMonthIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleEnumOperFreeEnumArrayDayIndex'))
if mibBuilder.loadTexts:
mscExampleEnumOperFreeEnumArrayEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleEnumOperFreeEnumArrayEntry.setDescription('An entry in the mscExampleEnumOperFreeEnumArrayTable.')
msc_example_enum_oper_free_enum_array_month_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1165, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11))).clone(namedValues=named_values(('january', 0), ('february', 1), ('march', 2), ('april', 3), ('may', 4), ('june', 5), ('july', 6), ('august', 7), ('september', 8), ('october', 9), ('november', 10), ('december', 11))))
if mibBuilder.loadTexts:
mscExampleEnumOperFreeEnumArrayMonthIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleEnumOperFreeEnumArrayMonthIndex.setDescription('This variable represents the next to last index for the mscExampleEnumOperFreeEnumArrayTable.')
msc_example_enum_oper_free_enum_array_day_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1165, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5, 6))).clone(namedValues=named_values(('monday', 0), ('tuesday', 1), ('wednesday', 2), ('thursday', 3), ('friday', 4), ('saturday', 5), ('sunday', 6))))
if mibBuilder.loadTexts:
mscExampleEnumOperFreeEnumArrayDayIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleEnumOperFreeEnumArrayDayIndex.setDescription('This variable represents the final index for the mscExampleEnumOperFreeEnumArrayTable.')
msc_example_enum_oper_free_enum_array_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1165, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11))).clone(namedValues=named_values(('january', 0), ('february', 1), ('march', 2), ('april', 3), ('may', 4), ('june', 5), ('july', 6), ('august', 7), ('september', 8), ('october', 9), ('november', 10), ('december', 11)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleEnumOperFreeEnumArrayValue.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleEnumOperFreeEnumArrayValue.setDescription('This variable represents an individual value for the mscExampleEnumOperFreeEnumArrayTable.')
msc_example_enum_oper_free_enum_replicated_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1166))
if mibBuilder.loadTexts:
mscExampleEnumOperFreeEnumReplicatedTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleEnumOperFreeEnumReplicatedTable.setDescription('')
msc_example_enum_oper_free_enum_replicated_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1166, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleEnumIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleEnumOperFreeEnumReplicatedIndex'))
if mibBuilder.loadTexts:
mscExampleEnumOperFreeEnumReplicatedEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleEnumOperFreeEnumReplicatedEntry.setDescription('An entry in the mscExampleEnumOperFreeEnumReplicatedTable.')
msc_example_enum_oper_free_enum_replicated_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1166, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5, 6))).clone(namedValues=named_values(('monday', 0), ('tuesday', 1), ('wednesday', 2), ('thursday', 3), ('friday', 4), ('saturday', 5), ('sunday', 6))))
if mibBuilder.loadTexts:
mscExampleEnumOperFreeEnumReplicatedIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleEnumOperFreeEnumReplicatedIndex.setDescription('This variable represents the index for the mscExampleEnumOperFreeEnumReplicatedTable.')
msc_example_enum_oper_free_enum_replicated_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1166, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11))).clone(namedValues=named_values(('january', 0), ('february', 1), ('march', 2), ('april', 3), ('may', 4), ('june', 5), ('july', 6), ('august', 7), ('september', 8), ('october', 9), ('november', 10), ('december', 11)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleEnumOperFreeEnumReplicatedValue.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleEnumOperFreeEnumReplicatedValue.setDescription('This variable represents an individual value for the mscExampleEnumOperFreeEnumReplicatedTable.')
msc_example_enum_oper_free_enum_replicated_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1166, 1, 3), row_status()).setMaxAccess('writeonly')
if mibBuilder.loadTexts:
mscExampleEnumOperFreeEnumReplicatedRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleEnumOperFreeEnumReplicatedRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleEnumOperFreeEnumReplicatedTable.')
msc_example_enum_oper_free_enum_list_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1167))
if mibBuilder.loadTexts:
mscExampleEnumOperFreeEnumListTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleEnumOperFreeEnumListTable.setDescription('')
msc_example_enum_oper_free_enum_list_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1167, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleEnumIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleEnumOperFreeEnumListValue'))
if mibBuilder.loadTexts:
mscExampleEnumOperFreeEnumListEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleEnumOperFreeEnumListEntry.setDescription('An entry in the mscExampleEnumOperFreeEnumListTable.')
msc_example_enum_oper_free_enum_list_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1167, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11))).clone(namedValues=named_values(('january', 0), ('february', 1), ('march', 2), ('april', 3), ('may', 4), ('june', 5), ('july', 6), ('august', 7), ('september', 8), ('october', 9), ('november', 10), ('december', 11)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleEnumOperFreeEnumListValue.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleEnumOperFreeEnumListValue.setDescription('This variable represents both the value and the index for the mscExampleEnumOperFreeEnumListTable.')
msc_example_enum_oper_free_enum_list_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1167, 1, 2), row_status()).setMaxAccess('writeonly')
if mibBuilder.loadTexts:
mscExampleEnumOperFreeEnumListRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleEnumOperFreeEnumListRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleEnumOperFreeEnumListTable.')
msc_example_enum_prov_struct_enum_vector_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1168))
if mibBuilder.loadTexts:
mscExampleEnumProvStructEnumVectorTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleEnumProvStructEnumVectorTable.setDescription('')
msc_example_enum_prov_struct_enum_vector_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1168, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleEnumIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleEnumProvStructEnumVectorIndex'))
if mibBuilder.loadTexts:
mscExampleEnumProvStructEnumVectorEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleEnumProvStructEnumVectorEntry.setDescription('An entry in the mscExampleEnumProvStructEnumVectorTable.')
msc_example_enum_prov_struct_enum_vector_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1168, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5, 6))).clone(namedValues=named_values(('monday', 0), ('tuesday', 1), ('wednesday', 2), ('thursday', 3), ('friday', 4), ('saturday', 5), ('sunday', 6))))
if mibBuilder.loadTexts:
mscExampleEnumProvStructEnumVectorIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleEnumProvStructEnumVectorIndex.setDescription('This variable represents the mscExampleEnumProvStructEnumVectorTable specific index for the mscExampleEnumProvStructEnumVectorTable.')
msc_example_enum_prov_struct_enum_vector_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1168, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4))).clone(namedValues=named_values(('monday', 0), ('tuesday', 1), ('wednesday', 2), ('thursday', 3), ('friday', 4)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleEnumProvStructEnumVectorValue.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleEnumProvStructEnumVectorValue.setDescription('This variable represents an individual value for the mscExampleEnumProvStructEnumVectorTable.')
msc_example_enum_prov_struct_enum_array_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1169))
if mibBuilder.loadTexts:
mscExampleEnumProvStructEnumArrayTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleEnumProvStructEnumArrayTable.setDescription('')
msc_example_enum_prov_struct_enum_array_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1169, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleEnumIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleEnumProvStructEnumArrayMonthIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleEnumProvStructEnumArrayDayIndex'))
if mibBuilder.loadTexts:
mscExampleEnumProvStructEnumArrayEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleEnumProvStructEnumArrayEntry.setDescription('An entry in the mscExampleEnumProvStructEnumArrayTable.')
msc_example_enum_prov_struct_enum_array_month_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1169, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11))).clone(namedValues=named_values(('january', 0), ('february', 1), ('march', 2), ('april', 3), ('may', 4), ('june', 5), ('july', 6), ('august', 7), ('september', 8), ('october', 9), ('november', 10), ('december', 11))))
if mibBuilder.loadTexts:
mscExampleEnumProvStructEnumArrayMonthIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleEnumProvStructEnumArrayMonthIndex.setDescription('This variable represents the next to last index for the mscExampleEnumProvStructEnumArrayTable.')
msc_example_enum_prov_struct_enum_array_day_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1169, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5, 6))).clone(namedValues=named_values(('monday', 0), ('tuesday', 1), ('wednesday', 2), ('thursday', 3), ('friday', 4), ('saturday', 5), ('sunday', 6))))
if mibBuilder.loadTexts:
mscExampleEnumProvStructEnumArrayDayIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleEnumProvStructEnumArrayDayIndex.setDescription('This variable represents the final index for the mscExampleEnumProvStructEnumArrayTable.')
msc_example_enum_prov_struct_enum_array_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1169, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11))).clone(namedValues=named_values(('january', 0), ('february', 1), ('march', 2), ('april', 3), ('may', 4), ('june', 5), ('july', 6), ('august', 7), ('september', 8), ('october', 9), ('november', 10), ('december', 11)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleEnumProvStructEnumArrayValue.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleEnumProvStructEnumArrayValue.setDescription('This variable represents an individual value for the mscExampleEnumProvStructEnumArrayTable.')
msc_example_enum_prov_free_enum_vector_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1170))
if mibBuilder.loadTexts:
mscExampleEnumProvFreeEnumVectorTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleEnumProvFreeEnumVectorTable.setDescription('')
msc_example_enum_prov_free_enum_vector_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1170, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleEnumIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleEnumProvFreeEnumVectorIndex'))
if mibBuilder.loadTexts:
mscExampleEnumProvFreeEnumVectorEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleEnumProvFreeEnumVectorEntry.setDescription('An entry in the mscExampleEnumProvFreeEnumVectorTable.')
msc_example_enum_prov_free_enum_vector_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1170, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5, 6))).clone(namedValues=named_values(('monday', 0), ('tuesday', 1), ('wednesday', 2), ('thursday', 3), ('friday', 4), ('saturday', 5), ('sunday', 6))))
if mibBuilder.loadTexts:
mscExampleEnumProvFreeEnumVectorIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleEnumProvFreeEnumVectorIndex.setDescription('This variable represents the mscExampleEnumProvFreeEnumVectorTable specific index for the mscExampleEnumProvFreeEnumVectorTable.')
msc_example_enum_prov_free_enum_vector_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1170, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4))).clone(namedValues=named_values(('monday', 0), ('tuesday', 1), ('wednesday', 2), ('thursday', 3), ('friday', 4)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleEnumProvFreeEnumVectorValue.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleEnumProvFreeEnumVectorValue.setDescription('This variable represents an individual value for the mscExampleEnumProvFreeEnumVectorTable.')
msc_example_enum_prov_free_enum_vector1_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1171))
if mibBuilder.loadTexts:
mscExampleEnumProvFreeEnumVector1Table.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleEnumProvFreeEnumVector1Table.setDescription('')
msc_example_enum_prov_free_enum_vector1_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1171, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleEnumIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleEnumProvFreeEnumVector1Index'))
if mibBuilder.loadTexts:
mscExampleEnumProvFreeEnumVector1Entry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleEnumProvFreeEnumVector1Entry.setDescription('An entry in the mscExampleEnumProvFreeEnumVector1Table.')
msc_example_enum_prov_free_enum_vector1_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1171, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5, 6))).clone(namedValues=named_values(('monday', 0), ('tuesday', 1), ('wednesday', 2), ('thursday', 3), ('friday', 4), ('saturday', 5), ('sunday', 6))))
if mibBuilder.loadTexts:
mscExampleEnumProvFreeEnumVector1Index.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleEnumProvFreeEnumVector1Index.setDescription('This variable represents the mscExampleEnumProvFreeEnumVector1Table specific index for the mscExampleEnumProvFreeEnumVector1Table.')
msc_example_enum_prov_free_enum_vector1_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1171, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4))).clone(namedValues=named_values(('january', 0), ('february', 1), ('march', 2), ('april', 3), ('may', 4)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleEnumProvFreeEnumVector1Value.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleEnumProvFreeEnumVector1Value.setDescription('This variable represents an individual value for the mscExampleEnumProvFreeEnumVector1Table.')
msc_example_enum_prov_free_enum_array_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1172))
if mibBuilder.loadTexts:
mscExampleEnumProvFreeEnumArrayTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleEnumProvFreeEnumArrayTable.setDescription('')
msc_example_enum_prov_free_enum_array_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1172, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleEnumIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleEnumProvFreeEnumArrayMonthIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleEnumProvFreeEnumArrayDayIndex'))
if mibBuilder.loadTexts:
mscExampleEnumProvFreeEnumArrayEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleEnumProvFreeEnumArrayEntry.setDescription('An entry in the mscExampleEnumProvFreeEnumArrayTable.')
msc_example_enum_prov_free_enum_array_month_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1172, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11))).clone(namedValues=named_values(('january', 0), ('february', 1), ('march', 2), ('april', 3), ('may', 4), ('june', 5), ('july', 6), ('august', 7), ('september', 8), ('october', 9), ('november', 10), ('december', 11))))
if mibBuilder.loadTexts:
mscExampleEnumProvFreeEnumArrayMonthIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleEnumProvFreeEnumArrayMonthIndex.setDescription('This variable represents the next to last index for the mscExampleEnumProvFreeEnumArrayTable.')
msc_example_enum_prov_free_enum_array_day_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1172, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5, 6))).clone(namedValues=named_values(('monday', 0), ('tuesday', 1), ('wednesday', 2), ('thursday', 3), ('friday', 4), ('saturday', 5), ('sunday', 6))))
if mibBuilder.loadTexts:
mscExampleEnumProvFreeEnumArrayDayIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleEnumProvFreeEnumArrayDayIndex.setDescription('This variable represents the final index for the mscExampleEnumProvFreeEnumArrayTable.')
msc_example_enum_prov_free_enum_array_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1172, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11))).clone(namedValues=named_values(('january', 0), ('february', 1), ('march', 2), ('april', 3), ('may', 4), ('june', 5), ('july', 6), ('august', 7), ('september', 8), ('october', 9), ('november', 10), ('december', 11)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleEnumProvFreeEnumArrayValue.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleEnumProvFreeEnumArrayValue.setDescription('This variable represents an individual value for the mscExampleEnumProvFreeEnumArrayTable.')
msc_example_enum_prov_free_enum_array1_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1173))
if mibBuilder.loadTexts:
mscExampleEnumProvFreeEnumArray1Table.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleEnumProvFreeEnumArray1Table.setDescription('')
msc_example_enum_prov_free_enum_array1_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1173, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleEnumIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleEnumProvFreeEnumArray1MonthIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleEnumProvFreeEnumArray1DayIndex'))
if mibBuilder.loadTexts:
mscExampleEnumProvFreeEnumArray1Entry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleEnumProvFreeEnumArray1Entry.setDescription('An entry in the mscExampleEnumProvFreeEnumArray1Table.')
msc_example_enum_prov_free_enum_array1_month_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1173, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11))).clone(namedValues=named_values(('january', 0), ('february', 1), ('march', 2), ('april', 3), ('may', 4), ('june', 5), ('july', 6), ('august', 7), ('september', 8), ('october', 9), ('november', 10), ('december', 11))))
if mibBuilder.loadTexts:
mscExampleEnumProvFreeEnumArray1MonthIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleEnumProvFreeEnumArray1MonthIndex.setDescription('This variable represents the next to last index for the mscExampleEnumProvFreeEnumArray1Table.')
msc_example_enum_prov_free_enum_array1_day_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1173, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5, 6))).clone(namedValues=named_values(('monday', 0), ('tuesday', 1), ('wednesday', 2), ('thursday', 3), ('friday', 4), ('saturday', 5), ('sunday', 6))))
if mibBuilder.loadTexts:
mscExampleEnumProvFreeEnumArray1DayIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleEnumProvFreeEnumArray1DayIndex.setDescription('This variable represents the final index for the mscExampleEnumProvFreeEnumArray1Table.')
msc_example_enum_prov_free_enum_array1_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1173, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 11, 12, 13, 14))).clone(namedValues=named_values(('apple', 1), ('orange', 2), ('banana', 3), ('pear', 11), ('grapes', 12), ('pineapple', 13), ('watermelon', 14)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleEnumProvFreeEnumArray1Value.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleEnumProvFreeEnumArray1Value.setDescription('This variable represents an individual value for the mscExampleEnumProvFreeEnumArray1Table.')
msc_example_enum_prov_free_enum_replicated_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1174))
if mibBuilder.loadTexts:
mscExampleEnumProvFreeEnumReplicatedTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleEnumProvFreeEnumReplicatedTable.setDescription('')
msc_example_enum_prov_free_enum_replicated_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1174, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleEnumIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleEnumProvFreeEnumReplicatedIndex'))
if mibBuilder.loadTexts:
mscExampleEnumProvFreeEnumReplicatedEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleEnumProvFreeEnumReplicatedEntry.setDescription('An entry in the mscExampleEnumProvFreeEnumReplicatedTable.')
msc_example_enum_prov_free_enum_replicated_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1174, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5, 6))).clone(namedValues=named_values(('monday', 0), ('tuesday', 1), ('wednesday', 2), ('thursday', 3), ('friday', 4), ('saturday', 5), ('sunday', 6))))
if mibBuilder.loadTexts:
mscExampleEnumProvFreeEnumReplicatedIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleEnumProvFreeEnumReplicatedIndex.setDescription('This variable represents the index for the mscExampleEnumProvFreeEnumReplicatedTable.')
msc_example_enum_prov_free_enum_replicated_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1174, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11))).clone(namedValues=named_values(('january', 0), ('february', 1), ('march', 2), ('april', 3), ('may', 4), ('june', 5), ('july', 6), ('august', 7), ('september', 8), ('october', 9), ('november', 10), ('december', 11)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleEnumProvFreeEnumReplicatedValue.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleEnumProvFreeEnumReplicatedValue.setDescription('This variable represents an individual value for the mscExampleEnumProvFreeEnumReplicatedTable.')
msc_example_enum_prov_free_enum_replicated_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1174, 1, 3), row_status()).setMaxAccess('writeonly')
if mibBuilder.loadTexts:
mscExampleEnumProvFreeEnumReplicatedRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleEnumProvFreeEnumReplicatedRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleEnumProvFreeEnumReplicatedTable.')
msc_example_enum_prov_free_enum_list_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1175))
if mibBuilder.loadTexts:
mscExampleEnumProvFreeEnumListTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleEnumProvFreeEnumListTable.setDescription('')
msc_example_enum_prov_free_enum_list_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1175, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleEnumIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleEnumProvFreeEnumListValue'))
if mibBuilder.loadTexts:
mscExampleEnumProvFreeEnumListEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleEnumProvFreeEnumListEntry.setDescription('An entry in the mscExampleEnumProvFreeEnumListTable.')
msc_example_enum_prov_free_enum_list_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1175, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11))).clone(namedValues=named_values(('january', 0), ('february', 1), ('march', 2), ('april', 3), ('may', 4), ('june', 5), ('july', 6), ('august', 7), ('september', 8), ('october', 9), ('november', 10), ('december', 11)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleEnumProvFreeEnumListValue.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleEnumProvFreeEnumListValue.setDescription('This variable represents both the value and the index for the mscExampleEnumProvFreeEnumListTable.')
msc_example_enum_prov_free_enum_list_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1175, 1, 2), row_status()).setMaxAccess('writeonly')
if mibBuilder.loadTexts:
mscExampleEnumProvFreeEnumListRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleEnumProvFreeEnumListRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleEnumProvFreeEnumListTable.')
msc_example_enum_prov_free_enum_list1_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1176))
if mibBuilder.loadTexts:
mscExampleEnumProvFreeEnumList1Table.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleEnumProvFreeEnumList1Table.setDescription('')
msc_example_enum_prov_free_enum_list1_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1176, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleEnumIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleEnumProvFreeEnumList1Value'))
if mibBuilder.loadTexts:
mscExampleEnumProvFreeEnumList1Entry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleEnumProvFreeEnumList1Entry.setDescription('An entry in the mscExampleEnumProvFreeEnumList1Table.')
msc_example_enum_prov_free_enum_list1_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1176, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11))).clone(namedValues=named_values(('january', 0), ('february', 1), ('march', 2), ('april', 3), ('may', 4), ('june', 5), ('july', 6), ('august', 7), ('september', 8), ('october', 9), ('november', 10), ('december', 11)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleEnumProvFreeEnumList1Value.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleEnumProvFreeEnumList1Value.setDescription('This variable represents both the value and the index for the mscExampleEnumProvFreeEnumList1Table.')
msc_example_enum_prov_free_enum_list1_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1176, 1, 2), row_status()).setMaxAccess('writeonly')
if mibBuilder.loadTexts:
mscExampleEnumProvFreeEnumList1RowStatus.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleEnumProvFreeEnumList1RowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleEnumProvFreeEnumList1Table.')
msc_example_object_id = mib_identifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 12))
msc_example_object_id_row_status_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 12, 1))
if mibBuilder.loadTexts:
mscExampleObjectIdRowStatusTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleObjectIdRowStatusTable.setDescription('This entry controls the addition and deletion of mscExampleObjectId components.')
msc_example_object_id_row_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 12, 1, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleObjectIdIndex'))
if mibBuilder.loadTexts:
mscExampleObjectIdRowStatusEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleObjectIdRowStatusEntry.setDescription('A single entry in the table represents a single mscExampleObjectId component.')
msc_example_object_id_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 12, 1, 1, 1), row_status()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleObjectIdRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleObjectIdRowStatus.setDescription('This variable is used as the basis for SNMP naming of mscExampleObjectId components. These components can be added and deleted.')
msc_example_object_id_component_name = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 12, 1, 1, 2), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mscExampleObjectIdComponentName.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleObjectIdComponentName.setDescription("This variable provides the component's string name for use with the ASCII Console Interface")
msc_example_object_id_storage_type = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 12, 1, 1, 4), storage_type()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mscExampleObjectIdStorageType.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleObjectIdStorageType.setDescription('This variable represents the storage type value for the mscExampleObjectId tables.')
msc_example_object_id_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 12, 1, 1, 10), object_identifier())
if mibBuilder.loadTexts:
mscExampleObjectIdIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleObjectIdIndex.setDescription('This variable represents the index for the mscExampleObjectId tables.')
msc_example_object_id_operational_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 12, 10))
if mibBuilder.loadTexts:
mscExampleObjectIdOperationalTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleObjectIdOperationalTable.setDescription('')
msc_example_object_id_operational_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 12, 10, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleObjectIdIndex'))
if mibBuilder.loadTexts:
mscExampleObjectIdOperationalEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleObjectIdOperationalEntry.setDescription('An entry in the mscExampleObjectIdOperationalTable.')
msc_example_object_id_oper_free_obj_id = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 12, 10, 1, 1), object_identifier()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleObjectIdOperFreeObjId.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleObjectIdOperFreeObjId.setDescription('')
msc_example_object_id_provisional_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 12, 11))
if mibBuilder.loadTexts:
mscExampleObjectIdProvisionalTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleObjectIdProvisionalTable.setDescription('')
msc_example_object_id_provisional_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 12, 11, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleObjectIdIndex'))
if mibBuilder.loadTexts:
mscExampleObjectIdProvisionalEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleObjectIdProvisionalEntry.setDescription('An entry in the mscExampleObjectIdProvisionalTable.')
msc_example_object_id_prov_enum_sub = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 12, 11, 1, 1), link()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleObjectIdProvEnumSub.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleObjectIdProvEnumSub.setDescription('')
msc_example_object_id_prov_free_obj_id = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 12, 11, 1, 2), object_identifier()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleObjectIdProvFreeObjId.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleObjectIdProvFreeObjId.setDescription('')
msc_example_object_id_oper_free_obj_id_replicated_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 12, 1116))
if mibBuilder.loadTexts:
mscExampleObjectIdOperFreeObjIdReplicatedTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleObjectIdOperFreeObjIdReplicatedTable.setDescription('')
msc_example_object_id_oper_free_obj_id_replicated_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 12, 1116, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleObjectIdIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleObjectIdOperFreeObjIdReplicatedIndex'))
if mibBuilder.loadTexts:
mscExampleObjectIdOperFreeObjIdReplicatedEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleObjectIdOperFreeObjIdReplicatedEntry.setDescription('An entry in the mscExampleObjectIdOperFreeObjIdReplicatedTable.')
msc_example_object_id_oper_free_obj_id_replicated_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 12, 1116, 1, 1), object_identifier())
if mibBuilder.loadTexts:
mscExampleObjectIdOperFreeObjIdReplicatedIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleObjectIdOperFreeObjIdReplicatedIndex.setDescription('This variable represents the index for the mscExampleObjectIdOperFreeObjIdReplicatedTable.')
msc_example_object_id_oper_free_obj_id_replicated_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 12, 1116, 1, 2), object_identifier()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleObjectIdOperFreeObjIdReplicatedValue.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleObjectIdOperFreeObjIdReplicatedValue.setDescription('This variable represents an individual value for the mscExampleObjectIdOperFreeObjIdReplicatedTable.')
msc_example_object_id_oper_free_obj_id_replicated_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 12, 1116, 1, 3), row_status()).setMaxAccess('writeonly')
if mibBuilder.loadTexts:
mscExampleObjectIdOperFreeObjIdReplicatedRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleObjectIdOperFreeObjIdReplicatedRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleObjectIdOperFreeObjIdReplicatedTable.')
msc_example_object_id_oper_free_obj_id_list_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 12, 1117))
if mibBuilder.loadTexts:
mscExampleObjectIdOperFreeObjIdListTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleObjectIdOperFreeObjIdListTable.setDescription('')
msc_example_object_id_oper_free_obj_id_list_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 12, 1117, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleObjectIdIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleObjectIdOperFreeObjIdListValue'))
if mibBuilder.loadTexts:
mscExampleObjectIdOperFreeObjIdListEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleObjectIdOperFreeObjIdListEntry.setDescription('An entry in the mscExampleObjectIdOperFreeObjIdListTable.')
msc_example_object_id_oper_free_obj_id_list_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 12, 1117, 1, 1), integer_sequence()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleObjectIdOperFreeObjIdListValue.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleObjectIdOperFreeObjIdListValue.setDescription('This variable represents both the value and the index for the mscExampleObjectIdOperFreeObjIdListTable.')
msc_example_object_id_oper_free_obj_id_list_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 12, 1117, 1, 2), row_status()).setMaxAccess('writeonly')
if mibBuilder.loadTexts:
mscExampleObjectIdOperFreeObjIdListRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleObjectIdOperFreeObjIdListRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleObjectIdOperFreeObjIdListTable.')
msc_example_object_id_prov_free_obj_id_replicated_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 12, 1118))
if mibBuilder.loadTexts:
mscExampleObjectIdProvFreeObjIdReplicatedTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleObjectIdProvFreeObjIdReplicatedTable.setDescription('')
msc_example_object_id_prov_free_obj_id_replicated_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 12, 1118, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleObjectIdIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleObjectIdProvFreeObjIdReplicatedIndex'))
if mibBuilder.loadTexts:
mscExampleObjectIdProvFreeObjIdReplicatedEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleObjectIdProvFreeObjIdReplicatedEntry.setDescription('An entry in the mscExampleObjectIdProvFreeObjIdReplicatedTable.')
msc_example_object_id_prov_free_obj_id_replicated_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 12, 1118, 1, 1), object_identifier())
if mibBuilder.loadTexts:
mscExampleObjectIdProvFreeObjIdReplicatedIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleObjectIdProvFreeObjIdReplicatedIndex.setDescription('This variable represents the index for the mscExampleObjectIdProvFreeObjIdReplicatedTable.')
msc_example_object_id_prov_free_obj_id_replicated_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 12, 1118, 1, 2), object_identifier()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleObjectIdProvFreeObjIdReplicatedValue.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleObjectIdProvFreeObjIdReplicatedValue.setDescription('This variable represents an individual value for the mscExampleObjectIdProvFreeObjIdReplicatedTable.')
msc_example_object_id_prov_free_obj_id_replicated_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 12, 1118, 1, 3), row_status()).setMaxAccess('writeonly')
if mibBuilder.loadTexts:
mscExampleObjectIdProvFreeObjIdReplicatedRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleObjectIdProvFreeObjIdReplicatedRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleObjectIdProvFreeObjIdReplicatedTable.')
msc_example_object_id_prov_free_obj_id_list_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 12, 1119))
if mibBuilder.loadTexts:
mscExampleObjectIdProvFreeObjIdListTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleObjectIdProvFreeObjIdListTable.setDescription('')
msc_example_object_id_prov_free_obj_id_list_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 12, 1119, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleObjectIdIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleObjectIdProvFreeObjIdListValue'))
if mibBuilder.loadTexts:
mscExampleObjectIdProvFreeObjIdListEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleObjectIdProvFreeObjIdListEntry.setDescription('An entry in the mscExampleObjectIdProvFreeObjIdListTable.')
msc_example_object_id_prov_free_obj_id_list_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 12, 1119, 1, 1), integer_sequence()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleObjectIdProvFreeObjIdListValue.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleObjectIdProvFreeObjIdListValue.setDescription('This variable represents both the value and the index for the mscExampleObjectIdProvFreeObjIdListTable.')
msc_example_object_id_prov_free_obj_id_list_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 12, 1119, 1, 2), row_status()).setMaxAccess('writeonly')
if mibBuilder.loadTexts:
mscExampleObjectIdProvFreeObjIdListRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleObjectIdProvFreeObjIdListRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleObjectIdProvFreeObjIdListTable.')
msc_example_sequence = mib_identifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 13))
msc_example_sequence_row_status_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 13, 1))
if mibBuilder.loadTexts:
mscExampleSequenceRowStatusTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleSequenceRowStatusTable.setDescription('This entry controls the addition and deletion of mscExampleSequence components.')
msc_example_sequence_row_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 13, 1, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleSequenceIndex'))
if mibBuilder.loadTexts:
mscExampleSequenceRowStatusEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleSequenceRowStatusEntry.setDescription('A single entry in the table represents a single mscExampleSequence component.')
msc_example_sequence_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 13, 1, 1, 1), row_status()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleSequenceRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleSequenceRowStatus.setDescription('This variable is used as the basis for SNMP naming of mscExampleSequence components. These components can be added and deleted.')
msc_example_sequence_component_name = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 13, 1, 1, 2), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mscExampleSequenceComponentName.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleSequenceComponentName.setDescription("This variable provides the component's string name for use with the ASCII Console Interface")
msc_example_sequence_storage_type = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 13, 1, 1, 4), storage_type()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mscExampleSequenceStorageType.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleSequenceStorageType.setDescription('This variable represents the storage type value for the mscExampleSequence tables.')
msc_example_sequence_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 13, 1, 1, 10), object_identifier())
if mibBuilder.loadTexts:
mscExampleSequenceIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleSequenceIndex.setDescription('This variable represents the index for the mscExampleSequence tables.')
msc_example_sequence_operational_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 13, 10))
if mibBuilder.loadTexts:
mscExampleSequenceOperationalTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleSequenceOperationalTable.setDescription('')
msc_example_sequence_operational_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 13, 10, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleSequenceIndex'))
if mibBuilder.loadTexts:
mscExampleSequenceOperationalEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleSequenceOperationalEntry.setDescription('An entry in the mscExampleSequenceOperationalTable.')
msc_example_sequence_oper_struct_sequence = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 13, 10, 1, 1), integer_sequence().subtype(subtypeSpec=value_size_constraint(7, 9))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleSequenceOperStructSequence.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleSequenceOperStructSequence.setDescription('')
msc_example_sequence_oper_free_sequence = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 13, 10, 1, 2), integer_sequence().subtype(subtypeSpec=value_size_constraint(7, 9))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleSequenceOperFreeSequence.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleSequenceOperFreeSequence.setDescription('')
msc_example_sequence_provisional_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 13, 11))
if mibBuilder.loadTexts:
mscExampleSequenceProvisionalTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleSequenceProvisionalTable.setDescription('')
msc_example_sequence_provisional_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 13, 11, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleSequenceIndex'))
if mibBuilder.loadTexts:
mscExampleSequenceProvisionalEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleSequenceProvisionalEntry.setDescription('An entry in the mscExampleSequenceProvisionalTable.')
msc_example_sequence_prov_struct_sequence = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 13, 11, 1, 1), integer_sequence().subtype(subtypeSpec=value_size_constraint(7, 9))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleSequenceProvStructSequence.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleSequenceProvStructSequence.setDescription('')
msc_example_sequence_prov_free_sequence = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 13, 11, 1, 2), integer_sequence().subtype(subtypeSpec=value_size_constraint(1, 1)).setFixedLength(1)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleSequenceProvFreeSequence.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleSequenceProvFreeSequence.setDescription('')
msc_example_sequence_oper_free_sequence_replicated_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 13, 1112))
if mibBuilder.loadTexts:
mscExampleSequenceOperFreeSequenceReplicatedTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleSequenceOperFreeSequenceReplicatedTable.setDescription('')
msc_example_sequence_oper_free_sequence_replicated_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 13, 1112, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleSequenceIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleSequenceOperFreeSequenceReplicatedIndex'))
if mibBuilder.loadTexts:
mscExampleSequenceOperFreeSequenceReplicatedEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleSequenceOperFreeSequenceReplicatedEntry.setDescription('An entry in the mscExampleSequenceOperFreeSequenceReplicatedTable.')
msc_example_sequence_oper_free_sequence_replicated_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 13, 1112, 1, 1), object_identifier())
if mibBuilder.loadTexts:
mscExampleSequenceOperFreeSequenceReplicatedIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleSequenceOperFreeSequenceReplicatedIndex.setDescription('This variable represents the index for the mscExampleSequenceOperFreeSequenceReplicatedTable.')
msc_example_sequence_oper_free_sequence_replicated_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 13, 1112, 1, 2), integer_sequence().subtype(subtypeSpec=value_size_constraint(7, 9))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleSequenceOperFreeSequenceReplicatedValue.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleSequenceOperFreeSequenceReplicatedValue.setDescription('This variable represents an individual value for the mscExampleSequenceOperFreeSequenceReplicatedTable.')
msc_example_sequence_oper_free_sequence_replicated_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 13, 1112, 1, 3), row_status()).setMaxAccess('writeonly')
if mibBuilder.loadTexts:
mscExampleSequenceOperFreeSequenceReplicatedRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleSequenceOperFreeSequenceReplicatedRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleSequenceOperFreeSequenceReplicatedTable.')
msc_example_sequence_oper_free_sequence_list_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 13, 1113))
if mibBuilder.loadTexts:
mscExampleSequenceOperFreeSequenceListTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleSequenceOperFreeSequenceListTable.setDescription('')
msc_example_sequence_oper_free_sequence_list_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 13, 1113, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleSequenceIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleSequenceOperFreeSequenceListValue'))
if mibBuilder.loadTexts:
mscExampleSequenceOperFreeSequenceListEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleSequenceOperFreeSequenceListEntry.setDescription('An entry in the mscExampleSequenceOperFreeSequenceListTable.')
msc_example_sequence_oper_free_sequence_list_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 13, 1113, 1, 1), integer_sequence().subtype(subtypeSpec=value_size_constraint(7, 9))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleSequenceOperFreeSequenceListValue.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleSequenceOperFreeSequenceListValue.setDescription('This variable represents both the value and the index for the mscExampleSequenceOperFreeSequenceListTable.')
msc_example_sequence_oper_free_sequence_list_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 13, 1113, 1, 2), row_status()).setMaxAccess('writeonly')
if mibBuilder.loadTexts:
mscExampleSequenceOperFreeSequenceListRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleSequenceOperFreeSequenceListRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleSequenceOperFreeSequenceListTable.')
msc_example_sequence_prov_free_sequence_replicated_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 13, 1114))
if mibBuilder.loadTexts:
mscExampleSequenceProvFreeSequenceReplicatedTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleSequenceProvFreeSequenceReplicatedTable.setDescription('')
msc_example_sequence_prov_free_sequence_replicated_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 13, 1114, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleSequenceIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleSequenceProvFreeSequenceReplicatedIndex'))
if mibBuilder.loadTexts:
mscExampleSequenceProvFreeSequenceReplicatedEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleSequenceProvFreeSequenceReplicatedEntry.setDescription('An entry in the mscExampleSequenceProvFreeSequenceReplicatedTable.')
msc_example_sequence_prov_free_sequence_replicated_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 13, 1114, 1, 1), object_identifier())
if mibBuilder.loadTexts:
mscExampleSequenceProvFreeSequenceReplicatedIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleSequenceProvFreeSequenceReplicatedIndex.setDescription('This variable represents the index for the mscExampleSequenceProvFreeSequenceReplicatedTable.')
msc_example_sequence_prov_free_sequence_replicated_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 13, 1114, 1, 2), integer_sequence().subtype(subtypeSpec=value_size_constraint(7, 7)).setFixedLength(7)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleSequenceProvFreeSequenceReplicatedValue.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleSequenceProvFreeSequenceReplicatedValue.setDescription('This variable represents an individual value for the mscExampleSequenceProvFreeSequenceReplicatedTable.')
msc_example_sequence_prov_free_sequence_replicated_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 13, 1114, 1, 3), row_status()).setMaxAccess('writeonly')
if mibBuilder.loadTexts:
mscExampleSequenceProvFreeSequenceReplicatedRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleSequenceProvFreeSequenceReplicatedRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleSequenceProvFreeSequenceReplicatedTable.')
msc_example_sequence_prov_free_sequence_list_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 13, 1115))
if mibBuilder.loadTexts:
mscExampleSequenceProvFreeSequenceListTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleSequenceProvFreeSequenceListTable.setDescription('')
msc_example_sequence_prov_free_sequence_list_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 13, 1115, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleSequenceIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleSequenceProvFreeSequenceListValue'))
if mibBuilder.loadTexts:
mscExampleSequenceProvFreeSequenceListEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleSequenceProvFreeSequenceListEntry.setDescription('An entry in the mscExampleSequenceProvFreeSequenceListTable.')
msc_example_sequence_prov_free_sequence_list_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 13, 1115, 1, 1), integer_sequence().subtype(subtypeSpec=value_size_constraint(7, 9))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleSequenceProvFreeSequenceListValue.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleSequenceProvFreeSequenceListValue.setDescription('This variable represents both the value and the index for the mscExampleSequenceProvFreeSequenceListTable.')
msc_example_sequence_prov_free_sequence_list_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 13, 1115, 1, 2), row_status()).setMaxAccess('writeonly')
if mibBuilder.loadTexts:
mscExampleSequenceProvFreeSequenceListRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleSequenceProvFreeSequenceListRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleSequenceProvFreeSequenceListTable.')
msc_example_signed = mib_identifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14))
msc_example_signed_row_status_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1))
if mibBuilder.loadTexts:
mscExampleSignedRowStatusTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleSignedRowStatusTable.setDescription('This entry controls the addition and deletion of mscExampleSigned components.')
msc_example_signed_row_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleSignedIndex'))
if mibBuilder.loadTexts:
mscExampleSignedRowStatusEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleSignedRowStatusEntry.setDescription('A single entry in the table represents a single mscExampleSigned component.')
msc_example_signed_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1, 1, 1), row_status()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleSignedRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleSignedRowStatus.setDescription('This variable is used as the basis for SNMP naming of mscExampleSigned components. These components can be added and deleted.')
msc_example_signed_component_name = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1, 1, 2), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mscExampleSignedComponentName.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleSignedComponentName.setDescription("This variable provides the component's string name for use with the ASCII Console Interface")
msc_example_signed_storage_type = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1, 1, 4), storage_type()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mscExampleSignedStorageType.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleSignedStorageType.setDescription('This variable represents the storage type value for the mscExampleSigned tables.')
msc_example_signed_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1, 1, 10), non_replicated())
if mibBuilder.loadTexts:
mscExampleSignedIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleSignedIndex.setDescription('This variable represents the index for the mscExampleSigned tables.')
msc_example_signed_operational_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 10))
if mibBuilder.loadTexts:
mscExampleSignedOperationalTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleSignedOperationalTable.setDescription('')
msc_example_signed_operational_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 10, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleSignedIndex'))
if mibBuilder.loadTexts:
mscExampleSignedOperationalEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleSignedOperationalEntry.setDescription('An entry in the mscExampleSignedOperationalTable.')
msc_example_signed_oper_struct_signed = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 10, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(-16, 16))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleSignedOperStructSigned.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleSignedOperStructSigned.setDescription('')
msc_example_signed_oper_free_signed = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 10, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(-16, 16))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleSignedOperFreeSigned.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleSignedOperFreeSigned.setDescription('')
msc_example_signed_provisional_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 11))
if mibBuilder.loadTexts:
mscExampleSignedProvisionalTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleSignedProvisionalTable.setDescription('')
msc_example_signed_provisional_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 11, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleSignedIndex'))
if mibBuilder.loadTexts:
mscExampleSignedProvisionalEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleSignedProvisionalEntry.setDescription('An entry in the mscExampleSignedProvisionalTable.')
msc_example_signed_prov_signed_sub = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 11, 1, 1), link()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleSignedProvSignedSub.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleSignedProvSignedSub.setDescription('')
msc_example_signed_prov_struct_signed = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 11, 1, 2), integer32().subtype(subtypeSpec=constraints_union(value_range_constraint(-17, -17), value_range_constraint(-16, 16), value_range_constraint(17, 17), value_range_constraint(18, 18))).clone(-17)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleSignedProvStructSigned.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleSignedProvStructSigned.setDescription('VALUES ( -17 = infinity 17 = notApplicable 18 = notMeasured )')
msc_example_signed_prov_free_signed = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 11, 1, 3), integer32().subtype(subtypeSpec=value_range_constraint(-4, 8)).clone(-2)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleSignedProvFreeSigned.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleSignedProvFreeSigned.setDescription('')
msc_example_signed_prov_free_signed1 = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 11, 1, 4), integer32().subtype(subtypeSpec=value_range_constraint(-4, 8))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleSignedProvFreeSigned1.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleSignedProvFreeSigned1.setDescription('')
msc_example_signed_oper_struct_signed_vector_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1148))
if mibBuilder.loadTexts:
mscExampleSignedOperStructSignedVectorTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleSignedOperStructSignedVectorTable.setDescription('')
msc_example_signed_oper_struct_signed_vector_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1148, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleSignedIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleSignedOperStructSignedVectorIndex'))
if mibBuilder.loadTexts:
mscExampleSignedOperStructSignedVectorEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleSignedOperStructSignedVectorEntry.setDescription('An entry in the mscExampleSignedOperStructSignedVectorTable.')
msc_example_signed_oper_struct_signed_vector_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1148, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 9)))
if mibBuilder.loadTexts:
mscExampleSignedOperStructSignedVectorIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleSignedOperStructSignedVectorIndex.setDescription('This variable represents the mscExampleSignedOperStructSignedVectorTable specific index for the mscExampleSignedOperStructSignedVectorTable.')
msc_example_signed_oper_struct_signed_vector_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1148, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(-5, 5))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleSignedOperStructSignedVectorValue.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleSignedOperStructSignedVectorValue.setDescription('This variable represents an individual value for the mscExampleSignedOperStructSignedVectorTable.')
msc_example_signed_oper_struct_signed_array_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1149))
if mibBuilder.loadTexts:
mscExampleSignedOperStructSignedArrayTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleSignedOperStructSignedArrayTable.setDescription('')
msc_example_signed_oper_struct_signed_array_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1149, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleSignedIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleSignedOperStructSignedArrayRowIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleSignedOperStructSignedArrayColumnIndex'))
if mibBuilder.loadTexts:
mscExampleSignedOperStructSignedArrayEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleSignedOperStructSignedArrayEntry.setDescription('An entry in the mscExampleSignedOperStructSignedArrayTable.')
msc_example_signed_oper_struct_signed_array_row_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1149, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 2)))
if mibBuilder.loadTexts:
mscExampleSignedOperStructSignedArrayRowIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleSignedOperStructSignedArrayRowIndex.setDescription('This variable represents the next to last index for the mscExampleSignedOperStructSignedArrayTable.')
msc_example_signed_oper_struct_signed_array_column_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1149, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 3)))
if mibBuilder.loadTexts:
mscExampleSignedOperStructSignedArrayColumnIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleSignedOperStructSignedArrayColumnIndex.setDescription('This variable represents the final index for the mscExampleSignedOperStructSignedArrayTable.')
msc_example_signed_oper_struct_signed_array_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1149, 1, 3), integer32().subtype(subtypeSpec=value_range_constraint(-5, 5))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleSignedOperStructSignedArrayValue.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleSignedOperStructSignedArrayValue.setDescription('This variable represents an individual value for the mscExampleSignedOperStructSignedArrayTable.')
msc_example_signed_oper_free_signed_vector_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1150))
if mibBuilder.loadTexts:
mscExampleSignedOperFreeSignedVectorTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleSignedOperFreeSignedVectorTable.setDescription('')
msc_example_signed_oper_free_signed_vector_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1150, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleSignedIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleSignedOperFreeSignedVectorIndex'))
if mibBuilder.loadTexts:
mscExampleSignedOperFreeSignedVectorEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleSignedOperFreeSignedVectorEntry.setDescription('An entry in the mscExampleSignedOperFreeSignedVectorTable.')
msc_example_signed_oper_free_signed_vector_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1150, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 3)))
if mibBuilder.loadTexts:
mscExampleSignedOperFreeSignedVectorIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleSignedOperFreeSignedVectorIndex.setDescription('This variable represents the mscExampleSignedOperFreeSignedVectorTable specific index for the mscExampleSignedOperFreeSignedVectorTable.')
msc_example_signed_oper_free_signed_vector_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1150, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(-5, 5))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleSignedOperFreeSignedVectorValue.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleSignedOperFreeSignedVectorValue.setDescription('This variable represents an individual value for the mscExampleSignedOperFreeSignedVectorTable.')
msc_example_signed_oper_free_signed_array_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1151))
if mibBuilder.loadTexts:
mscExampleSignedOperFreeSignedArrayTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleSignedOperFreeSignedArrayTable.setDescription('')
msc_example_signed_oper_free_signed_array_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1151, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleSignedIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleSignedOperFreeSignedArrayRowIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleSignedOperFreeSignedArrayColumnIndex'))
if mibBuilder.loadTexts:
mscExampleSignedOperFreeSignedArrayEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleSignedOperFreeSignedArrayEntry.setDescription('An entry in the mscExampleSignedOperFreeSignedArrayTable.')
msc_example_signed_oper_free_signed_array_row_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1151, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 2)))
if mibBuilder.loadTexts:
mscExampleSignedOperFreeSignedArrayRowIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleSignedOperFreeSignedArrayRowIndex.setDescription('This variable represents the next to last index for the mscExampleSignedOperFreeSignedArrayTable.')
msc_example_signed_oper_free_signed_array_column_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1151, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 3)))
if mibBuilder.loadTexts:
mscExampleSignedOperFreeSignedArrayColumnIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleSignedOperFreeSignedArrayColumnIndex.setDescription('This variable represents the final index for the mscExampleSignedOperFreeSignedArrayTable.')
msc_example_signed_oper_free_signed_array_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1151, 1, 3), integer32().subtype(subtypeSpec=value_range_constraint(-5, 5))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleSignedOperFreeSignedArrayValue.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleSignedOperFreeSignedArrayValue.setDescription('This variable represents an individual value for the mscExampleSignedOperFreeSignedArrayTable.')
msc_example_signed_oper_free_signed_replicated_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1152))
if mibBuilder.loadTexts:
mscExampleSignedOperFreeSignedReplicatedTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleSignedOperFreeSignedReplicatedTable.setDescription('')
msc_example_signed_oper_free_signed_replicated_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1152, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleSignedIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleSignedOperFreeSignedReplicatedIndex'))
if mibBuilder.loadTexts:
mscExampleSignedOperFreeSignedReplicatedEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleSignedOperFreeSignedReplicatedEntry.setDescription('An entry in the mscExampleSignedOperFreeSignedReplicatedTable.')
msc_example_signed_oper_free_signed_replicated_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1152, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(-5, 5)))
if mibBuilder.loadTexts:
mscExampleSignedOperFreeSignedReplicatedIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleSignedOperFreeSignedReplicatedIndex.setDescription('This variable represents the index for the mscExampleSignedOperFreeSignedReplicatedTable.')
msc_example_signed_oper_free_signed_replicated_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1152, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(-16, 16))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleSignedOperFreeSignedReplicatedValue.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleSignedOperFreeSignedReplicatedValue.setDescription('This variable represents an individual value for the mscExampleSignedOperFreeSignedReplicatedTable.')
msc_example_signed_oper_free_signed_replicated_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1152, 1, 3), row_status()).setMaxAccess('writeonly')
if mibBuilder.loadTexts:
mscExampleSignedOperFreeSignedReplicatedRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleSignedOperFreeSignedReplicatedRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleSignedOperFreeSignedReplicatedTable.')
msc_example_signed_oper_free_signed_list_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1153))
if mibBuilder.loadTexts:
mscExampleSignedOperFreeSignedListTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleSignedOperFreeSignedListTable.setDescription('')
msc_example_signed_oper_free_signed_list_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1153, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleSignedIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleSignedOperFreeSignedListValue'))
if mibBuilder.loadTexts:
mscExampleSignedOperFreeSignedListEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleSignedOperFreeSignedListEntry.setDescription('An entry in the mscExampleSignedOperFreeSignedListTable.')
msc_example_signed_oper_free_signed_list_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1153, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(-16, 16))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleSignedOperFreeSignedListValue.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleSignedOperFreeSignedListValue.setDescription('This variable represents both the value and the index for the mscExampleSignedOperFreeSignedListTable.')
msc_example_signed_oper_free_signed_list_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1153, 1, 2), row_status()).setMaxAccess('writeonly')
if mibBuilder.loadTexts:
mscExampleSignedOperFreeSignedListRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleSignedOperFreeSignedListRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleSignedOperFreeSignedListTable.')
msc_example_signed_prov_struct_signed_vector_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1154))
if mibBuilder.loadTexts:
mscExampleSignedProvStructSignedVectorTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleSignedProvStructSignedVectorTable.setDescription('')
msc_example_signed_prov_struct_signed_vector_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1154, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleSignedIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleSignedProvStructSignedVectorIndex'))
if mibBuilder.loadTexts:
mscExampleSignedProvStructSignedVectorEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleSignedProvStructSignedVectorEntry.setDescription('An entry in the mscExampleSignedProvStructSignedVectorTable.')
msc_example_signed_prov_struct_signed_vector_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1154, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 9)))
if mibBuilder.loadTexts:
mscExampleSignedProvStructSignedVectorIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleSignedProvStructSignedVectorIndex.setDescription('This variable represents the mscExampleSignedProvStructSignedVectorTable specific index for the mscExampleSignedProvStructSignedVectorTable.')
msc_example_signed_prov_struct_signed_vector_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1154, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(-5, 5))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleSignedProvStructSignedVectorValue.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleSignedProvStructSignedVectorValue.setDescription('This variable represents an individual value for the mscExampleSignedProvStructSignedVectorTable.')
msc_example_signed_prov_struct_signed_array_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1155))
if mibBuilder.loadTexts:
mscExampleSignedProvStructSignedArrayTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleSignedProvStructSignedArrayTable.setDescription('')
msc_example_signed_prov_struct_signed_array_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1155, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleSignedIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleSignedProvStructSignedArrayRowIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleSignedProvStructSignedArrayColumnIndex'))
if mibBuilder.loadTexts:
mscExampleSignedProvStructSignedArrayEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleSignedProvStructSignedArrayEntry.setDescription('An entry in the mscExampleSignedProvStructSignedArrayTable.')
msc_example_signed_prov_struct_signed_array_row_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1155, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 2)))
if mibBuilder.loadTexts:
mscExampleSignedProvStructSignedArrayRowIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleSignedProvStructSignedArrayRowIndex.setDescription('This variable represents the next to last index for the mscExampleSignedProvStructSignedArrayTable.')
msc_example_signed_prov_struct_signed_array_column_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1155, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 3)))
if mibBuilder.loadTexts:
mscExampleSignedProvStructSignedArrayColumnIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleSignedProvStructSignedArrayColumnIndex.setDescription('This variable represents the final index for the mscExampleSignedProvStructSignedArrayTable.')
msc_example_signed_prov_struct_signed_array_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1155, 1, 3), integer32().subtype(subtypeSpec=value_range_constraint(-5, 5))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleSignedProvStructSignedArrayValue.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleSignedProvStructSignedArrayValue.setDescription('This variable represents an individual value for the mscExampleSignedProvStructSignedArrayTable.')
msc_example_signed_prov_free_signed_vector_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1156))
if mibBuilder.loadTexts:
mscExampleSignedProvFreeSignedVectorTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleSignedProvFreeSignedVectorTable.setDescription('')
msc_example_signed_prov_free_signed_vector_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1156, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleSignedIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleSignedProvFreeSignedVectorIndex'))
if mibBuilder.loadTexts:
mscExampleSignedProvFreeSignedVectorEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleSignedProvFreeSignedVectorEntry.setDescription('An entry in the mscExampleSignedProvFreeSignedVectorTable.')
msc_example_signed_prov_free_signed_vector_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1156, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 9)))
if mibBuilder.loadTexts:
mscExampleSignedProvFreeSignedVectorIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleSignedProvFreeSignedVectorIndex.setDescription('This variable represents the mscExampleSignedProvFreeSignedVectorTable specific index for the mscExampleSignedProvFreeSignedVectorTable.')
msc_example_signed_prov_free_signed_vector_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1156, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(-5, 5))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleSignedProvFreeSignedVectorValue.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleSignedProvFreeSignedVectorValue.setDescription('This variable represents an individual value for the mscExampleSignedProvFreeSignedVectorTable.')
msc_example_signed_prov_free_signed_vector1_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1157))
if mibBuilder.loadTexts:
mscExampleSignedProvFreeSignedVector1Table.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleSignedProvFreeSignedVector1Table.setDescription('')
msc_example_signed_prov_free_signed_vector1_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1157, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleSignedIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleSignedProvFreeSignedVector1Index'))
if mibBuilder.loadTexts:
mscExampleSignedProvFreeSignedVector1Entry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleSignedProvFreeSignedVector1Entry.setDescription('An entry in the mscExampleSignedProvFreeSignedVector1Table.')
msc_example_signed_prov_free_signed_vector1_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1157, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 9)))
if mibBuilder.loadTexts:
mscExampleSignedProvFreeSignedVector1Index.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleSignedProvFreeSignedVector1Index.setDescription('This variable represents the mscExampleSignedProvFreeSignedVector1Table specific index for the mscExampleSignedProvFreeSignedVector1Table.')
msc_example_signed_prov_free_signed_vector1_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1157, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(-5, 5))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleSignedProvFreeSignedVector1Value.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleSignedProvFreeSignedVector1Value.setDescription('This variable represents an individual value for the mscExampleSignedProvFreeSignedVector1Table.')
msc_example_signed_prov_free_signed_array_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1158))
if mibBuilder.loadTexts:
mscExampleSignedProvFreeSignedArrayTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleSignedProvFreeSignedArrayTable.setDescription('')
msc_example_signed_prov_free_signed_array_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1158, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleSignedIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleSignedProvFreeSignedArrayRowIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleSignedProvFreeSignedArrayColumnIndex'))
if mibBuilder.loadTexts:
mscExampleSignedProvFreeSignedArrayEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleSignedProvFreeSignedArrayEntry.setDescription('An entry in the mscExampleSignedProvFreeSignedArrayTable.')
msc_example_signed_prov_free_signed_array_row_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1158, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 2)))
if mibBuilder.loadTexts:
mscExampleSignedProvFreeSignedArrayRowIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleSignedProvFreeSignedArrayRowIndex.setDescription('This variable represents the next to last index for the mscExampleSignedProvFreeSignedArrayTable.')
msc_example_signed_prov_free_signed_array_column_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1158, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 3)))
if mibBuilder.loadTexts:
mscExampleSignedProvFreeSignedArrayColumnIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleSignedProvFreeSignedArrayColumnIndex.setDescription('This variable represents the final index for the mscExampleSignedProvFreeSignedArrayTable.')
msc_example_signed_prov_free_signed_array_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1158, 1, 3), integer32().subtype(subtypeSpec=value_range_constraint(-1000, 4000))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleSignedProvFreeSignedArrayValue.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleSignedProvFreeSignedArrayValue.setDescription('This variable represents an individual value for the mscExampleSignedProvFreeSignedArrayTable.')
msc_example_signed_prov_free_signed_array1_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1159))
if mibBuilder.loadTexts:
mscExampleSignedProvFreeSignedArray1Table.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleSignedProvFreeSignedArray1Table.setDescription('')
msc_example_signed_prov_free_signed_array1_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1159, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleSignedIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleSignedProvFreeSignedArray1RowIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleSignedProvFreeSignedArray1ColumnIndex'))
if mibBuilder.loadTexts:
mscExampleSignedProvFreeSignedArray1Entry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleSignedProvFreeSignedArray1Entry.setDescription('An entry in the mscExampleSignedProvFreeSignedArray1Table.')
msc_example_signed_prov_free_signed_array1_row_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1159, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 2)))
if mibBuilder.loadTexts:
mscExampleSignedProvFreeSignedArray1RowIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleSignedProvFreeSignedArray1RowIndex.setDescription('This variable represents the next to last index for the mscExampleSignedProvFreeSignedArray1Table.')
msc_example_signed_prov_free_signed_array1_column_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1159, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 3)))
if mibBuilder.loadTexts:
mscExampleSignedProvFreeSignedArray1ColumnIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleSignedProvFreeSignedArray1ColumnIndex.setDescription('This variable represents the final index for the mscExampleSignedProvFreeSignedArray1Table.')
msc_example_signed_prov_free_signed_array1_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1159, 1, 3), integer32().subtype(subtypeSpec=value_range_constraint(-1000, 4000))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleSignedProvFreeSignedArray1Value.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleSignedProvFreeSignedArray1Value.setDescription('This variable represents an individual value for the mscExampleSignedProvFreeSignedArray1Table.')
msc_example_signed_prov_free_signed_replicated_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1160))
if mibBuilder.loadTexts:
mscExampleSignedProvFreeSignedReplicatedTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleSignedProvFreeSignedReplicatedTable.setDescription('')
msc_example_signed_prov_free_signed_replicated_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1160, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleSignedIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleSignedProvFreeSignedReplicatedIndex'))
if mibBuilder.loadTexts:
mscExampleSignedProvFreeSignedReplicatedEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleSignedProvFreeSignedReplicatedEntry.setDescription('An entry in the mscExampleSignedProvFreeSignedReplicatedTable.')
msc_example_signed_prov_free_signed_replicated_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1160, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 5)))
if mibBuilder.loadTexts:
mscExampleSignedProvFreeSignedReplicatedIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleSignedProvFreeSignedReplicatedIndex.setDescription('This variable represents the index for the mscExampleSignedProvFreeSignedReplicatedTable.')
msc_example_signed_prov_free_signed_replicated_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1160, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(-1, 13))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleSignedProvFreeSignedReplicatedValue.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleSignedProvFreeSignedReplicatedValue.setDescription('This variable represents an individual value for the mscExampleSignedProvFreeSignedReplicatedTable.')
msc_example_signed_prov_free_signed_replicated_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1160, 1, 3), row_status()).setMaxAccess('writeonly')
if mibBuilder.loadTexts:
mscExampleSignedProvFreeSignedReplicatedRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleSignedProvFreeSignedReplicatedRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleSignedProvFreeSignedReplicatedTable.')
msc_example_signed_prov_free_signed_list_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1161))
if mibBuilder.loadTexts:
mscExampleSignedProvFreeSignedListTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleSignedProvFreeSignedListTable.setDescription('')
msc_example_signed_prov_free_signed_list_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1161, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleSignedIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleSignedProvFreeSignedListValue'))
if mibBuilder.loadTexts:
mscExampleSignedProvFreeSignedListEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleSignedProvFreeSignedListEntry.setDescription('An entry in the mscExampleSignedProvFreeSignedListTable.')
msc_example_signed_prov_free_signed_list_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1161, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(-3000, 160))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleSignedProvFreeSignedListValue.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleSignedProvFreeSignedListValue.setDescription('This variable represents both the value and the index for the mscExampleSignedProvFreeSignedListTable.')
msc_example_signed_prov_free_signed_list_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1161, 1, 2), row_status()).setMaxAccess('writeonly')
if mibBuilder.loadTexts:
mscExampleSignedProvFreeSignedListRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleSignedProvFreeSignedListRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleSignedProvFreeSignedListTable.')
msc_example_miscellaneous = mib_identifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15))
msc_example_miscellaneous_row_status_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1))
if mibBuilder.loadTexts:
mscExampleMiscellaneousRowStatusTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleMiscellaneousRowStatusTable.setDescription('This entry controls the addition and deletion of mscExampleMiscellaneous components.')
msc_example_miscellaneous_row_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleMiscellaneousIndex'))
if mibBuilder.loadTexts:
mscExampleMiscellaneousRowStatusEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleMiscellaneousRowStatusEntry.setDescription('A single entry in the table represents a single mscExampleMiscellaneous component.')
msc_example_miscellaneous_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1, 1, 1), row_status()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleMiscellaneousRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleMiscellaneousRowStatus.setDescription('This variable is used as the basis for SNMP naming of mscExampleMiscellaneous components. These components can be added and deleted.')
msc_example_miscellaneous_component_name = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1, 1, 2), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mscExampleMiscellaneousComponentName.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleMiscellaneousComponentName.setDescription("This variable provides the component's string name for use with the ASCII Console Interface")
msc_example_miscellaneous_storage_type = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1, 1, 4), storage_type()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mscExampleMiscellaneousStorageType.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleMiscellaneousStorageType.setDescription('This variable represents the storage type value for the mscExampleMiscellaneous tables.')
msc_example_miscellaneous_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1, 1, 10), non_replicated())
if mibBuilder.loadTexts:
mscExampleMiscellaneousIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleMiscellaneousIndex.setDescription('This variable represents the index for the mscExampleMiscellaneous tables.')
msc_example_miscellaneous_operational_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 10))
if mibBuilder.loadTexts:
mscExampleMiscellaneousOperationalTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleMiscellaneousOperationalTable.setDescription('')
msc_example_miscellaneous_operational_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 10, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleMiscellaneousIndex'))
if mibBuilder.loadTexts:
mscExampleMiscellaneousOperationalEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleMiscellaneousOperationalEntry.setDescription('An entry in the mscExampleMiscellaneousOperationalTable.')
msc_example_miscellaneous_oper_struct_long = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 10, 1, 1), unsigned64().subtype(subtypeSpec=value_size_constraint(8, 8)).setFixedLength(8)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleMiscellaneousOperStructLong.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleMiscellaneousOperStructLong.setDescription('')
msc_example_miscellaneous_oper_free_long = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 10, 1, 2), unsigned64().subtype(subtypeSpec=value_size_constraint(8, 8)).setFixedLength(8)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleMiscellaneousOperFreeLong.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleMiscellaneousOperFreeLong.setDescription('')
msc_example_miscellaneous_oper_free_time = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 10, 1, 3), enterprise_date_and_time().subtype(subtypeSpec=constraints_union(value_size_constraint(0, 0), value_size_constraint(19, 19)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleMiscellaneousOperFreeTime.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleMiscellaneousOperFreeTime.setDescription('')
msc_example_miscellaneous_oper_free_time_date_only = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 10, 1, 4), enterprise_date_and_time().subtype(subtypeSpec=constraints_union(value_size_constraint(0, 0), value_size_constraint(10, 10)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleMiscellaneousOperFreeTimeDateOnly.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleMiscellaneousOperFreeTimeDateOnly.setDescription('')
msc_example_miscellaneous_oper_free_time_time_only = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 10, 1, 5), enterprise_date_and_time().subtype(subtypeSpec=constraints_union(value_size_constraint(0, 0), value_size_constraint(5, 5)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleMiscellaneousOperFreeTimeTimeOnly.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleMiscellaneousOperFreeTimeTimeOnly.setDescription('')
msc_example_miscellaneous_oper_free_time_date_time_minute = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 10, 1, 6), enterprise_date_and_time().subtype(subtypeSpec=constraints_union(value_size_constraint(0, 0), value_size_constraint(16, 16)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleMiscellaneousOperFreeTimeDateTimeMinute.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleMiscellaneousOperFreeTimeDateTimeMinute.setDescription('')
msc_example_miscellaneous_oper_free_counter64 = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 10, 1, 7), passport_counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mscExampleMiscellaneousOperFreeCounter64.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleMiscellaneousOperFreeCounter64.setDescription('')
msc_example_miscellaneous_oper_free_gauge64 = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 10, 1, 8), gauge64().subtype(subtypeSpec=value_size_constraint(8, 8)).setFixedLength(8)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleMiscellaneousOperFreeGauge64.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleMiscellaneousOperFreeGauge64.setDescription('')
msc_example_miscellaneous_oper_struct_counter64 = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 10, 1, 9), passport_counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mscExampleMiscellaneousOperStructCounter64.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleMiscellaneousOperStructCounter64.setDescription('')
msc_example_miscellaneous_provisional_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 11))
if mibBuilder.loadTexts:
mscExampleMiscellaneousProvisionalTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleMiscellaneousProvisionalTable.setDescription('')
msc_example_miscellaneous_provisional_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 11, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleMiscellaneousIndex'))
if mibBuilder.loadTexts:
mscExampleMiscellaneousProvisionalEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleMiscellaneousProvisionalEntry.setDescription('An entry in the mscExampleMiscellaneousProvisionalTable.')
msc_example_miscellaneous_prov_enum_sub = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 11, 1, 1), link()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleMiscellaneousProvEnumSub.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleMiscellaneousProvEnumSub.setDescription('')
msc_example_miscellaneous_prov_struct_long = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 11, 1, 2), unsigned64().subtype(subtypeSpec=value_size_constraint(8, 8)).setFixedLength(8)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleMiscellaneousProvStructLong.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleMiscellaneousProvStructLong.setDescription('')
msc_example_miscellaneous_prov_free_long = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 11, 1, 3), unsigned64().subtype(subtypeSpec=value_size_constraint(8, 8)).setFixedLength(8)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleMiscellaneousProvFreeLong.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleMiscellaneousProvFreeLong.setDescription('')
msc_example_miscellaneous_prov_free_time = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 11, 1, 4), enterprise_date_and_time().subtype(subtypeSpec=constraints_union(value_size_constraint(0, 0), value_size_constraint(19, 19))).clone(hexValue='313939322d31302d31352031303a33393a3030')).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleMiscellaneousProvFreeTime.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleMiscellaneousProvFreeTime.setDescription('')
msc_example_miscellaneous_prov_free_time_date_only = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 11, 1, 5), enterprise_date_and_time().subtype(subtypeSpec=constraints_union(value_size_constraint(0, 0), value_size_constraint(10, 10))).clone(hexValue='313939322d31302d3135')).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleMiscellaneousProvFreeTimeDateOnly.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleMiscellaneousProvFreeTimeDateOnly.setDescription('')
msc_example_miscellaneous_prov_free_time_time_only = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 11, 1, 6), enterprise_date_and_time().subtype(subtypeSpec=constraints_union(value_size_constraint(0, 0), value_size_constraint(5, 5))).clone(hexValue='31303a3339')).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleMiscellaneousProvFreeTimeTimeOnly.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleMiscellaneousProvFreeTimeTimeOnly.setDescription('')
msc_example_miscellaneous_prov_free_time_date_time_minute = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 11, 1, 7), enterprise_date_and_time().subtype(subtypeSpec=constraints_union(value_size_constraint(0, 0), value_size_constraint(16, 16))).clone(hexValue='313939322d31302d31352031303a3330')).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleMiscellaneousProvFreeTimeDateTimeMinute.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleMiscellaneousProvFreeTimeDateTimeMinute.setDescription('')
msc_example_miscellaneous_prov_free_time1 = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 11, 1, 8), enterprise_date_and_time().subtype(subtypeSpec=constraints_union(value_size_constraint(0, 0), value_size_constraint(19, 19)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleMiscellaneousProvFreeTime1.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleMiscellaneousProvFreeTime1.setDescription('')
msc_example_miscellaneous_prov_free_time_date_only1 = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 11, 1, 9), enterprise_date_and_time().subtype(subtypeSpec=constraints_union(value_size_constraint(0, 0), value_size_constraint(10, 10)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleMiscellaneousProvFreeTimeDateOnly1.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleMiscellaneousProvFreeTimeDateOnly1.setDescription('')
msc_example_miscellaneous_prov_free_time_time_only1 = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 11, 1, 10), enterprise_date_and_time().subtype(subtypeSpec=constraints_union(value_size_constraint(0, 0), value_size_constraint(8, 8)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleMiscellaneousProvFreeTimeTimeOnly1.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleMiscellaneousProvFreeTimeTimeOnly1.setDescription('')
msc_example_miscellaneous_prov_free_time_date_time_minute1 = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 11, 1, 11), enterprise_date_and_time().subtype(subtypeSpec=constraints_union(value_size_constraint(0, 0), value_size_constraint(16, 16)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleMiscellaneousProvFreeTimeDateTimeMinute1.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleMiscellaneousProvFreeTimeDateTimeMinute1.setDescription('')
msc_example_miscellaneous_oper_free_long_replicated_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1177))
if mibBuilder.loadTexts:
mscExampleMiscellaneousOperFreeLongReplicatedTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleMiscellaneousOperFreeLongReplicatedTable.setDescription('')
msc_example_miscellaneous_oper_free_long_replicated_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1177, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleMiscellaneousIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleMiscellaneousOperFreeLongReplicatedIndex'))
if mibBuilder.loadTexts:
mscExampleMiscellaneousOperFreeLongReplicatedEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleMiscellaneousOperFreeLongReplicatedEntry.setDescription('An entry in the mscExampleMiscellaneousOperFreeLongReplicatedTable.')
msc_example_miscellaneous_oper_free_long_replicated_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1177, 1, 1), unsigned64())
if mibBuilder.loadTexts:
mscExampleMiscellaneousOperFreeLongReplicatedIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleMiscellaneousOperFreeLongReplicatedIndex.setDescription('This variable represents the index for the mscExampleMiscellaneousOperFreeLongReplicatedTable.')
msc_example_miscellaneous_oper_free_long_replicated_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1177, 1, 2), unsigned64().subtype(subtypeSpec=value_size_constraint(8, 8)).setFixedLength(8)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleMiscellaneousOperFreeLongReplicatedValue.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleMiscellaneousOperFreeLongReplicatedValue.setDescription('This variable represents an individual value for the mscExampleMiscellaneousOperFreeLongReplicatedTable.')
msc_example_miscellaneous_oper_free_long_replicated_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1177, 1, 3), row_status()).setMaxAccess('writeonly')
if mibBuilder.loadTexts:
mscExampleMiscellaneousOperFreeLongReplicatedRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleMiscellaneousOperFreeLongReplicatedRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleMiscellaneousOperFreeLongReplicatedTable.')
msc_example_miscellaneous_oper_free_long_list_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1178))
if mibBuilder.loadTexts:
mscExampleMiscellaneousOperFreeLongListTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleMiscellaneousOperFreeLongListTable.setDescription('')
msc_example_miscellaneous_oper_free_long_list_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1178, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleMiscellaneousIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleMiscellaneousOperFreeLongListValue'))
if mibBuilder.loadTexts:
mscExampleMiscellaneousOperFreeLongListEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleMiscellaneousOperFreeLongListEntry.setDescription('An entry in the mscExampleMiscellaneousOperFreeLongListTable.')
msc_example_miscellaneous_oper_free_long_list_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1178, 1, 1), unsigned64().subtype(subtypeSpec=value_size_constraint(8, 8)).setFixedLength(8)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleMiscellaneousOperFreeLongListValue.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleMiscellaneousOperFreeLongListValue.setDescription('This variable represents both the value and the index for the mscExampleMiscellaneousOperFreeLongListTable.')
msc_example_miscellaneous_oper_free_long_list_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1178, 1, 2), row_status()).setMaxAccess('writeonly')
if mibBuilder.loadTexts:
mscExampleMiscellaneousOperFreeLongListRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleMiscellaneousOperFreeLongListRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleMiscellaneousOperFreeLongListTable.')
msc_example_miscellaneous_oper_free_time_list_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1179))
if mibBuilder.loadTexts:
mscExampleMiscellaneousOperFreeTimeListTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleMiscellaneousOperFreeTimeListTable.setDescription('')
msc_example_miscellaneous_oper_free_time_list_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1179, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleMiscellaneousIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleMiscellaneousOperFreeTimeListValue'))
if mibBuilder.loadTexts:
mscExampleMiscellaneousOperFreeTimeListEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleMiscellaneousOperFreeTimeListEntry.setDescription('An entry in the mscExampleMiscellaneousOperFreeTimeListTable.')
msc_example_miscellaneous_oper_free_time_list_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1179, 1, 1), enterprise_date_and_time().subtype(subtypeSpec=value_size_constraint(16, 16)).setFixedLength(16)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleMiscellaneousOperFreeTimeListValue.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleMiscellaneousOperFreeTimeListValue.setDescription('This variable represents both the value and the index for the mscExampleMiscellaneousOperFreeTimeListTable.')
msc_example_miscellaneous_oper_free_time_list_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1179, 1, 2), row_status()).setMaxAccess('writeonly')
if mibBuilder.loadTexts:
mscExampleMiscellaneousOperFreeTimeListRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleMiscellaneousOperFreeTimeListRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleMiscellaneousOperFreeTimeListTable.')
msc_example_miscellaneous_prov_free_long_replicated_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1180))
if mibBuilder.loadTexts:
mscExampleMiscellaneousProvFreeLongReplicatedTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleMiscellaneousProvFreeLongReplicatedTable.setDescription('')
msc_example_miscellaneous_prov_free_long_replicated_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1180, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleMiscellaneousIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleMiscellaneousProvFreeLongReplicatedIndex'))
if mibBuilder.loadTexts:
mscExampleMiscellaneousProvFreeLongReplicatedEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleMiscellaneousProvFreeLongReplicatedEntry.setDescription('An entry in the mscExampleMiscellaneousProvFreeLongReplicatedTable.')
msc_example_miscellaneous_prov_free_long_replicated_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1180, 1, 1), unsigned64())
if mibBuilder.loadTexts:
mscExampleMiscellaneousProvFreeLongReplicatedIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleMiscellaneousProvFreeLongReplicatedIndex.setDescription('This variable represents the index for the mscExampleMiscellaneousProvFreeLongReplicatedTable.')
msc_example_miscellaneous_prov_free_long_replicated_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1180, 1, 2), unsigned64().subtype(subtypeSpec=value_size_constraint(8, 8)).setFixedLength(8)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleMiscellaneousProvFreeLongReplicatedValue.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleMiscellaneousProvFreeLongReplicatedValue.setDescription('This variable represents an individual value for the mscExampleMiscellaneousProvFreeLongReplicatedTable.')
msc_example_miscellaneous_prov_free_long_replicated_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1180, 1, 3), row_status()).setMaxAccess('writeonly')
if mibBuilder.loadTexts:
mscExampleMiscellaneousProvFreeLongReplicatedRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleMiscellaneousProvFreeLongReplicatedRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleMiscellaneousProvFreeLongReplicatedTable.')
msc_example_miscellaneous_prov_free_long_list_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1181))
if mibBuilder.loadTexts:
mscExampleMiscellaneousProvFreeLongListTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleMiscellaneousProvFreeLongListTable.setDescription('')
msc_example_miscellaneous_prov_free_long_list_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1181, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleMiscellaneousIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleMiscellaneousProvFreeLongListValue'))
if mibBuilder.loadTexts:
mscExampleMiscellaneousProvFreeLongListEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleMiscellaneousProvFreeLongListEntry.setDescription('An entry in the mscExampleMiscellaneousProvFreeLongListTable.')
msc_example_miscellaneous_prov_free_long_list_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1181, 1, 1), unsigned64().subtype(subtypeSpec=value_size_constraint(8, 8)).setFixedLength(8)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleMiscellaneousProvFreeLongListValue.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleMiscellaneousProvFreeLongListValue.setDescription('This variable represents both the value and the index for the mscExampleMiscellaneousProvFreeLongListTable.')
msc_example_miscellaneous_prov_free_long_list_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1181, 1, 2), row_status()).setMaxAccess('writeonly')
if mibBuilder.loadTexts:
mscExampleMiscellaneousProvFreeLongListRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleMiscellaneousProvFreeLongListRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleMiscellaneousProvFreeLongListTable.')
msc_example_miscellaneous_prov_free_time_replicated_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1182))
if mibBuilder.loadTexts:
mscExampleMiscellaneousProvFreeTimeReplicatedTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleMiscellaneousProvFreeTimeReplicatedTable.setDescription('')
msc_example_miscellaneous_prov_free_time_replicated_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1182, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleMiscellaneousIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleMiscellaneousProvFreeTimeReplicatedIndex'))
if mibBuilder.loadTexts:
mscExampleMiscellaneousProvFreeTimeReplicatedEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleMiscellaneousProvFreeTimeReplicatedEntry.setDescription('An entry in the mscExampleMiscellaneousProvFreeTimeReplicatedTable.')
msc_example_miscellaneous_prov_free_time_replicated_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1182, 1, 1), enterprise_date_and_time().subtype(subtypeSpec=value_size_constraint(10, 10)).setFixedLength(10))
if mibBuilder.loadTexts:
mscExampleMiscellaneousProvFreeTimeReplicatedIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleMiscellaneousProvFreeTimeReplicatedIndex.setDescription('This variable represents the index for the mscExampleMiscellaneousProvFreeTimeReplicatedTable.')
msc_example_miscellaneous_prov_free_time_replicated_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1182, 1, 2), enterprise_date_and_time().subtype(subtypeSpec=constraints_union(value_size_constraint(0, 0), value_size_constraint(8, 8)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleMiscellaneousProvFreeTimeReplicatedValue.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleMiscellaneousProvFreeTimeReplicatedValue.setDescription('This variable represents an individual value for the mscExampleMiscellaneousProvFreeTimeReplicatedTable.')
msc_example_miscellaneous_prov_free_time_replicated_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1182, 1, 3), row_status()).setMaxAccess('writeonly')
if mibBuilder.loadTexts:
mscExampleMiscellaneousProvFreeTimeReplicatedRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleMiscellaneousProvFreeTimeReplicatedRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleMiscellaneousProvFreeTimeReplicatedTable.')
msc_example_miscellaneous_prov_free_time_list_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1183))
if mibBuilder.loadTexts:
mscExampleMiscellaneousProvFreeTimeListTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleMiscellaneousProvFreeTimeListTable.setDescription('')
msc_example_miscellaneous_prov_free_time_list_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1183, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleMiscellaneousIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleMiscellaneousProvFreeTimeListValue'))
if mibBuilder.loadTexts:
mscExampleMiscellaneousProvFreeTimeListEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleMiscellaneousProvFreeTimeListEntry.setDescription('An entry in the mscExampleMiscellaneousProvFreeTimeListTable.')
msc_example_miscellaneous_prov_free_time_list_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1183, 1, 1), enterprise_date_and_time().subtype(subtypeSpec=value_size_constraint(19, 19)).setFixedLength(19)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleMiscellaneousProvFreeTimeListValue.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleMiscellaneousProvFreeTimeListValue.setDescription('This variable represents both the value and the index for the mscExampleMiscellaneousProvFreeTimeListTable.')
msc_example_miscellaneous_prov_free_time_list_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1183, 1, 2), row_status()).setMaxAccess('writeonly')
if mibBuilder.loadTexts:
mscExampleMiscellaneousProvFreeTimeListRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleMiscellaneousProvFreeTimeListRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleMiscellaneousProvFreeTimeListTable.')
msc_example_miscellaneous_prov_free_time_list1_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1184))
if mibBuilder.loadTexts:
mscExampleMiscellaneousProvFreeTimeList1Table.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleMiscellaneousProvFreeTimeList1Table.setDescription('')
msc_example_miscellaneous_prov_free_time_list1_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1184, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleMiscellaneousIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleMiscellaneousProvFreeTimeList1Value'))
if mibBuilder.loadTexts:
mscExampleMiscellaneousProvFreeTimeList1Entry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleMiscellaneousProvFreeTimeList1Entry.setDescription('An entry in the mscExampleMiscellaneousProvFreeTimeList1Table.')
msc_example_miscellaneous_prov_free_time_list1_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1184, 1, 1), enterprise_date_and_time().subtype(subtypeSpec=value_size_constraint(10, 10)).setFixedLength(10)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleMiscellaneousProvFreeTimeList1Value.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleMiscellaneousProvFreeTimeList1Value.setDescription('This variable represents both the value and the index for the mscExampleMiscellaneousProvFreeTimeList1Table.')
msc_example_miscellaneous_prov_free_time_list1_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1184, 1, 2), row_status()).setMaxAccess('writeonly')
if mibBuilder.loadTexts:
mscExampleMiscellaneousProvFreeTimeList1RowStatus.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleMiscellaneousProvFreeTimeList1RowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleMiscellaneousProvFreeTimeList1Table.')
msc_example_miscellaneous_prov_free_time_list2_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1185))
if mibBuilder.loadTexts:
mscExampleMiscellaneousProvFreeTimeList2Table.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleMiscellaneousProvFreeTimeList2Table.setDescription('')
msc_example_miscellaneous_prov_free_time_list2_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1185, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleMiscellaneousIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleMiscellaneousProvFreeTimeList2Value'))
if mibBuilder.loadTexts:
mscExampleMiscellaneousProvFreeTimeList2Entry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleMiscellaneousProvFreeTimeList2Entry.setDescription('An entry in the mscExampleMiscellaneousProvFreeTimeList2Table.')
msc_example_miscellaneous_prov_free_time_list2_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1185, 1, 1), enterprise_date_and_time().subtype(subtypeSpec=value_size_constraint(8, 8)).setFixedLength(8)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleMiscellaneousProvFreeTimeList2Value.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleMiscellaneousProvFreeTimeList2Value.setDescription('This variable represents both the value and the index for the mscExampleMiscellaneousProvFreeTimeList2Table.')
msc_example_miscellaneous_prov_free_time_list2_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1185, 1, 2), row_status()).setMaxAccess('writeonly')
if mibBuilder.loadTexts:
mscExampleMiscellaneousProvFreeTimeList2RowStatus.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleMiscellaneousProvFreeTimeList2RowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleMiscellaneousProvFreeTimeList2Table.')
msc_example_miscellaneous_prov_free_time_list3_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1186))
if mibBuilder.loadTexts:
mscExampleMiscellaneousProvFreeTimeList3Table.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleMiscellaneousProvFreeTimeList3Table.setDescription('')
msc_example_miscellaneous_prov_free_time_list3_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1186, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleMiscellaneousIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleMiscellaneousProvFreeTimeList3Value'))
if mibBuilder.loadTexts:
mscExampleMiscellaneousProvFreeTimeList3Entry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleMiscellaneousProvFreeTimeList3Entry.setDescription('An entry in the mscExampleMiscellaneousProvFreeTimeList3Table.')
msc_example_miscellaneous_prov_free_time_list3_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1186, 1, 1), enterprise_date_and_time().subtype(subtypeSpec=value_size_constraint(16, 16)).setFixedLength(16)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleMiscellaneousProvFreeTimeList3Value.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleMiscellaneousProvFreeTimeList3Value.setDescription('This variable represents both the value and the index for the mscExampleMiscellaneousProvFreeTimeList3Table.')
msc_example_miscellaneous_prov_free_time_list3_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1186, 1, 2), row_status()).setMaxAccess('writeonly')
if mibBuilder.loadTexts:
mscExampleMiscellaneousProvFreeTimeList3RowStatus.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleMiscellaneousProvFreeTimeList3RowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleMiscellaneousProvFreeTimeList3Table.')
msc_example_one_index = mib_identifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 16))
msc_example_one_index_row_status_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 16, 1))
if mibBuilder.loadTexts:
mscExampleOneIndexRowStatusTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleOneIndexRowStatusTable.setDescription('This entry controls the addition and deletion of mscExampleOneIndex components.')
msc_example_one_index_row_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 16, 1, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleOneIndexOneIndex'))
if mibBuilder.loadTexts:
mscExampleOneIndexRowStatusEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleOneIndexRowStatusEntry.setDescription('A single entry in the table represents a single mscExampleOneIndex component.')
msc_example_one_index_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 16, 1, 1, 1), row_status()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleOneIndexRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleOneIndexRowStatus.setDescription('This variable is used as the basis for SNMP naming of mscExampleOneIndex components. These components can be added and deleted.')
msc_example_one_index_component_name = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 16, 1, 1, 2), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mscExampleOneIndexComponentName.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleOneIndexComponentName.setDescription("This variable provides the component's string name for use with the ASCII Console Interface")
msc_example_one_index_storage_type = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 16, 1, 1, 4), storage_type()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mscExampleOneIndexStorageType.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleOneIndexStorageType.setDescription('This variable represents the storage type value for the mscExampleOneIndex tables.')
msc_example_one_index_one_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 16, 1, 1, 10), integer32().subtype(subtypeSpec=value_range_constraint(0, 268435455)))
if mibBuilder.loadTexts:
mscExampleOneIndexOneIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleOneIndexOneIndex.setDescription('This variable represents the index for the mscExampleOneIndex tables.')
msc_example_one_index_provisioned_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 16, 10))
if mibBuilder.loadTexts:
mscExampleOneIndexProvisionedTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleOneIndexProvisionedTable.setDescription('')
msc_example_one_index_provisioned_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 16, 10, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleOneIndexOneIndex'))
if mibBuilder.loadTexts:
mscExampleOneIndexProvisionedEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleOneIndexProvisionedEntry.setDescription('An entry in the mscExampleOneIndexProvisionedTable.')
msc_example_one_index_prov_attribute = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 16, 10, 1, 1), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 255)).clone(1)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleOneIndexProvAttribute.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleOneIndexProvAttribute.setDescription('')
msc_example_two_indices = mib_identifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 17))
msc_example_two_indices_row_status_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 17, 1))
if mibBuilder.loadTexts:
mscExampleTwoIndicesRowStatusTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleTwoIndicesRowStatusTable.setDescription('This entry controls the addition and deletion of mscExampleTwoIndices components.')
msc_example_two_indices_row_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 17, 1, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleTwoIndicesOneIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleTwoIndicesTwoIndex'))
if mibBuilder.loadTexts:
mscExampleTwoIndicesRowStatusEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleTwoIndicesRowStatusEntry.setDescription('A single entry in the table represents a single mscExampleTwoIndices component.')
msc_example_two_indices_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 17, 1, 1, 1), row_status()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleTwoIndicesRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleTwoIndicesRowStatus.setDescription('This variable is used as the basis for SNMP naming of mscExampleTwoIndices components. These components can be added and deleted.')
msc_example_two_indices_component_name = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 17, 1, 1, 2), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mscExampleTwoIndicesComponentName.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleTwoIndicesComponentName.setDescription("This variable provides the component's string name for use with the ASCII Console Interface")
msc_example_two_indices_storage_type = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 17, 1, 1, 4), storage_type()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mscExampleTwoIndicesStorageType.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleTwoIndicesStorageType.setDescription('This variable represents the storage type value for the mscExampleTwoIndices tables.')
msc_example_two_indices_one_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 17, 1, 1, 10), integer32().subtype(subtypeSpec=value_range_constraint(0, 268435455)))
if mibBuilder.loadTexts:
mscExampleTwoIndicesOneIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleTwoIndicesOneIndex.setDescription('This variable represents an index for the mscExampleTwoIndices tables.')
msc_example_two_indices_two_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 17, 1, 1, 11), integer32().subtype(subtypeSpec=value_range_constraint(0, 268435455)))
if mibBuilder.loadTexts:
mscExampleTwoIndicesTwoIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleTwoIndicesTwoIndex.setDescription('This variable represents an index for the mscExampleTwoIndices tables.')
msc_example_two_indices_provisioned_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 17, 10))
if mibBuilder.loadTexts:
mscExampleTwoIndicesProvisionedTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleTwoIndicesProvisionedTable.setDescription('')
msc_example_two_indices_provisioned_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 17, 10, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleTwoIndicesOneIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleTwoIndicesTwoIndex'))
if mibBuilder.loadTexts:
mscExampleTwoIndicesProvisionedEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleTwoIndicesProvisionedEntry.setDescription('An entry in the mscExampleTwoIndicesProvisionedTable.')
msc_example_two_indices_prov_attribute = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 17, 10, 1, 1), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 255)).clone(1)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleTwoIndicesProvAttribute.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleTwoIndicesProvAttribute.setDescription('')
msc_example_three_indices = mib_identifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 18))
msc_example_three_indices_row_status_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 18, 1))
if mibBuilder.loadTexts:
mscExampleThreeIndicesRowStatusTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleThreeIndicesRowStatusTable.setDescription('This entry controls the addition and deletion of mscExampleThreeIndices components.')
msc_example_three_indices_row_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 18, 1, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleThreeIndicesOneIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleThreeIndicesTwoIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleThreeIndicesThreeIndex'))
if mibBuilder.loadTexts:
mscExampleThreeIndicesRowStatusEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleThreeIndicesRowStatusEntry.setDescription('A single entry in the table represents a single mscExampleThreeIndices component.')
msc_example_three_indices_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 18, 1, 1, 1), row_status()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleThreeIndicesRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleThreeIndicesRowStatus.setDescription('This variable is used as the basis for SNMP naming of mscExampleThreeIndices components. These components can be added and deleted.')
msc_example_three_indices_component_name = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 18, 1, 1, 2), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mscExampleThreeIndicesComponentName.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleThreeIndicesComponentName.setDescription("This variable provides the component's string name for use with the ASCII Console Interface")
msc_example_three_indices_storage_type = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 18, 1, 1, 4), storage_type()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mscExampleThreeIndicesStorageType.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleThreeIndicesStorageType.setDescription('This variable represents the storage type value for the mscExampleThreeIndices tables.')
msc_example_three_indices_one_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 18, 1, 1, 10), integer32().subtype(subtypeSpec=value_range_constraint(0, 268435455)))
if mibBuilder.loadTexts:
mscExampleThreeIndicesOneIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleThreeIndicesOneIndex.setDescription('This variable represents an index for the mscExampleThreeIndices tables.')
msc_example_three_indices_two_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 18, 1, 1, 11), integer32().subtype(subtypeSpec=value_range_constraint(0, 268435455)))
if mibBuilder.loadTexts:
mscExampleThreeIndicesTwoIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleThreeIndicesTwoIndex.setDescription('This variable represents an index for the mscExampleThreeIndices tables.')
msc_example_three_indices_three_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 18, 1, 1, 12), integer32().subtype(subtypeSpec=value_range_constraint(0, 268435455)))
if mibBuilder.loadTexts:
mscExampleThreeIndicesThreeIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleThreeIndicesThreeIndex.setDescription('This variable represents an index for the mscExampleThreeIndices tables.')
msc_example_three_indices_provisioned_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 18, 10))
if mibBuilder.loadTexts:
mscExampleThreeIndicesProvisionedTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleThreeIndicesProvisionedTable.setDescription('')
msc_example_three_indices_provisioned_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 18, 10, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleThreeIndicesOneIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleThreeIndicesTwoIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleThreeIndicesThreeIndex'))
if mibBuilder.loadTexts:
mscExampleThreeIndicesProvisionedEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleThreeIndicesProvisionedEntry.setDescription('An entry in the mscExampleThreeIndicesProvisionedTable.')
msc_example_three_indices_prov_attribute = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 18, 10, 1, 1), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 255)).clone(1)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleThreeIndicesProvAttribute.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleThreeIndicesProvAttribute.setDescription('')
msc_example_four_indices = mib_identifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 19))
msc_example_four_indices_row_status_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 19, 1))
if mibBuilder.loadTexts:
mscExampleFourIndicesRowStatusTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleFourIndicesRowStatusTable.setDescription('This entry controls the addition and deletion of mscExampleFourIndices components.')
msc_example_four_indices_row_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 19, 1, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleFourIndicesOneIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleFourIndicesTwoIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleFourIndicesThreeIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleFourIndicesFourIndex'))
if mibBuilder.loadTexts:
mscExampleFourIndicesRowStatusEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleFourIndicesRowStatusEntry.setDescription('A single entry in the table represents a single mscExampleFourIndices component.')
msc_example_four_indices_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 19, 1, 1, 1), row_status()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleFourIndicesRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleFourIndicesRowStatus.setDescription('This variable is used as the basis for SNMP naming of mscExampleFourIndices components. These components can be added and deleted.')
msc_example_four_indices_component_name = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 19, 1, 1, 2), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mscExampleFourIndicesComponentName.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleFourIndicesComponentName.setDescription("This variable provides the component's string name for use with the ASCII Console Interface")
msc_example_four_indices_storage_type = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 19, 1, 1, 4), storage_type()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mscExampleFourIndicesStorageType.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleFourIndicesStorageType.setDescription('This variable represents the storage type value for the mscExampleFourIndices tables.')
msc_example_four_indices_one_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 19, 1, 1, 10), integer32().subtype(subtypeSpec=value_range_constraint(0, 268435455)))
if mibBuilder.loadTexts:
mscExampleFourIndicesOneIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleFourIndicesOneIndex.setDescription('This variable represents an index for the mscExampleFourIndices tables.')
msc_example_four_indices_two_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 19, 1, 1, 11), integer32().subtype(subtypeSpec=value_range_constraint(0, 268435455)))
if mibBuilder.loadTexts:
mscExampleFourIndicesTwoIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleFourIndicesTwoIndex.setDescription('This variable represents an index for the mscExampleFourIndices tables.')
msc_example_four_indices_three_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 19, 1, 1, 12), integer32().subtype(subtypeSpec=value_range_constraint(0, 268435455)))
if mibBuilder.loadTexts:
mscExampleFourIndicesThreeIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleFourIndicesThreeIndex.setDescription('This variable represents an index for the mscExampleFourIndices tables.')
msc_example_four_indices_four_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 19, 1, 1, 13), integer32().subtype(subtypeSpec=value_range_constraint(0, 268435455)))
if mibBuilder.loadTexts:
mscExampleFourIndicesFourIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleFourIndicesFourIndex.setDescription('This variable represents an index for the mscExampleFourIndices tables.')
msc_example_four_indices_provisioned_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 19, 10))
if mibBuilder.loadTexts:
mscExampleFourIndicesProvisionedTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleFourIndicesProvisionedTable.setDescription('')
msc_example_four_indices_provisioned_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 19, 10, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleFourIndicesOneIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleFourIndicesTwoIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleFourIndicesThreeIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleFourIndicesFourIndex'))
if mibBuilder.loadTexts:
mscExampleFourIndicesProvisionedEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleFourIndicesProvisionedEntry.setDescription('An entry in the mscExampleFourIndicesProvisionedTable.')
msc_example_four_indices_prov_attribute = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 19, 10, 1, 1), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 255)).clone(1)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleFourIndicesProvAttribute.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleFourIndicesProvAttribute.setDescription('')
msc_example_decimal_indices = mib_identifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 20))
msc_example_decimal_indices_row_status_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 20, 1))
if mibBuilder.loadTexts:
mscExampleDecimalIndicesRowStatusTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDecimalIndicesRowStatusTable.setDescription('This entry controls the addition and deletion of mscExampleDecimalIndices components.')
msc_example_decimal_indices_row_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 20, 1, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDecimalIndicesOneIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDecimalIndicesTwoIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDecimalIndicesThreeIndex'))
if mibBuilder.loadTexts:
mscExampleDecimalIndicesRowStatusEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDecimalIndicesRowStatusEntry.setDescription('A single entry in the table represents a single mscExampleDecimalIndices component.')
msc_example_decimal_indices_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 20, 1, 1, 1), row_status()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleDecimalIndicesRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDecimalIndicesRowStatus.setDescription('This variable is used as the basis for SNMP naming of mscExampleDecimalIndices components. These components can be added and deleted.')
msc_example_decimal_indices_component_name = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 20, 1, 1, 2), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mscExampleDecimalIndicesComponentName.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDecimalIndicesComponentName.setDescription("This variable provides the component's string name for use with the ASCII Console Interface")
msc_example_decimal_indices_storage_type = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 20, 1, 1, 4), storage_type()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mscExampleDecimalIndicesStorageType.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDecimalIndicesStorageType.setDescription('This variable represents the storage type value for the mscExampleDecimalIndices tables.')
msc_example_decimal_indices_one_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 20, 1, 1, 10), integer32().subtype(subtypeSpec=constraints_union(value_range_constraint(1, 10), value_range_constraint(100, 100))))
if mibBuilder.loadTexts:
mscExampleDecimalIndicesOneIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDecimalIndicesOneIndex.setDescription('This variable represents an index for the mscExampleDecimalIndices tables.')
msc_example_decimal_indices_two_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 20, 1, 1, 11), integer32().subtype(subtypeSpec=constraints_union(value_range_constraint(1, 10), value_range_constraint(100, 100))))
if mibBuilder.loadTexts:
mscExampleDecimalIndicesTwoIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDecimalIndicesTwoIndex.setDescription('This variable represents an index for the mscExampleDecimalIndices tables.')
msc_example_decimal_indices_three_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 20, 1, 1, 12), integer32().subtype(subtypeSpec=constraints_union(value_range_constraint(1, 10), value_range_constraint(100, 100))))
if mibBuilder.loadTexts:
mscExampleDecimalIndicesThreeIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDecimalIndicesThreeIndex.setDescription('This variable represents an index for the mscExampleDecimalIndices tables.')
msc_example_decimal_indices_provisioned_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 20, 10))
if mibBuilder.loadTexts:
mscExampleDecimalIndicesProvisionedTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDecimalIndicesProvisionedTable.setDescription('')
msc_example_decimal_indices_provisioned_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 20, 10, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDecimalIndicesOneIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDecimalIndicesTwoIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDecimalIndicesThreeIndex'))
if mibBuilder.loadTexts:
mscExampleDecimalIndicesProvisionedEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDecimalIndicesProvisionedEntry.setDescription('An entry in the mscExampleDecimalIndicesProvisionedTable.')
msc_example_decimal_indices_prov_attribute = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 20, 10, 1, 1), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 255)).clone(1)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleDecimalIndicesProvAttribute.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDecimalIndicesProvAttribute.setDescription('')
msc_example_hex_indices = mib_identifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 21))
msc_example_hex_indices_row_status_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 21, 1))
if mibBuilder.loadTexts:
mscExampleHexIndicesRowStatusTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleHexIndicesRowStatusTable.setDescription('This entry controls the addition and deletion of mscExampleHexIndices components.')
msc_example_hex_indices_row_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 21, 1, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleHexIndicesOneIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleHexIndicesTwoIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleHexIndicesThreeIndex'))
if mibBuilder.loadTexts:
mscExampleHexIndicesRowStatusEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleHexIndicesRowStatusEntry.setDescription('A single entry in the table represents a single mscExampleHexIndices component.')
msc_example_hex_indices_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 21, 1, 1, 1), row_status()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleHexIndicesRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleHexIndicesRowStatus.setDescription('This variable is used as the basis for SNMP naming of mscExampleHexIndices components. These components can be added and deleted.')
msc_example_hex_indices_component_name = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 21, 1, 1, 2), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mscExampleHexIndicesComponentName.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleHexIndicesComponentName.setDescription("This variable provides the component's string name for use with the ASCII Console Interface")
msc_example_hex_indices_storage_type = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 21, 1, 1, 4), storage_type()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mscExampleHexIndicesStorageType.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleHexIndicesStorageType.setDescription('This variable represents the storage type value for the mscExampleHexIndices tables.')
msc_example_hex_indices_one_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 21, 1, 1, 10), integer32().subtype(subtypeSpec=constraints_union(value_range_constraint(1, 16), value_range_constraint(256, 256))))
if mibBuilder.loadTexts:
mscExampleHexIndicesOneIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleHexIndicesOneIndex.setDescription('This variable represents an index for the mscExampleHexIndices tables.')
msc_example_hex_indices_two_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 21, 1, 1, 11), integer32().subtype(subtypeSpec=constraints_union(value_range_constraint(1, 16), value_range_constraint(256, 256))))
if mibBuilder.loadTexts:
mscExampleHexIndicesTwoIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleHexIndicesTwoIndex.setDescription('This variable represents an index for the mscExampleHexIndices tables.')
msc_example_hex_indices_three_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 21, 1, 1, 12), integer32().subtype(subtypeSpec=constraints_union(value_range_constraint(1, 16), value_range_constraint(256, 256))))
if mibBuilder.loadTexts:
mscExampleHexIndicesThreeIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleHexIndicesThreeIndex.setDescription('This variable represents an index for the mscExampleHexIndices tables.')
msc_example_hex_indices_provisioned_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 21, 10))
if mibBuilder.loadTexts:
mscExampleHexIndicesProvisionedTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleHexIndicesProvisionedTable.setDescription('')
msc_example_hex_indices_provisioned_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 21, 10, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleHexIndicesOneIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleHexIndicesTwoIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleHexIndicesThreeIndex'))
if mibBuilder.loadTexts:
mscExampleHexIndicesProvisionedEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleHexIndicesProvisionedEntry.setDescription('An entry in the mscExampleHexIndicesProvisionedTable.')
msc_example_hex_indices_prov_attribute = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 21, 10, 1, 1), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 255)).clone(1)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleHexIndicesProvAttribute.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleHexIndicesProvAttribute.setDescription('')
msc_example_ip_addr_indices = mib_identifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 22))
msc_example_ip_addr_indices_row_status_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 22, 1))
if mibBuilder.loadTexts:
mscExampleIpAddrIndicesRowStatusTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleIpAddrIndicesRowStatusTable.setDescription('This entry controls the addition and deletion of mscExampleIpAddrIndices components.')
msc_example_ip_addr_indices_row_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 22, 1, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIpAddrIndicesOneIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIpAddrIndicesTwoIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIpAddrIndicesThreeIndex'))
if mibBuilder.loadTexts:
mscExampleIpAddrIndicesRowStatusEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleIpAddrIndicesRowStatusEntry.setDescription('A single entry in the table represents a single mscExampleIpAddrIndices component.')
msc_example_ip_addr_indices_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 22, 1, 1, 1), row_status()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleIpAddrIndicesRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleIpAddrIndicesRowStatus.setDescription('This variable is used as the basis for SNMP naming of mscExampleIpAddrIndices components. These components can be added and deleted.')
msc_example_ip_addr_indices_component_name = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 22, 1, 1, 2), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mscExampleIpAddrIndicesComponentName.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleIpAddrIndicesComponentName.setDescription("This variable provides the component's string name for use with the ASCII Console Interface")
msc_example_ip_addr_indices_storage_type = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 22, 1, 1, 4), storage_type()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mscExampleIpAddrIndicesStorageType.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleIpAddrIndicesStorageType.setDescription('This variable represents the storage type value for the mscExampleIpAddrIndices tables.')
msc_example_ip_addr_indices_one_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 22, 1, 1, 10), ip_address())
if mibBuilder.loadTexts:
mscExampleIpAddrIndicesOneIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleIpAddrIndicesOneIndex.setDescription('This variable represents an index for the mscExampleIpAddrIndices tables.')
msc_example_ip_addr_indices_two_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 22, 1, 1, 11), ip_address())
if mibBuilder.loadTexts:
mscExampleIpAddrIndicesTwoIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleIpAddrIndicesTwoIndex.setDescription('This variable represents an index for the mscExampleIpAddrIndices tables.')
msc_example_ip_addr_indices_three_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 22, 1, 1, 12), ip_address())
if mibBuilder.loadTexts:
mscExampleIpAddrIndicesThreeIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleIpAddrIndicesThreeIndex.setDescription('This variable represents an index for the mscExampleIpAddrIndices tables.')
msc_example_ip_addr_indices_provisioned_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 22, 10))
if mibBuilder.loadTexts:
mscExampleIpAddrIndicesProvisionedTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleIpAddrIndicesProvisionedTable.setDescription('')
msc_example_ip_addr_indices_provisioned_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 22, 10, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIpAddrIndicesOneIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIpAddrIndicesTwoIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIpAddrIndicesThreeIndex'))
if mibBuilder.loadTexts:
mscExampleIpAddrIndicesProvisionedEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleIpAddrIndicesProvisionedEntry.setDescription('An entry in the mscExampleIpAddrIndicesProvisionedTable.')
msc_example_ip_addr_indices_prov_attribute = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 22, 10, 1, 1), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 255)).clone(1)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleIpAddrIndicesProvAttribute.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleIpAddrIndicesProvAttribute.setDescription('')
msc_example_ascii_indices = mib_identifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 23))
msc_example_ascii_indices_row_status_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 23, 1))
if mibBuilder.loadTexts:
mscExampleAsciiIndicesRowStatusTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleAsciiIndicesRowStatusTable.setDescription('This entry controls the addition and deletion of mscExampleAsciiIndices components.')
msc_example_ascii_indices_row_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 23, 1, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleAsciiIndicesOneIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleAsciiIndicesTwoIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleAsciiIndicesThreeIndex'))
if mibBuilder.loadTexts:
mscExampleAsciiIndicesRowStatusEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleAsciiIndicesRowStatusEntry.setDescription('A single entry in the table represents a single mscExampleAsciiIndices component.')
msc_example_ascii_indices_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 23, 1, 1, 1), row_status()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleAsciiIndicesRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleAsciiIndicesRowStatus.setDescription('This variable is used as the basis for SNMP naming of mscExampleAsciiIndices components. These components can be added and deleted.')
msc_example_ascii_indices_component_name = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 23, 1, 1, 2), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mscExampleAsciiIndicesComponentName.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleAsciiIndicesComponentName.setDescription("This variable provides the component's string name for use with the ASCII Console Interface")
msc_example_ascii_indices_storage_type = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 23, 1, 1, 4), storage_type()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mscExampleAsciiIndicesStorageType.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleAsciiIndicesStorageType.setDescription('This variable represents the storage type value for the mscExampleAsciiIndices tables.')
msc_example_ascii_indices_one_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 23, 1, 1, 10), ascii_string_index().subtype(subtypeSpec=value_size_constraint(1, 10)))
if mibBuilder.loadTexts:
mscExampleAsciiIndicesOneIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleAsciiIndicesOneIndex.setDescription('This variable represents an index for the mscExampleAsciiIndices tables.')
msc_example_ascii_indices_two_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 23, 1, 1, 11), ascii_string_index().subtype(subtypeSpec=value_size_constraint(1, 10)))
if mibBuilder.loadTexts:
mscExampleAsciiIndicesTwoIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleAsciiIndicesTwoIndex.setDescription('This variable represents an index for the mscExampleAsciiIndices tables.')
msc_example_ascii_indices_three_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 23, 1, 1, 12), ascii_string_index().subtype(subtypeSpec=value_size_constraint(1, 10)))
if mibBuilder.loadTexts:
mscExampleAsciiIndicesThreeIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleAsciiIndicesThreeIndex.setDescription('This variable represents an index for the mscExampleAsciiIndices tables.')
msc_example_ascii_indices_provisioned_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 23, 10))
if mibBuilder.loadTexts:
mscExampleAsciiIndicesProvisionedTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleAsciiIndicesProvisionedTable.setDescription('')
msc_example_ascii_indices_provisioned_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 23, 10, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleAsciiIndicesOneIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleAsciiIndicesTwoIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleAsciiIndicesThreeIndex'))
if mibBuilder.loadTexts:
mscExampleAsciiIndicesProvisionedEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleAsciiIndicesProvisionedEntry.setDescription('An entry in the mscExampleAsciiIndicesProvisionedTable.')
msc_example_ascii_indices_prov_attribute = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 23, 10, 1, 1), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 255)).clone(1)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleAsciiIndicesProvAttribute.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleAsciiIndicesProvAttribute.setDescription('')
msc_example_hex_str_indices = mib_identifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 24))
msc_example_hex_str_indices_row_status_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 24, 1))
if mibBuilder.loadTexts:
mscExampleHexStrIndicesRowStatusTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleHexStrIndicesRowStatusTable.setDescription('This entry controls the addition and deletion of mscExampleHexStrIndices components.')
msc_example_hex_str_indices_row_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 24, 1, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleHexStrIndicesOneIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleHexStrIndicesTwoIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleHexStrIndicesThreeIndex'))
if mibBuilder.loadTexts:
mscExampleHexStrIndicesRowStatusEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleHexStrIndicesRowStatusEntry.setDescription('A single entry in the table represents a single mscExampleHexStrIndices component.')
msc_example_hex_str_indices_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 24, 1, 1, 1), row_status()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleHexStrIndicesRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleHexStrIndicesRowStatus.setDescription('This variable is used as the basis for SNMP naming of mscExampleHexStrIndices components. These components can be added and deleted.')
msc_example_hex_str_indices_component_name = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 24, 1, 1, 2), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mscExampleHexStrIndicesComponentName.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleHexStrIndicesComponentName.setDescription("This variable provides the component's string name for use with the ASCII Console Interface")
msc_example_hex_str_indices_storage_type = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 24, 1, 1, 4), storage_type()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mscExampleHexStrIndicesStorageType.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleHexStrIndicesStorageType.setDescription('This variable represents the storage type value for the mscExampleHexStrIndices tables.')
msc_example_hex_str_indices_one_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 24, 1, 1, 10), hex_string().subtype(subtypeSpec=value_size_constraint(1, 10)))
if mibBuilder.loadTexts:
mscExampleHexStrIndicesOneIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleHexStrIndicesOneIndex.setDescription('This variable represents an index for the mscExampleHexStrIndices tables.')
msc_example_hex_str_indices_two_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 24, 1, 1, 11), hex_string().subtype(subtypeSpec=value_size_constraint(1, 10)))
if mibBuilder.loadTexts:
mscExampleHexStrIndicesTwoIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleHexStrIndicesTwoIndex.setDescription('This variable represents an index for the mscExampleHexStrIndices tables.')
msc_example_hex_str_indices_three_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 24, 1, 1, 12), hex_string().subtype(subtypeSpec=value_size_constraint(1, 10)))
if mibBuilder.loadTexts:
mscExampleHexStrIndicesThreeIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleHexStrIndicesThreeIndex.setDescription('This variable represents an index for the mscExampleHexStrIndices tables.')
msc_example_hex_str_indices_provisioned_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 24, 10))
if mibBuilder.loadTexts:
mscExampleHexStrIndicesProvisionedTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleHexStrIndicesProvisionedTable.setDescription('')
msc_example_hex_str_indices_provisioned_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 24, 10, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleHexStrIndicesOneIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleHexStrIndicesTwoIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleHexStrIndicesThreeIndex'))
if mibBuilder.loadTexts:
mscExampleHexStrIndicesProvisionedEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleHexStrIndicesProvisionedEntry.setDescription('An entry in the mscExampleHexStrIndicesProvisionedTable.')
msc_example_hex_str_indices_prov_attribute = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 24, 10, 1, 1), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 255)).clone(1)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleHexStrIndicesProvAttribute.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleHexStrIndicesProvAttribute.setDescription('')
msc_example_bcd_indices = mib_identifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 25))
msc_example_bcd_indices_row_status_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 25, 1))
if mibBuilder.loadTexts:
mscExampleBcdIndicesRowStatusTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleBcdIndicesRowStatusTable.setDescription('This entry controls the addition and deletion of mscExampleBcdIndices components.')
msc_example_bcd_indices_row_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 25, 1, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleBcdIndicesOneIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleBcdIndicesTwoIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleBcdIndicesThreeIndex'))
if mibBuilder.loadTexts:
mscExampleBcdIndicesRowStatusEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleBcdIndicesRowStatusEntry.setDescription('A single entry in the table represents a single mscExampleBcdIndices component.')
msc_example_bcd_indices_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 25, 1, 1, 1), row_status()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleBcdIndicesRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleBcdIndicesRowStatus.setDescription('This variable is used as the basis for SNMP naming of mscExampleBcdIndices components. These components can be added and deleted.')
msc_example_bcd_indices_component_name = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 25, 1, 1, 2), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mscExampleBcdIndicesComponentName.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleBcdIndicesComponentName.setDescription("This variable provides the component's string name for use with the ASCII Console Interface")
msc_example_bcd_indices_storage_type = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 25, 1, 1, 4), storage_type()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mscExampleBcdIndicesStorageType.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleBcdIndicesStorageType.setDescription('This variable represents the storage type value for the mscExampleBcdIndices tables.')
msc_example_bcd_indices_one_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 25, 1, 1, 10), digit_string().subtype(subtypeSpec=value_size_constraint(1, 10)))
if mibBuilder.loadTexts:
mscExampleBcdIndicesOneIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleBcdIndicesOneIndex.setDescription('This variable represents an index for the mscExampleBcdIndices tables.')
msc_example_bcd_indices_two_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 25, 1, 1, 11), digit_string().subtype(subtypeSpec=value_size_constraint(1, 10)))
if mibBuilder.loadTexts:
mscExampleBcdIndicesTwoIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleBcdIndicesTwoIndex.setDescription('This variable represents an index for the mscExampleBcdIndices tables.')
msc_example_bcd_indices_three_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 25, 1, 1, 12), digit_string().subtype(subtypeSpec=value_size_constraint(1, 10)))
if mibBuilder.loadTexts:
mscExampleBcdIndicesThreeIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleBcdIndicesThreeIndex.setDescription('This variable represents an index for the mscExampleBcdIndices tables.')
msc_example_bcd_indices_provisioned_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 25, 10))
if mibBuilder.loadTexts:
mscExampleBcdIndicesProvisionedTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleBcdIndicesProvisionedTable.setDescription('')
msc_example_bcd_indices_provisioned_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 25, 10, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleBcdIndicesOneIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleBcdIndicesTwoIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleBcdIndicesThreeIndex'))
if mibBuilder.loadTexts:
mscExampleBcdIndicesProvisionedEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleBcdIndicesProvisionedEntry.setDescription('An entry in the mscExampleBcdIndicesProvisionedTable.')
msc_example_bcd_indices_prov_attribute = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 25, 10, 1, 1), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 255)).clone(1)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleBcdIndicesProvAttribute.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleBcdIndicesProvAttribute.setDescription('')
msc_example_enum_indices = mib_identifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 26))
msc_example_enum_indices_row_status_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 26, 1))
if mibBuilder.loadTexts:
mscExampleEnumIndicesRowStatusTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleEnumIndicesRowStatusTable.setDescription('This entry controls the addition and deletion of mscExampleEnumIndices components.')
msc_example_enum_indices_row_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 26, 1, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleEnumIndicesOneIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleEnumIndicesTwoIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleEnumIndicesThreeIndex'))
if mibBuilder.loadTexts:
mscExampleEnumIndicesRowStatusEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleEnumIndicesRowStatusEntry.setDescription('A single entry in the table represents a single mscExampleEnumIndices component.')
msc_example_enum_indices_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 26, 1, 1, 1), row_status()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleEnumIndicesRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleEnumIndicesRowStatus.setDescription('This variable is used as the basis for SNMP naming of mscExampleEnumIndices components. These components can be added and deleted.')
msc_example_enum_indices_component_name = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 26, 1, 1, 2), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mscExampleEnumIndicesComponentName.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleEnumIndicesComponentName.setDescription("This variable provides the component's string name for use with the ASCII Console Interface")
msc_example_enum_indices_storage_type = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 26, 1, 1, 4), storage_type()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mscExampleEnumIndicesStorageType.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleEnumIndicesStorageType.setDescription('This variable represents the storage type value for the mscExampleEnumIndices tables.')
msc_example_enum_indices_one_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 26, 1, 1, 10), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('first', 1), ('second', 2), ('third', 3))))
if mibBuilder.loadTexts:
mscExampleEnumIndicesOneIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleEnumIndicesOneIndex.setDescription('This variable represents an index for the mscExampleEnumIndices tables.')
msc_example_enum_indices_two_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 26, 1, 1, 11), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('first', 1), ('second', 2), ('third', 3))))
if mibBuilder.loadTexts:
mscExampleEnumIndicesTwoIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleEnumIndicesTwoIndex.setDescription('This variable represents an index for the mscExampleEnumIndices tables.')
msc_example_enum_indices_three_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 26, 1, 1, 12), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('first', 1), ('second', 2), ('third', 3))))
if mibBuilder.loadTexts:
mscExampleEnumIndicesThreeIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleEnumIndicesThreeIndex.setDescription('This variable represents an index for the mscExampleEnumIndices tables.')
msc_example_enum_indices_provisioned_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 26, 10))
if mibBuilder.loadTexts:
mscExampleEnumIndicesProvisionedTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleEnumIndicesProvisionedTable.setDescription('')
msc_example_enum_indices_provisioned_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 26, 10, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleEnumIndicesOneIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleEnumIndicesTwoIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleEnumIndicesThreeIndex'))
if mibBuilder.loadTexts:
mscExampleEnumIndicesProvisionedEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleEnumIndicesProvisionedEntry.setDescription('An entry in the mscExampleEnumIndicesProvisionedTable.')
msc_example_enum_indices_prov_attribute = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 26, 10, 1, 1), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 255)).clone(1)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleEnumIndicesProvAttribute.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleEnumIndicesProvAttribute.setDescription('')
msc_example_sequence_indices = mib_identifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 27))
msc_example_sequence_indices_row_status_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 27, 1))
if mibBuilder.loadTexts:
mscExampleSequenceIndicesRowStatusTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleSequenceIndicesRowStatusTable.setDescription('This entry controls the addition and deletion of mscExampleSequenceIndices components.')
msc_example_sequence_indices_row_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 27, 1, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleSequenceIndicesOneIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleSequenceIndicesTwoIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleSequenceIndicesThreeIndex'))
if mibBuilder.loadTexts:
mscExampleSequenceIndicesRowStatusEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleSequenceIndicesRowStatusEntry.setDescription('A single entry in the table represents a single mscExampleSequenceIndices component.')
msc_example_sequence_indices_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 27, 1, 1, 1), row_status()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleSequenceIndicesRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleSequenceIndicesRowStatus.setDescription('This variable is used as the basis for SNMP naming of mscExampleSequenceIndices components. These components can be added and deleted.')
msc_example_sequence_indices_component_name = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 27, 1, 1, 2), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mscExampleSequenceIndicesComponentName.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleSequenceIndicesComponentName.setDescription("This variable provides the component's string name for use with the ASCII Console Interface")
msc_example_sequence_indices_storage_type = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 27, 1, 1, 4), storage_type()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mscExampleSequenceIndicesStorageType.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleSequenceIndicesStorageType.setDescription('This variable represents the storage type value for the mscExampleSequenceIndices tables.')
msc_example_sequence_indices_one_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 27, 1, 1, 10), object_identifier())
if mibBuilder.loadTexts:
mscExampleSequenceIndicesOneIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleSequenceIndicesOneIndex.setDescription('This variable represents an index for the mscExampleSequenceIndices tables.')
msc_example_sequence_indices_two_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 27, 1, 1, 11), object_identifier())
if mibBuilder.loadTexts:
mscExampleSequenceIndicesTwoIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleSequenceIndicesTwoIndex.setDescription('This variable represents an index for the mscExampleSequenceIndices tables.')
msc_example_sequence_indices_three_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 27, 1, 1, 12), object_identifier())
if mibBuilder.loadTexts:
mscExampleSequenceIndicesThreeIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleSequenceIndicesThreeIndex.setDescription('This variable represents an index for the mscExampleSequenceIndices tables.')
msc_example_sequence_indices_provisioned_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 27, 10))
if mibBuilder.loadTexts:
mscExampleSequenceIndicesProvisionedTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleSequenceIndicesProvisionedTable.setDescription('')
msc_example_sequence_indices_provisioned_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 27, 10, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleSequenceIndicesOneIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleSequenceIndicesTwoIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleSequenceIndicesThreeIndex'))
if mibBuilder.loadTexts:
mscExampleSequenceIndicesProvisionedEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleSequenceIndicesProvisionedEntry.setDescription('An entry in the mscExampleSequenceIndicesProvisionedTable.')
msc_example_sequence_indices_prov_attribute = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 27, 10, 1, 1), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 255)).clone(1)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleSequenceIndicesProvAttribute.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleSequenceIndicesProvAttribute.setDescription('')
msc_example_obj_id_indices = mib_identifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 28))
msc_example_obj_id_indices_row_status_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 28, 1))
if mibBuilder.loadTexts:
mscExampleObjIdIndicesRowStatusTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleObjIdIndicesRowStatusTable.setDescription('This entry controls the addition and deletion of mscExampleObjIdIndices components.')
msc_example_obj_id_indices_row_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 28, 1, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleObjIdIndicesOneIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleObjIdIndicesTwoIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleObjIdIndicesThreeIndex'))
if mibBuilder.loadTexts:
mscExampleObjIdIndicesRowStatusEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleObjIdIndicesRowStatusEntry.setDescription('A single entry in the table represents a single mscExampleObjIdIndices component.')
msc_example_obj_id_indices_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 28, 1, 1, 1), row_status()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleObjIdIndicesRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleObjIdIndicesRowStatus.setDescription('This variable is used as the basis for SNMP naming of mscExampleObjIdIndices components. These components can be added and deleted.')
msc_example_obj_id_indices_component_name = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 28, 1, 1, 2), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mscExampleObjIdIndicesComponentName.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleObjIdIndicesComponentName.setDescription("This variable provides the component's string name for use with the ASCII Console Interface")
msc_example_obj_id_indices_storage_type = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 28, 1, 1, 4), storage_type()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mscExampleObjIdIndicesStorageType.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleObjIdIndicesStorageType.setDescription('This variable represents the storage type value for the mscExampleObjIdIndices tables.')
msc_example_obj_id_indices_one_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 28, 1, 1, 10), object_identifier())
if mibBuilder.loadTexts:
mscExampleObjIdIndicesOneIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleObjIdIndicesOneIndex.setDescription('This variable represents an index for the mscExampleObjIdIndices tables.')
msc_example_obj_id_indices_two_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 28, 1, 1, 11), object_identifier())
if mibBuilder.loadTexts:
mscExampleObjIdIndicesTwoIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleObjIdIndicesTwoIndex.setDescription('This variable represents an index for the mscExampleObjIdIndices tables.')
msc_example_obj_id_indices_three_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 28, 1, 1, 12), object_identifier())
if mibBuilder.loadTexts:
mscExampleObjIdIndicesThreeIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleObjIdIndicesThreeIndex.setDescription('This variable represents an index for the mscExampleObjIdIndices tables.')
msc_example_obj_id_indices_provisioned_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 28, 10))
if mibBuilder.loadTexts:
mscExampleObjIdIndicesProvisionedTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleObjIdIndicesProvisionedTable.setDescription('')
msc_example_obj_id_indices_provisioned_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 28, 10, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleObjIdIndicesOneIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleObjIdIndicesTwoIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleObjIdIndicesThreeIndex'))
if mibBuilder.loadTexts:
mscExampleObjIdIndicesProvisionedEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleObjIdIndicesProvisionedEntry.setDescription('An entry in the mscExampleObjIdIndicesProvisionedTable.')
msc_example_obj_id_indices_prov_attribute = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 28, 10, 1, 1), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 255)).clone(1)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleObjIdIndicesProvAttribute.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleObjIdIndicesProvAttribute.setDescription('')
msc_example_dashed_indices = mib_identifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 30))
msc_example_dashed_indices_row_status_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 30, 1))
if mibBuilder.loadTexts:
mscExampleDashedIndicesRowStatusTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDashedIndicesRowStatusTable.setDescription('This entry controls the addition and deletion of mscExampleDashedIndices components.')
msc_example_dashed_indices_row_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 30, 1, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDashedIndicesOneIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDashedIndicesTwoIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDashedIndicesThreeIndex'))
if mibBuilder.loadTexts:
mscExampleDashedIndicesRowStatusEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDashedIndicesRowStatusEntry.setDescription('A single entry in the table represents a single mscExampleDashedIndices component.')
msc_example_dashed_indices_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 30, 1, 1, 1), row_status()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleDashedIndicesRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDashedIndicesRowStatus.setDescription('This variable is used as the basis for SNMP naming of mscExampleDashedIndices components. These components can be added and deleted.')
msc_example_dashed_indices_component_name = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 30, 1, 1, 2), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mscExampleDashedIndicesComponentName.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDashedIndicesComponentName.setDescription("This variable provides the component's string name for use with the ASCII Console Interface")
msc_example_dashed_indices_storage_type = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 30, 1, 1, 4), storage_type()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mscExampleDashedIndicesStorageType.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDashedIndicesStorageType.setDescription('This variable represents the storage type value for the mscExampleDashedIndices tables.')
msc_example_dashed_indices_one_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 30, 1, 1, 10), dashed_hex_string().subtype(subtypeSpec=value_size_constraint(1, 10)))
if mibBuilder.loadTexts:
mscExampleDashedIndicesOneIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDashedIndicesOneIndex.setDescription('This variable represents an index for the mscExampleDashedIndices tables.')
msc_example_dashed_indices_two_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 30, 1, 1, 11), dashed_hex_string().subtype(subtypeSpec=value_size_constraint(1, 10)))
if mibBuilder.loadTexts:
mscExampleDashedIndicesTwoIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDashedIndicesTwoIndex.setDescription('This variable represents an index for the mscExampleDashedIndices tables.')
msc_example_dashed_indices_three_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 30, 1, 1, 12), dashed_hex_string().subtype(subtypeSpec=value_size_constraint(1, 10)))
if mibBuilder.loadTexts:
mscExampleDashedIndicesThreeIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDashedIndicesThreeIndex.setDescription('This variable represents an index for the mscExampleDashedIndices tables.')
msc_example_dashed_indices_provisioned_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 30, 10))
if mibBuilder.loadTexts:
mscExampleDashedIndicesProvisionedTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDashedIndicesProvisionedTable.setDescription('')
msc_example_dashed_indices_provisioned_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 30, 10, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDashedIndicesOneIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDashedIndicesTwoIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDashedIndicesThreeIndex'))
if mibBuilder.loadTexts:
mscExampleDashedIndicesProvisionedEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDashedIndicesProvisionedEntry.setDescription('An entry in the mscExampleDashedIndicesProvisionedTable.')
msc_example_dashed_indices_prov_attribute = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 30, 10, 1, 1), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 255)).clone(1)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleDashedIndicesProvAttribute.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleDashedIndicesProvAttribute.setDescription('')
msc_example_required_indices = mib_identifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 31))
msc_example_required_indices_row_status_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 31, 1))
if mibBuilder.loadTexts:
mscExampleRequiredIndicesRowStatusTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleRequiredIndicesRowStatusTable.setDescription('This entry controls the addition and deletion of mscExampleRequiredIndices components.')
msc_example_required_indices_row_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 31, 1, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleRequiredIndicesDecimalIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleRequiredIndicesEnumerationIndex'))
if mibBuilder.loadTexts:
mscExampleRequiredIndicesRowStatusEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleRequiredIndicesRowStatusEntry.setDescription('A single entry in the table represents a single mscExampleRequiredIndices component.')
msc_example_required_indices_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 31, 1, 1, 1), row_status()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleRequiredIndicesRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleRequiredIndicesRowStatus.setDescription('This variable is used as the basis for SNMP naming of mscExampleRequiredIndices components. These components can be added and deleted.')
msc_example_required_indices_component_name = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 31, 1, 1, 2), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mscExampleRequiredIndicesComponentName.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleRequiredIndicesComponentName.setDescription("This variable provides the component's string name for use with the ASCII Console Interface")
msc_example_required_indices_storage_type = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 31, 1, 1, 4), storage_type()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mscExampleRequiredIndicesStorageType.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleRequiredIndicesStorageType.setDescription('This variable represents the storage type value for the mscExampleRequiredIndices tables.')
msc_example_required_indices_decimal_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 31, 1, 1, 10), integer32().subtype(subtypeSpec=value_range_constraint(0, 268435455)))
if mibBuilder.loadTexts:
mscExampleRequiredIndicesDecimalIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleRequiredIndicesDecimalIndex.setDescription('This variable represents an index for the mscExampleRequiredIndices tables.')
msc_example_required_indices_enumeration_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 31, 1, 1, 11), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('first', 1), ('second', 2), ('third', 3))))
if mibBuilder.loadTexts:
mscExampleRequiredIndicesEnumerationIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleRequiredIndicesEnumerationIndex.setDescription('This variable represents an index for the mscExampleRequiredIndices tables.')
msc_example_required_indices_provisioned_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 31, 10))
if mibBuilder.loadTexts:
mscExampleRequiredIndicesProvisionedTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleRequiredIndicesProvisionedTable.setDescription('')
msc_example_required_indices_provisioned_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 31, 10, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleRequiredIndicesDecimalIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleRequiredIndicesEnumerationIndex'))
if mibBuilder.loadTexts:
mscExampleRequiredIndicesProvisionedEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleRequiredIndicesProvisionedEntry.setDescription('An entry in the mscExampleRequiredIndicesProvisionedTable.')
msc_example_required_indices_prov_attribute = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 31, 10, 1, 1), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 255)).clone(1)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleRequiredIndicesProvAttribute.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleRequiredIndicesProvAttribute.setDescription('')
msc_example_nsap = mib_identifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 32))
msc_example_nsap_row_status_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 32, 1))
if mibBuilder.loadTexts:
mscExampleNsapRowStatusTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleNsapRowStatusTable.setDescription('This entry controls the addition and deletion of mscExampleNsap components.')
msc_example_nsap_row_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 32, 1, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleNsapIndex'))
if mibBuilder.loadTexts:
mscExampleNsapRowStatusEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleNsapRowStatusEntry.setDescription('A single entry in the table represents a single mscExampleNsap component.')
msc_example_nsap_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 32, 1, 1, 1), row_status()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleNsapRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleNsapRowStatus.setDescription('This variable is used as the basis for SNMP naming of mscExampleNsap components. These components can be added and deleted.')
msc_example_nsap_component_name = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 32, 1, 1, 2), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mscExampleNsapComponentName.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleNsapComponentName.setDescription("This variable provides the component's string name for use with the ASCII Console Interface")
msc_example_nsap_storage_type = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 32, 1, 1, 4), storage_type()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mscExampleNsapStorageType.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleNsapStorageType.setDescription('This variable represents the storage type value for the mscExampleNsap tables.')
msc_example_nsap_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 32, 1, 1, 10), ascii_string_index().subtype(subtypeSpec=value_size_constraint(0, 44)))
if mibBuilder.loadTexts:
mscExampleNsapIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleNsapIndex.setDescription('This variable represents the index for the mscExampleNsap tables.')
msc_example_nsap_atm_addr_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 32, 102))
if mibBuilder.loadTexts:
mscExampleNsapAtmAddrTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleNsapAtmAddrTable.setDescription('')
msc_example_nsap_atm_addr_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 32, 102, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleNsapIndex'))
if mibBuilder.loadTexts:
mscExampleNsapAtmAddrEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleNsapAtmAddrEntry.setDescription('An entry in the mscExampleNsapAtmAddrTable.')
msc_example_nsap_nsap_native_address = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 32, 102, 1, 1246), ascii_string().subtype(subtypeSpec=value_size_constraint(1, 44))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleNsapNsapNativeAddress.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleNsapNsapNativeAddress.setDescription('')
msc_example_nsap_native_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 32, 1247))
if mibBuilder.loadTexts:
mscExampleNsapNativeTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleNsapNativeTable.setDescription('')
msc_example_nsap_native_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 32, 1247, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleNsapIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleNsapNativeIndex'))
if mibBuilder.loadTexts:
mscExampleNsapNativeEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleNsapNativeEntry.setDescription('An entry in the mscExampleNsapNativeTable.')
msc_example_nsap_native_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 32, 1247, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 9)))
if mibBuilder.loadTexts:
mscExampleNsapNativeIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleNsapNativeIndex.setDescription('This variable represents the mscExampleNsapNativeTable specific index for the mscExampleNsapNativeTable.')
msc_example_nsap_native_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 32, 1247, 1, 2), ascii_string().subtype(subtypeSpec=value_size_constraint(1, 44))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscExampleNsapNativeValue.setStatus('mandatory')
if mibBuilder.loadTexts:
mscExampleNsapNativeValue.setDescription('This variable represents an individual value for the mscExampleNsapNativeTable.')
msc_fri = mib_identifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001))
msc_fri_row_status_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 1))
if mibBuilder.loadTexts:
mscFriRowStatusTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriRowStatusTable.setDescription('This entry controls the addition and deletion of mscFri components.')
msc_fri_row_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 1, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriIndex'))
if mibBuilder.loadTexts:
mscFriRowStatusEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriRowStatusEntry.setDescription('A single entry in the table represents a single mscFri component.')
msc_fri_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 1, 1, 1), row_status()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscFriRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriRowStatus.setDescription('This variable is used as the basis for SNMP naming of mscFri components. These components can be added and deleted.')
msc_fri_component_name = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 1, 1, 2), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mscFriComponentName.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriComponentName.setDescription("This variable provides the component's string name for use with the ASCII Console Interface")
msc_fri_storage_type = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 1, 1, 4), storage_type()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mscFriStorageType.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriStorageType.setDescription('This variable represents the storage type value for the mscFri tables.')
msc_fri_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 1, 1, 10), integer32().subtype(subtypeSpec=value_range_constraint(0, 99)))
if mibBuilder.loadTexts:
mscFriIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriIndex.setDescription('This variable represents the index for the mscFri tables.')
msc_fri_operational_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 100))
if mibBuilder.loadTexts:
mscFriOperationalTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriOperationalTable.setDescription('')
msc_fri_operational_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 100, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriIndex'))
if mibBuilder.loadTexts:
mscFriOperationalEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriOperationalEntry.setDescription('An entry in the mscFriOperationalTable.')
msc_fri_operational_free_simple_ascii = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 100, 1, 1), ascii_string().subtype(subtypeSpec=value_size_constraint(10, 100))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscFriOperationalFreeSimpleAscii.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriOperationalFreeSimpleAscii.setDescription('')
msc_fri_operational_free_simple_dashed = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 100, 1, 2), dashed_hex_string().subtype(subtypeSpec=value_size_constraint(10, 100))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscFriOperationalFreeSimpleDashed.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriOperationalFreeSimpleDashed.setDescription('')
msc_fri_operational_free_simple_extended = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 100, 1, 3), extended_ascii_string().subtype(subtypeSpec=value_size_constraint(10, 100))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscFriOperationalFreeSimpleExtended.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriOperationalFreeSimpleExtended.setDescription('')
msc_fri_operational_free_simple_bcd = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 100, 1, 4), digit_string().subtype(subtypeSpec=value_size_constraint(2, 10))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscFriOperationalFreeSimpleBcd.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriOperationalFreeSimpleBcd.setDescription('')
msc_fri_operational_free_simple_signed = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 100, 1, 5), integer32().subtype(subtypeSpec=value_range_constraint(-2, 10))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscFriOperationalFreeSimpleSigned.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriOperationalFreeSimpleSigned.setDescription('')
msc_fri_operational_free_simple_fixed = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 100, 1, 6), fixed_point1().subtype(subtypeSpec=value_range_constraint(55, 66))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscFriOperationalFreeSimpleFixed.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriOperationalFreeSimpleFixed.setDescription('')
msc_fri_operational_free_simple_sequence = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 100, 1, 7), integer_sequence().subtype(subtypeSpec=value_size_constraint(5, 11))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscFriOperationalFreeSimpleSequence.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriOperationalFreeSimpleSequence.setDescription('')
msc_fri_operational_free_simple_obj_id = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 100, 1, 8), integer_sequence()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscFriOperationalFreeSimpleObjId.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriOperationalFreeSimpleObjId.setDescription('')
msc_fri_operational_free_simple_component = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 100, 1, 9), row_pointer()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscFriOperationalFreeSimpleComponent.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriOperationalFreeSimpleComponent.setDescription('')
msc_fri_operational_free_simple_hex = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 100, 1, 10), hex_string().subtype(subtypeSpec=value_size_constraint(20, 20)).setFixedLength(20)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscFriOperationalFreeSimpleHex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriOperationalFreeSimpleHex.setDescription('')
msc_fri_operational_struct_set_enumeration = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 100, 1, 11), octet_string().subtype(subtypeSpec=value_size_constraint(2, 2)).setFixedLength(2).clone(hexValue='9100')).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscFriOperationalStructSetEnumeration.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriOperationalStructSetEnumeration.setDescription('Description of bits: january(0) february(1) march(2) april(3) may(4) june(5) july(6) august(7) september(8) october(9) november(10) december(11)')
msc_fri_operational_struct_set_unsigned = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 100, 1, 12), octet_string().subtype(subtypeSpec=value_size_constraint(1, 1)).setFixedLength(1).clone(hexValue='54')).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscFriOperationalStructSetUnsigned.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriOperationalStructSetUnsigned.setDescription('Description of bits: n0(0) n1(1) n2(2) n3(3) n4(4) n5(5)')
msc_fri_operational_struct_simple_ascii = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 100, 1, 13), ascii_string().subtype(subtypeSpec=value_size_constraint(10, 100)).clone(hexValue='61313063686172737472696e67')).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscFriOperationalStructSimpleAscii.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriOperationalStructSimpleAscii.setDescription('')
msc_fri_operational_struct_simple_dashed = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 100, 1, 14), dashed_hex_string().subtype(subtypeSpec=value_size_constraint(10, 100))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscFriOperationalStructSimpleDashed.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriOperationalStructSimpleDashed.setDescription('')
msc_fri_operational_struct_simple_extended = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 100, 1, 15), extended_ascii_string().subtype(subtypeSpec=value_size_constraint(10, 100))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscFriOperationalStructSimpleExtended.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriOperationalStructSimpleExtended.setDescription('')
msc_fri_operational_struct_simple_bcd = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 100, 1, 16), digit_string().subtype(subtypeSpec=value_size_constraint(2, 10))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscFriOperationalStructSimpleBcd.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriOperationalStructSimpleBcd.setDescription('')
msc_fri_operational_struct_simple_signed = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 100, 1, 17), integer32().subtype(subtypeSpec=value_range_constraint(-2, 10))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscFriOperationalStructSimpleSigned.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriOperationalStructSimpleSigned.setDescription('')
msc_fri_operational_struct_simple_fixed = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 100, 1, 18), fixed_point1().subtype(subtypeSpec=value_range_constraint(23, 29))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscFriOperationalStructSimpleFixed.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriOperationalStructSimpleFixed.setDescription('')
msc_fri_operational_struct_simple_sequence = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 100, 1, 19), integer_sequence().subtype(subtypeSpec=value_size_constraint(3, 6))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscFriOperationalStructSimpleSequence.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriOperationalStructSimpleSequence.setDescription('')
msc_fri_operational_struct_simple_enum = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 100, 1, 20), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5, 6))).clone(namedValues=named_values(('monday', 0), ('tuesday', 1), ('wednesday', 2), ('thursday', 3), ('friday', 4), ('saterday', 5), ('sunday', 6))).clone('monday')).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscFriOperationalStructSimpleEnum.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriOperationalStructSimpleEnum.setDescription('')
msc_fri_operational_struct_simple_hex = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 100, 1, 21), hex_string().subtype(subtypeSpec=value_size_constraint(10, 100))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscFriOperationalStructSimpleHex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriOperationalStructSimpleHex.setDescription('')
msc_fri_operational_struct_simple_unsigned = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 100, 1, 22), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 31)).clone(3)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscFriOperationalStructSimpleUnsigned.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriOperationalStructSimpleUnsigned.setDescription('')
msc_fri_provisional_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 101))
if mibBuilder.loadTexts:
mscFriProvisionalTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriProvisionalTable.setDescription('')
msc_fri_provisional_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 101, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriIndex'))
if mibBuilder.loadTexts:
mscFriProvisionalEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriProvisionalEntry.setDescription('An entry in the mscFriProvisionalTable.')
msc_fri_provisional_struct_set_enumeration = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 101, 1, 1), octet_string().subtype(subtypeSpec=value_size_constraint(1, 1)).setFixedLength(1).clone(hexValue='a8')).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscFriProvisionalStructSetEnumeration.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriProvisionalStructSetEnumeration.setDescription('Description of bits: monday(0) tuesday(1) wednesday(2) thursday(3) friday(4) saterday(5) sunday(6)')
msc_fri_provisional_struct_set_unsigned = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 101, 1, 2), octet_string().subtype(subtypeSpec=value_size_constraint(2, 2)).setFixedLength(2).clone(hexValue='aaa8')).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscFriProvisionalStructSetUnsigned.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriProvisionalStructSetUnsigned.setDescription('Description of bits: n0(0) n1(1) n2(2) n3(3) n4(4) n5(5) n6(6) n7(7) n8(8) n9(9) n10(10) n11(11) n12(12)')
msc_fri_provisional_struct_simple_ascii = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 101, 1, 3), ascii_string().subtype(subtypeSpec=value_size_constraint(10, 100)).clone(hexValue='61737472696e676f663131')).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscFriProvisionalStructSimpleAscii.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriProvisionalStructSimpleAscii.setDescription('')
msc_fri_provisional_struct_simple_dashed = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 101, 1, 4), dashed_hex_string().subtype(subtypeSpec=value_size_constraint(10, 100)).clone(hexValue='01234556789abCDef0ee')).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscFriProvisionalStructSimpleDashed.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriProvisionalStructSimpleDashed.setDescription('')
msc_fri_provisional_struct_simple_extended = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 101, 1, 5), extended_ascii_string().subtype(subtypeSpec=value_size_constraint(10, 100)).clone(hexValue='61006211632264336544')).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscFriProvisionalStructSimpleExtended.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriProvisionalStructSimpleExtended.setDescription('')
msc_fri_provisional_struct_simple_bcd = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 101, 1, 6), digit_string().subtype(subtypeSpec=value_size_constraint(2, 10)).clone(hexValue='31323334')).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscFriProvisionalStructSimpleBcd.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriProvisionalStructSimpleBcd.setDescription('')
msc_fri_provisional_struct_simple_sequence = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 101, 1, 7), integer_sequence().subtype(subtypeSpec=value_size_constraint(1, 2))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscFriProvisionalStructSimpleSequence.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriProvisionalStructSimpleSequence.setDescription('')
msc_fri_provisional_struct_simple_enum = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 101, 1, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11))).clone(namedValues=named_values(('january', 0), ('february', 1), ('march', 2), ('april', 3), ('may', 4), ('june', 5), ('july', 6), ('august', 7), ('september', 8), ('october', 9), ('november', 10), ('december', 11))).clone('february')).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscFriProvisionalStructSimpleEnum.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriProvisionalStructSimpleEnum.setDescription('')
msc_fri_provisional_struct_simple_hex = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 101, 1, 9), hex_string().subtype(subtypeSpec=value_size_constraint(10, 100)).clone(hexValue='3039303930393039303930393039303930393039303930393039')).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscFriProvisionalStructSimpleHex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriProvisionalStructSimpleHex.setDescription('')
msc_fri_provisional_struct_simple_unsigned = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 101, 1, 10), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 255)).clone(10)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscFriProvisionalStructSimpleUnsigned.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriProvisionalStructSimpleUnsigned.setDescription('')
msc_fri_provisional_struct_simple_signed = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 101, 1, 11), integer32().subtype(subtypeSpec=value_range_constraint(-255, 255)).clone(-5)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscFriProvisionalStructSimpleSigned.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriProvisionalStructSimpleSigned.setDescription('')
msc_fri_provisional_struct_simple_fixed = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 101, 1, 12), fixed_point2().subtype(subtypeSpec=value_range_constraint(254, 355)).clone(350)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscFriProvisionalStructSimpleFixed.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriProvisionalStructSimpleFixed.setDescription('')
msc_fri_provisional_free_simple_ascii = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 101, 1, 13), ascii_string().subtype(subtypeSpec=value_size_constraint(10, 100)).clone(hexValue='61737472696e676f663131')).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscFriProvisionalFreeSimpleAscii.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriProvisionalFreeSimpleAscii.setDescription('')
msc_fri_provisional_free_simple_dashed = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 101, 1, 14), dashed_hex_string().subtype(subtypeSpec=value_size_constraint(10, 100)).clone(hexValue='00112233445566778899aabbccddeeff')).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscFriProvisionalFreeSimpleDashed.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriProvisionalFreeSimpleDashed.setDescription('')
msc_fri_provisional_free_simple_extended = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 101, 1, 15), extended_ascii_string().subtype(subtypeSpec=value_size_constraint(10, 100)).clone(hexValue='61626300006465665555676869')).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscFriProvisionalFreeSimpleExtended.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriProvisionalFreeSimpleExtended.setDescription('')
msc_fri_provisional_free_simple_bcd = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 101, 1, 16), digit_string().subtype(subtypeSpec=value_size_constraint(2, 10)).clone(hexValue='31323334')).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscFriProvisionalFreeSimpleBcd.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriProvisionalFreeSimpleBcd.setDescription('')
msc_fri_provisional_free_simple_sequence = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 101, 1, 17), integer_sequence().subtype(subtypeSpec=value_size_constraint(8, 11))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscFriProvisionalFreeSimpleSequence.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriProvisionalFreeSimpleSequence.setDescription('')
msc_fri_provisional_free_simple_signed = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 101, 1, 18), integer32().subtype(subtypeSpec=value_range_constraint(-2147483648, 2147483647)).clone(-11)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscFriProvisionalFreeSimpleSigned.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriProvisionalFreeSimpleSigned.setDescription('')
msc_fri_provisional_free_simple_fixed = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 101, 1, 19), fixed_point2().subtype(subtypeSpec=value_range_constraint(22, 233)).clone(122)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscFriProvisionalFreeSimpleFixed.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriProvisionalFreeSimpleFixed.setDescription('')
msc_fri_provisional_free_simple_obj_id = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 101, 1, 20), integer_sequence()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscFriProvisionalFreeSimpleObjId.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriProvisionalFreeSimpleObjId.setDescription('')
msc_fri_provisional_free_simple_component = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 101, 1, 21), row_pointer()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscFriProvisionalFreeSimpleComponent.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriProvisionalFreeSimpleComponent.setDescription('')
msc_fri_provisional_free_simple_hex = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 101, 1, 22), hex_string().subtype(subtypeSpec=value_size_constraint(10, 100)).clone(hexValue='00112233445566778899aaBBcCDdeeFF313233')).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscFriProvisionalFreeSimpleHex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriProvisionalFreeSimpleHex.setDescription('')
msc_fri_escape_check_attribute = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 101, 1, 23), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 255)).clone(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscFriEscapeCheckAttribute.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriEscapeCheckAttribute.setDescription('')
msc_fri_escape_defaults_component = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 101, 1, 24), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 255))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscFriEscapeDefaultsComponent.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriEscapeDefaultsComponent.setDescription('')
msc_fri_escape_defaults_group = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 101, 1, 25), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 255))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscFriEscapeDefaultsGroup.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriEscapeDefaultsGroup.setDescription('')
msc_fri_escape_set = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 101, 1, 26), ascii_string().subtype(subtypeSpec=value_size_constraint(4, 8)).clone(hexValue='70617373776f7264')).setMaxAccess('writeonly')
if mibBuilder.loadTexts:
mscFriEscapeSet.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriEscapeSet.setDescription('This attribute is used for testing the immediate value manipulation offered by the set escape. This is ONLY VALID IF the read access is DEBUG or NONE. This is to prevent the NMS and Passport from becoming out of sync. If the value has an odd number of characters, we issue the exampleEscapeSetResponse error response.')
msc_fri_escape_copy_component = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 101, 1, 27), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscFriEscapeCopyComponent.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriEscapeCopyComponent.setDescription('')
msc_fri_escape_copy_group = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 101, 1, 28), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscFriEscapeCopyGroup.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriEscapeCopyGroup.setDescription('')
msc_fri_escape_copy_attribute = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 101, 1, 29), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscFriEscapeCopyAttribute.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriEscapeCopyAttribute.setDescription('')
msc_fri_state_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 102))
if mibBuilder.loadTexts:
mscFriStateTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriStateTable.setDescription('This group contains the three OSI State attributes and the six OSI Status attributes. The descriptions generically indicate what each attribute implies about the component. Note that not all the values and state combinations described here are supported by every component which uses this group. For component-specific information and the valid state combinations, refer to NTP 241- 7001-150, Passport Operations and Maintenance Guide.')
msc_fri_state_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 102, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriIndex'))
if mibBuilder.loadTexts:
mscFriStateEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriStateEntry.setDescription('An entry in the mscFriStateTable.')
msc_fri_admin_state = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 102, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('locked', 0), ('unlocked', 1), ('shuttingDown', 2))).clone('unlocked')).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mscFriAdminState.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriAdminState.setDescription('This attribute indicates the OSI Administrative State of the component. The value locked indicates that the component is administratively prohibited from providing services for its users. A Lock or Lock - force command has been previously issued for this component. When the value is locked, the value of usageState must be idle. The value shuttingDown indicates that the component is administratively permitted to provide service to its existing users only. A Lock command was issued against the component and it is in the process of shutting down. The value unlocked indicates that the component is administratively permitted to provide services for its users. To enter this state, issue an Unlock command to this component. The OSI Status attributes, if supported by the component, may provide more details, qualifying the state of the component.')
msc_fri_operational_state = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 102, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('disabled', 0), ('enabled', 1))).clone('disabled')).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mscFriOperationalState.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriOperationalState.setDescription('This attribute indicates the OSI Operational State of the component. The value enabled indicates that the component is available for operation. Note that if adminState is locked, it would still not be providing service. The value disabled indicates that the component is not available for operation. For example, something is wrong with the component itself, or with another component on which this one depends. If the value is disabled, the usageState must be idle. The OSI Status attributes, if supported by the component, may provide more details, qualifying the state of the component.')
msc_fri_usage_state = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 102, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('idle', 0), ('active', 1), ('busy', 2))).clone('idle')).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mscFriUsageState.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriUsageState.setDescription('This attribute indicates the OSI Usage State of the component. The value idle indicates that the component is not currently in use. The value active indicates that the component is in use and has spare capacity to provide for additional users. The value busy indicates that the component is in use and has no spare operating capacity for additional users at this time. The OSI Status attributes, if supported by the component, may provide more details, qualifying the state of the component.')
msc_fri_availability_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 102, 1, 4), octet_string().subtype(subtypeSpec=value_size_constraint(2, 2)).setFixedLength(2)).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mscFriAvailabilityStatus.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriAvailabilityStatus.setDescription('If supported by the component, this attribute indicates the OSI Availability status of the component. Note that, even though it is defined as a multi-valued set, at most one value is shown to the user. When no values are in the set, this indicates that either the attribute is not supported or that none of the status conditions described below are present. The value inTest indicates that the resource is undergoing a test procedure. If adminState is locked or shuttingDown, the normal users are precluded from using the resource and controlStatus is reservedForTest. Tests that do not exclude additional users can be present in any operational or administrative state but the reservedForTest condition should not be present. The value failed indicates that the component has an internal fault that prevents it from operating. The operationalState is disabled. The value dependency indicates that the component cannot operate because some other resource on which it depends is unavailable. The operationalState is disabled. The value powerOff indicates the resource requires power to be applied and it is not powered on. The operationalState is disabled. The value offLine indicates the resource requires a routine operation (either manual, automatic, or both) to be performed to place it on-line and make it available for use. The operationalState is disabled. The value offDuty indicates the resource is inactive in accordance with a predetermined time schedule. In the absence of other disabling conditions, the operationalState is enabled or disabled. The value degraded indicates the service provided by the component is degraded in some way, such as in speed or operating capacity. However, the resource remains available for service. The operationalState is enabled. The value notInstalled indicates the resource is not present. The operationalState is disabled. The value logFull is not used. Description of bits: inTest(0) failed(1) powerOff(2) offLine(3) offDuty(4) dependency(5) degraded(6) notInstalled(7) logFull(8)')
msc_fri_procedural_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 102, 1, 5), octet_string().subtype(subtypeSpec=value_size_constraint(1, 1)).setFixedLength(1)).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mscFriProceduralStatus.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriProceduralStatus.setDescription("If supported by the component, this attribute indicates the OSI Procedural status of the component. Note that, even though it is defined as a multi-valued set, at most one value is shown to the user. When no values are in the set, this indicates that either the attribute is not supported or that none of the status conditions described below are present. The value initializationRequired indicates (for a resource which doesn't initialize autonomously) that initialization is required before it can perform its normal functions, and this procedure has not been initiated. The operationalState is disabled. The value notInitialized indicates (for a resource which does initialize autonomously) that initialization is required before it can perform its normal functions, and this procedure has not been initiated. The operationalState may be enabled or disabled. The value initializing indicates that initialization has been initiated but is not yet complete. The operationalState may be enabled or disabled. The value reporting indicates the resource has completed some processing operation and is notifying the results. The operationalState is enabled. The value terminating indicates the component is in a termination phase. If the resource doesn't reinitialize autonomously, operationalState is disabled; otherwise it is enabled or disabled. Description of bits: initializationRequired(0) notInitialized(1) initializing(2) reporting(3) terminating(4)")
msc_fri_control_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 102, 1, 6), octet_string().subtype(subtypeSpec=value_size_constraint(1, 1)).setFixedLength(1)).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mscFriControlStatus.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriControlStatus.setDescription('If supported by the component, this attribute indicates the OSI Control status of the component. Note that, even though it is defined as a multi-valued set, at most one value is shown to the user. When no values are in the set, this indicates that either the attribute is not supported or that none of the status conditions described below are present. The value subjectToTest indicates the resource is available but tests may be conducted simultaneously at unpredictable times, which may cause it to exhibit unusual characteristics. The value partOfServicesLocked indicates that part of the service is restricted from users of a resource. The adminState is unlocked. The value reservedForTest indicates that the component is administratively unavailable because it is undergoing a test procedure. The adminState is locked. The value suspended indicates that the service has been administratively suspended. Description of bits: subjectToTest(0) partOfServicesLocked(1) reservedForTest(2) suspended(3)')
msc_fri_alarm_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 102, 1, 7), octet_string().subtype(subtypeSpec=value_size_constraint(1, 1)).setFixedLength(1)).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mscFriAlarmStatus.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriAlarmStatus.setDescription('If supported by the component, this attribute indicates the OSI Alarm status of the component. Note that, even though it is defined as a multi-valued set, at most one value is shown to the user. When no values are in the set, this indicates that either the attribute is not supported or that none of the status conditions described below are present. The value underRepair indicates the component is currently being repaired. The operationalState is enabled or disabled. The value critical indicates one or more critical alarms are outstanding against the component. Other, less severe, alarms may also be outstanding. The operationalState is enabled or disabled. The value major indicates one or more major alarms are outstanding against the component. Other, less severe, alarms may also be outstanding. The operationalState is enabled or disabled. The value minor indicates one or more minor alarms are outstanding against the component. Other, less severe, alarms may also be outstanding. The operationalState is enabled or disabled. The value alarmOutstanding generically indicates that an alarm of some severity is outstanding against the component. Description of bits: underRepair(0) critical(1) major(2) minor(3) alarmOutstanding(4)')
msc_fri_standby_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 102, 1, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 15))).clone(namedValues=named_values(('hotStandby', 0), ('coldStandby', 1), ('providingService', 2), ('notSet', 15))).clone('notSet')).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mscFriStandbyStatus.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriStandbyStatus.setDescription('If supported by the component, this attribute indicates the OSI Standby status of the component. The value notSet indicates that either the attribute is not supported or that none of the status conditions described below are present. Note that this is a non-standard value, used because the original specification indicated this attribute was set-valued and thus, did not provide a value to indicate that none of the other three are applicable. The value hotStandby indicates that the resource is not providing service but will be immediately able to take over the role of the resource to be backed up, without initialization activity, and containing the same information as the resource to be backed up. The value coldStandby indicates the resource is a backup for another resource but will not be immediately able to take over the role of the backed up resource and will require some initialization activity. The value providingService indicates that this component, as a backup resource, is currently backing up another resource.')
msc_fri_unknown_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 102, 1, 9), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('false', 0), ('true', 1))).clone('false')).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mscFriUnknownStatus.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriUnknownStatus.setDescription('This attribute indicates the OSI Unknown status of the component. The value false indicates that all of the other OSI State and Status attribute values can be considered accurate. The value true indicates that the actual state of the component is not known for sure.')
msc_fri_pf_list_ascii_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 1187))
if mibBuilder.loadTexts:
mscFriPfListAsciiTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriPfListAsciiTable.setDescription('')
msc_fri_pf_list_ascii_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 1187, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriPfListAsciiValue'))
if mibBuilder.loadTexts:
mscFriPfListAsciiEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriPfListAsciiEntry.setDescription('An entry in the mscFriPfListAsciiTable.')
msc_fri_pf_list_ascii_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 1187, 1, 1), ascii_string().subtype(subtypeSpec=value_size_constraint(0, 100))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscFriPfListAsciiValue.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriPfListAsciiValue.setDescription('This variable represents both the value and the index for the mscFriPfListAsciiTable.')
msc_fri_pf_list_ascii_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 1187, 1, 2), row_status()).setMaxAccess('writeonly')
if mibBuilder.loadTexts:
mscFriPfListAsciiRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriPfListAsciiRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscFriPfListAsciiTable.')
msc_fri_pf_list_unsigned_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 1188))
if mibBuilder.loadTexts:
mscFriPfListUnsignedTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriPfListUnsignedTable.setDescription('')
msc_fri_pf_list_unsigned_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 1188, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriPfListUnsignedValue'))
if mibBuilder.loadTexts:
mscFriPfListUnsignedEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriPfListUnsignedEntry.setDescription('An entry in the mscFriPfListUnsignedTable.')
msc_fri_pf_list_unsigned_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 1188, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 255))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscFriPfListUnsignedValue.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriPfListUnsignedValue.setDescription('This variable represents both the value and the index for the mscFriPfListUnsignedTable.')
msc_fri_pf_list_unsigned_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 1188, 1, 2), row_status()).setMaxAccess('writeonly')
if mibBuilder.loadTexts:
mscFriPfListUnsignedRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriPfListUnsignedRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscFriPfListUnsignedTable.')
msc_fri_pf_list_fixed_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 1189))
if mibBuilder.loadTexts:
mscFriPfListFixedTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriPfListFixedTable.setDescription('')
msc_fri_pf_list_fixed_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 1189, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriPfListFixedValue'))
if mibBuilder.loadTexts:
mscFriPfListFixedEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriPfListFixedEntry.setDescription('An entry in the mscFriPfListFixedTable.')
msc_fri_pf_list_fixed_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 1189, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 2559))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscFriPfListFixedValue.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriPfListFixedValue.setDescription('This variable represents both the value and the index for the mscFriPfListFixedTable.')
msc_fri_pf_list_fixed_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 1189, 1, 2), row_status()).setMaxAccess('writeonly')
if mibBuilder.loadTexts:
mscFriPfListFixedRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriPfListFixedRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscFriPfListFixedTable.')
msc_fri_pf_list_signed_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 1190))
if mibBuilder.loadTexts:
mscFriPfListSignedTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriPfListSignedTable.setDescription('')
msc_fri_pf_list_signed_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 1190, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriPfListSignedValue'))
if mibBuilder.loadTexts:
mscFriPfListSignedEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriPfListSignedEntry.setDescription('An entry in the mscFriPfListSignedTable.')
msc_fri_pf_list_signed_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 1190, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(-200, 255))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscFriPfListSignedValue.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriPfListSignedValue.setDescription('This variable represents both the value and the index for the mscFriPfListSignedTable.')
msc_fri_pf_list_signed_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 1190, 1, 2), row_status()).setMaxAccess('writeonly')
if mibBuilder.loadTexts:
mscFriPfListSignedRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriPfListSignedRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscFriPfListSignedTable.')
msc_fri_of_list_component_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 1191))
if mibBuilder.loadTexts:
mscFriOfListComponentTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriOfListComponentTable.setDescription('')
msc_fri_of_list_component_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 1191, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriOfListComponentValue'))
if mibBuilder.loadTexts:
mscFriOfListComponentEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriOfListComponentEntry.setDescription('An entry in the mscFriOfListComponentTable.')
msc_fri_of_list_component_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 1191, 1, 1), row_pointer()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscFriOfListComponentValue.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriOfListComponentValue.setDescription('This variable represents both the value and the index for the mscFriOfListComponentTable.')
msc_fri_of_list_component_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 1191, 1, 2), row_status()).setMaxAccess('writeonly')
if mibBuilder.loadTexts:
mscFriOfListComponentRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriOfListComponentRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscFriOfListComponentTable.')
msc_fri_of_list_enumeration_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 1192))
if mibBuilder.loadTexts:
mscFriOfListEnumerationTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriOfListEnumerationTable.setDescription('')
msc_fri_of_list_enumeration_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 1192, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriOfListEnumerationValue'))
if mibBuilder.loadTexts:
mscFriOfListEnumerationEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriOfListEnumerationEntry.setDescription('An entry in the mscFriOfListEnumerationTable.')
msc_fri_of_list_enumeration_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 1192, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11))).clone(namedValues=named_values(('january', 0), ('february', 1), ('march', 2), ('april', 3), ('may', 4), ('june', 5), ('july', 6), ('august', 7), ('september', 8), ('october', 9), ('november', 10), ('december', 11)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscFriOfListEnumerationValue.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriOfListEnumerationValue.setDescription('This variable represents both the value and the index for the mscFriOfListEnumerationTable.')
msc_fri_of_list_enumeration_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 1192, 1, 2), row_status()).setMaxAccess('writeonly')
if mibBuilder.loadTexts:
mscFriOfListEnumerationRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriOfListEnumerationRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscFriOfListEnumerationTable.')
msc_fri_dna = mib_identifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 4))
msc_fri_dna_row_status_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 4, 1))
if mibBuilder.loadTexts:
mscFriDnaRowStatusTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriDnaRowStatusTable.setDescription('This entry controls the addition and deletion of mscFriDna components.')
msc_fri_dna_row_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 4, 1, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriDnaIndex'))
if mibBuilder.loadTexts:
mscFriDnaRowStatusEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriDnaRowStatusEntry.setDescription('A single entry in the table represents a single mscFriDna component.')
msc_fri_dna_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 4, 1, 1, 1), row_status()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscFriDnaRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriDnaRowStatus.setDescription('This variable is used as the basis for SNMP naming of mscFriDna components. These components can be added and deleted.')
msc_fri_dna_component_name = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 4, 1, 1, 2), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mscFriDnaComponentName.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriDnaComponentName.setDescription("This variable provides the component's string name for use with the ASCII Console Interface")
msc_fri_dna_storage_type = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 4, 1, 1, 4), storage_type()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mscFriDnaStorageType.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriDnaStorageType.setDescription('This variable represents the storage type value for the mscFriDna tables.')
msc_fri_dna_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 4, 1, 1, 10), integer32().subtype(subtypeSpec=value_range_constraint(0, 15)))
if mibBuilder.loadTexts:
mscFriDnaIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriDnaIndex.setDescription('This variable represents the index for the mscFriDna tables.')
msc_fri_dna_operational_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 4, 10))
if mibBuilder.loadTexts:
mscFriDnaOperationalTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriDnaOperationalTable.setDescription('')
msc_fri_dna_operational_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 4, 10, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriDnaIndex'))
if mibBuilder.loadTexts:
mscFriDnaOperationalEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriDnaOperationalEntry.setDescription('An entry in the mscFriDnaOperationalTable.')
msc_fri_dna_attribute = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 4, 10, 1, 1), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 65535)).clone(1)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscFriDnaAttribute.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriDnaAttribute.setDescription('')
msc_fri_dna_provisional_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 4, 11))
if mibBuilder.loadTexts:
mscFriDnaProvisionalTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriDnaProvisionalTable.setDescription('')
msc_fri_dna_provisional_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 4, 11, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriDnaIndex'))
if mibBuilder.loadTexts:
mscFriDnaProvisionalEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriDnaProvisionalEntry.setDescription('An entry in the mscFriDnaProvisionalTable.')
msc_fri_dna_type_of_address = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 4, 11, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('networkDepend', 0), ('international', 1), ('national', 2))).clone('international')).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mscFriDnaTypeOfAddress.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriDnaTypeOfAddress.setDescription('')
msc_fri_dna_number_plan_indicator = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 4, 11, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('x121', 0), ('e164', 1))).clone('x121')).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscFriDnaNumberPlanIndicator.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriDnaNumberPlanIndicator.setDescription('')
msc_fri_dna_data_network_address = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 4, 11, 1, 3), digit_string().subtype(subtypeSpec=value_size_constraint(1, 15))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscFriDnaDataNetworkAddress.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriDnaDataNetworkAddress.setDescription('')
msc_fri_dynamic = mib_identifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 7))
msc_fri_dynamic_row_status_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 7, 1))
if mibBuilder.loadTexts:
mscFriDynamicRowStatusTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriDynamicRowStatusTable.setDescription('*** THIS TABLE CURRENTLY NOT IMPLEMENTED *** This entry controls the addition and deletion of mscFriDynamic components.')
msc_fri_dynamic_row_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 7, 1, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriDynamicIndex'))
if mibBuilder.loadTexts:
mscFriDynamicRowStatusEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriDynamicRowStatusEntry.setDescription('A single entry in the table represents a single mscFriDynamic component.')
msc_fri_dynamic_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 7, 1, 1, 1), row_status()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mscFriDynamicRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriDynamicRowStatus.setDescription('This variable is used as the basis for SNMP naming of mscFriDynamic components. These components cannot be added nor deleted.')
msc_fri_dynamic_component_name = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 7, 1, 1, 2), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mscFriDynamicComponentName.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriDynamicComponentName.setDescription("This variable provides the component's string name for use with the ASCII Console Interface")
msc_fri_dynamic_storage_type = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 7, 1, 1, 4), storage_type()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mscFriDynamicStorageType.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriDynamicStorageType.setDescription('This variable represents the storage type value for the mscFriDynamic tables.')
msc_fri_dynamic_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 7, 1, 1, 10), integer32().subtype(subtypeSpec=value_range_constraint(0, 1023)))
if mibBuilder.loadTexts:
mscFriDynamicIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriDynamicIndex.setDescription('This variable represents the index for the mscFriDynamic tables.')
msc_fri_dynamic_operational_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 7, 10))
if mibBuilder.loadTexts:
mscFriDynamicOperationalTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriDynamicOperationalTable.setDescription('*** THIS TABLE CURRENTLY NOT IMPLEMENTED ***')
msc_fri_dynamic_operational_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 7, 10, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriDynamicIndex'))
if mibBuilder.loadTexts:
mscFriDynamicOperationalEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriDynamicOperationalEntry.setDescription('An entry in the mscFriDynamicOperationalTable.')
msc_fri_dynamic_attribute = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 7, 10, 1, 1), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 255)).clone(1)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscFriDynamicAttribute.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriDynamicAttribute.setDescription('')
msc_fri_dyn_op = mib_identifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8))
msc_fri_dyn_op_row_status_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 1))
if mibBuilder.loadTexts:
mscFriDynOpRowStatusTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriDynOpRowStatusTable.setDescription('This entry controls the addition and deletion of mscFriDynOp components.')
msc_fri_dyn_op_row_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 1, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriDynOpIndex'))
if mibBuilder.loadTexts:
mscFriDynOpRowStatusEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriDynOpRowStatusEntry.setDescription('A single entry in the table represents a single mscFriDynOp component.')
msc_fri_dyn_op_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 1, 1, 1), row_status()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscFriDynOpRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriDynOpRowStatus.setDescription('This variable is used as the basis for SNMP naming of mscFriDynOp components. These components can be added and deleted.')
msc_fri_dyn_op_component_name = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 1, 1, 2), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mscFriDynOpComponentName.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriDynOpComponentName.setDescription("This variable provides the component's string name for use with the ASCII Console Interface")
msc_fri_dyn_op_storage_type = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 1, 1, 4), storage_type()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mscFriDynOpStorageType.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriDynOpStorageType.setDescription('This variable represents the storage type value for the mscFriDynOp tables.')
msc_fri_dyn_op_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 1, 1, 10), integer32().subtype(subtypeSpec=value_range_constraint(0, 1023)))
if mibBuilder.loadTexts:
mscFriDynOpIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriDynOpIndex.setDescription('This variable represents the index for the mscFriDynOp tables.')
msc_fri_dyn_op_operational_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 10))
if mibBuilder.loadTexts:
mscFriDynOpOperationalTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriDynOpOperationalTable.setDescription('')
msc_fri_dyn_op_operational_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 10, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriDynOpIndex'))
if mibBuilder.loadTexts:
mscFriDynOpOperationalEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriDynOpOperationalEntry.setDescription('An entry in the mscFriDynOpOperationalTable.')
msc_fri_dyn_op_attribute = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 10, 1, 1), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 255)).clone(1)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscFriDynOpAttribute.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriDynOpAttribute.setDescription('')
msc_fri_dyn_op_initial = mib_identifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 2))
msc_fri_dyn_op_initial_row_status_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 2, 1))
if mibBuilder.loadTexts:
mscFriDynOpInitialRowStatusTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriDynOpInitialRowStatusTable.setDescription('This entry controls the addition and deletion of mscFriDynOpInitial components.')
msc_fri_dyn_op_initial_row_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 2, 1, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriDynOpIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriDynOpInitialIndex'))
if mibBuilder.loadTexts:
mscFriDynOpInitialRowStatusEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriDynOpInitialRowStatusEntry.setDescription('A single entry in the table represents a single mscFriDynOpInitial component.')
msc_fri_dyn_op_initial_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 2, 1, 1, 1), row_status()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mscFriDynOpInitialRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriDynOpInitialRowStatus.setDescription('This variable is used as the basis for SNMP naming of mscFriDynOpInitial components. These components cannot be added nor deleted.')
msc_fri_dyn_op_initial_component_name = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 2, 1, 1, 2), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mscFriDynOpInitialComponentName.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriDynOpInitialComponentName.setDescription("This variable provides the component's string name for use with the ASCII Console Interface")
msc_fri_dyn_op_initial_storage_type = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 2, 1, 1, 4), storage_type()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mscFriDynOpInitialStorageType.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriDynOpInitialStorageType.setDescription('This variable represents the storage type value for the mscFriDynOpInitial tables.')
msc_fri_dyn_op_initial_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 2, 1, 1, 10), non_replicated())
if mibBuilder.loadTexts:
mscFriDynOpInitialIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriDynOpInitialIndex.setDescription('This variable represents the index for the mscFriDynOpInitial tables.')
msc_fri_dyn_op_initial_operational_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 2, 10))
if mibBuilder.loadTexts:
mscFriDynOpInitialOperationalTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriDynOpInitialOperationalTable.setDescription('')
msc_fri_dyn_op_initial_operational_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 2, 10, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriDynOpIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriDynOpInitialIndex'))
if mibBuilder.loadTexts:
mscFriDynOpInitialOperationalEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriDynOpInitialOperationalEntry.setDescription('An entry in the mscFriDynOpInitialOperationalTable.')
msc_fri_dyn_op_initial_attribute = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 2, 10, 1, 1), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 255)).clone(1)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscFriDynOpInitialAttribute.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriDynOpInitialAttribute.setDescription('')
msc_fri_dyn_op_initial_provisioned_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 2, 11))
if mibBuilder.loadTexts:
mscFriDynOpInitialProvisionedTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriDynOpInitialProvisionedTable.setDescription('')
msc_fri_dyn_op_initial_provisioned_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 2, 11, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriDynOpIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriDynOpInitialIndex'))
if mibBuilder.loadTexts:
mscFriDynOpInitialProvisionedEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriDynOpInitialProvisionedEntry.setDescription('An entry in the mscFriDynOpInitialProvisionedTable.')
msc_fri_dyn_op_initial_prov_attribute = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 2, 11, 1, 1), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 255)).clone(1)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscFriDynOpInitialProvAttribute.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriDynOpInitialProvAttribute.setDescription('')
msc_fri_dyn_op_optional = mib_identifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 3))
msc_fri_dyn_op_optional_row_status_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 3, 1))
if mibBuilder.loadTexts:
mscFriDynOpOptionalRowStatusTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriDynOpOptionalRowStatusTable.setDescription('This entry controls the addition and deletion of mscFriDynOpOptional components.')
msc_fri_dyn_op_optional_row_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 3, 1, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriDynOpIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriDynOpOptionalIndex'))
if mibBuilder.loadTexts:
mscFriDynOpOptionalRowStatusEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriDynOpOptionalRowStatusEntry.setDescription('A single entry in the table represents a single mscFriDynOpOptional component.')
msc_fri_dyn_op_optional_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 3, 1, 1, 1), row_status()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscFriDynOpOptionalRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriDynOpOptionalRowStatus.setDescription('This variable is used as the basis for SNMP naming of mscFriDynOpOptional components. These components can be added and deleted.')
msc_fri_dyn_op_optional_component_name = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 3, 1, 1, 2), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mscFriDynOpOptionalComponentName.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriDynOpOptionalComponentName.setDescription("This variable provides the component's string name for use with the ASCII Console Interface")
msc_fri_dyn_op_optional_storage_type = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 3, 1, 1, 4), storage_type()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mscFriDynOpOptionalStorageType.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriDynOpOptionalStorageType.setDescription('This variable represents the storage type value for the mscFriDynOpOptional tables.')
msc_fri_dyn_op_optional_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 3, 1, 1, 10), non_replicated())
if mibBuilder.loadTexts:
mscFriDynOpOptionalIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriDynOpOptionalIndex.setDescription('This variable represents the index for the mscFriDynOpOptional tables.')
msc_fri_dyn_op_optional_operational_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 3, 10))
if mibBuilder.loadTexts:
mscFriDynOpOptionalOperationalTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriDynOpOptionalOperationalTable.setDescription('')
msc_fri_dyn_op_optional_operational_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 3, 10, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriDynOpIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriDynOpOptionalIndex'))
if mibBuilder.loadTexts:
mscFriDynOpOptionalOperationalEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriDynOpOptionalOperationalEntry.setDescription('An entry in the mscFriDynOpOptionalOperationalTable.')
msc_fri_dyn_op_optional_attribute = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 3, 10, 1, 1), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 255)).clone(1)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscFriDynOpOptionalAttribute.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriDynOpOptionalAttribute.setDescription('')
msc_fri_dyn_op_optional_provisioned_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 3, 11))
if mibBuilder.loadTexts:
mscFriDynOpOptionalProvisionedTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriDynOpOptionalProvisionedTable.setDescription('')
msc_fri_dyn_op_optional_provisioned_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 3, 11, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriDynOpIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriDynOpOptionalIndex'))
if mibBuilder.loadTexts:
mscFriDynOpOptionalProvisionedEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriDynOpOptionalProvisionedEntry.setDescription('An entry in the mscFriDynOpOptionalProvisionedTable.')
msc_fri_dyn_op_optional_prov_attribute = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 3, 11, 1, 1), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 255)).clone(1)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscFriDynOpOptionalProvAttribute.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriDynOpOptionalProvAttribute.setDescription('')
msc_fri_dyn_op_dynamic = mib_identifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 4))
msc_fri_dyn_op_dynamic_row_status_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 4, 1))
if mibBuilder.loadTexts:
mscFriDynOpDynamicRowStatusTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriDynOpDynamicRowStatusTable.setDescription('This entry controls the addition and deletion of mscFriDynOpDynamic components.')
msc_fri_dyn_op_dynamic_row_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 4, 1, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriDynOpIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriDynOpDynamicIndex'))
if mibBuilder.loadTexts:
mscFriDynOpDynamicRowStatusEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriDynOpDynamicRowStatusEntry.setDescription('A single entry in the table represents a single mscFriDynOpDynamic component.')
msc_fri_dyn_op_dynamic_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 4, 1, 1, 1), row_status()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mscFriDynOpDynamicRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriDynOpDynamicRowStatus.setDescription('This variable is used as the basis for SNMP naming of mscFriDynOpDynamic components. These components cannot be added nor deleted.')
msc_fri_dyn_op_dynamic_component_name = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 4, 1, 1, 2), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mscFriDynOpDynamicComponentName.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriDynOpDynamicComponentName.setDescription("This variable provides the component's string name for use with the ASCII Console Interface")
msc_fri_dyn_op_dynamic_storage_type = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 4, 1, 1, 4), storage_type()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mscFriDynOpDynamicStorageType.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriDynOpDynamicStorageType.setDescription('This variable represents the storage type value for the mscFriDynOpDynamic tables.')
msc_fri_dyn_op_dynamic_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 4, 1, 1, 10), non_replicated())
if mibBuilder.loadTexts:
mscFriDynOpDynamicIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriDynOpDynamicIndex.setDescription('This variable represents the index for the mscFriDynOpDynamic tables.')
msc_fri_dyn_op_dynamic_operational_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 4, 10))
if mibBuilder.loadTexts:
mscFriDynOpDynamicOperationalTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriDynOpDynamicOperationalTable.setDescription('')
msc_fri_dyn_op_dynamic_operational_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 4, 10, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriDynOpIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriDynOpDynamicIndex'))
if mibBuilder.loadTexts:
mscFriDynOpDynamicOperationalEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriDynOpDynamicOperationalEntry.setDescription('An entry in the mscFriDynOpDynamicOperationalTable.')
msc_fri_dyn_op_dynamic_attribute = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 4, 10, 1, 1), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 255)).clone(1)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscFriDynOpDynamicAttribute.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriDynOpDynamicAttribute.setDescription('')
msc_fri_dyn_op_dyn_op_jr = mib_identifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 5))
msc_fri_dyn_op_dyn_op_jr_row_status_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 5, 1))
if mibBuilder.loadTexts:
mscFriDynOpDynOpJrRowStatusTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriDynOpDynOpJrRowStatusTable.setDescription('This entry controls the addition and deletion of mscFriDynOpDynOpJr components.')
msc_fri_dyn_op_dyn_op_jr_row_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 5, 1, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriDynOpIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriDynOpDynOpJrIndex'))
if mibBuilder.loadTexts:
mscFriDynOpDynOpJrRowStatusEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriDynOpDynOpJrRowStatusEntry.setDescription('A single entry in the table represents a single mscFriDynOpDynOpJr component.')
msc_fri_dyn_op_dyn_op_jr_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 5, 1, 1, 1), row_status()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscFriDynOpDynOpJrRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriDynOpDynOpJrRowStatus.setDescription('This variable is used as the basis for SNMP naming of mscFriDynOpDynOpJr components. These components can be added and deleted.')
msc_fri_dyn_op_dyn_op_jr_component_name = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 5, 1, 1, 2), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mscFriDynOpDynOpJrComponentName.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriDynOpDynOpJrComponentName.setDescription("This variable provides the component's string name for use with the ASCII Console Interface")
msc_fri_dyn_op_dyn_op_jr_storage_type = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 5, 1, 1, 4), storage_type()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mscFriDynOpDynOpJrStorageType.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriDynOpDynOpJrStorageType.setDescription('This variable represents the storage type value for the mscFriDynOpDynOpJr tables.')
msc_fri_dyn_op_dyn_op_jr_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 5, 1, 1, 10), non_replicated())
if mibBuilder.loadTexts:
mscFriDynOpDynOpJrIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriDynOpDynOpJrIndex.setDescription('This variable represents the index for the mscFriDynOpDynOpJr tables.')
msc_fri_dyn_op_dyn_op_jr_operational_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 5, 10))
if mibBuilder.loadTexts:
mscFriDynOpDynOpJrOperationalTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriDynOpDynOpJrOperationalTable.setDescription('')
msc_fri_dyn_op_dyn_op_jr_operational_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 5, 10, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriDynOpIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriDynOpDynOpJrIndex'))
if mibBuilder.loadTexts:
mscFriDynOpDynOpJrOperationalEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriDynOpDynOpJrOperationalEntry.setDescription('An entry in the mscFriDynOpDynOpJrOperationalTable.')
msc_fri_dyn_op_dyn_op_jr_attribute = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 5, 10, 1, 1), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 255)).clone(1)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscFriDynOpDynOpJrAttribute.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriDynOpDynOpJrAttribute.setDescription('')
msc_fri_event = mib_identifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 9))
msc_fri_event_row_status_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 9, 1))
if mibBuilder.loadTexts:
mscFriEventRowStatusTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriEventRowStatusTable.setDescription('This entry controls the addition and deletion of mscFriEvent components.')
msc_fri_event_row_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 9, 1, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriEventIndex'))
if mibBuilder.loadTexts:
mscFriEventRowStatusEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriEventRowStatusEntry.setDescription('A single entry in the table represents a single mscFriEvent component.')
msc_fri_event_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 9, 1, 1, 1), row_status()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mscFriEventRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriEventRowStatus.setDescription('This variable is used as the basis for SNMP naming of mscFriEvent components. These components cannot be added nor deleted.')
msc_fri_event_component_name = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 9, 1, 1, 2), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mscFriEventComponentName.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriEventComponentName.setDescription("This variable provides the component's string name for use with the ASCII Console Interface")
msc_fri_event_storage_type = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 9, 1, 1, 4), storage_type()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mscFriEventStorageType.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriEventStorageType.setDescription('This variable represents the storage type value for the mscFriEvent tables.')
msc_fri_event_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 9, 1, 1, 10), non_replicated())
if mibBuilder.loadTexts:
mscFriEventIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriEventIndex.setDescription('This variable represents the index for the mscFriEvent tables.')
msc_fri_registered = mib_identifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 18))
msc_fri_registered_row_status_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 18, 1))
if mibBuilder.loadTexts:
mscFriRegisteredRowStatusTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriRegisteredRowStatusTable.setDescription('This entry controls the addition and deletion of mscFriRegistered components.')
msc_fri_registered_row_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 18, 1, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriRegisteredIndex'))
if mibBuilder.loadTexts:
mscFriRegisteredRowStatusEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriRegisteredRowStatusEntry.setDescription('A single entry in the table represents a single mscFriRegistered component.')
msc_fri_registered_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 18, 1, 1, 1), row_status()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mscFriRegisteredRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriRegisteredRowStatus.setDescription('This variable is used as the basis for SNMP naming of mscFriRegistered components. These components cannot be added nor deleted.')
msc_fri_registered_component_name = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 18, 1, 1, 2), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mscFriRegisteredComponentName.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriRegisteredComponentName.setDescription("This variable provides the component's string name for use with the ASCII Console Interface")
msc_fri_registered_storage_type = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 18, 1, 1, 4), storage_type()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mscFriRegisteredStorageType.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriRegisteredStorageType.setDescription('This variable represents the storage type value for the mscFriRegistered tables.')
msc_fri_registered_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 18, 1, 1, 10), integer32().subtype(subtypeSpec=value_range_constraint(0, 15)))
if mibBuilder.loadTexts:
mscFriRegisteredIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriRegisteredIndex.setDescription('This variable represents the index for the mscFriRegistered tables.')
msc_fri_registered_data_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 18, 10))
if mibBuilder.loadTexts:
mscFriRegisteredDataTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriRegisteredDataTable.setDescription('')
msc_fri_registered_data_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 18, 10, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriRegisteredIndex'))
if mibBuilder.loadTexts:
mscFriRegisteredDataEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriRegisteredDataEntry.setDescription('An entry in the mscFriRegisteredDataTable.')
msc_fri_registered_attribute = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 18, 10, 1, 1), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 255)).clone(1)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscFriRegisteredAttribute.setStatus('mandatory')
if mibBuilder.loadTexts:
mscFriRegisteredAttribute.setDescription('')
msc_registered = mib_identifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5004))
msc_registered_row_status_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5004, 1))
if mibBuilder.loadTexts:
mscRegisteredRowStatusTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscRegisteredRowStatusTable.setDescription('This entry controls the addition and deletion of mscRegistered components.')
msc_registered_row_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5004, 1, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscRegisteredIndex'))
if mibBuilder.loadTexts:
mscRegisteredRowStatusEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscRegisteredRowStatusEntry.setDescription('A single entry in the table represents a single mscRegistered component.')
msc_registered_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5004, 1, 1, 1), row_status()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mscRegisteredRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts:
mscRegisteredRowStatus.setDescription('This variable is used as the basis for SNMP naming of mscRegistered components. These components cannot be added nor deleted.')
msc_registered_component_name = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5004, 1, 1, 2), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mscRegisteredComponentName.setStatus('mandatory')
if mibBuilder.loadTexts:
mscRegisteredComponentName.setDescription("This variable provides the component's string name for use with the ASCII Console Interface")
msc_registered_storage_type = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5004, 1, 1, 4), storage_type()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mscRegisteredStorageType.setStatus('mandatory')
if mibBuilder.loadTexts:
mscRegisteredStorageType.setDescription('This variable represents the storage type value for the mscRegistered tables.')
msc_registered_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5004, 1, 1, 10), integer32().subtype(subtypeSpec=value_range_constraint(0, 15)))
if mibBuilder.loadTexts:
mscRegisteredIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
mscRegisteredIndex.setDescription('This variable represents the index for the mscRegistered tables.')
msc_registered_data_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5004, 10))
if mibBuilder.loadTexts:
mscRegisteredDataTable.setStatus('mandatory')
if mibBuilder.loadTexts:
mscRegisteredDataTable.setDescription('')
msc_registered_data_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5004, 10, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscRegisteredIndex'))
if mibBuilder.loadTexts:
mscRegisteredDataEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
mscRegisteredDataEntry.setDescription('An entry in the mscRegisteredDataTable.')
msc_registered_attribute = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5004, 10, 1, 1), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 255)).clone(1)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscRegisteredAttribute.setStatus('mandatory')
if mibBuilder.loadTexts:
mscRegisteredAttribute.setDescription('')
cas_test_group = mib_identifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 2, 103, 1))
cas_test_group_ca = mib_identifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 2, 103, 1, 1))
cas_test_group_ca02 = mib_identifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 2, 103, 1, 1, 3))
cas_test_group_ca02_a = mib_identifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 2, 103, 1, 1, 3, 2))
cas_test_capabilities = mib_identifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 2, 103, 3))
cas_test_capabilities_ca = mib_identifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 2, 103, 3, 1))
cas_test_capabilities_ca02 = mib_identifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 2, 103, 3, 1, 3))
cas_test_capabilities_ca02_a = mib_identifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 2, 103, 3, 1, 3, 2))
mibBuilder.exportSymbols('Nortel-MsCarrier-MscPassport-CasTestMIB', mscExampleWildBcdProvFreeWildBcdArrayTable=mscExampleWildBcdProvFreeWildBcdArrayTable, mscExampleHexProvStructHexVectorTable=mscExampleHexProvStructHexVectorTable, mscExampleDecimalPsIntArrayRowIndex=mscExampleDecimalPsIntArrayRowIndex, mscExampleBcdProvFreeBcdReplicatedTable=mscExampleBcdProvFreeBcdReplicatedTable, mscExampleStringProvStructAsciiOnly=mscExampleStringProvStructAsciiOnly, mscExampleMiscellaneousProvFreeTimeList2Table=mscExampleMiscellaneousProvFreeTimeList2Table, mscExampleBcdProvFreeBcd=mscExampleBcdProvFreeBcd, mscExampleHexProvFreeHexArray1Table=mscExampleHexProvFreeHexArray1Table, mscExampleSequenceIndicesRowStatusEntry=mscExampleSequenceIndicesRowStatusEntry, mscExampleHexOfHexVectorTable=mscExampleHexOfHexVectorTable, mscExampleHexProvStructHexArrayColumnIndex=mscExampleHexProvStructHexArrayColumnIndex, mscExampleDashedProvFreeDashedVectorTable=mscExampleDashedProvFreeDashedVectorTable, mscExampleBcdIndicesStorageType=mscExampleBcdIndicesStorageType, mscFriOperationalState=mscFriOperationalState, mscExampleObjIdIndicesProvisionedTable=mscExampleObjIdIndicesProvisionedTable, mscExampleExtendedOperFreeExtendedReplicatedEntry=mscExampleExtendedOperFreeExtendedReplicatedEntry, mscExampleStringProvFreeStrListRowStatus=mscExampleStringProvFreeStrListRowStatus, mscFriDynOpInitialProvisionedEntry=mscFriDynOpInitialProvisionedEntry, mscExampleExtendedOperFreeExtendedArrayEntry=mscExampleExtendedOperFreeExtendedArrayEntry, mscExampleProvEnumSubCreatedValue=mscExampleProvEnumSubCreatedValue, mscExampleProvSignedSubCreatedValue=mscExampleProvSignedSubCreatedValue, mscExampleHexOfHexArrayEntry=mscExampleHexOfHexArrayEntry, mscExampleDecimalProvStructInteger=mscExampleDecimalProvStructInteger, mscExampleHexProvFreeHexArrayRowIndex=mscExampleHexProvFreeHexArrayRowIndex, mscExampleBcdProvFreeBcdArray1Table=mscExampleBcdProvFreeBcdArray1Table, mscExampleEnumIndicesRowStatus=mscExampleEnumIndicesRowStatus, mscFriProvisionalStructSimpleFixed=mscFriProvisionalStructSimpleFixed, mscExampleDecimalOfIntReplicatedEntry=mscExampleDecimalOfIntReplicatedEntry, mscExampleEnumProvFreeEnumVector1Value=mscExampleEnumProvFreeEnumVector1Value, mscExampleIpAddrIndicesTwoIndex=mscExampleIpAddrIndicesTwoIndex, mscExampleExtendedProvFreeExtendedListValue=mscExampleExtendedProvFreeExtendedListValue, mscFriDynamicRowStatusEntry=mscFriDynamicRowStatusEntry, mscExampleWildBcdOperFreeWildBcdListEntry=mscExampleWildBcdOperFreeWildBcdListEntry, mscFriProceduralStatus=mscFriProceduralStatus, mscFriDna=mscFriDna, mscExampleSequenceOperFreeSequence=mscExampleSequenceOperFreeSequence, mscExampleHexProvStructHexVectorValue=mscExampleHexProvStructHexVectorValue, mscExampleRequiredIndicesRowStatusTable=mscExampleRequiredIndicesRowStatusTable, mscExampleHexProvFreeHexArray1RowIndex=mscExampleHexProvFreeHexArray1RowIndex, mscExampleBcdOperFreeBcdArrayTable=mscExampleBcdOperFreeBcdArrayTable, mscExampleBcdProvFreeBcdReplicatedIndex=mscExampleBcdProvFreeBcdReplicatedIndex, mscExampleObjectIdOperFreeObjIdListEntry=mscExampleObjectIdOperFreeObjIdListEntry, mscExampleDecimalOfIntListTable=mscExampleDecimalOfIntListTable, mscFriProvisionalFreeSimpleAscii=mscFriProvisionalFreeSimpleAscii, mscExampleWildBcdOperStructWildBcdArrayColumnIndex=mscExampleWildBcdOperStructWildBcdArrayColumnIndex, mscExampleBcdProvStructBcdArrayColumnIndex=mscExampleBcdProvStructBcdArrayColumnIndex, mscExampleDashedOperationalTable=mscExampleDashedOperationalTable, mscFriOperationalStructSetEnumeration=mscFriOperationalStructSetEnumeration, mscExampleDecimalPfIntVector1Entry=mscExampleDecimalPfIntVector1Entry, mscExampleBcdOperStructBcdVectorValue=mscExampleBcdOperStructBcdVectorValue, mscExampleIpAddressProvFreeIpAddressVector1Entry=mscExampleIpAddressProvFreeIpAddressVector1Entry, mscFriDynOpRowStatus=mscFriDynOpRowStatus, mscExampleSequenceOperationalEntry=mscExampleSequenceOperationalEntry, mscExampleEnumProvFreeEnumVector1Table=mscExampleEnumProvFreeEnumVector1Table, mscExampleStringProvFreeStrList1Entry=mscExampleStringProvFreeStrList1Entry, mscExampleBcdProvFreeBcdArray1Entry=mscExampleBcdProvFreeBcdArray1Entry, mscExampleObjectIdProvFreeObjIdReplicatedTable=mscExampleObjectIdProvFreeObjIdReplicatedTable, mscExampleSequenceProvFreeSequenceReplicatedEntry=mscExampleSequenceProvFreeSequenceReplicatedEntry, mscExampleHexProvFreeHexReplicated1Entry=mscExampleHexProvFreeHexReplicated1Entry, mscExampleExtendedOperFreeExtended=mscExampleExtendedOperFreeExtended, mscExampleOperEnumSubCreatedRowStatus=mscExampleOperEnumSubCreatedRowStatus, mscExampleIpAddressProvFreeIpAddressArrayTable=mscExampleIpAddressProvFreeIpAddressArrayTable, mscExampleTwoIndicesRowStatusEntry=mscExampleTwoIndicesRowStatusEntry, mscExampleDecimalOfIntListEntry=mscExampleDecimalOfIntListEntry, mscExampleMiscellaneousProvFreeTimeDateTimeMinute1=mscExampleMiscellaneousProvFreeTimeDateTimeMinute1, mscExampleBcdOperStructBcdVectorTable=mscExampleBcdOperStructBcdVectorTable, mscExampleSignedOperStructSignedArrayRowIndex=mscExampleSignedOperStructSignedArrayRowIndex, mscExampleDecimalPfIntVector1Index=mscExampleDecimalPfIntVector1Index, mscExampleAsciiIndicesProvAttribute=mscExampleAsciiIndicesProvAttribute, mscExampleEnumProvFreeEnumArray1MonthIndex=mscExampleEnumProvFreeEnumArray1MonthIndex, mscExampleObjIdIndicesOneIndex=mscExampleObjIdIndicesOneIndex, mscExampleSequenceIndicesRowStatusTable=mscExampleSequenceIndicesRowStatusTable, mscExampleHexOfHexListValue=mscExampleHexOfHexListValue, mscExampleHexProvisionalEntry=mscExampleHexProvisionalEntry, mscExampleHexProvStructHexArrayTable=mscExampleHexProvStructHexArrayTable, mscFriPfListAsciiEntry=mscFriPfListAsciiEntry, mscExampleSignedRowStatusEntry=mscExampleSignedRowStatusEntry, mscExampleDecimalPfIntArray1Value=mscExampleDecimalPfIntArray1Value, mscExampleFourIndicesOneIndex=mscExampleFourIndicesOneIndex, mscExampleIpAddressStorageType=mscExampleIpAddressStorageType, mscExampleThreeIndicesProvAttribute=mscExampleThreeIndicesProvAttribute, mscExampleBcdStorageType=mscExampleBcdStorageType, mscExampleBcdProvFreeBcdListValue=mscExampleBcdProvFreeBcdListValue, mscExampleSignedProvFreeSignedVector1Entry=mscExampleSignedProvFreeSignedVector1Entry, mscExampleStringOperFreeStrReplicatedIndex=mscExampleStringOperFreeStrReplicatedIndex, mscExampleFixedPtProvFreeFixedPtVectorEntry=mscExampleFixedPtProvFreeFixedPtVectorEntry, mscExampleDecimalPfIntVectorIndex=mscExampleDecimalPfIntVectorIndex, mscExampleExtendedOperStructExtended=mscExampleExtendedOperStructExtended, mscFriDynamicRowStatus=mscFriDynamicRowStatus, mscExampleMiscellaneousProvFreeLongReplicatedRowStatus=mscExampleMiscellaneousProvFreeLongReplicatedRowStatus, mscExampleBcdIndicesProvisionedEntry=mscExampleBcdIndicesProvisionedEntry, mscExampleBcdProvFreeBcdArrayRowIndex=mscExampleBcdProvFreeBcdArrayRowIndex, mscExampleRequiredIndicesProvisionedEntry=mscExampleRequiredIndicesProvisionedEntry, mscExampleExtendedProvFreeExtendedArrayTable=mscExampleExtendedProvFreeExtendedArrayTable, mscExampleSignedProvFreeSignedArray1Entry=mscExampleSignedProvFreeSignedArray1Entry, mscExampleDecimalIndicesStorageType=mscExampleDecimalIndicesStorageType, mscExampleBcdOperFreeBcdVectorEntry=mscExampleBcdOperFreeBcdVectorEntry, mscExampleDashedOsDashedArrayColumnIndex=mscExampleDashedOsDashedArrayColumnIndex, mscExampleDecimalPsIntVectorValue=mscExampleDecimalPsIntVectorValue, mscExampleIpAddressOperStructIpAddressArrayValue=mscExampleIpAddressOperStructIpAddressArrayValue, mscExampleExtendedProvStructExtendedArrayTable=mscExampleExtendedProvStructExtendedArrayTable, mscExampleFixedPtProvStructFixedPtArrayRowIndex=mscExampleFixedPtProvStructFixedPtArrayRowIndex, mscExampleIpAddressProvFreeIpAddressReplicatedTable=mscExampleIpAddressProvFreeIpAddressReplicatedTable, mscExampleHexProvFreeHexArray1Entry=mscExampleHexProvFreeHexArray1Entry, mscExampleEnumOperStructEnum=mscExampleEnumOperStructEnum, mscExampleDecimalPfIntArray1RowIndex=mscExampleDecimalPfIntArray1RowIndex, mscExampleDashedProvStructDashedVectorValue=mscExampleDashedProvStructDashedVectorValue, mscFriProvisionalStructSimpleAscii=mscFriProvisionalStructSimpleAscii, mscExampleProvStringSubCreatedRowStatus=mscExampleProvStringSubCreatedRowStatus, mscExampleSignedOperStructSignedVectorTable=mscExampleSignedOperStructSignedVectorTable, mscExampleWildBcdOperFreeWildBcdVectorIndex=mscExampleWildBcdOperFreeWildBcdVectorIndex, mscExampleWildBcdOperFreeWildBcdVectorTable=mscExampleWildBcdOperFreeWildBcdVectorTable, mscFriDynOpDynOpJrRowStatusEntry=mscFriDynOpDynOpJrRowStatusEntry, mscExampleNsapAtmAddrTable=mscExampleNsapAtmAddrTable, mscExampleFourIndicesProvisionedEntry=mscExampleFourIndicesProvisionedEntry, mscFriDynOpOptionalStorageType=mscFriDynOpOptionalStorageType, mscFriPfListSignedRowStatus=mscFriPfListSignedRowStatus, mscExampleSignedProvFreeSignedVectorIndex=mscExampleSignedProvFreeSignedVectorIndex, mscFriEventRowStatusEntry=mscFriEventRowStatusEntry, mscExampleFixedPtOperFreeFixedPtArrayRowIndex=mscExampleFixedPtOperFreeFixedPtArrayRowIndex, casTestGroup=casTestGroup, mscExampleOperationalEntry=mscExampleOperationalEntry, mscExampleHexOsHexArrayTable=mscExampleHexOsHexArrayTable, mscExampleIpAddressOperFreeIpAddressListValue=mscExampleIpAddressOperFreeIpAddressListValue, mscExampleObjectIdRowStatusTable=mscExampleObjectIdRowStatusTable, mscExampleDecimalOperationalEntry=mscExampleDecimalOperationalEntry, mscExampleDecimalProvFreeInteger=mscExampleDecimalProvFreeInteger, mscExampleBcdIndicesProvAttribute=mscExampleBcdIndicesProvAttribute, mscExampleDashedIndex=mscExampleDashedIndex, mscFriOperationalStructSimpleEnum=mscFriOperationalStructSimpleEnum, mscExampleEnumOperFreeEnumReplicatedIndex=mscExampleEnumOperFreeEnumReplicatedIndex, mscExampleObjectIdProvFreeObjIdListTable=mscExampleObjectIdProvFreeObjIdListTable, mscExampleFixedPtProvStructFixedPtVectorTable=mscExampleFixedPtProvStructFixedPtVectorTable, mscExampleDecimalPfIntReplicated1Table=mscExampleDecimalPfIntReplicated1Table, mscExampleFixedPtOperFreeFixedPtListEntry=mscExampleFixedPtOperFreeFixedPtListEntry, mscExampleDashedOfDashedArrayRowIndex=mscExampleDashedOfDashedArrayRowIndex, mscRegisteredAttribute=mscRegisteredAttribute, mscExampleEnumOperStructEnumSet=mscExampleEnumOperStructEnumSet, mscFriOperationalFreeSimpleObjId=mscFriOperationalFreeSimpleObjId, mscFriOperationalFreeSimpleSequence=mscFriOperationalFreeSimpleSequence, mscExampleDashedProvisionalTable=mscExampleDashedProvisionalTable, mscExampleIpAddressRowStatus=mscExampleIpAddressRowStatus, mscExampleHexProvFreeHexArray2Value=mscExampleHexProvFreeHexArray2Value, mscExampleStringProvStringSub=mscExampleStringProvStringSub, mscExampleObjectIdOperFreeObjIdReplicatedRowStatus=mscExampleObjectIdOperFreeObjIdReplicatedRowStatus, mscExampleIpAddressProvStructIpAddressArrayValue=mscExampleIpAddressProvStructIpAddressArrayValue, mscExampleHexStrIndicesRowStatusTable=mscExampleHexStrIndicesRowStatusTable, mscExampleSignedProvFreeSignedVector1Table=mscExampleSignedProvFreeSignedVector1Table, mscFriPfListUnsignedRowStatus=mscFriPfListUnsignedRowStatus, mscExampleFixedPtProvFreeFixedPtSet=mscExampleFixedPtProvFreeFixedPtSet, mscExampleIpAddressProvFreeIpAddressArrayEntry=mscExampleIpAddressProvFreeIpAddressArrayEntry, mscExampleExtendedOperFreeExtendedArrayValue=mscExampleExtendedOperFreeExtendedArrayValue, mscExampleEnumProvisionalTable=mscExampleEnumProvisionalTable, mscExampleStringProvFreeStrReplicatedTable=mscExampleStringProvFreeStrReplicatedTable, mscExampleDecimalPfIntListEntry=mscExampleDecimalPfIntListEntry, mscExampleSequenceOperFreeSequenceReplicatedValue=mscExampleSequenceOperFreeSequenceReplicatedValue, mscExampleBcdOperFreeBcdListEntry=mscExampleBcdOperFreeBcdListEntry, mscExampleFixedPtProvFreeFixedPtReplicatedTable=mscExampleFixedPtProvFreeFixedPtReplicatedTable, mscExampleMiscellaneousProvFreeTimeList1Value=mscExampleMiscellaneousProvFreeTimeList1Value, mscExampleMiscellaneousOperFreeTime=mscExampleMiscellaneousOperFreeTime, mscExampleDecimalProvisionalEntry=mscExampleDecimalProvisionalEntry, mscExampleFourIndicesStorageType=mscExampleFourIndicesStorageType, mscExampleIpAddressProvStructIpAddressVectorEntry=mscExampleIpAddressProvStructIpAddressVectorEntry, mscExampleFixedPtProvStructFixedPtSet=mscExampleFixedPtProvStructFixedPtSet, mscExampleObjectIdProvFreeObjIdReplicatedRowStatus=mscExampleObjectIdProvFreeObjIdReplicatedRowStatus, mscExampleMiscellaneousOperFreeTimeListTable=mscExampleMiscellaneousOperFreeTimeListTable, mscExampleEnumProvFreeEnumArray1Value=mscExampleEnumProvFreeEnumArray1Value, mscExampleDecimalPfIntList1Value=mscExampleDecimalPfIntList1Value, mscExampleWildBcdOperStructWildBcdVectorTable=mscExampleWildBcdOperStructWildBcdVectorTable, mscFriDnaRowStatusTable=mscFriDnaRowStatusTable, mscExampleSignedProvFreeSigned1=mscExampleSignedProvFreeSigned1, mscExampleWildBcdProvStructWildBcdVectorTable=mscExampleWildBcdProvStructWildBcdVectorTable, mscExampleOperSignedSubCreatedTable=mscExampleOperSignedSubCreatedTable, mscExampleDashedProvStructDashed=mscExampleDashedProvStructDashed, mscFriDynOpOptionalProvAttribute=mscFriDynOpOptionalProvAttribute, mscExampleFixedPtOperFreeFixedPtReplicatedRowStatus=mscExampleFixedPtOperFreeFixedPtReplicatedRowStatus, mscExampleDashedIndicesProvisionedEntry=mscExampleDashedIndicesProvisionedEntry, mscExampleDecimalOfIntReplicatedRowStatus=mscExampleDecimalOfIntReplicatedRowStatus, mscExampleDecimalProvFreeInteger2=mscExampleDecimalProvFreeInteger2, mscExampleBcdProvFreeBcdVectorValue=mscExampleBcdProvFreeBcdVectorValue, mscExampleMiscellaneousOperFreeLongReplicatedValue=mscExampleMiscellaneousOperFreeLongReplicatedValue, mscExampleHexIndicesRowStatusTable=mscExampleHexIndicesRowStatusTable, mscExampleEnumIndicesRowStatusEntry=mscExampleEnumIndicesRowStatusEntry, mscExampleIpAddressOperationalTable=mscExampleIpAddressOperationalTable, mscExampleHexStorageType=mscExampleHexStorageType, mscExampleExtendedProvFreeExtendedListEntry=mscExampleExtendedProvFreeExtendedListEntry, mscExampleIpAddressOperStructIpAddressArrayTable=mscExampleIpAddressOperStructIpAddressArrayTable, mscExampleStringProvFreeStrVector1Table=mscExampleStringProvFreeStrVector1Table, mscExampleWildBcdProvStructWildBcdArrayRowIndex=mscExampleWildBcdProvStructWildBcdArrayRowIndex, mscExampleFixedPtProvFreeFixedPtListTable=mscExampleFixedPtProvFreeFixedPtListTable, mscExampleSignedOperStructSignedArrayValue=mscExampleSignedOperStructSignedArrayValue, mscExampleStringProvFreeStrReplicatedValue=mscExampleStringProvFreeStrReplicatedValue, mscExampleBcdIndices=mscExampleBcdIndices, mscExampleBcdProvFreeBcdList1RowStatus=mscExampleBcdProvFreeBcdList1RowStatus, mscExampleOneIndexOneIndex=mscExampleOneIndexOneIndex, mscExampleDecimalStorageType=mscExampleDecimalStorageType, mscExampleBcdOperStructBcdArrayValue=mscExampleBcdOperStructBcdArrayValue, mscFriRegisteredIndex=mscFriRegisteredIndex, mscExampleRequiredIndicesProvAttribute=mscExampleRequiredIndicesProvAttribute, mscExampleEnumOperationalTable=mscExampleEnumOperationalTable, mscExampleFixedPtOperFreeFixedPtArrayEntry=mscExampleFixedPtOperFreeFixedPtArrayEntry, mscExampleEnumIndicesProvisionedTable=mscExampleEnumIndicesProvisionedTable, mscFriProvisionalFreeSimpleExtended=mscFriProvisionalFreeSimpleExtended, mscExampleTwoIndicesProvisionedTable=mscExampleTwoIndicesProvisionedTable, mscExampleWildBcdOperFreeWildBcdListValue=mscExampleWildBcdOperFreeWildBcdListValue, mscExampleEnumProvFreeEnumVector1Entry=mscExampleEnumProvFreeEnumVector1Entry, mscExampleEnumProvFreeEnumArray1DayIndex=mscExampleEnumProvFreeEnumArray1DayIndex, mscExampleSignedOperFreeSignedVectorEntry=mscExampleSignedOperFreeSignedVectorEntry, mscExampleIpAddressComponentName=mscExampleIpAddressComponentName, mscFriDynOpDynOpJrComponentName=mscFriDynOpDynOpJrComponentName, mscExampleExtendedProvStructExtendedArrayRowIndex=mscExampleExtendedProvStructExtendedArrayRowIndex, mscExampleTwoIndices=mscExampleTwoIndices, mscExampleSequenceIndicesThreeIndex=mscExampleSequenceIndicesThreeIndex, mscExampleEnumRowStatus=mscExampleEnumRowStatus, mscExampleWildBcdProvFreeWildBcdReplicatedRowStatus=mscExampleWildBcdProvFreeWildBcdReplicatedRowStatus, mscExampleDashedOfDashedReplicatedValue=mscExampleDashedOfDashedReplicatedValue, mscExampleEnumProvFreeEnumReplicatedTable=mscExampleEnumProvFreeEnumReplicatedTable, mscExampleSignedOperationalEntry=mscExampleSignedOperationalEntry, mscExampleRequiredIndicesDecimalIndex=mscExampleRequiredIndicesDecimalIndex, mscExampleExtendedOperationalTable=mscExampleExtendedOperationalTable, mscExampleNsapNsapNativeAddress=mscExampleNsapNsapNativeAddress, mscExampleWildBcdOperationalTable=mscExampleWildBcdOperationalTable, mscExampleObjIdIndices=mscExampleObjIdIndices, mscExampleDecimalPfIntArrayRowIndex=mscExampleDecimalPfIntArrayRowIndex, mscFriDynOpDynOpJrAttribute=mscFriDynOpDynOpJrAttribute, mscExampleEnumOperFreeEnumArrayValue=mscExampleEnumOperFreeEnumArrayValue, mscExampleExtendedProvFreeExtendedListTable=mscExampleExtendedProvFreeExtendedListTable, mscExampleExtendedOperStructExtendedArrayColumnIndex=mscExampleExtendedOperStructExtendedArrayColumnIndex, mscExampleExtendedProvFreeExtended=mscExampleExtendedProvFreeExtended, mscFriPfListFixedValue=mscFriPfListFixedValue, mscExampleWildBcdProvStructWildBcdVectorIndex=mscExampleWildBcdProvStructWildBcdVectorIndex, mscExampleProvDecimalSubCreatedValue=mscExampleProvDecimalSubCreatedValue, mscExampleDashedProvFreeDashedReplicatedRowStatus=mscExampleDashedProvFreeDashedReplicatedRowStatus, mscExampleEnumIndices=mscExampleEnumIndices, mscExampleBcdProvFreeBcd1=mscExampleBcdProvFreeBcd1, mscFriDynOpOptionalAttribute=mscFriDynOpOptionalAttribute, mscExampleDashedProvFreeDashedListValue=mscExampleDashedProvFreeDashedListValue, mscExampleIpAddressOperStructIpAddressVectorTable=mscExampleIpAddressOperStructIpAddressVectorTable, mscExampleHexStrIndicesProvisionedTable=mscExampleHexStrIndicesProvisionedTable, mscExampleEnumProvFreeEnumList1Value=mscExampleEnumProvFreeEnumList1Value, mscExampleFourIndicesFourIndex=mscExampleFourIndicesFourIndex, mscExampleMiscellaneousOperFreeLong=mscExampleMiscellaneousOperFreeLong, mscExampleWildBcdOperStructWildBcdArrayValue=mscExampleWildBcdOperStructWildBcdArrayValue, mscExampleObjectIdOperFreeObjIdReplicatedIndex=mscExampleObjectIdOperFreeObjIdReplicatedIndex, mscExampleDashedIndicesRowStatusEntry=mscExampleDashedIndicesRowStatusEntry, mscExampleSignedComponentName=mscExampleSignedComponentName, mscExampleIpAddressOperFreeIpAddressVectorEntry=mscExampleIpAddressOperFreeIpAddressVectorEntry, mscExampleDecimalRowStatus=mscExampleDecimalRowStatus, mscFriOperationalStructSimpleHex=mscFriOperationalStructSimpleHex, mscFriEventIndex=mscFriEventIndex, mscExampleBcdProvFreeBcdListTable=mscExampleBcdProvFreeBcdListTable, mscExampleIpAddressProvFreeIpAddressVectorEntry=mscExampleIpAddressProvFreeIpAddressVectorEntry, mscExampleDecimalIndicesRowStatus=mscExampleDecimalIndicesRowStatus, mscExampleBcdOperFreeBcdReplicatedEntry=mscExampleBcdOperFreeBcdReplicatedEntry)
mibBuilder.exportSymbols('Nortel-MsCarrier-MscPassport-CasTestMIB', mscExampleFixedPtOperFreeFixedPtReplicatedEntry=mscExampleFixedPtOperFreeFixedPtReplicatedEntry, mscExampleBcdOperFreeBcdReplicatedTable=mscExampleBcdOperFreeBcdReplicatedTable, mscExampleExtendedOperFreeExtendedReplicatedValue=mscExampleExtendedOperFreeExtendedReplicatedValue, mscExampleObjectIdOperFreeObjIdListRowStatus=mscExampleObjectIdOperFreeObjIdListRowStatus, mscFriDynOpOptionalComponentName=mscFriDynOpOptionalComponentName, mscExampleStringProvFreeStrReplicatedRowStatus=mscExampleStringProvFreeStrReplicatedRowStatus, mscExampleOperMyComponentName=mscExampleOperMyComponentName, mscExampleStringStorageType=mscExampleStringStorageType, mscExampleIpAddressOperFreeIpAddressArrayValue=mscExampleIpAddressOperFreeIpAddressArrayValue, mscExampleSequenceOperationalTable=mscExampleSequenceOperationalTable, mscExampleSignedProvStructSignedVectorValue=mscExampleSignedProvStructSignedVectorValue, mscExampleDecimalRowStatusEntry=mscExampleDecimalRowStatusEntry, mscExampleStringProvFreeStrListValue=mscExampleStringProvFreeStrListValue, mscExampleHexOsHexVectorTable=mscExampleHexOsHexVectorTable, mscExampleEnumProvFreeEnumArrayDayIndex=mscExampleEnumProvFreeEnumArrayDayIndex, mscExampleDashedProvStructDashedArrayValue=mscExampleDashedProvStructDashedArrayValue, mscExampleEnumIndicesRowStatusTable=mscExampleEnumIndicesRowStatusTable, mscExampleIpAddressProvStructIpAddressVectorTable=mscExampleIpAddressProvStructIpAddressVectorTable, mscExampleDashedOfDashedListValue=mscExampleDashedOfDashedListValue, mscExampleDecimalProvDecimalSub=mscExampleDecimalProvDecimalSub, mscExampleEnumProvFreeEnumListEntry=mscExampleEnumProvFreeEnumListEntry, mscFriDynOpAttribute=mscFriDynOpAttribute, mscExampleHexOsHexArrayValue=mscExampleHexOsHexArrayValue, mscFriOperationalStructSimpleDashed=mscFriOperationalStructSimpleDashed, mscExampleDashedOsDashedArrayRowIndex=mscExampleDashedOsDashedArrayRowIndex, mscExampleBcdProvFreeBcdVector1Table=mscExampleBcdProvFreeBcdVector1Table, mscExampleFixedPtRowStatusTable=mscExampleFixedPtRowStatusTable, mscExampleIpAddressProvStructIpAddressArrayColumnIndex=mscExampleIpAddressProvStructIpAddressArrayColumnIndex, mscFriDynOpOptionalOperationalTable=mscFriDynOpOptionalOperationalTable, mscExampleEnumProvFreeEnumList1Entry=mscExampleEnumProvFreeEnumList1Entry, mscExampleNsapNativeEntry=mscExampleNsapNativeEntry, mscExampleFixedPtProvFreeFixedPtReplicatedRowStatus=mscExampleFixedPtProvFreeFixedPtReplicatedRowStatus, mscFriProvisionalStructSimpleSigned=mscFriProvisionalStructSimpleSigned, mscExampleWildBcdProvStructWildBcdVectorValue=mscExampleWildBcdProvStructWildBcdVectorValue, mscExampleSequence=mscExampleSequence, mscExampleDashedOsDashedVectorValue=mscExampleDashedOsDashedVectorValue, mscExampleMiscellaneousProvFreeLongListValue=mscExampleMiscellaneousProvFreeLongListValue, mscExampleIpAddressProvStructIpAddress=mscExampleIpAddressProvStructIpAddress, mscExampleDecimalPfIntList1Table=mscExampleDecimalPfIntList1Table, mscFriDynOpDynamicOperationalEntry=mscFriDynOpDynamicOperationalEntry, mscFriEvent=mscFriEvent, mscFriProvisionalStructSimpleExtended=mscFriProvisionalStructSimpleExtended, mscExampleDecimalPfIntReplicatedValue=mscExampleDecimalPfIntReplicatedValue, mscExampleMiscellaneousRowStatusTable=mscExampleMiscellaneousRowStatusTable, mscExampleStringOperStructAsciiOnly=mscExampleStringOperStructAsciiOnly, mscExampleHexIndicesOneIndex=mscExampleHexIndicesOneIndex, mscExampleEnumOperFreeEnumVectorEntry=mscExampleEnumOperFreeEnumVectorEntry, mscExampleIpAddressOperationalEntry=mscExampleIpAddressOperationalEntry, mscExampleDashedProvFreeDashedReplicatedTable=mscExampleDashedProvFreeDashedReplicatedTable, mscFriDynamicComponentName=mscFriDynamicComponentName, mscExampleExtendedOperFreeExtendedListValue=mscExampleExtendedOperFreeExtendedListValue, mscExampleStringOperFreeStrReplicatedEntry=mscExampleStringOperFreeStrReplicatedEntry, mscFriDynOpRowStatusEntry=mscFriDynOpRowStatusEntry, mscExampleDashedProvFreeDashedReplicatedEntry=mscExampleDashedProvFreeDashedReplicatedEntry, mscExampleHexRowStatusEntry=mscExampleHexRowStatusEntry, mscExampleSignedOperFreeSignedArrayRowIndex=mscExampleSignedOperFreeSignedArrayRowIndex, mscExampleIpAddrIndicesStorageType=mscExampleIpAddrIndicesStorageType, mscExampleFixedPtProvStructFixedPt=mscExampleFixedPtProvStructFixedPt, mscExampleSignedProvFreeSigned=mscExampleSignedProvFreeSigned, mscExampleDecimalOperStructInteger=mscExampleDecimalOperStructInteger, mscExampleSignedProvStructSignedArrayValue=mscExampleSignedProvStructSignedArrayValue, mscExampleEnumProvEnumSub=mscExampleEnumProvEnumSub, mscExampleDecimalPfIntReplicated1Entry=mscExampleDecimalPfIntReplicated1Entry, mscExampleExtendedStorageType=mscExampleExtendedStorageType, mscExampleExtendedOperFreeExtendedVectorTable=mscExampleExtendedOperFreeExtendedVectorTable, mscExampleBcdRowStatusTable=mscExampleBcdRowStatusTable, mscExampleMiscellaneousProvFreeTimeList1RowStatus=mscExampleMiscellaneousProvFreeTimeList1RowStatus, mscExampleObjectIdProvFreeObjIdReplicatedIndex=mscExampleObjectIdProvFreeObjIdReplicatedIndex, mscExampleEnumOperFreeEnum=mscExampleEnumOperFreeEnum, mscExampleHexProvFreeHexArrayEntry=mscExampleHexProvFreeHexArrayEntry, mscExampleHexStrIndices=mscExampleHexStrIndices, mscExampleMiscellaneousOperFreeLongReplicatedIndex=mscExampleMiscellaneousOperFreeLongReplicatedIndex, mscFriDynOpInitialStorageType=mscFriDynOpInitialStorageType, mscExampleDashedProvFreeDashedListRowStatus=mscExampleDashedProvFreeDashedListRowStatus, mscExampleTwoIndicesOneIndex=mscExampleTwoIndicesOneIndex, mscExampleHexProvFreeHexArray1ColumnIndex=mscExampleHexProvFreeHexArray1ColumnIndex, mscExampleSignedOperFreeSignedReplicatedValue=mscExampleSignedOperFreeSignedReplicatedValue, mscExampleIpAddressProvFreeIpAddressVectorTable=mscExampleIpAddressProvFreeIpAddressVectorTable, mscExampleMiscellaneousProvFreeLongReplicatedIndex=mscExampleMiscellaneousProvFreeLongReplicatedIndex, mscExampleBcdIndex=mscExampleBcdIndex, mscExampleBcdProvFreeBcdListEntry=mscExampleBcdProvFreeBcdListEntry, mscExampleIpAddressOperFreeIpAddressArrayColumnIndex=mscExampleIpAddressOperFreeIpAddressArrayColumnIndex, mscExampleDecimalPfIntListTable=mscExampleDecimalPfIntListTable, mscFriDynOp=mscFriDynOp, mscExampleObjectIdProvFreeObjIdListValue=mscExampleObjectIdProvFreeObjIdListValue, mscExampleObjectIdProvFreeObjIdReplicatedValue=mscExampleObjectIdProvFreeObjIdReplicatedValue, mscExampleDashedIndicesRowStatus=mscExampleDashedIndicesRowStatus, mscFriPfListAsciiTable=mscFriPfListAsciiTable, mscRegisteredDataEntry=mscRegisteredDataEntry, mscFriDynamicOperationalTable=mscFriDynamicOperationalTable, casTestGroupCA=casTestGroupCA, mscExampleHexProvFreeHexVector1Entry=mscExampleHexProvFreeHexVector1Entry, mscFriDnaRowStatusEntry=mscFriDnaRowStatusEntry, mscExampleDecimalPfIntArrayValue=mscExampleDecimalPfIntArrayValue, mscExampleDecimalOfIntVectorEntry=mscExampleDecimalOfIntVectorEntry, mscExampleHexOfHexListEntry=mscExampleHexOfHexListEntry, mscExampleSignedProvStructSigned=mscExampleSignedProvStructSigned, mscExampleDashedProvStructDashedArrayTable=mscExampleDashedProvStructDashedArrayTable, mscExampleIpAddressOperStructIpAddressVectorEntry=mscExampleIpAddressOperStructIpAddressVectorEntry, mscExampleStringProvFreeAsciiOnly1=mscExampleStringProvFreeAsciiOnly1, mscExampleEnumProvStructEnumVectorIndex=mscExampleEnumProvStructEnumVectorIndex, casTestCapabilitiesCA02=casTestCapabilitiesCA02, mscExampleWildBcdProvFreeWildBcdVectorIndex=mscExampleWildBcdProvFreeWildBcdVectorIndex, mscFriDynOpInitialOperationalEntry=mscFriDynOpInitialOperationalEntry, mscExampleStringProvFreeStrArray1ColumnIndex=mscExampleStringProvFreeStrArray1ColumnIndex, mscFriDynOpInitialComponentName=mscFriDynOpInitialComponentName, mscFriDnaAttribute=mscFriDnaAttribute, mscExampleExtended=mscExampleExtended, mscExampleSignedRowStatusTable=mscExampleSignedRowStatusTable, mscFriOperationalFreeSimpleFixed=mscFriOperationalFreeSimpleFixed, mscFriDynOpOptionalOperationalEntry=mscFriDynOpOptionalOperationalEntry, mscExampleDashedOfDashedListEntry=mscExampleDashedOfDashedListEntry, mscExampleMiscellaneousProvFreeLongReplicatedEntry=mscExampleMiscellaneousProvFreeLongReplicatedEntry, mscExampleHexProvFreeHexVector2Index=mscExampleHexProvFreeHexVector2Index, mscExampleHexOfHexArrayValue=mscExampleHexOfHexArrayValue, mscExampleIpAddressOperFreeIpAddressVectorIndex=mscExampleIpAddressOperFreeIpAddressVectorIndex, mscExampleWildBcdOperFreeWildBcdVectorValue=mscExampleWildBcdOperFreeWildBcdVectorValue, mscExampleSequenceIndicesStorageType=mscExampleSequenceIndicesStorageType, mscExampleMiscellaneousOperFreeLongReplicatedTable=mscExampleMiscellaneousOperFreeLongReplicatedTable, mscExampleSignedOperFreeSignedArrayColumnIndex=mscExampleSignedOperFreeSignedArrayColumnIndex, mscExampleSignedOperFreeSignedReplicatedTable=mscExampleSignedOperFreeSignedReplicatedTable, mscExampleExtendedOperFreeExtendedArrayRowIndex=mscExampleExtendedOperFreeExtendedArrayRowIndex, mscExampleStringOperStructStrArrayTable=mscExampleStringOperStructStrArrayTable, mscFriProvisionalStructSetUnsigned=mscFriProvisionalStructSetUnsigned, mscExampleHexStrIndicesStorageType=mscExampleHexStrIndicesStorageType, mscExampleNsapRowStatusTable=mscExampleNsapRowStatusTable, mscExampleDecimalIndicesTwoIndex=mscExampleDecimalIndicesTwoIndex, mscExampleFixedPtProvStructFixedPtArrayColumnIndex=mscExampleFixedPtProvStructFixedPtArrayColumnIndex, mscExampleWildBcdProvFreeWildBcdReplicatedTable=mscExampleWildBcdProvFreeWildBcdReplicatedTable, mscFriDynOpDynOpJrStorageType=mscFriDynOpDynOpJrStorageType, mscExampleExtendedOperFreeExtendedVectorEntry=mscExampleExtendedOperFreeExtendedVectorEntry, mscExampleStringOperFreeHexOnly=mscExampleStringOperFreeHexOnly, mscExampleIpAddressProvFreeIpAddressListRowStatus=mscExampleIpAddressProvFreeIpAddressListRowStatus, mscExampleEnumProvFreeEnumArrayEntry=mscExampleEnumProvFreeEnumArrayEntry, mscExampleObjIdIndicesComponentName=mscExampleObjIdIndicesComponentName, mscExampleFixedPtProvFreeFixedPt=mscExampleFixedPtProvFreeFixedPt, mscExampleIndex=mscExampleIndex, mscExampleDecimalProvFreeIntSet1=mscExampleDecimalProvFreeIntSet1, mscExampleWildBcdProvFreeWildBcdReplicatedIndex=mscExampleWildBcdProvFreeWildBcdReplicatedIndex, mscExampleExtendedProvFreeExtendedReplicatedTable=mscExampleExtendedProvFreeExtendedReplicatedTable, mscExampleSequenceComponentName=mscExampleSequenceComponentName, mscExampleEnumIndicesProvAttribute=mscExampleEnumIndicesProvAttribute, mscExampleWildBcdProvFreeWildBcdArrayEntry=mscExampleWildBcdProvFreeWildBcdArrayEntry, mscExampleFourIndicesComponentName=mscExampleFourIndicesComponentName, mscExampleDashedProvStructDashedArrayEntry=mscExampleDashedProvStructDashedArrayEntry, mscExampleWildBcdOperFreeWildBcdArrayRowIndex=mscExampleWildBcdOperFreeWildBcdArrayRowIndex, mscExampleObjectIdOperFreeObjIdListTable=mscExampleObjectIdOperFreeObjIdListTable, mscExampleHexOfHexReplicatedRowStatus=mscExampleHexOfHexReplicatedRowStatus, mscExampleDashedProvFreeDashedListEntry=mscExampleDashedProvFreeDashedListEntry, mscExampleDecimalOperFreeGauge32=mscExampleDecimalOperFreeGauge32, mscExampleAsciiIndices=mscExampleAsciiIndices, mscExampleString=mscExampleString, mscExampleProvDecimalSubCreatedTable=mscExampleProvDecimalSubCreatedTable, mscExampleBcdProvFreeBcdReplicatedValue=mscExampleBcdProvFreeBcdReplicatedValue, mscFriOperationalStructSimpleUnsigned=mscFriOperationalStructSimpleUnsigned, mscExampleIpAddressProvFreeIpAddressReplicatedIndex=mscExampleIpAddressProvFreeIpAddressReplicatedIndex, mscExampleSequenceStorageType=mscExampleSequenceStorageType, mscExampleMiscellaneousProvFreeTimeListRowStatus=mscExampleMiscellaneousProvFreeTimeListRowStatus, mscExampleEnumOperFreeEnumListRowStatus=mscExampleEnumOperFreeEnumListRowStatus, mscExampleFixedPtIndex=mscExampleFixedPtIndex, mscExampleEnumProvFreeEnumArrayValue=mscExampleEnumProvFreeEnumArrayValue, mscFriPfListUnsignedEntry=mscFriPfListUnsignedEntry, mscExampleEnumProvFreeEnumVectorIndex=mscExampleEnumProvFreeEnumVectorIndex, mscExampleStringOperFreeStrReplicatedValue=mscExampleStringOperFreeStrReplicatedValue, mscExampleMiscellaneousProvFreeTimeList2Entry=mscExampleMiscellaneousProvFreeTimeList2Entry, mscFriOperationalStructSimpleExtended=mscFriOperationalStructSimpleExtended, mscExampleBcdIndicesThreeIndex=mscExampleBcdIndicesThreeIndex, mscExampleEnumProvFreeEnumSet1=mscExampleEnumProvFreeEnumSet1, mscExampleIpAddressProvisionalEntry=mscExampleIpAddressProvisionalEntry, mscExampleIpAddrIndicesRowStatus=mscExampleIpAddrIndicesRowStatus, mscExampleDecimalProvFreeIntSet=mscExampleDecimalProvFreeIntSet, mscExampleHexProvFreeHexArray2Table=mscExampleHexProvFreeHexArray2Table, mscExampleTwoIndicesTwoIndex=mscExampleTwoIndicesTwoIndex, mscExampleEnumProvFreeEnumSet=mscExampleEnumProvFreeEnumSet, mscFriDynOpInitialAttribute=mscFriDynOpInitialAttribute, mscExampleObjectIdOperFreeObjIdReplicatedEntry=mscExampleObjectIdOperFreeObjIdReplicatedEntry, mscExampleDecimalPsIntVectorIndex=mscExampleDecimalPsIntVectorIndex, mscExampleBcdIndicesOneIndex=mscExampleBcdIndicesOneIndex, mscExampleFixedPtProvFreeFixedPtReplicatedValue=mscExampleFixedPtProvFreeFixedPtReplicatedValue, mscExampleExtendedOperStructExtendedArrayEntry=mscExampleExtendedOperStructExtendedArrayEntry, mscExampleHexComponentName=mscExampleHexComponentName, mscExampleRequiredIndicesEnumerationIndex=mscExampleRequiredIndicesEnumerationIndex, mscFriProvisionalFreeSimpleComponent=mscFriProvisionalFreeSimpleComponent, mscFriOperationalFreeSimpleBcd=mscFriOperationalFreeSimpleBcd, mscExampleFixedPtProvFreeFixedPtArrayRowIndex=mscExampleFixedPtProvFreeFixedPtArrayRowIndex, mscExampleBcdProvFreeBcdReplicated1Index=mscExampleBcdProvFreeBcdReplicated1Index, mscExampleDecimalOfIntArrayTable=mscExampleDecimalOfIntArrayTable, mscExampleHexProvFreeHexVector2Table=mscExampleHexProvFreeHexVector2Table, mscExampleFixedPtProvFreeFixedPtArrayEntry=mscExampleFixedPtProvFreeFixedPtArrayEntry, mscExampleExtendedComponentName=mscExampleExtendedComponentName, mscExampleThreeIndicesThreeIndex=mscExampleThreeIndicesThreeIndex, mscFriDynamicRowStatusTable=mscFriDynamicRowStatusTable, mscFriDynOpComponentName=mscFriDynOpComponentName, mscExampleSequenceOperFreeSequenceReplicatedIndex=mscExampleSequenceOperFreeSequenceReplicatedIndex, mscExampleStringProvFreeStrReplicatedIndex=mscExampleStringProvFreeStrReplicatedIndex, mscExampleSignedProvFreeSignedArrayColumnIndex=mscExampleSignedProvFreeSignedArrayColumnIndex, mscExampleRequiredIndicesRowStatus=mscExampleRequiredIndicesRowStatus, mscFriRegisteredRowStatusTable=mscFriRegisteredRowStatusTable, mscExampleEnumProvFreeEnumVectorValue=mscExampleEnumProvFreeEnumVectorValue, mscFriRegistered=mscFriRegistered, mscExampleFixedPtOperStructFixedPtVectorTable=mscExampleFixedPtOperStructFixedPtVectorTable, mscExampleStringComponentName=mscExampleStringComponentName, mscExampleHexProvEnumSub=mscExampleHexProvEnumSub, mscExampleSignedOperFreeSignedReplicatedIndex=mscExampleSignedOperFreeSignedReplicatedIndex, mscExampleHexProvisionalTable=mscExampleHexProvisionalTable, mscExampleExtendedProvFreeExtendedVectorTable=mscExampleExtendedProvFreeExtendedVectorTable, mscExampleObjectIdOperationalEntry=mscExampleObjectIdOperationalEntry, mscExampleFourIndicesProvisionedTable=mscExampleFourIndicesProvisionedTable, mscExampleBcdProvFreeBcdReplicated1Table=mscExampleBcdProvFreeBcdReplicated1Table, mscExampleDecimalPsIntArrayEntry=mscExampleDecimalPsIntArrayEntry, mscExampleHexIndicesRowStatusEntry=mscExampleHexIndicesRowStatusEntry, mscExampleMiscellaneousProvFreeTimeReplicatedValue=mscExampleMiscellaneousProvFreeTimeReplicatedValue, mscExampleFixedPtProvStructFixedPtVectorEntry=mscExampleFixedPtProvStructFixedPtVectorEntry, mscExampleIpAddrIndicesProvisionedTable=mscExampleIpAddrIndicesProvisionedTable, mscExampleStringProvStructStrVectorIndex=mscExampleStringProvStructStrVectorIndex, mscFriOperationalFreeSimpleExtended=mscFriOperationalFreeSimpleExtended, mscFriPfListAsciiValue=mscFriPfListAsciiValue, mscExampleSigned=mscExampleSigned, mscExampleSignedProvStructSignedArrayRowIndex=mscExampleSignedProvStructSignedArrayRowIndex, mscExampleHexProvFreeHexReplicatedRowStatus=mscExampleHexProvFreeHexReplicatedRowStatus, mscExampleExtendedOperFreeExtendedReplicatedTable=mscExampleExtendedOperFreeExtendedReplicatedTable, mscExampleSequenceIndicesTwoIndex=mscExampleSequenceIndicesTwoIndex, mscExampleDecimalOfIntListRowStatus=mscExampleDecimalOfIntListRowStatus, mscExampleEnumOperFreeEnumReplicatedEntry=mscExampleEnumOperFreeEnumReplicatedEntry, mscExampleSequenceIndices=mscExampleSequenceIndices, mscRegisteredRowStatusEntry=mscRegisteredRowStatusEntry, mscExampleExtendedProvStructExtended=mscExampleExtendedProvStructExtended, mscExampleBcdProvFreeBcdArray1ColumnIndex=mscExampleBcdProvFreeBcdArray1ColumnIndex, mscExampleDecimalOperationalTable=mscExampleDecimalOperationalTable, mscFriOperationalStructSimpleFixed=mscFriOperationalStructSimpleFixed, mscExampleDashedOfDashedArrayEntry=mscExampleDashedOfDashedArrayEntry, mscExampleHexRowStatusTable=mscExampleHexRowStatusTable, mscFriDynOpStorageType=mscFriDynOpStorageType, mscExampleDashedOfDashedReplicatedTable=mscExampleDashedOfDashedReplicatedTable, mscExampleEnumOperFreeEnumArrayTable=mscExampleEnumOperFreeEnumArrayTable, mscExampleMiscellaneousProvFreeLongListTable=mscExampleMiscellaneousProvFreeLongListTable, mscExampleBcdOperStructBcd=mscExampleBcdOperStructBcd, mscExampleExtendedOperStructExtendedVectorTable=mscExampleExtendedOperStructExtendedVectorTable, mscExampleIpAddressOperFreeIpAddressVectorTable=mscExampleIpAddressOperFreeIpAddressVectorTable, mscExampleIpAddressProvFreeIpAddressReplicatedValue=mscExampleIpAddressProvFreeIpAddressReplicatedValue, mscExampleAsciiIndicesRowStatusTable=mscExampleAsciiIndicesRowStatusTable, mscExampleStringProvFreeStrVector1Value=mscExampleStringProvFreeStrVector1Value, mscExampleWildBcdOperFreeWildBcdArrayEntry=mscExampleWildBcdOperFreeWildBcdArrayEntry, mscExampleProvDecimalSubCreatedRowStatus=mscExampleProvDecimalSubCreatedRowStatus, mscExampleStringProvFreeStrArray1Value=mscExampleStringProvFreeStrArray1Value, mscExampleWildBcd=mscExampleWildBcd, mscExampleStringOperFreeStrListEntry=mscExampleStringOperFreeStrListEntry, mscExampleSignedProvFreeSignedArray1Value=mscExampleSignedProvFreeSignedArray1Value, mscExampleIpAddressProvFreeIpAddressList1Value=mscExampleIpAddressProvFreeIpAddressList1Value, mscExampleNsapComponentName=mscExampleNsapComponentName, mscExampleBcdProvStructBcdArrayTable=mscExampleBcdProvStructBcdArrayTable, mscExampleObjectIdProvEnumSub=mscExampleObjectIdProvEnumSub, mscExampleSequenceRowStatusEntry=mscExampleSequenceRowStatusEntry, mscRegisteredStorageType=mscRegisteredStorageType)
mibBuilder.exportSymbols('Nortel-MsCarrier-MscPassport-CasTestMIB', mscFriPfListFixedEntry=mscFriPfListFixedEntry, mscExampleHexProvFreeHexVector1Table=mscExampleHexProvFreeHexVector1Table, mscExampleSequenceOperFreeSequenceReplicatedTable=mscExampleSequenceOperFreeSequenceReplicatedTable, mscExampleIpAddressProvFreeIpAddressReplicatedEntry=mscExampleIpAddressProvFreeIpAddressReplicatedEntry, mscExampleMiscellaneousOperFreeLongReplicatedEntry=mscExampleMiscellaneousOperFreeLongReplicatedEntry, mscExampleMiscellaneousProvFreeTimeList1Table=mscExampleMiscellaneousProvFreeTimeList1Table, mscExampleFixedPtOperStructFixedPtArrayEntry=mscExampleFixedPtOperStructFixedPtArrayEntry, mscExampleDashedOperFreeDashed=mscExampleDashedOperFreeDashed, mscFriDnaProvisionalTable=mscFriDnaProvisionalTable, mscExampleStringOperFreeStrListValue=mscExampleStringOperFreeStrListValue, mscExampleMiscellaneousProvFreeTimeReplicatedEntry=mscExampleMiscellaneousProvFreeTimeReplicatedEntry, mscExampleSequenceProvFreeSequenceReplicatedValue=mscExampleSequenceProvFreeSequenceReplicatedValue, mscExampleMiscellaneousProvFreeTimeList3RowStatus=mscExampleMiscellaneousProvFreeTimeList3RowStatus, mscExampleBcdOperStructBcdVectorEntry=mscExampleBcdOperStructBcdVectorEntry, mscExampleSignedProvStructSignedArrayEntry=mscExampleSignedProvStructSignedArrayEntry, mscExampleWildBcdProvStructWildBcdArrayTable=mscExampleWildBcdProvStructWildBcdArrayTable, mscExampleEnumOperFreeEnumArrayEntry=mscExampleEnumOperFreeEnumArrayEntry, mscExampleDecimalPfIntReplicatedIndex=mscExampleDecimalPfIntReplicatedIndex, mscExampleStringProvStructStrVectorTable=mscExampleStringProvStructStrVectorTable, mscExampleDecimalIndicesThreeIndex=mscExampleDecimalIndicesThreeIndex, mscExampleBcdOperationalTable=mscExampleBcdOperationalTable, mscExampleSignedProvFreeSignedVector1Value=mscExampleSignedProvFreeSignedVector1Value, mscExampleIpAddressOperFreeIpAddressArrayRowIndex=mscExampleIpAddressOperFreeIpAddressArrayRowIndex, mscExampleSignedProvFreeSignedArray1ColumnIndex=mscExampleSignedProvFreeSignedArray1ColumnIndex, mscFriDynOpOptional=mscFriDynOpOptional, mscExampleHexStrIndicesOneIndex=mscExampleHexStrIndicesOneIndex, mscExampleDecimalIndicesRowStatusEntry=mscExampleDecimalIndicesRowStatusEntry, mscExampleDashedProvisionalEntry=mscExampleDashedProvisionalEntry, mscExampleFourIndicesRowStatusTable=mscExampleFourIndicesRowStatusTable, mscExampleExtendedProvFreeExtendedArrayEntry=mscExampleExtendedProvFreeExtendedArrayEntry, mscExampleSequenceProvStructSequence=mscExampleSequenceProvStructSequence, mscExampleSequenceIndicesProvAttribute=mscExampleSequenceIndicesProvAttribute, mscExampleSignedOperFreeSignedListValue=mscExampleSignedOperFreeSignedListValue, mscExampleMiscellaneousOperationalTable=mscExampleMiscellaneousOperationalTable, mscExampleDecimalPfIntVector1Value=mscExampleDecimalPfIntVector1Value, mscExampleHexOsHexArrayColumnIndex=mscExampleHexOsHexArrayColumnIndex, mscExampleDashedOfDashedReplicatedRowStatus=mscExampleDashedOfDashedReplicatedRowStatus, mscExampleBcdOperFreeBcdArrayEntry=mscExampleBcdOperFreeBcdArrayEntry, mscExampleFixedPtOperFreeFixedPtReplicatedIndex=mscExampleFixedPtOperFreeFixedPtReplicatedIndex, mscExampleSignedProvFreeSignedArray1Table=mscExampleSignedProvFreeSignedArray1Table, mscExampleStringOperStructStrArrayRowIndex=mscExampleStringOperStructStrArrayRowIndex, mscFriProvisionalStructSimpleEnum=mscFriProvisionalStructSimpleEnum, mscExampleRequiredIndices=mscExampleRequiredIndices, mscFriAvailabilityStatus=mscFriAvailabilityStatus, casTestGroupCA02=casTestGroupCA02, mscExampleDashedProvFreeDashedReplicatedValue=mscExampleDashedProvFreeDashedReplicatedValue, mscExampleProvDecimalSubCreatedEntry=mscExampleProvDecimalSubCreatedEntry, mscExampleBcdOperStructBcdVectorIndex=mscExampleBcdOperStructBcdVectorIndex, mscExampleSignedProvStructSignedVectorIndex=mscExampleSignedProvStructSignedVectorIndex, mscExampleIpAddrIndicesRowStatusEntry=mscExampleIpAddrIndicesRowStatusEntry, mscFriAlarmStatus=mscFriAlarmStatus, mscFriDnaNumberPlanIndicator=mscFriDnaNumberPlanIndicator, mscExampleProvFixedPtSubCreatedRowStatus=mscExampleProvFixedPtSubCreatedRowStatus, mscExampleExtendedRowStatusTable=mscExampleExtendedRowStatusTable, mscExampleExtendedOperFreeExtendedArrayTable=mscExampleExtendedOperFreeExtendedArrayTable, mscExampleHexIndicesThreeIndex=mscExampleHexIndicesThreeIndex, mscExampleEnumProvFreeEnum1=mscExampleEnumProvFreeEnum1, mscFriDynOpInitialRowStatus=mscFriDynOpInitialRowStatus, mscExampleIpAddressProvFreeIpAddressVector1Table=mscExampleIpAddressProvFreeIpAddressVector1Table, mscExampleBcdProvFreeBcdReplicated1Entry=mscExampleBcdProvFreeBcdReplicated1Entry, mscExampleThreeIndicesRowStatus=mscExampleThreeIndicesRowStatus, mscExampleProvSignedSubCreatedTable=mscExampleProvSignedSubCreatedTable, mscExampleDashedProvFreeDashedVectorIndex=mscExampleDashedProvFreeDashedVectorIndex, mscExampleEnumOperFreeEnumListValue=mscExampleEnumOperFreeEnumListValue, mscExampleIpAddressOperFreeIpAddressReplicatedEntry=mscExampleIpAddressOperFreeIpAddressReplicatedEntry, mscExampleEnumProvFreeEnumListRowStatus=mscExampleEnumProvFreeEnumListRowStatus, mscExampleExtendedProvEnumSub=mscExampleExtendedProvEnumSub, mscExampleWildBcdProvFreeWildBcdVectorTable=mscExampleWildBcdProvFreeWildBcdVectorTable, mscExampleWildBcdProvStructWildBcdArrayValue=mscExampleWildBcdProvStructWildBcdArrayValue, mscExampleThreeIndices=mscExampleThreeIndices, mscExampleHexProvFreeHexListRowStatus=mscExampleHexProvFreeHexListRowStatus, mscExampleFixedPtProvFreeFixedPtListRowStatus=mscExampleFixedPtProvFreeFixedPtListRowStatus, mscFriOperationalStructSimpleAscii=mscFriOperationalStructSimpleAscii, mscFriDynamic=mscFriDynamic, mscExampleDashedOfDashedListRowStatus=mscExampleDashedOfDashedListRowStatus, mscExampleBcdProvFreeBcdList1Value=mscExampleBcdProvFreeBcdList1Value, mscExampleEnumProvFreeEnumReplicatedIndex=mscExampleEnumProvFreeEnumReplicatedIndex, mscExampleDashedOfDashedListTable=mscExampleDashedOfDashedListTable, mscExampleSignedProvFreeSignedListTable=mscExampleSignedProvFreeSignedListTable, mscExampleStringOperationalEntry=mscExampleStringOperationalEntry, mscFriUnknownStatus=mscFriUnknownStatus, mscExampleStringProvStructStrArrayTable=mscExampleStringProvStructStrArrayTable, mscExampleFourIndicesThreeIndex=mscExampleFourIndicesThreeIndex, mscExampleExtendedProvFreeExtendedReplicatedValue=mscExampleExtendedProvFreeExtendedReplicatedValue, mscFriProvisionalFreeSimpleObjId=mscFriProvisionalFreeSimpleObjId, mscExampleBcdOperFreeBcdArrayValue=mscExampleBcdOperFreeBcdArrayValue, mscExampleExtendedOperFreeExtendedListTable=mscExampleExtendedOperFreeExtendedListTable, mscExampleMiscellaneousOperationalEntry=mscExampleMiscellaneousOperationalEntry, mscExampleIpAddressProvStructIpAddressVectorIndex=mscExampleIpAddressProvStructIpAddressVectorIndex, mscFriOfListComponentValue=mscFriOfListComponentValue, mscExampleOneIndexProvisionedEntry=mscExampleOneIndexProvisionedEntry, mscExampleSignedOperStructSignedArrayTable=mscExampleSignedOperStructSignedArrayTable, mscExampleExtendedOperFreeExtendedReplicatedRowStatus=mscExampleExtendedOperFreeExtendedReplicatedRowStatus, mscRegisteredComponentName=mscRegisteredComponentName, mscExampleBcdProvFreeBcdVector1Value=mscExampleBcdProvFreeBcdVector1Value, mscExampleFixedPtOperFreeFixedPtSet=mscExampleFixedPtOperFreeFixedPtSet, mscExampleEnumProvFreeEnumArray1Table=mscExampleEnumProvFreeEnumArray1Table, mscExampleDashedStorageType=mscExampleDashedStorageType, mscExampleFourIndices=mscExampleFourIndices, mscExampleWildBcdProvFreeWildBcdListTable=mscExampleWildBcdProvFreeWildBcdListTable, mscExampleHexOfHexListRowStatus=mscExampleHexOfHexListRowStatus, mscExampleBcdProvStructBcd=mscExampleBcdProvStructBcd, mscExampleSequenceIndicesComponentName=mscExampleSequenceIndicesComponentName, mscExampleSequenceOperFreeSequenceReplicatedRowStatus=mscExampleSequenceOperFreeSequenceReplicatedRowStatus, mscFriEscapeCopyGroup=mscFriEscapeCopyGroup, mscExampleDecimalIndex=mscExampleDecimalIndex, mscExampleDecimalPfIntArrayColumnIndex=mscExampleDecimalPfIntArrayColumnIndex, mscFriDnaTypeOfAddress=mscFriDnaTypeOfAddress, mscFriDynOpIndex=mscFriDynOpIndex, mscExampleEnumProvStructEnumVectorValue=mscExampleEnumProvStructEnumVectorValue, mscExampleStringOperStructStrArrayEntry=mscExampleStringOperStructStrArrayEntry, mscFriOperationalStructSimpleBcd=mscFriOperationalStructSimpleBcd, mscExampleSignedOperFreeSigned=mscExampleSignedOperFreeSigned, mscExampleHexOfHexReplicatedTable=mscExampleHexOfHexReplicatedTable, mscExampleExtendedProvisionalEntry=mscExampleExtendedProvisionalEntry, mscExampleDecimalOperFreeIntSet=mscExampleDecimalOperFreeIntSet, mscExampleAsciiIndicesComponentName=mscExampleAsciiIndicesComponentName, mscExampleDashedProvStructDashedVectorTable=mscExampleDashedProvStructDashedVectorTable, mscExampleSequenceIndicesRowStatus=mscExampleSequenceIndicesRowStatus, mscExampleEnumIndicesTwoIndex=mscExampleEnumIndicesTwoIndex, mscExampleStringOperStructStrVectorTable=mscExampleStringOperStructStrVectorTable, mscFriOfListComponentRowStatus=mscFriOfListComponentRowStatus, mscExampleEnumProvFreeEnumVectorTable=mscExampleEnumProvFreeEnumVectorTable, mscExampleIpAddressProvFreeIpAddressVectorIndex=mscExampleIpAddressProvFreeIpAddressVectorIndex, mscExampleThreeIndicesProvisionedTable=mscExampleThreeIndicesProvisionedTable, mscExampleMiscellaneousOperFreeTimeDateOnly=mscExampleMiscellaneousOperFreeTimeDateOnly, mscExampleStringProvStructHexOnly=mscExampleStringProvStructHexOnly, mscExampleIpAddressRowStatusTable=mscExampleIpAddressRowStatusTable, mscExampleFixedPtProvStructFixedPtVectorValue=mscExampleFixedPtProvStructFixedPtVectorValue, mscExampleHexProvStructHexArrayEntry=mscExampleHexProvStructHexArrayEntry, mscExampleTwoIndicesProvisionedEntry=mscExampleTwoIndicesProvisionedEntry, mscExampleHexProvFreeHexVectorTable=mscExampleHexProvFreeHexVectorTable, mscExampleExtendedOperStructExtendedVectorEntry=mscExampleExtendedOperStructExtendedVectorEntry, mscExampleStringProvFreeStrArray1Table=mscExampleStringProvFreeStrArray1Table, mscExampleDashedProvFreeDashedListTable=mscExampleDashedProvFreeDashedListTable, mscExampleSignedProvFreeSignedVectorValue=mscExampleSignedProvFreeSignedVectorValue, mscFriDynOpInitialOperationalTable=mscFriDynOpInitialOperationalTable, mscExampleHexOfHexArrayRowIndex=mscExampleHexOfHexArrayRowIndex, mscExampleWildBcdProvStructWildBcdArrayEntry=mscExampleWildBcdProvStructWildBcdArrayEntry, mscExampleDashedOfDashedReplicatedIndex=mscExampleDashedOfDashedReplicatedIndex, mscExampleSignedOperStructSigned=mscExampleSignedOperStructSigned, mscExampleStringProvFreeStrArrayColumnIndex=mscExampleStringProvFreeStrArrayColumnIndex, mscExampleSignedStorageType=mscExampleSignedStorageType, mscExampleEnumOperStructEnumArrayTable=mscExampleEnumOperStructEnumArrayTable, mscFriDynOpInitialRowStatusEntry=mscFriDynOpInitialRowStatusEntry, mscExampleComponentName=mscExampleComponentName, mscExampleFixedPtOperStructFixedPt=mscExampleFixedPtOperStructFixedPt, mscExampleEnumOperStructEnumArrayDayIndex=mscExampleEnumOperStructEnumArrayDayIndex, mscFriDynOpInitialRowStatusTable=mscFriDynOpInitialRowStatusTable, mscExampleDecimalPsIntArrayColumnIndex=mscExampleDecimalPsIntArrayColumnIndex, mscExampleDecimalPfIntReplicatedEntry=mscExampleDecimalPfIntReplicatedEntry, mscExampleBcdOperFreeBcdReplicatedIndex=mscExampleBcdOperFreeBcdReplicatedIndex, mscExampleExtendedProvFreeExtendedArrayColumnIndex=mscExampleExtendedProvFreeExtendedArrayColumnIndex, mscExampleBcdOperationalEntry=mscExampleBcdOperationalEntry, mscFriEscapeDefaultsComponent=mscFriEscapeDefaultsComponent, mscExampleDecimalPfIntVectorEntry=mscExampleDecimalPfIntVectorEntry, mscExampleFixedPtOperFreeFixedPtListTable=mscExampleFixedPtOperFreeFixedPtListTable, mscExampleMiscellaneousProvFreeLongReplicatedTable=mscExampleMiscellaneousProvFreeLongReplicatedTable, mscExampleNsapNativeIndex=mscExampleNsapNativeIndex, mscExampleSignedProvStructSignedVectorTable=mscExampleSignedProvStructSignedVectorTable, mscExampleBcdOperFreeBcdReplicatedRowStatus=mscExampleBcdOperFreeBcdReplicatedRowStatus, mscExampleFixedPtProvFreeFixedPtListValue=mscExampleFixedPtProvFreeFixedPtListValue, mscExampleFourIndicesRowStatus=mscExampleFourIndicesRowStatus, mscExampleThreeIndicesStorageType=mscExampleThreeIndicesStorageType, mscExampleDashedProvStructDashedVectorIndex=mscExampleDashedProvStructDashedVectorIndex, mscExampleHexProvFreeHexListValue=mscExampleHexProvFreeHexListValue, mscExampleEnumProvFreeEnumReplicatedEntry=mscExampleEnumProvFreeEnumReplicatedEntry, mscFriDnaComponentName=mscFriDnaComponentName, mscFriOperationalEntry=mscFriOperationalEntry, mscExampleMiscellaneousProvFreeLong=mscExampleMiscellaneousProvFreeLong, mscFriProvisionalFreeSimpleSequence=mscFriProvisionalFreeSimpleSequence, mscExampleSignedIndex=mscExampleSignedIndex, mscFriDynOpDynamicRowStatusTable=mscFriDynOpDynamicRowStatusTable, mscFriControlStatus=mscFriControlStatus, mscExampleBcdProvFreeBcdReplicatedRowStatus=mscExampleBcdProvFreeBcdReplicatedRowStatus, mscExampleHexIndicesComponentName=mscExampleHexIndicesComponentName, mscExampleExtendedProvStructExtendedArrayEntry=mscExampleExtendedProvStructExtendedArrayEntry, mscExampleIpAddressProvStructIpAddressArrayEntry=mscExampleIpAddressProvStructIpAddressArrayEntry, mscExampleMiscellaneousProvFreeTimeList2Value=mscExampleMiscellaneousProvFreeTimeList2Value, mscExampleOperStringSubCreatedEntry=mscExampleOperStringSubCreatedEntry, mscExampleMiscellaneousOperStructLong=mscExampleMiscellaneousOperStructLong, mscExampleIpAddrIndicesComponentName=mscExampleIpAddrIndicesComponentName, mscExampleStringOperFreeStrVectorEntry=mscExampleStringOperFreeStrVectorEntry, mscExampleIpAddrIndicesProvAttribute=mscExampleIpAddrIndicesProvAttribute, mscExampleOperEnumSubCreatedTable=mscExampleOperEnumSubCreatedTable, mscExampleThreeIndicesComponentName=mscExampleThreeIndicesComponentName, mscExampleStringProvFreeStrList1RowStatus=mscExampleStringProvFreeStrList1RowStatus, mscExampleObjectIdProvisionalTable=mscExampleObjectIdProvisionalTable, mscExampleWildBcdOperStructWildBcdVectorIndex=mscExampleWildBcdOperStructWildBcdVectorIndex, mscExampleBcdProvFreeBcdVector1Index=mscExampleBcdProvFreeBcdVector1Index, mscExampleDashedProvStructDashedArrayColumnIndex=mscExampleDashedProvStructDashedArrayColumnIndex, mscExampleAsciiIndicesRowStatus=mscExampleAsciiIndicesRowStatus, mscExampleDecimalOfIntReplicatedTable=mscExampleDecimalOfIntReplicatedTable, mscExampleEnumOperFreeEnumArrayDayIndex=mscExampleEnumOperFreeEnumArrayDayIndex, mscExampleObjectId=mscExampleObjectId, mscExampleMiscellaneousProvFreeTime1=mscExampleMiscellaneousProvFreeTime1, mscFriEventStorageType=mscFriEventStorageType, mscFriPfListUnsignedValue=mscFriPfListUnsignedValue, mscExampleStringOperStructStrArrayValue=mscExampleStringOperStructStrArrayValue, mscExampleEnumOperStructEnumVectorEntry=mscExampleEnumOperStructEnumVectorEntry, mscExampleProvFixedPtSubCreatedValue=mscExampleProvFixedPtSubCreatedValue, mscFri=mscFri, mscFriDynOpInitialIndex=mscFriDynOpInitialIndex, mscExampleWildBcdOperFreeWildBcdReplicatedEntry=mscExampleWildBcdOperFreeWildBcdReplicatedEntry, mscExampleRowStatusTable=mscExampleRowStatusTable, mscExampleProvSignedSubCreatedEntry=mscExampleProvSignedSubCreatedEntry, mscExampleStringProvFreeStrArrayValue=mscExampleStringProvFreeStrArrayValue, mscFriDnaDataNetworkAddress=mscFriDnaDataNetworkAddress, mscExampleDecimalOfIntListValue=mscExampleDecimalOfIntListValue, mscExampleOperStringSubCreatedValue=mscExampleOperStringSubCreatedValue, mscExampleDecimalPsIntArrayValue=mscExampleDecimalPsIntArrayValue, mscExampleProvFixedPtSubCreatedEntry=mscExampleProvFixedPtSubCreatedEntry, mscFriDynOpDynamicIndex=mscFriDynOpDynamicIndex, mscExampleExtendedOperFreeExtendedReplicatedIndex=mscExampleExtendedOperFreeExtendedReplicatedIndex, mscExampleSequenceProvFreeSequenceReplicatedRowStatus=mscExampleSequenceProvFreeSequenceReplicatedRowStatus, mscExampleDecimalPfIntVector1Table=mscExampleDecimalPfIntVector1Table, mscExampleMiscellaneousOperFreeCounter64=mscExampleMiscellaneousOperFreeCounter64, mscExampleIpAddrIndicesProvisionedEntry=mscExampleIpAddrIndicesProvisionedEntry, mscFriRegisteredDataEntry=mscFriRegisteredDataEntry, mscFriProvisionalFreeSimpleBcd=mscFriProvisionalFreeSimpleBcd, mscExampleObjIdIndicesRowStatus=mscExampleObjIdIndicesRowStatus, mscExampleBcdProvisionalEntry=mscExampleBcdProvisionalEntry, mscExampleBcdProvisionalTable=mscExampleBcdProvisionalTable, mscExampleFixedPtProvFreeFixedPtVectorIndex=mscExampleFixedPtProvFreeFixedPtVectorIndex, mscExampleMiscellaneousOperFreeTimeListEntry=mscExampleMiscellaneousOperFreeTimeListEntry, mscExampleHexIndicesRowStatus=mscExampleHexIndicesRowStatus, casTestMIB=casTestMIB, mscExampleObjectIdRowStatusEntry=mscExampleObjectIdRowStatusEntry, mscExampleDecimalPfIntArrayEntry=mscExampleDecimalPfIntArrayEntry, mscExampleEnumProvStructEnumVectorTable=mscExampleEnumProvStructEnumVectorTable, mscExampleExtendedOperStructExtendedArrayTable=mscExampleExtendedOperStructExtendedArrayTable, mscExampleObjectIdProvisionalEntry=mscExampleObjectIdProvisionalEntry, mscExampleHexOsHexVectorValue=mscExampleHexOsHexVectorValue, mscExampleHexOfHexArrayColumnIndex=mscExampleHexOfHexArrayColumnIndex, mscExampleExtendedProvFreeExtendedReplicatedEntry=mscExampleExtendedProvFreeExtendedReplicatedEntry, mscExampleEnumProvFreeEnumReplicatedValue=mscExampleEnumProvFreeEnumReplicatedValue, mscRegistered=mscRegistered, mscExampleSignedProvFreeSignedReplicatedValue=mscExampleSignedProvFreeSignedReplicatedValue, mscExampleExtendedOperationalEntry=mscExampleExtendedOperationalEntry, mscExampleOperStringSubCreatedTable=mscExampleOperStringSubCreatedTable, mscExampleExtendedProvFreeExtendedListRowStatus=mscExampleExtendedProvFreeExtendedListRowStatus, mscExampleDecimalOfIntVectorValue=mscExampleDecimalOfIntVectorValue, mscExampleNsapIndex=mscExampleNsapIndex, mscExampleWildBcdProvFreeWildBcdListValue=mscExampleWildBcdProvFreeWildBcdListValue, casTestCapabilitiesCA02A=casTestCapabilitiesCA02A, mscExampleObjectIdProvFreeObjId=mscExampleObjectIdProvFreeObjId, mscExampleHexProvStructHexArrayValue=mscExampleHexProvStructHexArrayValue, mscExampleHexProvFreeHexReplicated1Value=mscExampleHexProvFreeHexReplicated1Value, mscFriDynOpDynamicRowStatusEntry=mscFriDynOpDynamicRowStatusEntry, mscExampleHexProvFreeHex=mscExampleHexProvFreeHex, mscExampleHexProvFreeHexReplicatedTable=mscExampleHexProvFreeHexReplicatedTable, mscExampleRequiredIndicesComponentName=mscExampleRequiredIndicesComponentName, mscFriComponentName=mscFriComponentName, mscExampleSequenceIndicesProvisionedTable=mscExampleSequenceIndicesProvisionedTable)
mibBuilder.exportSymbols('Nortel-MsCarrier-MscPassport-CasTestMIB', mscExampleOneIndexRowStatus=mscExampleOneIndexRowStatus, mscFriDynOpDynOpJrRowStatus=mscFriDynOpDynOpJrRowStatus, mscExampleMiscellaneousProvFreeTimeTimeOnly1=mscExampleMiscellaneousProvFreeTimeTimeOnly1, mscExampleBcdProvFreeBcdReplicatedEntry=mscExampleBcdProvFreeBcdReplicatedEntry, mscExampleDecimal=mscExampleDecimal, mscExampleWildBcdProvStructWildBcd=mscExampleWildBcdProvStructWildBcd, mscFriProvisionalStructSimpleDashed=mscFriProvisionalStructSimpleDashed, mscExampleSequenceRowStatus=mscExampleSequenceRowStatus, mscExampleTwoIndicesStorageType=mscExampleTwoIndicesStorageType, mscExampleDashedIndicesRowStatusTable=mscExampleDashedIndicesRowStatusTable, mscExampleFixedPtProvFreeFixedPtArrayTable=mscExampleFixedPtProvFreeFixedPtArrayTable, mscExampleTwoIndicesRowStatusTable=mscExampleTwoIndicesRowStatusTable, mscExampleBcdIndicesTwoIndex=mscExampleBcdIndicesTwoIndex, mscExampleDashedOfDashedVectorIndex=mscExampleDashedOfDashedVectorIndex, mscExampleDashedRowStatus=mscExampleDashedRowStatus, mscExampleFixedPtOperFreeFixedPtArrayColumnIndex=mscExampleFixedPtOperFreeFixedPtArrayColumnIndex, mscExampleHexProvFreeHexArray1Value=mscExampleHexProvFreeHexArray1Value, mscExampleOperDecimalSubCreatedTable=mscExampleOperDecimalSubCreatedTable, mscExampleDashedRowStatusTable=mscExampleDashedRowStatusTable, mscExampleExtendedProvFreeExtendedVectorValue=mscExampleExtendedProvFreeExtendedVectorValue, mscFriOperationalFreeSimpleComponent=mscFriOperationalFreeSimpleComponent, mscFriOfListEnumerationValue=mscFriOfListEnumerationValue, mscExampleStringProvFreeStrVectorEntry=mscExampleStringProvFreeStrVectorEntry, mscExampleWildBcdOperStructWildBcdVectorValue=mscExampleWildBcdOperStructWildBcdVectorValue, mscExampleBcdOperFreeBcdVectorIndex=mscExampleBcdOperFreeBcdVectorIndex, mscExampleProvisionalTable=mscExampleProvisionalTable, mscExampleEnumIndicesStorageType=mscExampleEnumIndicesStorageType, mscExampleOneIndexComponentName=mscExampleOneIndexComponentName, mscExampleFixedPtOperFreeFixedPtVectorTable=mscExampleFixedPtOperFreeFixedPtVectorTable, mscExampleWildBcdRowStatusEntry=mscExampleWildBcdRowStatusEntry, mscExampleNsapStorageType=mscExampleNsapStorageType, mscExampleProvEnumSubCreatedRowStatus=mscExampleProvEnumSubCreatedRowStatus, mscExampleHexStrIndicesRowStatus=mscExampleHexStrIndicesRowStatus, mscFriDynOpDynamicOperationalTable=mscFriDynOpDynamicOperationalTable, mscExampleObjectIdComponentName=mscExampleObjectIdComponentName, mscExampleFixedPtOperFreeFixedPtVectorEntry=mscExampleFixedPtOperFreeFixedPtVectorEntry, mscExampleDecimalOsIntVectorValue=mscExampleDecimalOsIntVectorValue, mscExampleDecimalOsIntArrayTable=mscExampleDecimalOsIntArrayTable, mscExampleSignedProvisionalEntry=mscExampleSignedProvisionalEntry, mscExampleExtendedOperFreeExtendedVectorIndex=mscExampleExtendedOperFreeExtendedVectorIndex, mscExampleMiscellaneousProvFreeTimeDateTimeMinute=mscExampleMiscellaneousProvFreeTimeDateTimeMinute, mscExampleEnumOperFreeEnumListEntry=mscExampleEnumOperFreeEnumListEntry, mscExampleSignedRowStatus=mscExampleSignedRowStatus, mscExampleStringProvFreeAsciiOnly=mscExampleStringProvFreeAsciiOnly, mscExampleWildBcdOperationalEntry=mscExampleWildBcdOperationalEntry, mscExampleStringOperFreeStrListTable=mscExampleStringOperFreeStrListTable, mscFriPfListSignedTable=mscFriPfListSignedTable, mscExampleDecimalPfIntList1Entry=mscExampleDecimalPfIntList1Entry, mscExampleSignedOperFreeSignedVectorValue=mscExampleSignedOperFreeSignedVectorValue, mscExampleMiscellaneousProvFreeTimeList3Entry=mscExampleMiscellaneousProvFreeTimeList3Entry, mscExampleExtendedProvFreeExtendedVectorEntry=mscExampleExtendedProvFreeExtendedVectorEntry, mscExampleHexProvFreeHexReplicatedEntry=mscExampleHexProvFreeHexReplicatedEntry, mscExampleHexProvFreeHexReplicatedValue=mscExampleHexProvFreeHexReplicatedValue, mscFriDnaOperationalTable=mscFriDnaOperationalTable, mscExampleExtendedRowStatus=mscExampleExtendedRowStatus, mscExampleHexProvFreeHexVector1Value=mscExampleHexProvFreeHexVector1Value, mscExampleFourIndicesProvAttribute=mscExampleFourIndicesProvAttribute, mscExampleBcdRowStatusEntry=mscExampleBcdRowStatusEntry, mscExampleDashedOfDashedArrayTable=mscExampleDashedOfDashedArrayTable, mscFriDynOpDynOpJrOperationalEntry=mscFriDynOpDynOpJrOperationalEntry, mscFriOperationalFreeSimpleSigned=mscFriOperationalFreeSimpleSigned, mscExampleIpAddressOperStructIpAddressVectorValue=mscExampleIpAddressOperStructIpAddressVectorValue, mscExampleBcdIndicesRowStatusEntry=mscExampleBcdIndicesRowStatusEntry, mscExampleDecimalPfIntVectorValue=mscExampleDecimalPfIntVectorValue, mscExampleDashedIndicesStorageType=mscExampleDashedIndicesStorageType, mscExampleFixedPtOperFreeFixedPtReplicatedTable=mscExampleFixedPtOperFreeFixedPtReplicatedTable, mscFriOperationalStructSimpleSequence=mscFriOperationalStructSimpleSequence, mscExampleWildBcdOperFreeWildBcdReplicatedIndex=mscExampleWildBcdOperFreeWildBcdReplicatedIndex, mscExampleExtendedOperFreeExtendedListEntry=mscExampleExtendedOperFreeExtendedListEntry, mscExampleDashedProvFreeDashedArrayColumnIndex=mscExampleDashedProvFreeDashedArrayColumnIndex, mscExampleMiscellaneousProvFreeTimeListEntry=mscExampleMiscellaneousProvFreeTimeListEntry, mscExampleProvSignedSubCreatedRowStatus=mscExampleProvSignedSubCreatedRowStatus, mscExampleSignedProvisionalTable=mscExampleSignedProvisionalTable, mscExampleSignedOperFreeSignedListRowStatus=mscExampleSignedOperFreeSignedListRowStatus, mscFriDynOpOptionalRowStatus=mscFriDynOpOptionalRowStatus, mscFriDnaProvisionalEntry=mscFriDnaProvisionalEntry, mscExampleProvStringSubCreatedTable=mscExampleProvStringSubCreatedTable, mscExampleFixedPtOperStructFixedPtArrayRowIndex=mscExampleFixedPtOperStructFixedPtArrayRowIndex, mscExampleWildBcdOperFreeWildBcd=mscExampleWildBcdOperFreeWildBcd, mscExampleEnumOperFreeEnumReplicatedValue=mscExampleEnumOperFreeEnumReplicatedValue, mscExampleExtendedOperStructExtendedArrayRowIndex=mscExampleExtendedOperStructExtendedArrayRowIndex, mscExampleEnumOperFreeEnumListTable=mscExampleEnumOperFreeEnumListTable, mscExampleDecimalIndicesProvisionedTable=mscExampleDecimalIndicesProvisionedTable, mscExampleExtendedProvStructExtendedVectorValue=mscExampleExtendedProvStructExtendedVectorValue, mscExampleDecimalOfIntArrayEntry=mscExampleDecimalOfIntArrayEntry, mscExampleFixedPtComponentName=mscExampleFixedPtComponentName, mscExampleFixedPtRowStatus=mscExampleFixedPtRowStatus, mscExampleSignedProvFreeSignedReplicatedRowStatus=mscExampleSignedProvFreeSignedReplicatedRowStatus, mscExampleEnumProvFreeEnumVector1Index=mscExampleEnumProvFreeEnumVector1Index, mscExampleBcdOperFreeBcdVectorValue=mscExampleBcdOperFreeBcdVectorValue, mscExampleDecimalPfIntArrayTable=mscExampleDecimalPfIntArrayTable, mscExampleHexProvFreeHexArray2RowIndex=mscExampleHexProvFreeHexArray2RowIndex, mscExampleBcdProvFreeBcdReplicated1RowStatus=mscExampleBcdProvFreeBcdReplicated1RowStatus, mscExampleObjectIdRowStatus=mscExampleObjectIdRowStatus, mscExampleMiscellaneousOperStructCounter64=mscExampleMiscellaneousOperStructCounter64, mscExampleProvStringSubCreatedEntry=mscExampleProvStringSubCreatedEntry, mscExampleNsapNativeValue=mscExampleNsapNativeValue, mscExampleMiscellaneousOperFreeTimeListRowStatus=mscExampleMiscellaneousOperFreeTimeListRowStatus, mscExampleSignedProvFreeSignedReplicatedEntry=mscExampleSignedProvFreeSignedReplicatedEntry, mscFriEventRowStatusTable=mscFriEventRowStatusTable, mscExampleFixedPtOperFreeFixedPtReplicatedValue=mscExampleFixedPtOperFreeFixedPtReplicatedValue, mscExampleMiscellaneousProvFreeTimeListTable=mscExampleMiscellaneousProvFreeTimeListTable, mscFriRowStatusTable=mscFriRowStatusTable, mscExampleHexProvFreeHexArrayColumnIndex=mscExampleHexProvFreeHexArrayColumnIndex, mscExampleFixedPtOperStructFixedPtVectorEntry=mscExampleFixedPtOperStructFixedPtVectorEntry, mscExampleOperEnumSubCreatedValue=mscExampleOperEnumSubCreatedValue, mscExampleOperEnumSubCreatedEntry=mscExampleOperEnumSubCreatedEntry, mscExampleBcd=mscExampleBcd, mscExampleIpAddrIndices=mscExampleIpAddrIndices, mscRegisteredIndex=mscRegisteredIndex, mscExampleDecimalOsIntVectorIndex=mscExampleDecimalOsIntVectorIndex, mscExampleStringOperStructHexOnly=mscExampleStringOperStructHexOnly, mscExampleDashedIndicesProvisionedTable=mscExampleDashedIndicesProvisionedTable, mscExampleStringProvFreeStrArrayRowIndex=mscExampleStringProvFreeStrArrayRowIndex, mscExampleSignedOperFreeSignedListEntry=mscExampleSignedOperFreeSignedListEntry, mscExampleMiscellaneousProvFreeLongListRowStatus=mscExampleMiscellaneousProvFreeLongListRowStatus, mscExampleBcdComponentName=mscExampleBcdComponentName, mscExampleBcdOperFreeBcdListValue=mscExampleBcdOperFreeBcdListValue, mscExampleOperDecimalSubCreatedEntry=mscExampleOperDecimalSubCreatedEntry, mscFriProvisionalStructSimpleHex=mscFriProvisionalStructSimpleHex, mscExampleWildBcdOperFreeWildBcdReplicatedRowStatus=mscExampleWildBcdOperFreeWildBcdReplicatedRowStatus, mscExampleDashedOperStructDashed=mscExampleDashedOperStructDashed, mscExampleHex=mscExampleHex, mscExampleDashedOfDashedArrayColumnIndex=mscExampleDashedOfDashedArrayColumnIndex, mscExampleHexProvFreeHexVector2Entry=mscExampleHexProvFreeHexVector2Entry, mscExampleWildBcdProvFreeWildBcdVectorValue=mscExampleWildBcdProvFreeWildBcdVectorValue, mscExampleHexProvFreeHexReplicated1Index=mscExampleHexProvFreeHexReplicated1Index, mscExampleStringProvisionalEntry=mscExampleStringProvisionalEntry, mscExampleObjectIdOperationalTable=mscExampleObjectIdOperationalTable, mscExampleFixedPtOperFreeFixedPtArrayTable=mscExampleFixedPtOperFreeFixedPtArrayTable, mscExampleExtendedOperFreeExtendedVectorValue=mscExampleExtendedOperFreeExtendedVectorValue, mscExampleWildBcdProvFreeWildBcdArrayRowIndex=mscExampleWildBcdProvFreeWildBcdArrayRowIndex, mscExampleEnumComponentName=mscExampleEnumComponentName, mscFriEscapeSet=mscFriEscapeSet, mscFriProvisionalTable=mscFriProvisionalTable, mscExampleDashedProvFreeDashedVectorValue=mscExampleDashedProvFreeDashedVectorValue, mscFriProvisionalFreeSimpleDashed=mscFriProvisionalFreeSimpleDashed, mscFriDynOpDynOpJr=mscFriDynOpDynOpJr, mscExampleStringProvFreeHexOnly1=mscExampleStringProvFreeHexOnly1, mscExampleEnumProvStructEnumArrayTable=mscExampleEnumProvStructEnumArrayTable, mscExampleStringOperFreeStrArrayColumnIndex=mscExampleStringOperFreeStrArrayColumnIndex, mscExampleWildBcdProvFreeWildBcd=mscExampleWildBcdProvFreeWildBcd, mscExampleEnumOperFreeEnumSet=mscExampleEnumOperFreeEnumSet, mscExampleSequenceProvisionalTable=mscExampleSequenceProvisionalTable, mscFriDynOpRowStatusTable=mscFriDynOpRowStatusTable, mscExampleEnumProvFreeEnumReplicatedRowStatus=mscExampleEnumProvFreeEnumReplicatedRowStatus, mscExampleAsciiIndicesTwoIndex=mscExampleAsciiIndicesTwoIndex, mscExampleStringProvFreeStrVector1Index=mscExampleStringProvFreeStrVector1Index, mscFriProvisionalStructSimpleSequence=mscFriProvisionalStructSimpleSequence, mscExampleIpAddressProvFreeIpAddressArrayColumnIndex=mscExampleIpAddressProvFreeIpAddressArrayColumnIndex, mscExampleWildBcdOperFreeWildBcdListTable=mscExampleWildBcdOperFreeWildBcdListTable, mscExampleStringOperFreeStrArrayRowIndex=mscExampleStringOperFreeStrArrayRowIndex, mscExampleEnumIndicesThreeIndex=mscExampleEnumIndicesThreeIndex, mscExampleMiscellaneousOperFreeGauge64=mscExampleMiscellaneousOperFreeGauge64, mscExampleFourIndicesRowStatusEntry=mscExampleFourIndicesRowStatusEntry, mscExampleSequenceProvFreeSequenceListTable=mscExampleSequenceProvFreeSequenceListTable, mscExampleBcdRowStatus=mscExampleBcdRowStatus, mscExampleNsapRowStatus=mscExampleNsapRowStatus, mscExampleNsapAtmAddrEntry=mscExampleNsapAtmAddrEntry, mscExampleEnumProvFreeEnumArray1Entry=mscExampleEnumProvFreeEnumArray1Entry, mscExampleBcdProvFreeBcdList1Table=mscExampleBcdProvFreeBcdList1Table, mscExampleBcdProvFreeBcdVector1Entry=mscExampleBcdProvFreeBcdVector1Entry, mscExampleEnumRowStatusEntry=mscExampleEnumRowStatusEntry, mscExampleIpAddressProvFreeIpAddressArray1Entry=mscExampleIpAddressProvFreeIpAddressArray1Entry, mscExampleMiscellaneousProvFreeLongReplicatedValue=mscExampleMiscellaneousProvFreeLongReplicatedValue, mscExampleSignedOperFreeSignedVectorIndex=mscExampleSignedOperFreeSignedVectorIndex, mscExampleFixedPtOperFreeFixedPtListValue=mscExampleFixedPtOperFreeFixedPtListValue, mscExampleWildBcdProvFreeWildBcdReplicatedValue=mscExampleWildBcdProvFreeWildBcdReplicatedValue, mscExampleHexProvFreeHexListEntry=mscExampleHexProvFreeHexListEntry, mscFriOperationalFreeSimpleAscii=mscFriOperationalFreeSimpleAscii, mscExampleDecimalOfIntVectorIndex=mscExampleDecimalOfIntVectorIndex, mscExampleFixedPtOperStructFixedPtVectorValue=mscExampleFixedPtOperStructFixedPtVectorValue, mscExampleStringProvisionalTable=mscExampleStringProvisionalTable, mscExampleDecimalOsIntVectorTable=mscExampleDecimalOsIntVectorTable, mscExampleObjectIdOperFreeObjIdReplicatedTable=mscExampleObjectIdOperFreeObjIdReplicatedTable, mscExampleHexOfHexArrayTable=mscExampleHexOfHexArrayTable, mscExampleExtendedProvStructExtendedArrayValue=mscExampleExtendedProvStructExtendedArrayValue, mscExampleWildBcdProvFreeWildBcdVectorEntry=mscExampleWildBcdProvFreeWildBcdVectorEntry, mscExampleWildBcdOperFreeWildBcdReplicatedValue=mscExampleWildBcdOperFreeWildBcdReplicatedValue, mscExampleHexProvFreeHexArray2Entry=mscExampleHexProvFreeHexArray2Entry, mscFriProvisionalEntry=mscFriProvisionalEntry, mscExampleDecimalProvisionalTable=mscExampleDecimalProvisionalTable, mscExampleIpAddressProvFreeIpAddressListValue=mscExampleIpAddressProvFreeIpAddressListValue, mscExampleObjectIdOperFreeObjIdListValue=mscExampleObjectIdOperFreeObjIdListValue, mscFriAdminState=mscFriAdminState, mscExampleSequenceOperFreeSequenceListEntry=mscExampleSequenceOperFreeSequenceListEntry, mscExampleBcdOperFreeBcdListRowStatus=mscExampleBcdOperFreeBcdListRowStatus, mscExampleEnumStorageType=mscExampleEnumStorageType, mscExampleDashedOfDashedReplicatedEntry=mscExampleDashedOfDashedReplicatedEntry, mscExampleFixedPtProvFixedPtSubcomponent=mscExampleFixedPtProvFixedPtSubcomponent, mscExampleSignedProvFreeSignedListValue=mscExampleSignedProvFreeSignedListValue, mscExampleAsciiIndicesOneIndex=mscExampleAsciiIndicesOneIndex, mscExampleDecimalOsIntArrayEntry=mscExampleDecimalOsIntArrayEntry, mscExampleMiscellaneousStorageType=mscExampleMiscellaneousStorageType, mscExampleDecimalIndicesComponentName=mscExampleDecimalIndicesComponentName, mscExampleStringRowStatus=mscExampleStringRowStatus, mscExampleStringProvFreeStrVector1Entry=mscExampleStringProvFreeStrVector1Entry, mscExampleWildBcdRowStatus=mscExampleWildBcdRowStatus, mscExampleWildBcdProvFreeWildBcdListRowStatus=mscExampleWildBcdProvFreeWildBcdListRowStatus, mscExampleSignedProvFreeSignedListEntry=mscExampleSignedProvFreeSignedListEntry, mscExampleSignedOperFreeSignedReplicatedRowStatus=mscExampleSignedOperFreeSignedReplicatedRowStatus, mscExampleDecimalIndicesProvAttribute=mscExampleDecimalIndicesProvAttribute, mscExampleDashedProvStructDashedVectorEntry=mscExampleDashedProvStructDashedVectorEntry, mscExampleDecimalPfIntArray1Entry=mscExampleDecimalPfIntArray1Entry, mscExampleSequenceProvFreeSequenceReplicatedTable=mscExampleSequenceProvFreeSequenceReplicatedTable, mscExampleEnumProvFreeEnumArrayTable=mscExampleEnumProvFreeEnumArrayTable, mscExampleMiscellaneousProvFreeTime=mscExampleMiscellaneousProvFreeTime, mscFriPfListSignedEntry=mscFriPfListSignedEntry, mscExampleOperFixedPtSubcomponentsCreatedValue=mscExampleOperFixedPtSubcomponentsCreatedValue, mscExampleHexOperationalTable=mscExampleHexOperationalTable, mscExampleBcdProvFreeBcdVectorIndex=mscExampleBcdProvFreeBcdVectorIndex, mscExampleIpAddressOperStructIpAddress=mscExampleIpAddressOperStructIpAddress, mscExampleIpAddressOperStructIpAddressArrayEntry=mscExampleIpAddressOperStructIpAddressArrayEntry, mscExampleSequenceProvFreeSequence=mscExampleSequenceProvFreeSequence, mscExampleSignedProvSignedSub=mscExampleSignedProvSignedSub, mscExampleSignedProvFreeSignedArrayRowIndex=mscExampleSignedProvFreeSignedArrayRowIndex, mscFriProvisionalStructSimpleUnsigned=mscFriProvisionalStructSimpleUnsigned, mscExampleMiscellaneousProvFreeTimeReplicatedIndex=mscExampleMiscellaneousProvFreeTimeReplicatedIndex, mscExampleMiscellaneousProvFreeLongListEntry=mscExampleMiscellaneousProvFreeLongListEntry, mscExampleOperDecimalSubCreatedRowStatus=mscExampleOperDecimalSubCreatedRowStatus, mscExampleWildBcdProvisionalEntry=mscExampleWildBcdProvisionalEntry, mscExampleHexOperationalEntry=mscExampleHexOperationalEntry, mscExampleFixedPtProvFreeFixedPtReplicatedIndex=mscExampleFixedPtProvFreeFixedPtReplicatedIndex, mscExampleDecimalIndicesOneIndex=mscExampleDecimalIndicesOneIndex, mscFriDynOpInitialProvAttribute=mscFriDynOpInitialProvAttribute, mscExampleStringOperFreeStrArrayEntry=mscExampleStringOperFreeStrArrayEntry, mscExampleStringOperFreeStrVectorValue=mscExampleStringOperFreeStrVectorValue, mscExampleMiscellaneousOperFreeLongListRowStatus=mscExampleMiscellaneousOperFreeLongListRowStatus, mscExampleDecimalOsIntArrayValue=mscExampleDecimalOsIntArrayValue, mscExampleWildBcdOperStructWildBcdArrayEntry=mscExampleWildBcdOperStructWildBcdArrayEntry, mscExampleObjectIdIndex=mscExampleObjectIdIndex, mscExampleSequenceProvFreeSequenceReplicatedIndex=mscExampleSequenceProvFreeSequenceReplicatedIndex, mscFriDynOpInitial=mscFriDynOpInitial, mscFriDynOpOptionalIndex=mscFriDynOpOptionalIndex, mscExampleExtendedProvStructExtendedVectorIndex=mscExampleExtendedProvStructExtendedVectorIndex, mscExampleHexProvFreeHexVector1Index=mscExampleHexProvFreeHexVector1Index, mscExampleFixedPtOperStructFixedPtArrayColumnIndex=mscExampleFixedPtOperStructFixedPtArrayColumnIndex, mscExampleHexProvFreeHexList1Table=mscExampleHexProvFreeHexList1Table, mscExampleBcdProvFreeBcdArrayValue=mscExampleBcdProvFreeBcdArrayValue, mscExampleSequenceOperFreeSequenceReplicatedEntry=mscExampleSequenceOperFreeSequenceReplicatedEntry, mscExampleHexProvFreeHexList1Value=mscExampleHexProvFreeHexList1Value, mscExampleExtendedProvFreeExtendedReplicatedIndex=mscExampleExtendedProvFreeExtendedReplicatedIndex, mscExampleIpAddressProvStructIpAddressArrayTable=mscExampleIpAddressProvStructIpAddressArrayTable, mscExampleOperationalTable=mscExampleOperationalTable, mscExampleDashedOfDashedVectorTable=mscExampleDashedOfDashedVectorTable, mscExampleHexIndices=mscExampleHexIndices, mscExampleRowStatus=mscExampleRowStatus, mscFriDynOpOperationalTable=mscFriDynOpOperationalTable, mscExampleSignedOperFreeSignedListTable=mscExampleSignedOperFreeSignedListTable, mscFriUsageState=mscFriUsageState, mscExampleMiscellaneousProvFreeTimeList2RowStatus=mscExampleMiscellaneousProvFreeTimeList2RowStatus, mscFriRowStatus=mscFriRowStatus, mscExampleProvEnumSubCreatedEntry=mscExampleProvEnumSubCreatedEntry, mscExampleMiscellaneousRowStatusEntry=mscExampleMiscellaneousRowStatusEntry)
mibBuilder.exportSymbols('Nortel-MsCarrier-MscPassport-CasTestMIB', mscExampleEnumOperationalEntry=mscExampleEnumOperationalEntry, mscExampleFixedPtOperStructFixedPtArrayTable=mscExampleFixedPtOperStructFixedPtArrayTable, mscExampleAsciiIndicesRowStatusEntry=mscExampleAsciiIndicesRowStatusEntry, mscFriEscapeCopyAttribute=mscFriEscapeCopyAttribute, mscExampleDashedProvFreeDashedArrayTable=mscExampleDashedProvFreeDashedArrayTable, mscExampleSequenceProvFreeSequenceListEntry=mscExampleSequenceProvFreeSequenceListEntry, mscExampleStringOperStructStrVectorIndex=mscExampleStringOperStructStrVectorIndex, mscExampleFixedPtProvFreeFixedPtArrayValue=mscExampleFixedPtProvFreeFixedPtArrayValue, mscExampleBcdProvFreeBcdVectorTable=mscExampleBcdProvFreeBcdVectorTable, mscFriProvisionalFreeSimpleFixed=mscFriProvisionalFreeSimpleFixed, mscExampleBcdOperFreeBcdArrayColumnIndex=mscExampleBcdOperFreeBcdArrayColumnIndex, mscFriStorageType=mscFriStorageType, mscExampleHexProvFreeHexListTable=mscExampleHexProvFreeHexListTable, mscExampleSignedProvStructSignedArrayColumnIndex=mscExampleSignedProvStructSignedArrayColumnIndex, mscExampleWildBcdProvFreeWildBcdListEntry=mscExampleWildBcdProvFreeWildBcdListEntry, mscExampleIpAddressOperFreeIpAddressListTable=mscExampleIpAddressOperFreeIpAddressListTable, mscExampleBcdOperFreeBcdReplicatedValue=mscExampleBcdOperFreeBcdReplicatedValue, mscExampleDecimalOsIntArrayColumnIndex=mscExampleDecimalOsIntArrayColumnIndex, mscExampleHexOsHexArrayRowIndex=mscExampleHexOsHexArrayRowIndex, mscFriProvisionalStructSimpleBcd=mscFriProvisionalStructSimpleBcd, mscExampleThreeIndicesTwoIndex=mscExampleThreeIndicesTwoIndex, mscExampleIpAddressProvFreeIpAddressVectorValue=mscExampleIpAddressProvFreeIpAddressVectorValue, mscExampleHexIndicesStorageType=mscExampleHexIndicesStorageType, mscExampleSequenceProvFreeSequenceListRowStatus=mscExampleSequenceProvFreeSequenceListRowStatus, mscExampleExtendedProvFreeExtendedArrayValue=mscExampleExtendedProvFreeExtendedArrayValue, mscExampleHexStrIndicesTwoIndex=mscExampleHexStrIndicesTwoIndex, mscExampleIpAddressRowStatusEntry=mscExampleIpAddressRowStatusEntry, mscExampleSignedProvFreeSignedArray1RowIndex=mscExampleSignedProvFreeSignedArray1RowIndex, mscFriDynOpOperationalEntry=mscFriDynOpOperationalEntry, mscExampleBcdProvFreeBcdArrayEntry=mscExampleBcdProvFreeBcdArrayEntry, mscExampleSequenceIndicesOneIndex=mscExampleSequenceIndicesOneIndex, mscExampleObjIdIndicesStorageType=mscExampleObjIdIndicesStorageType, mscExampleTwoIndicesRowStatus=mscExampleTwoIndicesRowStatus, mscExampleFixedPtOperationalEntry=mscExampleFixedPtOperationalEntry, mscExampleStringOperFreeStrArrayTable=mscExampleStringOperFreeStrArrayTable, mscExampleDecimalOperFreeTimeInterval=mscExampleDecimalOperFreeTimeInterval, mscExampleBcdProvStructBcdArrayEntry=mscExampleBcdProvStructBcdArrayEntry, mscExampleHexProvFreeHexVectorValue=mscExampleHexProvFreeHexVectorValue, mscExampleIpAddressOperFreeIpAddressArrayEntry=mscExampleIpAddressOperFreeIpAddressArrayEntry, mscExampleWildBcdProvFreeWildBcdArrayValue=mscExampleWildBcdProvFreeWildBcdArrayValue, mscExampleMiscellaneousProvFreeTimeList1Entry=mscExampleMiscellaneousProvFreeTimeList1Entry, mscExampleHexIndicesProvisionedEntry=mscExampleHexIndicesProvisionedEntry, mscExampleDashedProvFreeDashedVectorEntry=mscExampleDashedProvFreeDashedVectorEntry, mscExampleHexIndex=mscExampleHexIndex, mscExampleBcdProvFreeBcdArray1RowIndex=mscExampleBcdProvFreeBcdArray1RowIndex, mscExampleStringOperStructStrVectorEntry=mscExampleStringOperStructStrVectorEntry, mscExampleSignedOperFreeSignedReplicatedEntry=mscExampleSignedOperFreeSignedReplicatedEntry, mscExampleFixedPtProvFreeFixedPtListEntry=mscExampleFixedPtProvFreeFixedPtListEntry, mscExampleDashedIndices=mscExampleDashedIndices, mscExampleIpAddressProvFreeIpAddressArrayRowIndex=mscExampleIpAddressProvFreeIpAddressArrayRowIndex, mscExampleStringProvStructStrArrayColumnIndex=mscExampleStringProvStructStrArrayColumnIndex, mscExampleProvisionalEntry=mscExampleProvisionalEntry, mscExampleFixedPtOperationalTable=mscExampleFixedPtOperationalTable, mscExampleDashedProvStructDashedArrayRowIndex=mscExampleDashedProvStructDashedArrayRowIndex, mscExampleExtendedIndex=mscExampleExtendedIndex, mscExampleHexOfHexVectorIndex=mscExampleHexOfHexVectorIndex, mscExampleEnumOperStructEnumVectorValue=mscExampleEnumOperStructEnumVectorValue, mscExample=mscExample, casTestCapabilities=casTestCapabilities, mscExampleObjectIdOperFreeObjIdReplicatedValue=mscExampleObjectIdOperFreeObjIdReplicatedValue, mscExampleSignedProvStructSignedArrayTable=mscExampleSignedProvStructSignedArrayTable, mscExampleMiscellaneousProvFreeTimeTimeOnly=mscExampleMiscellaneousProvFreeTimeTimeOnly, mscExampleBcdProvFreeBcdListRowStatus=mscExampleBcdProvFreeBcdListRowStatus, mscExampleEnumProvFreeEnum=mscExampleEnumProvFreeEnum, mscExampleStringProvFreeStrListTable=mscExampleStringProvFreeStrListTable, mscExampleMiscellaneousOperFreeLongListEntry=mscExampleMiscellaneousOperFreeLongListEntry, mscExampleSequenceOperFreeSequenceListValue=mscExampleSequenceOperFreeSequenceListValue, mscExampleHexProvStructHexArrayRowIndex=mscExampleHexProvStructHexArrayRowIndex, mscExampleStringOperStructStrArrayColumnIndex=mscExampleStringOperStructStrArrayColumnIndex, mscExampleObjIdIndicesTwoIndex=mscExampleObjIdIndicesTwoIndex, mscExampleStringProvFreeStrArrayEntry=mscExampleStringProvFreeStrArrayEntry, mscExampleOperSignedSubCreatedValue=mscExampleOperSignedSubCreatedValue, mscExampleDecimalPsIntVectorEntry=mscExampleDecimalPsIntVectorEntry, mscExampleEnumProvFreeEnumVectorEntry=mscExampleEnumProvFreeEnumVectorEntry, mscExampleExtendedOperFreeExtendedArrayColumnIndex=mscExampleExtendedOperFreeExtendedArrayColumnIndex, mscExampleIpAddressOperFreeIpAddressReplicatedIndex=mscExampleIpAddressOperFreeIpAddressReplicatedIndex, mscExampleThreeIndicesRowStatusEntry=mscExampleThreeIndicesRowStatusEntry, mscExampleHexStrIndicesProvisionedEntry=mscExampleHexStrIndicesProvisionedEntry, mscExampleIpAddress=mscExampleIpAddress, mscExampleFourIndicesTwoIndex=mscExampleFourIndicesTwoIndex, mscExampleIpAddressProvFreeIpAddressListTable=mscExampleIpAddressProvFreeIpAddressListTable, mscExampleIpAddressIndex=mscExampleIpAddressIndex, mscExampleObjectIdOperFreeObjId=mscExampleObjectIdOperFreeObjId, mscExampleIpAddressProvFreeIpAddressReplicatedRowStatus=mscExampleIpAddressProvFreeIpAddressReplicatedRowStatus, mscExampleObjectIdProvFreeObjIdListEntry=mscExampleObjectIdProvFreeObjIdListEntry, mscFriRegisteredRowStatusEntry=mscFriRegisteredRowStatusEntry, mscFriDynOpDynamicAttribute=mscFriDynOpDynamicAttribute, mscExampleEnumProvFreeEnumListValue=mscExampleEnumProvFreeEnumListValue, mscExampleIpAddressOperFreeIpAddressVectorValue=mscExampleIpAddressOperFreeIpAddressVectorValue, mscExampleBcdOperFreeBcd=mscExampleBcdOperFreeBcd, mscExampleSignedProvFreeSignedArrayEntry=mscExampleSignedProvFreeSignedArrayEntry, mscExampleStringOperStructStrVectorValue=mscExampleStringOperStructStrVectorValue, mscExampleSignedOperFreeSignedVectorTable=mscExampleSignedOperFreeSignedVectorTable, mscExampleEnumOperFreeEnumArrayMonthIndex=mscExampleEnumOperFreeEnumArrayMonthIndex, mscExampleStringProvFreeStrList1Table=mscExampleStringProvFreeStrList1Table, mscFriProvisionalFreeSimpleHex=mscFriProvisionalFreeSimpleHex, mscFriOperationalStructSetUnsigned=mscFriOperationalStructSetUnsigned, mscExampleDecimalPfIntListValue=mscExampleDecimalPfIntListValue, mscExampleBcdIndicesRowStatusTable=mscExampleBcdIndicesRowStatusTable, mscExampleWildBcdOperFreeWildBcdArrayColumnIndex=mscExampleWildBcdOperFreeWildBcdArrayColumnIndex, mscExampleEnumProvFreeEnumArrayMonthIndex=mscExampleEnumProvFreeEnumArrayMonthIndex, mscFriPfListSignedValue=mscFriPfListSignedValue, mscExampleStringProvStructStrVectorValue=mscExampleStringProvStructStrVectorValue, mscExampleFixedPtOperFreeFixedPtArrayValue=mscExampleFixedPtOperFreeFixedPtArrayValue, mscExampleMiscellaneousOperFreeLongListTable=mscExampleMiscellaneousOperFreeLongListTable, mscExampleIpAddressOperFreeIpAddressReplicatedRowStatus=mscExampleIpAddressOperFreeIpAddressReplicatedRowStatus, mscExampleIpAddressOperFreeIpAddressReplicatedTable=mscExampleIpAddressOperFreeIpAddressReplicatedTable, mscExampleMiscellaneousProvFreeTimeList3Value=mscExampleMiscellaneousProvFreeTimeList3Value, mscExampleFixedPtProvStructFixedPtVectorIndex=mscExampleFixedPtProvStructFixedPtVectorIndex, mscExampleWildBcdOperStructWildBcdArrayTable=mscExampleWildBcdOperStructWildBcdArrayTable, mscExampleDecimalPsIntVectorTable=mscExampleDecimalPsIntVectorTable, mscExampleStringRowStatusTable=mscExampleStringRowStatusTable, mscExampleMiscellaneousOperFreeTimeDateTimeMinute=mscExampleMiscellaneousOperFreeTimeDateTimeMinute, mscExampleStringOperFreeStrVectorTable=mscExampleStringOperFreeStrVectorTable, mscExampleBcdProvStructBcdVectorEntry=mscExampleBcdProvStructBcdVectorEntry, mscExampleHexProvStructHex=mscExampleHexProvStructHex, mscFriDynamicStorageType=mscFriDynamicStorageType, casTestCapabilitiesCA=casTestCapabilitiesCA, mscExampleHexOfHexVectorEntry=mscExampleHexOfHexVectorEntry, mscExampleDecimalPfIntArray1Table=mscExampleDecimalPfIntArray1Table, mscExampleHexProvFreeHexArrayValue=mscExampleHexProvFreeHexArrayValue, mscExampleDecimalOsIntArrayRowIndex=mscExampleDecimalOsIntArrayRowIndex, mscExampleMiscellaneousProvFreeTimeList3Table=mscExampleMiscellaneousProvFreeTimeList3Table, mscExampleHexStrIndicesComponentName=mscExampleHexStrIndicesComponentName, mscExampleMiscellaneousOperFreeTimeTimeOnly=mscExampleMiscellaneousOperFreeTimeTimeOnly, mscExampleAsciiIndicesProvisionedEntry=mscExampleAsciiIndicesProvisionedEntry, mscExampleEnumIndicesComponentName=mscExampleEnumIndicesComponentName, mscExampleWildBcdStorageType=mscExampleWildBcdStorageType, mscExampleBcdProvFreeBcdList1Entry=mscExampleBcdProvFreeBcdList1Entry, mscFriPfListFixedRowStatus=mscFriPfListFixedRowStatus, mscExampleDecimalOfIntReplicatedIndex=mscExampleDecimalOfIntReplicatedIndex, mscFriOfListEnumerationRowStatus=mscFriOfListEnumerationRowStatus, mscExampleObjectIdStorageType=mscExampleObjectIdStorageType, mscExampleIpAddressOperStructIpAddressVectorIndex=mscExampleIpAddressOperStructIpAddressVectorIndex, mscExampleFixedPtProvisionalEntry=mscExampleFixedPtProvisionalEntry, mscExampleWildBcdProvFreeWildBcdArrayColumnIndex=mscExampleWildBcdProvFreeWildBcdArrayColumnIndex, mscExampleIpAddressProvFreeIpAddressArray1RowIndex=mscExampleIpAddressProvFreeIpAddressArray1RowIndex, mscExampleDecimalPsIntArrayTable=mscExampleDecimalPsIntArrayTable, mscExampleProvFixedPtSubCreatedTable=mscExampleProvFixedPtSubCreatedTable, mscFriOperationalTable=mscFriOperationalTable, mscFriDnaStorageType=mscFriDnaStorageType, mscExampleSequenceProvFreeSequenceListValue=mscExampleSequenceProvFreeSequenceListValue, mscExampleOperFixedPtSubcomponentsCreatedEntry=mscExampleOperFixedPtSubcomponentsCreatedEntry, mscExampleWildBcdProvisionalTable=mscExampleWildBcdProvisionalTable, mscFriEscapeCheckAttribute=mscFriEscapeCheckAttribute, mscExampleBcdIndicesRowStatus=mscExampleBcdIndicesRowStatus, mscFriStandbyStatus=mscFriStandbyStatus, mscExampleHexStrIndicesRowStatusEntry=mscExampleHexStrIndicesRowStatusEntry, mscExampleDecimalOfIntArrayColumnIndex=mscExampleDecimalOfIntArrayColumnIndex, mscExampleAsciiIndicesStorageType=mscExampleAsciiIndicesStorageType, mscExampleIpAddressProvFreeIpAddress1=mscExampleIpAddressProvFreeIpAddress1, mscExampleIpAddressOperStructIpAddressArrayRowIndex=mscExampleIpAddressOperStructIpAddressArrayRowIndex, mscExampleHexIndicesProvAttribute=mscExampleHexIndicesProvAttribute, mscExampleStringOperFreeStrReplicatedRowStatus=mscExampleStringOperFreeStrReplicatedRowStatus, mscExampleEnumOperStructEnumVectorTable=mscExampleEnumOperStructEnumVectorTable, mscFriDynamicIndex=mscFriDynamicIndex, mscExampleSignedOperStructSignedArrayColumnIndex=mscExampleSignedOperStructSignedArrayColumnIndex, mscExampleBcdOperStructBcdArrayRowIndex=mscExampleBcdOperStructBcdArrayRowIndex, mscExampleBcdIndicesProvisionedTable=mscExampleBcdIndicesProvisionedTable, mscExampleDecimalOperFreeInteger=mscExampleDecimalOperFreeInteger, mscExampleEnumProvStructEnumArrayDayIndex=mscExampleEnumProvStructEnumArrayDayIndex, mscExampleOperFixedPtSubcomponentsCreatedTable=mscExampleOperFixedPtSubcomponentsCreatedTable, mscFriOfListEnumerationTable=mscFriOfListEnumerationTable, mscExampleHexProvFreeHexReplicated1RowStatus=mscExampleHexProvFreeHexReplicated1RowStatus, mscFriOperationalFreeSimpleDashed=mscFriOperationalFreeSimpleDashed, mscExampleExtendedProvStructExtendedVectorEntry=mscExampleExtendedProvStructExtendedVectorEntry, mscExampleProvStringSubCreatedValue=mscExampleProvStringSubCreatedValue, mscExampleBcdProvEnumSub=mscExampleBcdProvEnumSub, mscExampleProvMyComponentName=mscExampleProvMyComponentName, mscExampleBcdOperStructBcdArrayEntry=mscExampleBcdOperStructBcdArrayEntry, mscExampleHexProvFreeHexVectorIndex=mscExampleHexProvFreeHexVectorIndex, mscExampleSignedProvStructSignedVectorEntry=mscExampleSignedProvStructSignedVectorEntry, mscExampleBcdProvStructBcdVectorValue=mscExampleBcdProvStructBcdVectorValue, mscExampleMiscellaneousProvEnumSub=mscExampleMiscellaneousProvEnumSub, mscExampleDecimalOfIntArrayValue=mscExampleDecimalOfIntArrayValue, mscExampleSignedProvFreeSignedReplicatedIndex=mscExampleSignedProvFreeSignedReplicatedIndex, mscExampleDashedProvFreeDashedArrayRowIndex=mscExampleDashedProvFreeDashedArrayRowIndex, mscExampleStringProvFreeStrReplicatedEntry=mscExampleStringProvFreeStrReplicatedEntry, mscExampleDashedProvFreeDashed=mscExampleDashedProvFreeDashed, mscExampleHexRowStatus=mscExampleHexRowStatus, mscExampleSequenceIndex=mscExampleSequenceIndex, mscExampleStringProvStructStrArrayEntry=mscExampleStringProvStructStrArrayEntry, mscExampleEnumOperFreeEnumReplicatedTable=mscExampleEnumOperFreeEnumReplicatedTable, mscExampleSignedProvFreeSignedVectorTable=mscExampleSignedProvFreeSignedVectorTable, mscExampleRequiredIndicesRowStatusEntry=mscExampleRequiredIndicesRowStatusEntry, mscExampleExtendedProvFreeExtendedReplicatedRowStatus=mscExampleExtendedProvFreeExtendedReplicatedRowStatus, mscExampleHexStrIndicesThreeIndex=mscExampleHexStrIndicesThreeIndex, mscExampleObjIdIndicesProvAttribute=mscExampleObjIdIndicesProvAttribute, mscExampleIpAddressProvStructIpAddressArrayRowIndex=mscExampleIpAddressProvStructIpAddressArrayRowIndex, mscExampleHexOfHexReplicatedEntry=mscExampleHexOfHexReplicatedEntry, mscExampleProvEnumSubCreatedTable=mscExampleProvEnumSubCreatedTable, mscExampleStringOperFreeStrListRowStatus=mscExampleStringOperFreeStrListRowStatus, mscExampleOneIndexRowStatusEntry=mscExampleOneIndexRowStatusEntry, mscFriPfListFixedTable=mscFriPfListFixedTable, mscExampleDashedOfDashedVectorValue=mscExampleDashedOfDashedVectorValue, mscExampleWildBcdOperFreeWildBcdArrayValue=mscExampleWildBcdOperFreeWildBcdArrayValue, mscExampleDecimalPfIntReplicatedTable=mscExampleDecimalPfIntReplicatedTable, mscExampleExtendedProvFreeExtendedArrayRowIndex=mscExampleExtendedProvFreeExtendedArrayRowIndex, mscExampleFixedPtOperFreeFixedPt=mscExampleFixedPtOperFreeFixedPt, mscExampleSignedOperStructSignedArrayEntry=mscExampleSignedOperStructSignedArrayEntry, mscExampleBcdProvStructBcdVectorIndex=mscExampleBcdProvStructBcdVectorIndex, mscExampleFixedPtProvStructFixedPtArrayTable=mscExampleFixedPtProvStructFixedPtArrayTable, mscExampleMiscellaneousProvStructLong=mscExampleMiscellaneousProvStructLong, mscExampleStringProvFreeStrArrayTable=mscExampleStringProvFreeStrArrayTable, mscFriDnaRowStatus=mscFriDnaRowStatus, mscExampleStringProvFreeStrArray1RowIndex=mscExampleStringProvFreeStrArray1RowIndex, mscExampleIpAddressProvFreeIpAddressArrayValue=mscExampleIpAddressProvFreeIpAddressArrayValue, mscExampleObjIdIndicesRowStatusEntry=mscExampleObjIdIndicesRowStatusEntry, mscExampleHexProvFreeHexList1RowStatus=mscExampleHexProvFreeHexList1RowStatus, mscExampleFixedPtProvFreeFixedPtVectorTable=mscExampleFixedPtProvFreeFixedPtVectorTable, mscExampleFixedPtProvFreeFixedPtReplicatedEntry=mscExampleFixedPtProvFreeFixedPtReplicatedEntry, mscRegisteredDataTable=mscRegisteredDataTable, mscExampleDecimalOperStructIntSet=mscExampleDecimalOperStructIntSet, mscExampleNsapRowStatusEntry=mscExampleNsapRowStatusEntry, mscExampleDashedProvFreeDashedArrayEntry=mscExampleDashedProvFreeDashedArrayEntry, mscExampleEnumOperStructEnumArrayMonthIndex=mscExampleEnumOperStructEnumArrayMonthIndex, mscExampleDecimalPfIntReplicated1RowStatus=mscExampleDecimalPfIntReplicated1RowStatus, mscExampleSignedProvFreeSignedListRowStatus=mscExampleSignedProvFreeSignedListRowStatus, mscExampleEnumProvStructEnumArrayMonthIndex=mscExampleEnumProvStructEnumArrayMonthIndex, mscExampleHexOfHexListTable=mscExampleHexOfHexListTable, mscExampleHexProvStructHexVectorEntry=mscExampleHexProvStructHexVectorEntry, mscExampleEnumIndicesProvisionedEntry=mscExampleEnumIndicesProvisionedEntry, mscExampleSequenceProvisionalEntry=mscExampleSequenceProvisionalEntry, mscExampleDashedOperationalEntry=mscExampleDashedOperationalEntry, mscExampleOneIndexRowStatusTable=mscExampleOneIndexRowStatusTable, mscExampleSequenceOperFreeSequenceListTable=mscExampleSequenceOperFreeSequenceListTable, mscExampleStringProvFreeStrListEntry=mscExampleStringProvFreeStrListEntry, mscExampleIpAddressProvStructIpAddressVectorValue=mscExampleIpAddressProvStructIpAddressVectorValue, mscExampleEnumProvisionalEntry=mscExampleEnumProvisionalEntry, mscExampleIpAddressProvFreeIpAddressList1RowStatus=mscExampleIpAddressProvFreeIpAddressList1RowStatus, mscExampleDecimalIndices=mscExampleDecimalIndices, mscExampleStringOperFreeStrReplicatedTable=mscExampleStringOperFreeStrReplicatedTable, mscExampleDashedOfDashedArrayValue=mscExampleDashedOfDashedArrayValue, mscExampleExtendedOperStructExtendedArrayValue=mscExampleExtendedOperStructExtendedArrayValue, mscExampleEnumOperStructEnumArrayValue=mscExampleEnumOperStructEnumArrayValue, mscExampleBcdIndicesComponentName=mscExampleBcdIndicesComponentName, mscFriPfListUnsignedTable=mscFriPfListUnsignedTable, mscExampleWildBcdOperStructWildBcdVectorEntry=mscExampleWildBcdOperStructWildBcdVectorEntry, mscExampleIpAddressOperFreeIpAddressReplicatedValue=mscExampleIpAddressOperFreeIpAddressReplicatedValue, mscExampleEnumProvStructEnumVectorEntry=mscExampleEnumProvStructEnumVectorEntry, mscExampleBcdOperStructBcdArrayTable=mscExampleBcdOperStructBcdArrayTable, mscExampleRowStatusEntry=mscExampleRowStatusEntry, mscExampleFixedPtOperStructFixedPtArrayValue=mscExampleFixedPtOperStructFixedPtArrayValue, mscExampleMiscellaneousProvisionalEntry=mscExampleMiscellaneousProvisionalEntry, mscExampleEnumIndicesOneIndex=mscExampleEnumIndicesOneIndex, mscExampleSignedOperStructSignedVectorValue=mscExampleSignedOperStructSignedVectorValue, mscExampleFixedPtOperFreeFixedPtListRowStatus=mscExampleFixedPtOperFreeFixedPtListRowStatus, mscExampleDashedProvFreeDashedArrayValue=mscExampleDashedProvFreeDashedArrayValue, mscExampleThreeIndicesOneIndex=mscExampleThreeIndicesOneIndex, mscExampleHexOsHexArrayEntry=mscExampleHexOsHexArrayEntry, mscExampleMiscellaneousIndex=mscExampleMiscellaneousIndex, mscExampleIpAddressProvFreeIpAddressListEntry=mscExampleIpAddressProvFreeIpAddressListEntry, mscExampleOneIndex=mscExampleOneIndex, mscExampleFixedPtProvStructFixedPtArrayEntry=mscExampleFixedPtProvStructFixedPtArrayEntry)
mibBuilder.exportSymbols('Nortel-MsCarrier-MscPassport-CasTestMIB', mscExampleMiscellaneousOperFreeLongListValue=mscExampleMiscellaneousOperFreeLongListValue, mscExampleFixedPtOperFreeFixedPtVectorValue=mscExampleFixedPtOperFreeFixedPtVectorValue, mscExampleDashedRowStatusEntry=mscExampleDashedRowStatusEntry, mscExampleStringProvFreeHexOnly=mscExampleStringProvFreeHexOnly, mscExampleHexOfHexVectorValue=mscExampleHexOfHexVectorValue, mscFriRegisteredRowStatus=mscFriRegisteredRowStatus, mscExampleHexProvFreeHexReplicated1Table=mscExampleHexProvFreeHexReplicated1Table, mscFriOfListComponentTable=mscFriOfListComponentTable, mscExampleFixedPtStorageType=mscExampleFixedPtStorageType, mscExampleDashedComponentName=mscExampleDashedComponentName, mscExampleStringOperationalTable=mscExampleStringOperationalTable, mscExampleHexStrIndicesProvAttribute=mscExampleHexStrIndicesProvAttribute, mscExampleHexIndicesProvisionedTable=mscExampleHexIndicesProvisionedTable, mscExampleEnumIndex=mscExampleEnumIndex, mscExampleDecimalPfIntReplicatedRowStatus=mscExampleDecimalPfIntReplicatedRowStatus, mscExampleBcdOperFreeBcdListTable=mscExampleBcdOperFreeBcdListTable, mscExampleMiscellaneousRowStatus=mscExampleMiscellaneousRowStatus, mscExampleHexOfHexReplicatedValue=mscExampleHexOfHexReplicatedValue, mscExampleEnumOperStructEnumArrayEntry=mscExampleEnumOperStructEnumArrayEntry, mscExampleHexOfHexReplicatedIndex=mscExampleHexOfHexReplicatedIndex, mscExampleHexProvFreeHexArrayTable=mscExampleHexProvFreeHexArrayTable, mscExampleFixedPtProvisionalTable=mscExampleFixedPtProvisionalTable, mscFriRegisteredAttribute=mscFriRegisteredAttribute, mscFriDynOpOptionalRowStatusTable=mscFriDynOpOptionalRowStatusTable, mscFriEventRowStatus=mscFriEventRowStatus, mscExampleFixedPtProvFreeFixedPtArrayColumnIndex=mscExampleFixedPtProvFreeFixedPtArrayColumnIndex, mscExampleBcdProvStructBcdArrayRowIndex=mscExampleBcdProvStructBcdArrayRowIndex, mscExampleDashedOsDashedVectorEntry=mscExampleDashedOsDashedVectorEntry, mscExampleDashedOsDashedVectorIndex=mscExampleDashedOsDashedVectorIndex, mscExampleDecimalOfIntReplicatedValue=mscExampleDecimalOfIntReplicatedValue, mscFriDynOpDynamicRowStatus=mscFriDynOpDynamicRowStatus, mscExampleDecimalIndicesRowStatusTable=mscExampleDecimalIndicesRowStatusTable, mscExampleThreeIndicesRowStatusTable=mscExampleThreeIndicesRowStatusTable, mscExampleDashed=mscExampleDashed, mscExampleSignedProvFreeSignedArrayValue=mscExampleSignedProvFreeSignedArrayValue, mscFriDynOpDynOpJrOperationalTable=mscFriDynOpDynOpJrOperationalTable, mscExampleSignedProvFreeSignedArrayTable=mscExampleSignedProvFreeSignedArrayTable, mscExampleMiscellaneous=mscExampleMiscellaneous, mscExampleExtendedProvStructExtendedVectorTable=mscExampleExtendedProvStructExtendedVectorTable, mscExampleObjectIdProvFreeObjIdListRowStatus=mscExampleObjectIdProvFreeObjIdListRowStatus, mscExampleSequenceIndicesProvisionedEntry=mscExampleSequenceIndicesProvisionedEntry, mscExampleRequiredIndicesStorageType=mscExampleRequiredIndicesStorageType, mscExampleExtendedOperFreeExtendedListRowStatus=mscExampleExtendedOperFreeExtendedListRowStatus, mscExampleIpAddressProvFreeIpAddressVector1Index=mscExampleIpAddressProvFreeIpAddressVector1Index, mscExampleIpAddressProvFreeIpAddress=mscExampleIpAddressProvFreeIpAddress, mscExampleIpAddressProvFreeIpAddressArray1Value=mscExampleIpAddressProvFreeIpAddressArray1Value, mscExampleStringProvFreeStrVectorIndex=mscExampleStringProvFreeStrVectorIndex, mscExampleOperSignedSubCreatedRowStatus=mscExampleOperSignedSubCreatedRowStatus, mscFriDnaOperationalEntry=mscFriDnaOperationalEntry, mscExampleIpAddrIndicesRowStatusTable=mscExampleIpAddrIndicesRowStatusTable, mscFriRegisteredStorageType=mscFriRegisteredStorageType, mscExampleEnumProvStructEnum=mscExampleEnumProvStructEnum, mscFriDynOpDynOpJrRowStatusTable=mscFriDynOpDynOpJrRowStatusTable, mscExampleDecimalRowStatusTable=mscExampleDecimalRowStatusTable, mscExampleIpAddressOperStructIpAddressArrayColumnIndex=mscExampleIpAddressOperStructIpAddressArrayColumnIndex, mscExampleSignedOperFreeSignedArrayTable=mscExampleSignedOperFreeSignedArrayTable, mscExampleIpAddressOperFreeIpAddress=mscExampleIpAddressOperFreeIpAddress, mscExampleAsciiIndicesThreeIndex=mscExampleAsciiIndicesThreeIndex, mscExampleExtendedProvStructExtendedArrayColumnIndex=mscExampleExtendedProvStructExtendedArrayColumnIndex, mscExampleEnumOperFreeEnumReplicatedRowStatus=mscExampleEnumOperFreeEnumReplicatedRowStatus, mscFriRowStatusEntry=mscFriRowStatusEntry, mscExampleStringProvStructStrArrayValue=mscExampleStringProvStructStrArrayValue, mscExampleSignedOperStructSignedVectorEntry=mscExampleSignedOperStructSignedVectorEntry, mscExampleBcdOperStructBcdArrayColumnIndex=mscExampleBcdOperStructBcdArrayColumnIndex, mscExampleDashedProvFreeDashedReplicatedIndex=mscExampleDashedProvFreeDashedReplicatedIndex, mscFriOfListComponentEntry=mscFriOfListComponentEntry, mscFriProvisionalStructSetEnumeration=mscFriProvisionalStructSetEnumeration, mscExampleDashedIndicesOneIndex=mscExampleDashedIndicesOneIndex, mscFriDnaIndex=mscFriDnaIndex, mscExampleExtendedProvisionalTable=mscExampleExtendedProvisionalTable, mscExampleMiscellaneousProvFreeTimeListValue=mscExampleMiscellaneousProvFreeTimeListValue, mscExampleDashedOfDashedVectorEntry=mscExampleDashedOfDashedVectorEntry, mscExampleOperSignedSubCreatedEntry=mscExampleOperSignedSubCreatedEntry, mscExampleEnum=mscExampleEnum, mscExampleMiscellaneousOperFreeTimeListValue=mscExampleMiscellaneousOperFreeTimeListValue, mscExampleIpAddressOperFreeIpAddressListRowStatus=mscExampleIpAddressOperFreeIpAddressListRowStatus, mscExampleThreeIndicesProvisionedEntry=mscExampleThreeIndicesProvisionedEntry, mscExampleStringProvFreeStrVectorValue=mscExampleStringProvFreeStrVectorValue, mscExampleDashedOsDashedArrayEntry=mscExampleDashedOsDashedArrayEntry, mscExampleIpAddressOperFreeIpAddressListEntry=mscExampleIpAddressOperFreeIpAddressListEntry, mscExampleFixedPtProvFreeFixedPtVectorValue=mscExampleFixedPtProvFreeFixedPtVectorValue, mscExampleHexIndicesTwoIndex=mscExampleHexIndicesTwoIndex, mscFriDynamicOperationalEntry=mscFriDynamicOperationalEntry, mscExampleBcdProvStructBcdArrayValue=mscExampleBcdProvStructBcdArrayValue, mscExampleOperStringSubCreatedRowStatus=mscExampleOperStringSubCreatedRowStatus, mscExampleHexProvFreeHexList1Entry=mscExampleHexProvFreeHexList1Entry, mscExampleStringProvFreeStrVectorTable=mscExampleStringProvFreeStrVectorTable, mscFriRegisteredComponentName=mscFriRegisteredComponentName, mscExampleObjIdIndicesThreeIndex=mscExampleObjIdIndicesThreeIndex, mscExampleBcdProvFreeBcdArrayTable=mscExampleBcdProvFreeBcdArrayTable, mscExampleHexOsHexVectorEntry=mscExampleHexOsHexVectorEntry, mscFriDynOpOptionalRowStatusEntry=mscFriDynOpOptionalRowStatusEntry, mscFriDynamicAttribute=mscFriDynamicAttribute, mscExampleIpAddressProvFreeIpAddressArray1ColumnIndex=mscExampleIpAddressProvFreeIpAddressArray1ColumnIndex, mscExampleWildBcdRowStatusTable=mscExampleWildBcdRowStatusTable, mscExampleOneIndexProvisionedTable=mscExampleOneIndexProvisionedTable, mscExampleDashedIndicesTwoIndex=mscExampleDashedIndicesTwoIndex, mscExampleDecimalOfIntArrayRowIndex=mscExampleDecimalOfIntArrayRowIndex, mscExampleEnumProvFreeEnumList1RowStatus=mscExampleEnumProvFreeEnumList1RowStatus, mscExampleMiscellaneousProvFreeTimeReplicatedTable=mscExampleMiscellaneousProvFreeTimeReplicatedTable, mscExampleWildBcdProvStructWildBcdArrayColumnIndex=mscExampleWildBcdProvStructWildBcdArrayColumnIndex, mscExampleStorageType=mscExampleStorageType, mscExampleStringOperFreeAsciiOnly=mscExampleStringOperFreeAsciiOnly, mscExampleBcdProvFreeBcdArray1Value=mscExampleBcdProvFreeBcdArray1Value, mscExampleEnumRowStatusTable=mscExampleEnumRowStatusTable, mscExampleFixedPtProvStructFixedPtArrayValue=mscExampleFixedPtProvStructFixedPtArrayValue, mscExampleIpAddressProvFreeIpAddressList1Entry=mscExampleIpAddressProvFreeIpAddressList1Entry, mscExampleMiscellaneousComponentName=mscExampleMiscellaneousComponentName, mscExampleFixedPtOperFreeFixedPtVectorIndex=mscExampleFixedPtOperFreeFixedPtVectorIndex, mscExampleIpAddressProvFreeIpAddressList1Table=mscExampleIpAddressProvFreeIpAddressList1Table, mscFriDynOpDynamicComponentName=mscFriDynOpDynamicComponentName, mscExampleBcdOperFreeBcdArrayRowIndex=mscExampleBcdOperFreeBcdArrayRowIndex, mscExampleHexProvFreeHex1=mscExampleHexProvFreeHex1, mscExampleFixedPtRowStatusEntry=mscExampleFixedPtRowStatusEntry, mscExampleSignedProvFreeSignedVectorEntry=mscExampleSignedProvFreeSignedVectorEntry, mscFriStateEntry=mscFriStateEntry, mscExampleHexProvFreeHexVectorEntry=mscExampleHexProvFreeHexVectorEntry, mscExampleSequenceRowStatusTable=mscExampleSequenceRowStatusTable, mscExampleHexOperStructHex=mscExampleHexOperStructHex, mscExampleNsapNativeTable=mscExampleNsapNativeTable, mscExampleEnumProvFreeEnumList1Table=mscExampleEnumProvFreeEnumList1Table, mscFriProvisionalFreeSimpleSigned=mscFriProvisionalFreeSimpleSigned, mscExampleSignedOperationalTable=mscExampleSignedOperationalTable, mscExampleRequiredIndicesProvisionedTable=mscExampleRequiredIndicesProvisionedTable, mscExampleIpAddressProvisionalTable=mscExampleIpAddressProvisionalTable, mscExampleSignedOperFreeSignedArrayValue=mscExampleSignedOperFreeSignedArrayValue, mscExampleFixedPtOperStructFixedPtVectorIndex=mscExampleFixedPtOperStructFixedPtVectorIndex, mscExampleSignedOperFreeSignedArrayEntry=mscExampleSignedOperFreeSignedArrayEntry, mscRegisteredRowStatusTable=mscRegisteredRowStatusTable, mscExampleExtendedRowStatusEntry=mscExampleExtendedRowStatusEntry, mscExampleWildBcdOperStructWildBcdArrayRowIndex=mscExampleWildBcdOperStructWildBcdArrayRowIndex, mscExampleSequenceOperFreeSequenceListRowStatus=mscExampleSequenceOperFreeSequenceListRowStatus, mscExampleEnumOperFreeEnumVectorIndex=mscExampleEnumOperFreeEnumVectorIndex, mscExampleSignedProvFreeSignedReplicatedTable=mscExampleSignedProvFreeSignedReplicatedTable, mscExampleAsciiIndicesProvisionedTable=mscExampleAsciiIndicesProvisionedTable, mscFriDynOpOptionalProvisionedTable=mscFriDynOpOptionalProvisionedTable, mscExampleWildBcdOperFreeWildBcdListRowStatus=mscExampleWildBcdOperFreeWildBcdListRowStatus, mscExampleEnumProvStructEnumSet=mscExampleEnumProvStructEnumSet, mscExampleObjectIdProvFreeObjIdReplicatedEntry=mscExampleObjectIdProvFreeObjIdReplicatedEntry, mscExampleDecimalPfIntList1RowStatus=mscExampleDecimalPfIntList1RowStatus, mscExampleIpAddressOperFreeIpAddressArrayTable=mscExampleIpAddressOperFreeIpAddressArrayTable, mscExampleMiscellaneousProvisionalTable=mscExampleMiscellaneousProvisionalTable, mscExampleDecimalPfIntVectorTable=mscExampleDecimalPfIntVectorTable, mscExampleStringProvStructStrArrayRowIndex=mscExampleStringProvStructStrArrayRowIndex, mscExampleHexProvFreeHexVector2Value=mscExampleHexProvFreeHexVector2Value, mscExampleStringOperFreeStrVectorIndex=mscExampleStringOperFreeStrVectorIndex, mscExampleDecimalProvFreeInteger1=mscExampleDecimalProvFreeInteger1, mscExampleWildBcdIndex=mscExampleWildBcdIndex, mscExampleHexOsHexVectorIndex=mscExampleHexOsHexVectorIndex, mscExampleOneIndexProvAttribute=mscExampleOneIndexProvAttribute, mscExampleSignedOperStructSignedVectorIndex=mscExampleSignedOperStructSignedVectorIndex, mscFriEscapeCopyComponent=mscFriEscapeCopyComponent, mscFriEscapeDefaultsGroup=mscFriEscapeDefaultsGroup, mscExampleBcdProvFreeBcdArrayColumnIndex=mscExampleBcdProvFreeBcdArrayColumnIndex, mscExampleDecimalOfIntVectorTable=mscExampleDecimalOfIntVectorTable, mscExampleMiscellaneousProvFreeTimeDateOnly1=mscExampleMiscellaneousProvFreeTimeDateOnly1, mscFriStateTable=mscFriStateTable, mscExampleWildBcdProvFreeWildBcdReplicatedEntry=mscExampleWildBcdProvFreeWildBcdReplicatedEntry, mscExampleMiscellaneousOperFreeLongReplicatedRowStatus=mscExampleMiscellaneousOperFreeLongReplicatedRowStatus, mscExampleWildBcdProvStructWildBcdVectorEntry=mscExampleWildBcdProvStructWildBcdVectorEntry, mscExampleWildBcdOperFreeWildBcdReplicatedTable=mscExampleWildBcdOperFreeWildBcdReplicatedTable, mscExampleEnumProvStructEnumArrayEntry=mscExampleEnumProvStructEnumArrayEntry, mscExampleFixedPt=mscExampleFixedPt, mscExampleEnumProvStructEnumArrayValue=mscExampleEnumProvStructEnumArrayValue, mscExampleExtendedOperStructExtendedVectorIndex=mscExampleExtendedOperStructExtendedVectorIndex, mscFriRegisteredDataTable=mscFriRegisteredDataTable, mscExampleDecimalPfIntListRowStatus=mscExampleDecimalPfIntListRowStatus, mscExampleDecimalOperFreeCounter32=mscExampleDecimalOperFreeCounter32, mscExampleDashedIndicesThreeIndex=mscExampleDashedIndicesThreeIndex, mscFriDynOpInitialProvisionedTable=mscFriDynOpInitialProvisionedTable, mscExampleWildBcdOperFreeWildBcdVectorEntry=mscExampleWildBcdOperFreeWildBcdVectorEntry, mscExampleTwoIndicesComponentName=mscExampleTwoIndicesComponentName, mscFriEventComponentName=mscFriEventComponentName, mscExampleDashedOsDashedVectorTable=mscExampleDashedOsDashedVectorTable, mscRegisteredRowStatus=mscRegisteredRowStatus, mscExampleOneIndexStorageType=mscExampleOneIndexStorageType, mscExampleDashedIndicesComponentName=mscExampleDashedIndicesComponentName, mscFriOperationalFreeSimpleHex=mscFriOperationalFreeSimpleHex, mscExampleDashedOsDashedArrayTable=mscExampleDashedOsDashedArrayTable, mscExampleHexProvStructHexVectorIndex=mscExampleHexProvStructHexVectorIndex, mscExampleMiscellaneousProvFreeTimeDateOnly=mscExampleMiscellaneousProvFreeTimeDateOnly, mscExampleBcdOperFreeBcdVectorTable=mscExampleBcdOperFreeBcdVectorTable, mscExampleDecimalPfIntArray1ColumnIndex=mscExampleDecimalPfIntArray1ColumnIndex, mscExampleHexOperFreeHex=mscExampleHexOperFreeHex, mscExampleTwoIndicesProvAttribute=mscExampleTwoIndicesProvAttribute, mscExampleHexProvFreeHexArray2ColumnIndex=mscExampleHexProvFreeHexArray2ColumnIndex, mscExampleExtendedOperStructExtendedVectorValue=mscExampleExtendedOperStructExtendedVectorValue, mscExampleSequenceOperStructSequence=mscExampleSequenceOperStructSequence, mscExampleIpAddrIndicesThreeIndex=mscExampleIpAddrIndicesThreeIndex, mscExampleObjIdIndicesProvisionedEntry=mscExampleObjIdIndicesProvisionedEntry, mscExampleIpAddressProvEnumSub=mscExampleIpAddressProvEnumSub, mscFriDynOpOptionalProvisionedEntry=mscFriDynOpOptionalProvisionedEntry, mscExampleIpAddressProvFreeIpAddressArray1Table=mscExampleIpAddressProvFreeIpAddressArray1Table, mscExampleEnumProvFreeEnumListTable=mscExampleEnumProvFreeEnumListTable, mscExampleDecimalPfIntReplicated1Index=mscExampleDecimalPfIntReplicated1Index, mscExampleDashedOsDashedArrayValue=mscExampleDashedOsDashedArrayValue, mscFriDynOpDynOpJrIndex=mscFriDynOpDynOpJrIndex, mscExampleObjIdIndicesRowStatusTable=mscExampleObjIdIndicesRowStatusTable, mscExampleStringProvFreeStrArray1Entry=mscExampleStringProvFreeStrArray1Entry, mscExampleBcdProvFreeBcdVectorEntry=mscExampleBcdProvFreeBcdVectorEntry, mscExampleWildBcdComponentName=mscExampleWildBcdComponentName, mscExampleEnumOperFreeEnumVectorTable=mscExampleEnumOperFreeEnumVectorTable, mscExampleStringRowStatusEntry=mscExampleStringRowStatusEntry, mscExampleOperFixedPtSubcomponentsCreatedRowStatus=mscExampleOperFixedPtSubcomponentsCreatedRowStatus, mscExampleStringIndex=mscExampleStringIndex, mscExampleDecimalComponentName=mscExampleDecimalComponentName, mscExampleStringOperFreeStrArrayValue=mscExampleStringOperFreeStrArrayValue, mscExampleDecimalPfIntReplicated1Value=mscExampleDecimalPfIntReplicated1Value, mscExampleIpAddrIndicesOneIndex=mscExampleIpAddrIndicesOneIndex, mscFriPfListAsciiRowStatus=mscFriPfListAsciiRowStatus, mscExampleDecimalOsIntVectorEntry=mscExampleDecimalOsIntVectorEntry, mscExampleDashedIndicesProvAttribute=mscExampleDashedIndicesProvAttribute, mscExampleDecimalProvStructIntSet=mscExampleDecimalProvStructIntSet, mscExampleStringProvFreeStrList1Value=mscExampleStringProvFreeStrList1Value, mscExampleStringProvStructStrVectorEntry=mscExampleStringProvStructStrVectorEntry, mscFriIndex=mscFriIndex, mscFriOperationalStructSimpleSigned=mscFriOperationalStructSimpleSigned, mscFriDynOpDynamicStorageType=mscFriDynOpDynamicStorageType, mscExampleWildBcdOperStructWildBcd=mscExampleWildBcdOperStructWildBcd, mscExampleIpAddressProvFreeIpAddressVector1Value=mscExampleIpAddressProvFreeIpAddressVector1Value, mscExampleNsap=mscExampleNsap, mscExampleOperDecimalSubCreatedValue=mscExampleOperDecimalSubCreatedValue, mscExampleWildBcdOperFreeWildBcdArrayTable=mscExampleWildBcdOperFreeWildBcdArrayTable, mscFriDynOpDynamic=mscFriDynOpDynamic, casTestGroupCA02A=casTestGroupCA02A, mscExampleExtendedProvFreeExtendedVectorIndex=mscExampleExtendedProvFreeExtendedVectorIndex, mscExampleBcdProvFreeBcdReplicated1Value=mscExampleBcdProvFreeBcdReplicated1Value, mscFriOfListEnumerationEntry=mscFriOfListEnumerationEntry, mscExampleMiscellaneousProvFreeTimeReplicatedRowStatus=mscExampleMiscellaneousProvFreeTimeReplicatedRowStatus, mscExampleEnumOperFreeEnumVectorValue=mscExampleEnumOperFreeEnumVectorValue, mscExampleSignedProvFreeSignedVector1Index=mscExampleSignedProvFreeSignedVector1Index, mscExampleBcdProvStructBcdVectorTable=mscExampleBcdProvStructBcdVectorTable, mscExampleDecimalIndicesProvisionedEntry=mscExampleDecimalIndicesProvisionedEntry, mscExampleEnumOperStructEnumVectorIndex=mscExampleEnumOperStructEnumVectorIndex, mscExampleHexProvFreeHexReplicatedIndex=mscExampleHexProvFreeHexReplicatedIndex) |
def solution(N, A):
ret = [0] * N
if sum(A)/len(A) == N + 1:
return ret
_max = 0
for a in A:
if 1 <= a <= N:
ret[a - 1] += 1
if ret[a - 1] > _max:
_max = ret[a - 1]
elif a == N + 1:
ret = [_max] * N
return ret
def test_example1():
assert [3, 2, 2, 4, 2] == solution(5, [3, 4, 4, 6, 1, 4, 4])
def test_extreme_min():
assert [1, 0, 0, 0, 0] == solution(5, [1])
def test_extreme_max():
assert [0, 0, 0, 0, 1] == solution(5, [5])
def test_extreme_max_plus_one():
assert [0, 0, 0, 0, 0] == solution(5, [6])
def test_single():
assert [0, 0, 1, 0, 0] == solution(5, [3])
def test_extreme_large():
assert [0] * 100000 == solution(100000, [100001] * 100000)
| def solution(N, A):
ret = [0] * N
if sum(A) / len(A) == N + 1:
return ret
_max = 0
for a in A:
if 1 <= a <= N:
ret[a - 1] += 1
if ret[a - 1] > _max:
_max = ret[a - 1]
elif a == N + 1:
ret = [_max] * N
return ret
def test_example1():
assert [3, 2, 2, 4, 2] == solution(5, [3, 4, 4, 6, 1, 4, 4])
def test_extreme_min():
assert [1, 0, 0, 0, 0] == solution(5, [1])
def test_extreme_max():
assert [0, 0, 0, 0, 1] == solution(5, [5])
def test_extreme_max_plus_one():
assert [0, 0, 0, 0, 0] == solution(5, [6])
def test_single():
assert [0, 0, 1, 0, 0] == solution(5, [3])
def test_extreme_large():
assert [0] * 100000 == solution(100000, [100001] * 100000) |
## N-th Power
## 8 kyu
## https://www.codewars.com/kata/57d814e4950d8489720008db
def index(array, n):
if len(array) > n:
return array[n] ** n
return -1 | def index(array, n):
if len(array) > n:
return array[n] ** n
return -1 |
def useGenerator(gen):
gen(1, "Cocoa")
gen(2, "Chino")
gen(3, "Rize")
gen(4, "Chiya")
gen(5, "Sharo")
gen(6, "Daydream Cafe")
gen(7, "No Poi!")
gen(8, "Tenkuu Cafeteria")
gen(9, "Sekai ga Cafe ni Natchatta")
gen(10, "Nikkori Cafe no Mahou Tsukai")
| def use_generator(gen):
gen(1, 'Cocoa')
gen(2, 'Chino')
gen(3, 'Rize')
gen(4, 'Chiya')
gen(5, 'Sharo')
gen(6, 'Daydream Cafe')
gen(7, 'No Poi!')
gen(8, 'Tenkuu Cafeteria')
gen(9, 'Sekai ga Cafe ni Natchatta')
gen(10, 'Nikkori Cafe no Mahou Tsukai') |
class Solution:
def twoSum(self, nums: List[int], target: int) -> List[int]:
len_nums = len(nums)
for i in range(len_nums):
for j in range(i+1,len_nums):
if nums[i]+nums[j] == target:
return [i,j]
return [None,None]
| class Solution:
def two_sum(self, nums: List[int], target: int) -> List[int]:
len_nums = len(nums)
for i in range(len_nums):
for j in range(i + 1, len_nums):
if nums[i] + nums[j] == target:
return [i, j]
return [None, None] |
class Solution:
def canThreePartsEqualSum(self, A: List[int]) -> bool:
s = sum(A)
if s % 3 != 0:
return False
s //= 3
cum = 0
total = 0
for a in A:
cum += a
if cum == s:
total += 1
cum = 0
if total == 3 and cum == 0:
return True
return False
| class Solution:
def can_three_parts_equal_sum(self, A: List[int]) -> bool:
s = sum(A)
if s % 3 != 0:
return False
s //= 3
cum = 0
total = 0
for a in A:
cum += a
if cum == s:
total += 1
cum = 0
if total == 3 and cum == 0:
return True
return False |
def calculate ():
a = float(input("Enter 1st number:"))
b = float(input("Enter 2nd number:"))
c = float(input("Enter 3rd number:"))
sum = a + b + c
if a == b == c:
return 3*sum
else:
return sum
print(calculate())
| def calculate():
a = float(input('Enter 1st number:'))
b = float(input('Enter 2nd number:'))
c = float(input('Enter 3rd number:'))
sum = a + b + c
if a == b == c:
return 3 * sum
else:
return sum
print(calculate()) |
#This program used nested loops to display this pattern
for rows in range(6):
print('#',end ='')
for colums in range(rows):
print(' ',end='')
print('#')
| for rows in range(6):
print('#', end='')
for colums in range(rows):
print(' ', end='')
print('#') |
def isVowel(c):
return c == "a" or c == "e" or c == "i" or c == "o" or c == "u"
# Function to return the count of sub-strings
# that contain every vowel at least
# once and no consonant
def countSubstringsUtil(s):
count = 0
# Map is used to store count of each vowel
mp = dict.fromkeys(s, 0)
n = len(s)
# Start index is set to 0 initially
start = 0
for i in range(n):
mp[s[i]] += 1
# If substring till now have all vowels
# atleast once increment start index until
# there are all vowels present between
# (start, i) and add n - i each time
while mp["a"] > 0 and mp["e"] > 0 and mp["i"] > 0 and mp["o"] > 0 and mp["u"] > 0:
count += n - i
mp[s[start]] -= 1
start += 1
return count
# Function to extract all maximum length
# sub-strings in s that contain only vowels
# and then calls the countSubstringsUtil() to find
# the count of valid sub-strings in that string
def countSubstrings(s):
count = 0
temp = ""
for i in range(len(s)):
# If current character is a vowel then
# append it to the temp string
if isVowel(s[i]):
temp += s[i]
# The sub-string containing all vowels ends here
else:
# If there was a valid sub-string
if len(temp) > 0:
count += countSubstringsUtil(temp)
# Reset temp string
temp = ""
# For the last valid sub-string
if len(temp) > 0:
count += countSubstringsUtil(temp)
return count
# Driver code
if __name__ == "__main__":
s = "aeouisddaaeeiouua"
print(countSubstrings(s))
# This code is contributed by AnkitRai01
def is_vowel(c):
return c in "aeiou"
# Function to return the count of sub-strings
# that contain every vowel at least
# once and no consonant
def count_substring_help(s):
count = 0
mp = dict.fromkeys(s, 0)
n = len(s)
start = 0
for i in range(n):
mp[s[i]] += 1
while mp["a"] > 0 and mp["e"] > 0 and mp["i"] > 0 and mp["o"] > 0 and mp["u"] > 0:
count += n - i
mp[s[start]] -= 1
start += 1
return count
# Function to extract all maximum length
# sub-strings in s that contain only vowels
# and then calls the countSubstringsUtil() to find
# the count of valid sub-strings in that string
def countSubstrings(s):
count = 0
temp = ""
for i in range(len(s)):
if isVowel(s[i]):
temp += s[i]
else:
if len(temp) > 0:
count += count_substring_help(temp)
temp = ""
if len(temp) > 0:
count += count_substring_help(temp)
return count
def sequence_sum(a, n, d):
return int((n * (2 * a + (n - 1) * d)) / 2)
def getSequenceSum(i, j, k):
a_1 = i
n_1 = abs(j - i + 1)
d_1 = 1
a_2 = j - 1
n_2 = abs(k - j)
d_2 = -1
return sequence_sum(a_1, n_1, d_1) + sequence_sum(a_2, n_2, d_2)
# SELECT f.name FROM families f WHERE f.bill_id IN ()
# SELECT b.id as bill_sum FROM bills b HAVING MAX(sum(b.amount)) GROUP BY b.id ORDER BY bill_sum DESC
| def is_vowel(c):
return c == 'a' or c == 'e' or c == 'i' or (c == 'o') or (c == 'u')
def count_substrings_util(s):
count = 0
mp = dict.fromkeys(s, 0)
n = len(s)
start = 0
for i in range(n):
mp[s[i]] += 1
while mp['a'] > 0 and mp['e'] > 0 and (mp['i'] > 0) and (mp['o'] > 0) and (mp['u'] > 0):
count += n - i
mp[s[start]] -= 1
start += 1
return count
def count_substrings(s):
count = 0
temp = ''
for i in range(len(s)):
if is_vowel(s[i]):
temp += s[i]
else:
if len(temp) > 0:
count += count_substrings_util(temp)
temp = ''
if len(temp) > 0:
count += count_substrings_util(temp)
return count
if __name__ == '__main__':
s = 'aeouisddaaeeiouua'
print(count_substrings(s))
def is_vowel(c):
return c in 'aeiou'
def count_substring_help(s):
count = 0
mp = dict.fromkeys(s, 0)
n = len(s)
start = 0
for i in range(n):
mp[s[i]] += 1
while mp['a'] > 0 and mp['e'] > 0 and (mp['i'] > 0) and (mp['o'] > 0) and (mp['u'] > 0):
count += n - i
mp[s[start]] -= 1
start += 1
return count
def count_substrings(s):
count = 0
temp = ''
for i in range(len(s)):
if is_vowel(s[i]):
temp += s[i]
else:
if len(temp) > 0:
count += count_substring_help(temp)
temp = ''
if len(temp) > 0:
count += count_substring_help(temp)
return count
def sequence_sum(a, n, d):
return int(n * (2 * a + (n - 1) * d) / 2)
def get_sequence_sum(i, j, k):
a_1 = i
n_1 = abs(j - i + 1)
d_1 = 1
a_2 = j - 1
n_2 = abs(k - j)
d_2 = -1
return sequence_sum(a_1, n_1, d_1) + sequence_sum(a_2, n_2, d_2) |
_verbose = False
def set_verbose(verbose):
global _verbose
_verbose = verbose
| _verbose = False
def set_verbose(verbose):
global _verbose
_verbose = verbose |
def rule(event):
return event.get("action") == "repo.create"
def title(event):
return f"Repository [{event.get('repo', '<UNKNOWN_REPO>')}] created."
| def rule(event):
return event.get('action') == 'repo.create'
def title(event):
return f"Repository [{event.get('repo', '<UNKNOWN_REPO>')}] created." |
class Event:
def __init__(self, eventType, playerId, timeStamp):
self.type = type(self).__name__
self.eventType = eventType
self.playerId = playerId
self.timeStamp = timeStamp
| class Event:
def __init__(self, eventType, playerId, timeStamp):
self.type = type(self).__name__
self.eventType = eventType
self.playerId = playerId
self.timeStamp = timeStamp |
def iter(n, prev, curr):
if n == 0:
return curr
return iter(n-1, curr, prev + curr)
def fibonacci(n):
return iter(n, 1, 0)
if __name__ == '__main__':
print(fibonacci(int(input()))) | def iter(n, prev, curr):
if n == 0:
return curr
return iter(n - 1, curr, prev + curr)
def fibonacci(n):
return iter(n, 1, 0)
if __name__ == '__main__':
print(fibonacci(int(input()))) |
txt = 'input'
with open(txt) as f:
lines = f.readlines()
aim = 0
depth = 0
horPos = 0
for line in lines:
line = line.strip()
line = line.split()
line[1] = int(line[1])
if line[0] == 'forward':
horPos += line[1]
depth += aim * line[1]
elif line[0] == 'down':
aim += line[1]
elif line[0] == 'up':
aim -= line[1]
else:
print('Something went wrong!')
print(aim)
print(depth)
print(horPos)
mult = horPos * depth
print('Answer is: ',mult)
| txt = 'input'
with open(txt) as f:
lines = f.readlines()
aim = 0
depth = 0
hor_pos = 0
for line in lines:
line = line.strip()
line = line.split()
line[1] = int(line[1])
if line[0] == 'forward':
hor_pos += line[1]
depth += aim * line[1]
elif line[0] == 'down':
aim += line[1]
elif line[0] == 'up':
aim -= line[1]
else:
print('Something went wrong!')
print(aim)
print(depth)
print(horPos)
mult = horPos * depth
print('Answer is: ', mult) |
ROS_QUEUE_SIZE = 10
PATHFINDER_NODE_ID = "pathfinder"
PATHFINDER_SERVER_NODE = "action"
PATHFINDER_SERVER = "%s/%s" % (PATHFINDER_NODE_ID, PATHFINDER_SERVER_NODE)
# PATHFINDER_SERVER = "/rh/%s/%s" % (PATHFINDER_NODE_ID, PATHFINDER_SERVER_NODE)
PATHFINDER_INPUT_TOPIC = "%s/input" % PATHFINDER_NODE_ID
PATHFINDER_DEBUG_TOPIC = "%s/debug" % PATHFINDER_NODE_ID
SUBMIT_PROBLEM_SERVICE = "%s/submitProblem" % PATHFINDER_NODE_ID
STEP_PROBLEM_SERVICE = "%s/stepProblem" % PATHFINDER_NODE_ID
| ros_queue_size = 10
pathfinder_node_id = 'pathfinder'
pathfinder_server_node = 'action'
pathfinder_server = '%s/%s' % (PATHFINDER_NODE_ID, PATHFINDER_SERVER_NODE)
pathfinder_input_topic = '%s/input' % PATHFINDER_NODE_ID
pathfinder_debug_topic = '%s/debug' % PATHFINDER_NODE_ID
submit_problem_service = '%s/submitProblem' % PATHFINDER_NODE_ID
step_problem_service = '%s/stepProblem' % PATHFINDER_NODE_ID |
# dictionaries
CustomerData={
'Name': 'SAM', 'AGE':15,'ADDRESS':'Falastine St'
}
CustomerData['Name']='Ameer'
CustomerData['AGE']=17
CustomerData['ADDRESS']='Al-Mansour'
print(CustomerData.get('ADDRESS','ADDRESS Not Found'))
print(CustomerData.get('Name','Name Not Found'))
print(CustomerData.get('AGE','AGE Not Found'))
| customer_data = {'Name': 'SAM', 'AGE': 15, 'ADDRESS': 'Falastine St'}
CustomerData['Name'] = 'Ameer'
CustomerData['AGE'] = 17
CustomerData['ADDRESS'] = 'Al-Mansour'
print(CustomerData.get('ADDRESS', 'ADDRESS Not Found'))
print(CustomerData.get('Name', 'Name Not Found'))
print(CustomerData.get('AGE', 'AGE Not Found')) |
#!/usr/bin/env python
#####################################
# Installation module for dnscat2
#####################################
# AUTHOR OF MODULE NAME
AUTHOR="Jens Muecke (ryd)"
# DESCRIPTION OF THE MODULE
DESCRIPTION="This module will install/update dnscat2"
# INSTALL TYPE GIT, SVN, FILE DOWNLOAD
# OPTIONS = GIT, SVN, FILE
INSTALL_TYPE="GIT"
# LOCATION OF THE FILE OR GIT/SVN REPOSITORY
REPOSITORY_LOCATION="https://github.com/iagox86/dnscat2.git"
# WHERE DO YOU WANT TO INSTALL IT
INSTALL_LOCATION="dnscat2"
# DEPENDS FOR DEBIAN INSTALLS
DEBIAN="git ruby ruby-dev git-core build-essential make bundler"
# DEPENDS FOR FEDORA INSTALLS
FEDORA="git,make,gcc,gcc-c++,ruby-irb,rubygems,rubygem-bundler,ruby-devel,git"
# COMMANDS TO RUN AFTER
AFTER_COMMANDS="cd {INSTALL_LOCATION}client,sudo make,cd {INSTALL_LOCATION}server/, bundle install, ln -s {INSTALL_LOCATION}client/dnscat {INSTALL_LOCATION}dnscat"
# THIS WILL CREATE AN AUTOMATIC LAUNCHER FOR THE TOOL
LAUNCHER="dnscat"
| author = 'Jens Muecke (ryd)'
description = 'This module will install/update dnscat2'
install_type = 'GIT'
repository_location = 'https://github.com/iagox86/dnscat2.git'
install_location = 'dnscat2'
debian = 'git ruby ruby-dev git-core build-essential make bundler'
fedora = 'git,make,gcc,gcc-c++,ruby-irb,rubygems,rubygem-bundler,ruby-devel,git'
after_commands = 'cd {INSTALL_LOCATION}client,sudo make,cd {INSTALL_LOCATION}server/, bundle install, ln -s {INSTALL_LOCATION}client/dnscat {INSTALL_LOCATION}dnscat'
launcher = 'dnscat' |
def insertShiftArray (arr, num) :
if len(arr) % 2 == 0 :
middle = len(arr) / 2
else :
middle = int(len(arr) / 2) + 1
newArr = []
i = 0
while (i < len(arr)) :
if i == middle and newArr[len(newArr) - 1] != num:
newArr.append(num)
else :
newArr.append(arr[i])
i+=1
return newArr | def insert_shift_array(arr, num):
if len(arr) % 2 == 0:
middle = len(arr) / 2
else:
middle = int(len(arr) / 2) + 1
new_arr = []
i = 0
while i < len(arr):
if i == middle and newArr[len(newArr) - 1] != num:
newArr.append(num)
else:
newArr.append(arr[i])
i += 1
return newArr |
#!/usr/bin/env python
# coding: utf-8
# In[9]:
# Example for break
i=3
j=5
while i:
i-=1
print("i",i)
while j:
j -=1
print("j",j)
if j == 4:
break
print("outside j loop")
print(j,i)
# In[ ]:
| i = 3
j = 5
while i:
i -= 1
print('i', i)
while j:
j -= 1
print('j', j)
if j == 4:
break
print('outside j loop')
print(j, i) |
largest = None
smallest = None
while True:
nStr = input('Enter a number: ')
try:
if nStr == 'done':
break
n = float(nStr)
if largest is None or largest < n:
largest = n
if smallest is None or smallest > n:
smallest = n
except:
print('Invalid input')
continue
print('Largest: ', largest)
print('Smallest: ', smallest) | largest = None
smallest = None
while True:
n_str = input('Enter a number: ')
try:
if nStr == 'done':
break
n = float(nStr)
if largest is None or largest < n:
largest = n
if smallest is None or smallest > n:
smallest = n
except:
print('Invalid input')
continue
print('Largest: ', largest)
print('Smallest: ', smallest) |
# Create dummy variables: df_region
df_region = pd.get_dummies(df)
# Print the columns of df_region
print(df_region.columns)
# Create dummy variables with drop_first=True: df_region
df_region = pd.get_dummies(df, drop_first=True)
# Print the new columns of df_region
print(df_region.columns)
| df_region = pd.get_dummies(df)
print(df_region.columns)
df_region = pd.get_dummies(df, drop_first=True)
print(df_region.columns) |
access_key = 'xxx'
business_id = 1337
document_hash = 'xxx'
signer_email = 'test@example.com'
template_id = 'xxx'
field_identifier = 'xxx'
oauth_client_id = 'xxx'
oauth_client_secret = 'xxx'
code = ''
state = ''
| access_key = 'xxx'
business_id = 1337
document_hash = 'xxx'
signer_email = 'test@example.com'
template_id = 'xxx'
field_identifier = 'xxx'
oauth_client_id = 'xxx'
oauth_client_secret = 'xxx'
code = ''
state = '' |
def from_prefix_suffix(text, n, less = operator.__lt__):
def equal(a, b):
return not less(a, b) and not less(b, a)
B, t, out = [-1] + [0] * n, -1, 1
for i in range(1, n + 1):
# niezmiennik: out = maximum_suffix(text[0..i - 1]))
# niezmiennik: B[0..i - out] = prefix_suffix(text[out..i - 1])
# niezmiennik: t = B[i - out]
while t >= 0 and less(text[out + t], text[i]):
out, t = i - t, B[t]
while t >= 0 and not equal(text[out + t], text[i]):
t = B[t]
t = t + 1
B[i - out + 1] = t
return out, (n + 1 - out) - B[n + 1 - out]
| def from_prefix_suffix(text, n, less=operator.__lt__):
def equal(a, b):
return not less(a, b) and (not less(b, a))
(b, t, out) = ([-1] + [0] * n, -1, 1)
for i in range(1, n + 1):
while t >= 0 and less(text[out + t], text[i]):
(out, t) = (i - t, B[t])
while t >= 0 and (not equal(text[out + t], text[i])):
t = B[t]
t = t + 1
B[i - out + 1] = t
return (out, n + 1 - out - B[n + 1 - out]) |
class DeltaLake(object):
class LandingZone:
def __init__(self, source_dataframe, file_path, stream_query):
self.source_dataframe = source_dataframe
self.file_path = file_path
self.stream_query = stream_query
def write_stream(self):
try:
(self.source_dataframe \
.writeStream.format('delta') \
.option('checkpointLocation', self.file_path + '/_checkpoint') \
.queryName(self.stream_query) \
.outputMode('append') \
.start(self.file_path) \
.awaitTermination())
return
except ValueError as e:
return print(e)
| class Deltalake(object):
class Landingzone:
def __init__(self, source_dataframe, file_path, stream_query):
self.source_dataframe = source_dataframe
self.file_path = file_path
self.stream_query = stream_query
def write_stream(self):
try:
self.source_dataframe.writeStream.format('delta').option('checkpointLocation', self.file_path + '/_checkpoint').queryName(self.stream_query).outputMode('append').start(self.file_path).awaitTermination()
return
except ValueError as e:
return print(e) |
a = 1
b = 1.0
c = 4
d = 4.0
print (b / d) | a = 1
b = 1.0
c = 4
d = 4.0
print(b / d) |
# This is a string object
name = 'Swaroop'
if name.startswith('Swa'):
print('Yes, the string starts with "Swa"')
if 'a' in name:
print('Yes, it contains the string "a"')
if name.find('war') != -1:
print('Yes, it contains the string "war"')
delimiter = '_*_'
mylist = ['Brazil', 'Russia', 'India', 'China']
print(delimiter.join(mylist))
| name = 'Swaroop'
if name.startswith('Swa'):
print('Yes, the string starts with "Swa"')
if 'a' in name:
print('Yes, it contains the string "a"')
if name.find('war') != -1:
print('Yes, it contains the string "war"')
delimiter = '_*_'
mylist = ['Brazil', 'Russia', 'India', 'China']
print(delimiter.join(mylist)) |
class Replace:
def __init__(self, data):
self.data = data
def replace(self, index):
if index == 0:
if self.data % 10 == 0:
self.data = "%d-%d" %((int(self.data / 10) - 1) * 10 + 1, self.data)
else:
self.data = "%d-%d" %((int(self.data / 10) * 10 + 1, ((int(self.data / 10) + 1) * 10)))
if index == 8:
if self.data == 0:
self.data = "No-capital-gain"
elif 0 < self.data < 99999:
self.data = "Gain-some-capital"
else:
self.data = "Gain-vast-capital"
if index == 9:
if self.data == 0:
self.data = "No-capital-loss"
else:
self.data = "Loss-some-capital"
if index == 10:
if self.data == 0:
self.data = "Not-working"
elif 0 < self.data < 35:
self.data = "Part-time"
elif 35 <= self.data <= 40:
self.data = "Full-time"
else:
self.data = "Over-time"
return self.data | class Replace:
def __init__(self, data):
self.data = data
def replace(self, index):
if index == 0:
if self.data % 10 == 0:
self.data = '%d-%d' % ((int(self.data / 10) - 1) * 10 + 1, self.data)
else:
self.data = '%d-%d' % (int(self.data / 10) * 10 + 1, (int(self.data / 10) + 1) * 10)
if index == 8:
if self.data == 0:
self.data = 'No-capital-gain'
elif 0 < self.data < 99999:
self.data = 'Gain-some-capital'
else:
self.data = 'Gain-vast-capital'
if index == 9:
if self.data == 0:
self.data = 'No-capital-loss'
else:
self.data = 'Loss-some-capital'
if index == 10:
if self.data == 0:
self.data = 'Not-working'
elif 0 < self.data < 35:
self.data = 'Part-time'
elif 35 <= self.data <= 40:
self.data = 'Full-time'
else:
self.data = 'Over-time'
return self.data |
class Error(Exception):
pass
class HttpError(Error):
def __init__(
self,
error,
error_description,
error_detail=None,
status_code=None,
url=None):
self.error = error
self.error_description = error_description
self.error_detail = error_detail
self.status_code = status_code
self.url = url
def __repr__(self):
s = '<%s "%s": %s' % (self.__class__.__name__,
self.error, self.error_description)
if self.status_code and self.url:
s += ' (%s from %s)' % (self.status_code, self.url)
if self.error_detail:
s += ', ' + str(self.error_detail)
return s + '>'
__str__ = __repr__
def _asdict(self):
data = {
'error': self.error,
'error_description': self.error_description
}
if self.error_detail:
data['error_detail'] = self.error_detail
if self.status_code:
data['status_code'] = self.status_code
if self.url:
data['url'] = self.url
return data
class BadRequest(HttpError):
pass
class Unauthorized(HttpError):
pass
class Forbidden(HttpError):
pass
class NotFound(HttpError):
pass
class MethodNotAllowed(HttpError):
pass
class Conflict(HttpError):
pass
class InternalServerError(HttpError):
pass
class UnsupportedURI(Error):
pass
class InvalidDataFormat(Error):
pass
class ResourceNotFound(Error):
pass
class InvalidPathException(Error):
def __init__(self, path):
self.path = path
class EtagHashNotMatch(Error):
pass
| class Error(Exception):
pass
class Httperror(Error):
def __init__(self, error, error_description, error_detail=None, status_code=None, url=None):
self.error = error
self.error_description = error_description
self.error_detail = error_detail
self.status_code = status_code
self.url = url
def __repr__(self):
s = '<%s "%s": %s' % (self.__class__.__name__, self.error, self.error_description)
if self.status_code and self.url:
s += ' (%s from %s)' % (self.status_code, self.url)
if self.error_detail:
s += ', ' + str(self.error_detail)
return s + '>'
__str__ = __repr__
def _asdict(self):
data = {'error': self.error, 'error_description': self.error_description}
if self.error_detail:
data['error_detail'] = self.error_detail
if self.status_code:
data['status_code'] = self.status_code
if self.url:
data['url'] = self.url
return data
class Badrequest(HttpError):
pass
class Unauthorized(HttpError):
pass
class Forbidden(HttpError):
pass
class Notfound(HttpError):
pass
class Methodnotallowed(HttpError):
pass
class Conflict(HttpError):
pass
class Internalservererror(HttpError):
pass
class Unsupporteduri(Error):
pass
class Invaliddataformat(Error):
pass
class Resourcenotfound(Error):
pass
class Invalidpathexception(Error):
def __init__(self, path):
self.path = path
class Etaghashnotmatch(Error):
pass |
a = int(input())
t = 0
for x in range(a,50):
if x % 2 !=0 and t <6:
t = t+1
print(x)
| a = int(input())
t = 0
for x in range(a, 50):
if x % 2 != 0 and t < 6:
t = t + 1
print(x) |
def pangkat_tiga(angka):
return angka ** 3
# argumen # nilai kembalian
pangkat_tiga_1 = lambda angka_1, angka_2, larik : [angka_1 ** 3 if angka_1 % 3 == 0 else angka_1 + 3,
angka_2 ** 2,
[elemen * 2 for elemen in larik]]
print(pangkat_tiga(3))
print(pangkat_tiga_1(4, 4, [2,3,4]))
# Fungsi sebagai argumen/parameter
def bagi_dua(hasil_pangkat_tiga):
return hasil_pangkat_tiga / 2
print(bagi_dua(pangkat_tiga(4)))
# Fungsi di dalam fungsi sebagai nilai balik
def halo(nama):
print(nama, "cuaca hari ini cerah ya?")
def sapa(nama):
return halo(nama)
sapa("Sanji")
# Generator
def ini_generator():
yield 1
yield 2
yield 3
yield "JoJo"
for i in ini_generator():
print(i)
def balok(panjang, lebar, tinggi):
volume = panjang * lebar * tinggi
yield volume
luas_permukaan = 2 * (panjang * lebar) + 2 * (panjang * tinggi) + 2 * (tinggi * lebar)
yield luas_permukaan
def balok_1(panjang, lebar, tinggi):
volume = panjang * lebar * tinggi
luas_permukaan = 2 * (panjang * lebar) + 2 * (panjang * tinggi) + 2 * (tinggi * lebar)
return volume, luas_permukaan
for i in balok_1(10, 10, 10):
print(i)
print(balok(5,5,5)) | def pangkat_tiga(angka):
return angka ** 3
pangkat_tiga_1 = lambda angka_1, angka_2, larik: [angka_1 ** 3 if angka_1 % 3 == 0 else angka_1 + 3, angka_2 ** 2, [elemen * 2 for elemen in larik]]
print(pangkat_tiga(3))
print(pangkat_tiga_1(4, 4, [2, 3, 4]))
def bagi_dua(hasil_pangkat_tiga):
return hasil_pangkat_tiga / 2
print(bagi_dua(pangkat_tiga(4)))
def halo(nama):
print(nama, 'cuaca hari ini cerah ya?')
def sapa(nama):
return halo(nama)
sapa('Sanji')
def ini_generator():
yield 1
yield 2
yield 3
yield 'JoJo'
for i in ini_generator():
print(i)
def balok(panjang, lebar, tinggi):
volume = panjang * lebar * tinggi
yield volume
luas_permukaan = 2 * (panjang * lebar) + 2 * (panjang * tinggi) + 2 * (tinggi * lebar)
yield luas_permukaan
def balok_1(panjang, lebar, tinggi):
volume = panjang * lebar * tinggi
luas_permukaan = 2 * (panjang * lebar) + 2 * (panjang * tinggi) + 2 * (tinggi * lebar)
return (volume, luas_permukaan)
for i in balok_1(10, 10, 10):
print(i)
print(balok(5, 5, 5)) |
def solution(s, n):
answer = ''
for char in s:
if char == " ": answer += " "
else:
if (ord(char) + n > 90 and ord(char) >= 65
and ord(char) <= 90) or (ord(char) + n > 122
and ord(char) >= 97
and ord(char) <= 122):
answer += chr(ord(char) + n - 26)
else:
answer += chr(ord(char) + n)
return answer
print(solution('AB', 1))
print(solution('z', 1))
print(solution('Z', 10))
print(solution(' aBZ', 4))
| def solution(s, n):
answer = ''
for char in s:
if char == ' ':
answer += ' '
elif ord(char) + n > 90 and ord(char) >= 65 and (ord(char) <= 90) or (ord(char) + n > 122 and ord(char) >= 97 and (ord(char) <= 122)):
answer += chr(ord(char) + n - 26)
else:
answer += chr(ord(char) + n)
return answer
print(solution('AB', 1))
print(solution('z', 1))
print(solution('Z', 10))
print(solution(' aBZ', 4)) |
# Prgram to demonstrate keyword argument
def display(name,course="AI"):
print("The name is",name)
print("The course is",course)
display(course="AI",name="adi")
display(name="ram")
| def display(name, course='AI'):
print('The name is', name)
print('The course is', course)
display(course='AI', name='adi')
display(name='ram') |
class Transaction:
def __init__(self, ticker, trans_type, quantity, owned, balance):
self.ticker = ticker
self.trans_type = trans_type
self.quantity = quantity
self.owned = owned
self.balance = balance
@classmethod
def failed(cls):
return cls("FAILED", "FAILED", 0, 0, 0)
def __str__(self):
s = "STK\tTYPE\tQ\tOwn\tBal\n"
s += self.ticker + "\t"
s += self.trans_type + "\t"
s += str(self.quantity) + "\t"
s += str(self.owned) + "\t"
s += str(self.balance)
return s
| class Transaction:
def __init__(self, ticker, trans_type, quantity, owned, balance):
self.ticker = ticker
self.trans_type = trans_type
self.quantity = quantity
self.owned = owned
self.balance = balance
@classmethod
def failed(cls):
return cls('FAILED', 'FAILED', 0, 0, 0)
def __str__(self):
s = 'STK\tTYPE\tQ\tOwn\tBal\n'
s += self.ticker + '\t'
s += self.trans_type + '\t'
s += str(self.quantity) + '\t'
s += str(self.owned) + '\t'
s += str(self.balance)
return s |
INITALQCFINISHEDLIB = {
'17' : 'Bioanalyzer QC (Library Validation) 4.0',
'20' : 'CaliperGX QC (DNA)',
'24' : 'Customer Gel QC',
'62' : 'qPCR QC (Library Validation) 4.0',
'64' : 'Quant-iT QC (Library Validation) 4.0',
'67' : 'Qubit QC (Library Validation) 4.0',
'904' : 'Automated Quant-iT QC (Library Validation) 4.0',
'1154' : 'Fragment Analyzer QC (Library Validation) 4.0'}
INITALQC = {
'16' : 'Bioanalyzer QC (DNA) 4.0',
'18' : 'Bioanalyzer QC (RNA) 4.0',
'20' : 'CaliperGX QC (DNA)',
'24' : 'Customer Gel QC',
'63' : 'Quant-iT QC (DNA) 4.0',
'65' : 'Quant-iT QC (RNA) 4.0',
'66' : 'Qubit QC (DNA) 4.0',
'68' : 'Qubit QC (RNA) 4.0',
'116' : 'CaliperGX QC (RNA)',
'504' : 'Volume Measurement QC',
'954' : 'Automated Quant-iT QC (DNA) 4.0',
'1054' : 'Automated Quant-iT QC (RNA) 4.0',
'1157' : 'Fragment Analyzer QC (DNA) 4.0',
'1354' : 'Fragment Analyzer QC (RNA) 4.0'}
AGRINITQC = {
'7' : 'Aggregate QC (DNA) 4.0',
'9' : 'Aggregate QC (RNA) 4.0'}
PREPREPSTART = {
'74' : 'Shear DNA (SS XT) 4.0',
'304' : 'Adapter ligation and reverse transcription (TruSeq small RNA) 1.0',
'1104' : 'RAD-seq Library Indexing v1.0',
'1706' : 'GEM Generation (Chromium Genome v2)',
'2054' : 'Sectioning and HE Staining'}
POOLING = {
'42' : 'Library Pooling (Illumina SBS) 4.0',
'43' : 'Library Pooling (MiSeq) 4.0',
'44' : 'Library Pooling (TruSeq Amplicon) 4.0',
'45' : 'Library Pooling (TruSeq Exome) 4.0',
'58' : 'Pooling For Multiplexed Sequencing (SS XT) 4.0',
'255' : 'Library Pooling (Finished Libraries) 4.0',
'308' : 'Library Pooling (TruSeq Small RNA) 1.0',
'404' : 'Pre-Pooling (Illumina SBS) 4.0',
'506' : 'Pre-Pooling (MiSeq) 4.0',
'508' : 'Applications Pre-Pooling',
'716' : 'Library Pooling (HiSeq X) 1.0',
'1105' : 'Library Pooling (RAD-seq) v1.0',
'1307' : 'Library Pooling (MinION) 1.0',
'1506' : 'Pre-Pooling (NovaSeq) v2.0',
'1507' : 'Library Pooling (NovaSeq) v2.0',
'1906' : 'Pre-Pooling (NextSeq) v1.0',
'1907' : 'Library Pooling (NextSeq) v1.0'}
PREPSTARTFINLIB = {
'255' : 'Library Pooling (Finished Libraries) 4.0'}
PREPSTART = {
'10' : 'Aliquot Libraries for Hybridization (SS XT)',
'33' : 'Fragment DNA (TruSeq DNA) 4.0',
'47' : 'mRNA Purification, Fragmentation & cDNA synthesis (TruSeq RNA) 4.0',
'117' : 'Applications Generic Process',
'308' : 'Library Pooling (TruSeq Small RNA) 1.0',
'405' : 'RiboZero depletion',
'407' : 'Fragment DNA (ThruPlex)',
'454' : 'ThruPlex template preparation and synthesis',
'605' : 'Tagmentation, Strand displacement and AMPure purification',
'612' : 'Fragmentation & cDNA synthesis (TruSeq RNA) 4.0',#sometimes, the earlier steps are skipped.
'1105' : 'Library Pooling (RAD-seq) v1.0',
'1305' : 'Adapter Ligation (MinION) 1.0',
'1404' : 'Fragmentation & cDNA synthesis (SMARTer Pico) 4.0',
'1705' : 'Library preparation (Chromium Genome v2)',
'1856' : 'Sample Crosslinking',
'1861' : 'Chromatin capture, digestion, end ligation and crosslink reversal (HiC) 1.0',
'2058' : 'Permeabilization and Second Strand Synthesis',
'2104' : 'Selection, cDNA Synthesis and Library Construction',
'2154' : 'PCR1 (Amplicon)',
'2155' : 'PCR2 (Amplicon)'}
PREPEND = {
'109' : 'CA Purification',
'111' : 'Amplify Captured Libraries to Add Index Tags (SS XT) 4.0',
'157' : 'Applications Finish Prep',
'311' : 'Sample Placement (Size Selection)',
'406' : 'End repair, size selection, A-tailing and adapter ligation (TruSeq PCR-free DNA) 4.0',
'456' : 'Purification (ThruPlex)',
'606' : 'Size Selection (Pippin)',
'805' : 'NeoPrep Library Prep v1.0',
'1307' : 'Library Pooling (MinION) 1.0',
'1554' : 'Purification',
'1705' : 'Library preparation (Chromium Genome v2)',
'2060' : 'Visium Library Construction',
'2105' : 'Amplification and Purification'}
LIBVAL = {
'17' : 'Bioanalyzer QC (Library Validation) 4.0',
'20' : 'CaliperGX QC (DNA)',
'62' : 'qPCR QC (Library Validation) 4.0',
'64' : 'Quant-iT QC (Library Validation) 4.0',
'67' : 'Qubit QC (Library Validation) 4.0',
'504' : 'Volume Measurement QC',
'904' : 'Automated Quant-iT QC (Library Validation) 4.0',
'1154' : 'Fragment Analyzer QC (Library Validation) 4.0'}
LIBVALFINISHEDLIB = {
'17' : 'Bioanalyzer QC (Library Validation) 4.0',
'20' : 'CaliperGX QC (DNA)',
'24' : 'Customer Gel QC',
'62' : 'qPCR QC (Library Validation) 4.0',
'64' : 'Quant-iT QC (Library Validation) 4.0',
'67' : 'Qubit QC (Library Validation) 4.0',
'504' : 'Volume Measurement QC',
'904' : 'Automated Quant-iT QC (Library Validation) 4.0',
'1154' : 'Fragment Analyzer QC (Library Validation) 4.0'}
AGRLIBVAL = {
'8' : 'Aggregate QC (Library Validation) 4.0',
'806' : 'NeoPrep Library QC v1.0'}
SEQSTART = {
'23' :'Cluster Generation (Illumina SBS) 4.0',
'26' :'Denature, Dilute and Load Sample (MiSeq) 4.0',
'710' :'Cluster Generation (HiSeq X) 1.0',
'1306' : 'Load Sample and Sequencing (MinION) 1.0',
'1458' : 'Load to Flowcell (NovaSeq 6000 v2.0)',
'1910' : 'Load to Flowcell (NextSeq v1.0)'}
DILSTART = {
'39' : 'Library Normalization (Illumina SBS) 4.0',
'40' : 'Library Normalization (MiSeq) 4.0',
'715': 'Library Normalization (HiSeq X) 1.0',
'1505': 'Library Normalization (NovaSeq) v2.0',
'1905' : 'Library Normalization (NextSeq) v1.0'}
SEQUENCING = {
'38' : 'Illumina Sequencing (Illumina SBS) 4.0',
'46' : 'MiSeq Run (MiSeq) 4.0',
'714': 'Illumina Sequencing (HiSeq X) 1.0',
'1306' : 'Load Sample and Sequencing (MinION) 1.0',
'1454': 'AUTOMATED - NovaSeq Run (NovaSeq 6000 v2.0)',
'1908' : 'Illumina Sequencing (NextSeq) v1.0'}
WORKSET = {
'204' : 'Setup Workset/Plate'}
SUMMARY = {
'356' : 'Project Summary 1.3'}
DEMULTIPLEX={
'13' : 'Bcl Conversion & Demultiplexing (Illumina SBS) 4.0'}
CALIPER = {
'20' : 'CaliperGX QC (DNA)',
'116' : 'CaliperGX QC (RNA)'}
FRAGMENT_ANALYZER = {
'1354' : 'Fragment Analyzer QC (RNA) 4.0',
'1154' : 'Fragment Analyzer QC (Library Validation) 4.0',
'1157' : 'Fragment Analyzer QC (DNA) 4.0'}
FINLIB = ['Finished library', 'Amplicon']
PROJ_UDF_EXCEPTIONS = ['customer_reference','uppnex_id','reference_genome','application']
SAMP_UDF_EXCEPTIONS = ['customer_name','reads_requested_(millions)','min_reads',
'm_reads','dup_rm','status_auto','status_manual','average_size_bp','incoming_qc_status']
PROCESSCATEGORIES = {'INITALQCFINISHEDLIB' : INITALQCFINISHEDLIB,
'INITALQC':INITALQC,
'AGRINITQC':AGRINITQC,
'PREPREPSTART':PREPREPSTART,
'POOLING':POOLING,
'PREPSTART':PREPSTART,
'PREPEND':PREPEND,
'LIBVAL':LIBVAL,
'LIBVALFINISHEDLIB':LIBVALFINISHEDLIB,
'AGRLIBVAL':AGRLIBVAL,
'SEQSTART':SEQSTART,
'DILSTART':DILSTART,
'SEQUENCING':SEQUENCING,
'WORKSET':WORKSET,
'SUMMARY':SUMMARY,
'DEMULTIPLEX':DEMULTIPLEX,
'CALIPER':CALIPER}
| initalqcfinishedlib = {'17': 'Bioanalyzer QC (Library Validation) 4.0', '20': 'CaliperGX QC (DNA)', '24': 'Customer Gel QC', '62': 'qPCR QC (Library Validation) 4.0', '64': 'Quant-iT QC (Library Validation) 4.0', '67': 'Qubit QC (Library Validation) 4.0', '904': 'Automated Quant-iT QC (Library Validation) 4.0', '1154': 'Fragment Analyzer QC (Library Validation) 4.0'}
initalqc = {'16': 'Bioanalyzer QC (DNA) 4.0', '18': 'Bioanalyzer QC (RNA) 4.0', '20': 'CaliperGX QC (DNA)', '24': 'Customer Gel QC', '63': 'Quant-iT QC (DNA) 4.0', '65': 'Quant-iT QC (RNA) 4.0', '66': 'Qubit QC (DNA) 4.0', '68': 'Qubit QC (RNA) 4.0', '116': 'CaliperGX QC (RNA)', '504': 'Volume Measurement QC', '954': 'Automated Quant-iT QC (DNA) 4.0', '1054': 'Automated Quant-iT QC (RNA) 4.0', '1157': 'Fragment Analyzer QC (DNA) 4.0', '1354': 'Fragment Analyzer QC (RNA) 4.0'}
agrinitqc = {'7': 'Aggregate QC (DNA) 4.0', '9': 'Aggregate QC (RNA) 4.0'}
preprepstart = {'74': 'Shear DNA (SS XT) 4.0', '304': 'Adapter ligation and reverse transcription (TruSeq small RNA) 1.0', '1104': 'RAD-seq Library Indexing v1.0', '1706': 'GEM Generation (Chromium Genome v2)', '2054': 'Sectioning and HE Staining'}
pooling = {'42': 'Library Pooling (Illumina SBS) 4.0', '43': 'Library Pooling (MiSeq) 4.0', '44': 'Library Pooling (TruSeq Amplicon) 4.0', '45': 'Library Pooling (TruSeq Exome) 4.0', '58': 'Pooling For Multiplexed Sequencing (SS XT) 4.0', '255': 'Library Pooling (Finished Libraries) 4.0', '308': 'Library Pooling (TruSeq Small RNA) 1.0', '404': 'Pre-Pooling (Illumina SBS) 4.0', '506': 'Pre-Pooling (MiSeq) 4.0', '508': 'Applications Pre-Pooling', '716': 'Library Pooling (HiSeq X) 1.0', '1105': 'Library Pooling (RAD-seq) v1.0', '1307': 'Library Pooling (MinION) 1.0', '1506': 'Pre-Pooling (NovaSeq) v2.0', '1507': 'Library Pooling (NovaSeq) v2.0', '1906': 'Pre-Pooling (NextSeq) v1.0', '1907': 'Library Pooling (NextSeq) v1.0'}
prepstartfinlib = {'255': 'Library Pooling (Finished Libraries) 4.0'}
prepstart = {'10': 'Aliquot Libraries for Hybridization (SS XT)', '33': 'Fragment DNA (TruSeq DNA) 4.0', '47': 'mRNA Purification, Fragmentation & cDNA synthesis (TruSeq RNA) 4.0', '117': 'Applications Generic Process', '308': 'Library Pooling (TruSeq Small RNA) 1.0', '405': 'RiboZero depletion', '407': 'Fragment DNA (ThruPlex)', '454': 'ThruPlex template preparation and synthesis', '605': 'Tagmentation, Strand displacement and AMPure purification', '612': 'Fragmentation & cDNA synthesis (TruSeq RNA) 4.0', '1105': 'Library Pooling (RAD-seq) v1.0', '1305': 'Adapter Ligation (MinION) 1.0', '1404': 'Fragmentation & cDNA synthesis (SMARTer Pico) 4.0', '1705': 'Library preparation (Chromium Genome v2)', '1856': 'Sample Crosslinking', '1861': 'Chromatin capture, digestion, end ligation and crosslink reversal (HiC) 1.0', '2058': 'Permeabilization and Second Strand Synthesis', '2104': 'Selection, cDNA Synthesis and Library Construction', '2154': 'PCR1 (Amplicon)', '2155': 'PCR2 (Amplicon)'}
prepend = {'109': 'CA Purification', '111': 'Amplify Captured Libraries to Add Index Tags (SS XT) 4.0', '157': 'Applications Finish Prep', '311': 'Sample Placement (Size Selection)', '406': 'End repair, size selection, A-tailing and adapter ligation (TruSeq PCR-free DNA) 4.0', '456': 'Purification (ThruPlex)', '606': 'Size Selection (Pippin)', '805': 'NeoPrep Library Prep v1.0', '1307': 'Library Pooling (MinION) 1.0', '1554': 'Purification', '1705': 'Library preparation (Chromium Genome v2)', '2060': 'Visium Library Construction', '2105': 'Amplification and Purification'}
libval = {'17': 'Bioanalyzer QC (Library Validation) 4.0', '20': 'CaliperGX QC (DNA)', '62': 'qPCR QC (Library Validation) 4.0', '64': 'Quant-iT QC (Library Validation) 4.0', '67': 'Qubit QC (Library Validation) 4.0', '504': 'Volume Measurement QC', '904': 'Automated Quant-iT QC (Library Validation) 4.0', '1154': 'Fragment Analyzer QC (Library Validation) 4.0'}
libvalfinishedlib = {'17': 'Bioanalyzer QC (Library Validation) 4.0', '20': 'CaliperGX QC (DNA)', '24': 'Customer Gel QC', '62': 'qPCR QC (Library Validation) 4.0', '64': 'Quant-iT QC (Library Validation) 4.0', '67': 'Qubit QC (Library Validation) 4.0', '504': 'Volume Measurement QC', '904': 'Automated Quant-iT QC (Library Validation) 4.0', '1154': 'Fragment Analyzer QC (Library Validation) 4.0'}
agrlibval = {'8': 'Aggregate QC (Library Validation) 4.0', '806': 'NeoPrep Library QC v1.0'}
seqstart = {'23': 'Cluster Generation (Illumina SBS) 4.0', '26': 'Denature, Dilute and Load Sample (MiSeq) 4.0', '710': 'Cluster Generation (HiSeq X) 1.0', '1306': 'Load Sample and Sequencing (MinION) 1.0', '1458': 'Load to Flowcell (NovaSeq 6000 v2.0)', '1910': 'Load to Flowcell (NextSeq v1.0)'}
dilstart = {'39': 'Library Normalization (Illumina SBS) 4.0', '40': 'Library Normalization (MiSeq) 4.0', '715': 'Library Normalization (HiSeq X) 1.0', '1505': 'Library Normalization (NovaSeq) v2.0', '1905': 'Library Normalization (NextSeq) v1.0'}
sequencing = {'38': 'Illumina Sequencing (Illumina SBS) 4.0', '46': 'MiSeq Run (MiSeq) 4.0', '714': 'Illumina Sequencing (HiSeq X) 1.0', '1306': 'Load Sample and Sequencing (MinION) 1.0', '1454': 'AUTOMATED - NovaSeq Run (NovaSeq 6000 v2.0)', '1908': 'Illumina Sequencing (NextSeq) v1.0'}
workset = {'204': 'Setup Workset/Plate'}
summary = {'356': 'Project Summary 1.3'}
demultiplex = {'13': 'Bcl Conversion & Demultiplexing (Illumina SBS) 4.0'}
caliper = {'20': 'CaliperGX QC (DNA)', '116': 'CaliperGX QC (RNA)'}
fragment_analyzer = {'1354': 'Fragment Analyzer QC (RNA) 4.0', '1154': 'Fragment Analyzer QC (Library Validation) 4.0', '1157': 'Fragment Analyzer QC (DNA) 4.0'}
finlib = ['Finished library', 'Amplicon']
proj_udf_exceptions = ['customer_reference', 'uppnex_id', 'reference_genome', 'application']
samp_udf_exceptions = ['customer_name', 'reads_requested_(millions)', 'min_reads', 'm_reads', 'dup_rm', 'status_auto', 'status_manual', 'average_size_bp', 'incoming_qc_status']
processcategories = {'INITALQCFINISHEDLIB': INITALQCFINISHEDLIB, 'INITALQC': INITALQC, 'AGRINITQC': AGRINITQC, 'PREPREPSTART': PREPREPSTART, 'POOLING': POOLING, 'PREPSTART': PREPSTART, 'PREPEND': PREPEND, 'LIBVAL': LIBVAL, 'LIBVALFINISHEDLIB': LIBVALFINISHEDLIB, 'AGRLIBVAL': AGRLIBVAL, 'SEQSTART': SEQSTART, 'DILSTART': DILSTART, 'SEQUENCING': SEQUENCING, 'WORKSET': WORKSET, 'SUMMARY': SUMMARY, 'DEMULTIPLEX': DEMULTIPLEX, 'CALIPER': CALIPER} |
# Copyright 2020 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# This file contains rule definitions for running
# the test binary to produce output json and protobuf files,
# subset diff the input and output json files, and golden file
# testing the output protobuf files against the expected files.
# It also defines a Macro that simplifies defining a protobuf test
# over a sample P4 program.
load("//:p4c.bzl", "run_p4c")
load("//p4_symbolic/bmv2:test.bzl", "exact_diff_test")
# Macro that defines our end to end tests.
# Given a p4 program, this macro runs our main binary
# on the p4 program and its table entries (if they exist).
# The binary outputs a debugging dump of the underlying smt program,
# as well as the output test packets.
# The macro compares both of these outputs against the provided
# expected golden files.
# The macro defines these rules in order:
# 1. A rule for producing bmv2 json and p4info files from a .p4 file using p4c.
# 2. A rule for running the main binary on the inputs using p4_symbolic/main.cc,
# and dumping both output files.
# 3. Two rules for golden file testing of the two output files.
# 4. A test suite combining the two rules above with the same name
# as given to the macro.
# Use the p4_deps list to specify dependent files that p4_program input
# file depends on (e.g. by including them).
def end_to_end_test(
name,
p4_program,
output_golden_file,
smt_golden_file,
table_entries = None,
p4_deps = []):
p4c_name = "%s_p4c" % name
run_name = "%s_main" % name
p4info_file = "%s_bazel-p4c-tmp-output/p4info.pb.txt" % p4c_name
output_test_name = "%s_output" % name
smt_test_name = "%s_smt" % name
optional_table_entries = []
optional_table_entry_arg = ""
if table_entries:
optional_table_entries = [table_entries]
optional_table_entry_arg = "--entries=$(location %s)" % table_entries
# Run p4c to get bmv2 JSON and p4info.pb.txt files.
run_p4c(
name = p4c_name,
src = p4_program,
deps = p4_deps,
p4runtime_files = [p4info_file],
)
# Use p4_symbolic/main.cc to run our tool on the p4 program
# and produce a debugging smt file and an output file with
# interesting testing packets.
output_filename = name + ".txt"
output_smt_filename = name + ".smt2"
native.genrule(
name = run_name,
srcs = [":" + p4c_name, p4info_file] + optional_table_entries,
outs = [output_filename, output_smt_filename],
tools = ["//p4_symbolic:main"],
cmd = (
"$(location //p4_symbolic:main) --bmv2=$(location %s) " +
"--p4info=$(location %s) %s --debug=$(location %s) " +
"--hardcoded_parser=false &> $(location %s)"
) % (
":" + p4c_name,
p4info_file,
optional_table_entry_arg,
output_smt_filename,
output_filename,
),
)
# Exact diff test for the packet output file.
exact_diff_test(
name = output_test_name,
actual = output_filename,
expected = output_golden_file,
)
# Exact diff test for the smt output file.
exact_diff_test(
name = smt_test_name,
actual = output_smt_filename,
expected = smt_golden_file,
)
# Group tests into a test_suite with the given name.
# This is just to make the provided name alias to something.
native.test_suite(
name = name,
tests = [
":" + output_test_name,
":" + smt_test_name,
],
)
| load('//:p4c.bzl', 'run_p4c')
load('//p4_symbolic/bmv2:test.bzl', 'exact_diff_test')
def end_to_end_test(name, p4_program, output_golden_file, smt_golden_file, table_entries=None, p4_deps=[]):
p4c_name = '%s_p4c' % name
run_name = '%s_main' % name
p4info_file = '%s_bazel-p4c-tmp-output/p4info.pb.txt' % p4c_name
output_test_name = '%s_output' % name
smt_test_name = '%s_smt' % name
optional_table_entries = []
optional_table_entry_arg = ''
if table_entries:
optional_table_entries = [table_entries]
optional_table_entry_arg = '--entries=$(location %s)' % table_entries
run_p4c(name=p4c_name, src=p4_program, deps=p4_deps, p4runtime_files=[p4info_file])
output_filename = name + '.txt'
output_smt_filename = name + '.smt2'
native.genrule(name=run_name, srcs=[':' + p4c_name, p4info_file] + optional_table_entries, outs=[output_filename, output_smt_filename], tools=['//p4_symbolic:main'], cmd=('$(location //p4_symbolic:main) --bmv2=$(location %s) ' + '--p4info=$(location %s) %s --debug=$(location %s) ' + '--hardcoded_parser=false &> $(location %s)') % (':' + p4c_name, p4info_file, optional_table_entry_arg, output_smt_filename, output_filename))
exact_diff_test(name=output_test_name, actual=output_filename, expected=output_golden_file)
exact_diff_test(name=smt_test_name, actual=output_smt_filename, expected=smt_golden_file)
native.test_suite(name=name, tests=[':' + output_test_name, ':' + smt_test_name]) |
# Longest Sequence with two unique numbers
class Solution:
def findSequence(self, arr):
last_num = -1
second_last_num = -1
last_num_count = 0
current_max = 0
maximum = 0
for num in arr:
if num == last_num or num == second_last_num:
current_max += 1
else:
current_max = last_num_count + 1
if num == last_num:
last_num_count += 1
else:
last_num_count = 1
second_last_num = last_num
last_num = num
maximum = max(current_max, maximum)
return maximum
if __name__ == "__main__":
arr = [1, 3, 5, 3, 1, 3, 1, 5]
print(Solution().findSequence(arr))
arr = [1, 1, 6, 5, 6, 6, 1, 1, 1, 1]
print(Solution().findSequence(arr))
| class Solution:
def find_sequence(self, arr):
last_num = -1
second_last_num = -1
last_num_count = 0
current_max = 0
maximum = 0
for num in arr:
if num == last_num or num == second_last_num:
current_max += 1
else:
current_max = last_num_count + 1
if num == last_num:
last_num_count += 1
else:
last_num_count = 1
second_last_num = last_num
last_num = num
maximum = max(current_max, maximum)
return maximum
if __name__ == '__main__':
arr = [1, 3, 5, 3, 1, 3, 1, 5]
print(solution().findSequence(arr))
arr = [1, 1, 6, 5, 6, 6, 1, 1, 1, 1]
print(solution().findSequence(arr)) |
class Rate:
def buildRateRequest(self):
rateReq = {
"items": [
{
"productId": 3387821,
"variantId": 12009212,
"weight_unit": "grams",
"weight": 2,
"quantity": 1
}
]
}
return rateReq
def getRates(self):
#req = self.buildRateRequest()
res = {
"rateHashKey": "zsTUi",
"shipment_price": 27.00
}
return res
class Shipment:
def buildRequest(self):
req = {
"rateHashKey": "zsTUi",
"packageWt": 23
}
return req
def getShipment(self):
#req = self.buildRequest()
res = {
"shipmentId": 'kjuiujs'
}
return res | class Rate:
def build_rate_request(self):
rate_req = {'items': [{'productId': 3387821, 'variantId': 12009212, 'weight_unit': 'grams', 'weight': 2, 'quantity': 1}]}
return rateReq
def get_rates(self):
res = {'rateHashKey': 'zsTUi', 'shipment_price': 27.0}
return res
class Shipment:
def build_request(self):
req = {'rateHashKey': 'zsTUi', 'packageWt': 23}
return req
def get_shipment(self):
res = {'shipmentId': 'kjuiujs'}
return res |
nlinhas = input('linhas a serem lidas:')
frase = []
for i in range(len(nlinhas)):
s = input('digite a frase:')
frase.append(s)
cripto = []
for i in range(len(nlinhas)):
f = frase[i].split('')
print(f)
#primeiro
for k in range(len(f)):
if f[k] in '1234567890':
pass
else:
f[k] = chr(ord(f[k]) + 1)
print(f)
| nlinhas = input('linhas a serem lidas:')
frase = []
for i in range(len(nlinhas)):
s = input('digite a frase:')
frase.append(s)
cripto = []
for i in range(len(nlinhas)):
f = frase[i].split('')
print(f)
for k in range(len(f)):
if f[k] in '1234567890':
pass
else:
f[k] = chr(ord(f[k]) + 1)
print(f) |
class Rec2TapsError(ValueError):
pass
class UnequalSampleRate(Rec2TapsError):
'Stimuli file and the recording file have unequal sample rate'
def __init__(self, stimuli_file, recording_file, stimuli_sr, recording_sr):
self.stimuli_file = stimuli_file
self.recording_file = recording_file
self.stimuli_sr = stimuli_sr
self.recording_sr = recording_sr
super().__init__(('{} and {} do not have the same sample rate '
'({} != {})').format(stimuli_file, recording_file,
stimuli_sr, recording_sr))
class SignalTooShortForConvolution(Rec2TapsError):
pass
class StimuliShorterThanRecording(Rec2TapsError):
'Stimuli signal is shorter than recording signal'
def __init__(self, stimuli_file, recording_file):
super().__init__(('Stimuli file ({}) is shorter than recording file '
'({}).').format(stimuli_file, recording_file))
| class Rec2Tapserror(ValueError):
pass
class Unequalsamplerate(Rec2TapsError):
"""Stimuli file and the recording file have unequal sample rate"""
def __init__(self, stimuli_file, recording_file, stimuli_sr, recording_sr):
self.stimuli_file = stimuli_file
self.recording_file = recording_file
self.stimuli_sr = stimuli_sr
self.recording_sr = recording_sr
super().__init__('{} and {} do not have the same sample rate ({} != {})'.format(stimuli_file, recording_file, stimuli_sr, recording_sr))
class Signaltooshortforconvolution(Rec2TapsError):
pass
class Stimulishorterthanrecording(Rec2TapsError):
"""Stimuli signal is shorter than recording signal"""
def __init__(self, stimuli_file, recording_file):
super().__init__('Stimuli file ({}) is shorter than recording file ({}).'.format(stimuli_file, recording_file)) |
'''
Title : Find the Second Largest Number
Subdomain : Basic Data Types
Domain : Python
Author : codeperfectplus
Created : 17 January 2020
Problem :
Given the participants' score sheet for your University Sports Day, you are required to find the runner-up score. You are given scores. Store them in a list and find the score of the runner-up.
'''
if __name__ == '__main__':
n = int(input())
arr = map(int, input().split())
new_list = []
for i in arr:
if i not in new_list:
new_list.append(i)
sort_list = sorted(new_list)
print(sort_list[-2]) | """
Title : Find the Second Largest Number
Subdomain : Basic Data Types
Domain : Python
Author : codeperfectplus
Created : 17 January 2020
Problem :
Given the participants' score sheet for your University Sports Day, you are required to find the runner-up score. You are given scores. Store them in a list and find the score of the runner-up.
"""
if __name__ == '__main__':
n = int(input())
arr = map(int, input().split())
new_list = []
for i in arr:
if i not in new_list:
new_list.append(i)
sort_list = sorted(new_list)
print(sort_list[-2]) |
def addition(*numbers) -> int:
total_sum = 0
for number in numbers:
total_sum += number
return total_sum
sum = addition(2, 3)
print(f'sum: {sum}')
| def addition(*numbers) -> int:
total_sum = 0
for number in numbers:
total_sum += number
return total_sum
sum = addition(2, 3)
print(f'sum: {sum}') |
x = {'a': 1, 'b': 2}
y = {'b': 3, 'c': 4}
# Python merges dictionary keys
# in the order listed in the expression, overwriting
# duplicates from left to right.
#
# Works in Python 3.5+
print({**x, **y})
| x = {'a': 1, 'b': 2}
y = {'b': 3, 'c': 4}
print({**x, **y}) |
class Debt(object):
def __init__(self,data=None):
self.fromUser = data["from"]
self.toUser = data["to"]
self.amount = data["amount"]
if "currency_code" in data:
self.currency_code = data["currency_code"]
else:
self.currency_code = None
def getFromUser(self):
return self.fromUser
def getToUser(self):
return self.toUser
def getAmount(self):
return self.amount
def getCurrencyCode(self):
return self.currency_code
| class Debt(object):
def __init__(self, data=None):
self.fromUser = data['from']
self.toUser = data['to']
self.amount = data['amount']
if 'currency_code' in data:
self.currency_code = data['currency_code']
else:
self.currency_code = None
def get_from_user(self):
return self.fromUser
def get_to_user(self):
return self.toUser
def get_amount(self):
return self.amount
def get_currency_code(self):
return self.currency_code |
#
# PySNMP MIB module TPLINK-PRODUCTS-MIB (http://snmplabs.com/pysmi)
# ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/TPLINK-PRODUCTS-MIB
# Produced by pysmi-0.3.4 at Wed May 1 15:25:39 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, OctetString, ObjectIdentifier = mibBuilder.importSymbols("ASN1", "Integer", "OctetString", "ObjectIdentifier")
NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues")
ValueRangeConstraint, ValueSizeConstraint, SingleValueConstraint, ConstraintsIntersection, ConstraintsUnion = mibBuilder.importSymbols("ASN1-REFINEMENT", "ValueRangeConstraint", "ValueSizeConstraint", "SingleValueConstraint", "ConstraintsIntersection", "ConstraintsUnion")
ModuleCompliance, NotificationGroup = mibBuilder.importSymbols("SNMPv2-CONF", "ModuleCompliance", "NotificationGroup")
Counter32, Integer32, ObjectIdentity, MibIdentifier, Bits, TimeTicks, Unsigned32, Gauge32, ModuleIdentity, MibScalar, MibTable, MibTableRow, MibTableColumn, iso, Counter64, NotificationType, IpAddress = mibBuilder.importSymbols("SNMPv2-SMI", "Counter32", "Integer32", "ObjectIdentity", "MibIdentifier", "Bits", "TimeTicks", "Unsigned32", "Gauge32", "ModuleIdentity", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "iso", "Counter64", "NotificationType", "IpAddress")
DisplayString, TextualConvention = mibBuilder.importSymbols("SNMPv2-TC", "DisplayString", "TextualConvention")
tplinkProducts, = mibBuilder.importSymbols("TPLINK-MIB", "tplinkProducts")
tplink_tlsl5428 = MibIdentifier((1, 3, 6, 1, 4, 1, 11863, 5, 1)).setLabel("tplink-tlsl5428")
tplink_tlsl3452 = MibIdentifier((1, 3, 6, 1, 4, 1, 11863, 5, 2)).setLabel("tplink-tlsl3452")
tplink_tlsg3424 = MibIdentifier((1, 3, 6, 1, 4, 1, 11863, 5, 3)).setLabel("tplink-tlsg3424")
tplink_tlsg3216 = MibIdentifier((1, 3, 6, 1, 4, 1, 11863, 5, 4)).setLabel("tplink-tlsg3216")
tplink_tlsg3210 = MibIdentifier((1, 3, 6, 1, 4, 1, 11863, 5, 5)).setLabel("tplink-tlsg3210")
tplink_tlsl3428 = MibIdentifier((1, 3, 6, 1, 4, 1, 11863, 5, 6)).setLabel("tplink-tlsl3428")
tplink_tlsg5428 = MibIdentifier((1, 3, 6, 1, 4, 1, 11863, 5, 7)).setLabel("tplink-tlsg5428")
tplink_tlsg3424p = MibIdentifier((1, 3, 6, 1, 4, 1, 11863, 5, 8)).setLabel("tplink-tlsg3424p")
tplink_tlsg5412f = MibIdentifier((1, 3, 6, 1, 4, 1, 11863, 5, 9)).setLabel("tplink-tlsg5412f")
tplink_t2700_28tct = MibIdentifier((1, 3, 6, 1, 4, 1, 11863, 5, 10)).setLabel("tplink-t2700-28tct")
tplink_tlsl2428 = MibIdentifier((1, 3, 6, 1, 4, 1, 11863, 5, 11)).setLabel("tplink-tlsl2428")
tplink_tlsg2216 = MibIdentifier((1, 3, 6, 1, 4, 1, 11863, 5, 12)).setLabel("tplink-tlsg2216")
tplink_tlsg2424 = MibIdentifier((1, 3, 6, 1, 4, 1, 11863, 5, 13)).setLabel("tplink-tlsg2424")
tplink_tlsg5428cn = MibIdentifier((1, 3, 6, 1, 4, 1, 11863, 5, 14)).setLabel("tplink-tlsg5428cn")
tplink_tlsg2452 = MibIdentifier((1, 3, 6, 1, 4, 1, 11863, 5, 15)).setLabel("tplink-tlsg2452")
tplink_tlsl2218 = MibIdentifier((1, 3, 6, 1, 4, 1, 11863, 5, 16)).setLabel("tplink-tlsl2218")
tplink_tlsg2424p = MibIdentifier((1, 3, 6, 1, 4, 1, 11863, 5, 17)).setLabel("tplink-tlsg2424p")
tplink_tlsg2210 = MibIdentifier((1, 3, 6, 1, 4, 1, 11863, 5, 18)).setLabel("tplink-tlsg2210")
tplink_tlsl2210 = MibIdentifier((1, 3, 6, 1, 4, 1, 11863, 5, 19)).setLabel("tplink-tlsl2210")
tplink_t3700g_28tq = MibIdentifier((1, 3, 6, 1, 4, 1, 11863, 5, 20)).setLabel("tplink-t3700g-28tq")
tplink_tlsl2226p = MibIdentifier((1, 3, 6, 1, 4, 1, 11863, 5, 21)).setLabel("tplink-tlsl2226p")
tplink_tlsl2452 = MibIdentifier((1, 3, 6, 1, 4, 1, 11863, 5, 22)).setLabel("tplink-tlsl2452")
tplink_tlsl2218p = MibIdentifier((1, 3, 6, 1, 4, 1, 11863, 5, 23)).setLabel("tplink-tlsl2218p")
tplink_tlsg3424_ipv6 = MibIdentifier((1, 3, 6, 1, 4, 1, 11863, 5, 24)).setLabel("tplink-tlsg3424-ipv6")
tplink_tlsg2008 = MibIdentifier((1, 3, 6, 1, 4, 1, 11863, 5, 25)).setLabel("tplink-tlsg2008")
tplink_tlsg2210p = MibIdentifier((1, 3, 6, 1, 4, 1, 11863, 5, 26)).setLabel("tplink-tlsg2210p")
tplink_t2700g_28tq = MibIdentifier((1, 3, 6, 1, 4, 1, 11863, 5, 27)).setLabel("tplink-t2700g-28tq")
tplink_t1600g_28ts = MibIdentifier((1, 3, 6, 1, 4, 1, 11863, 5, 28)).setLabel("tplink-t1600g-28ts")
tplink_t1600g_52ts = MibIdentifier((1, 3, 6, 1, 4, 1, 11863, 5, 29)).setLabel("tplink-t1600g-52ts")
tplink_t3700g_54tq = MibIdentifier((1, 3, 6, 1, 4, 1, 11863, 5, 30)).setLabel("tplink-t3700g-54tq")
tplink_t1700g_28tq = MibIdentifier((1, 3, 6, 1, 4, 1, 11863, 5, 31)).setLabel("tplink-t1700g-28tq")
tplink_t1700g_52tq = MibIdentifier((1, 3, 6, 1, 4, 1, 11863, 5, 32)).setLabel("tplink-t1700g-52tq")
tplink_t2600g_28ts = MibIdentifier((1, 3, 6, 1, 4, 1, 11863, 5, 33)).setLabel("tplink-t2600g-28ts")
tplink_t2600g_52ts = MibIdentifier((1, 3, 6, 1, 4, 1, 11863, 5, 34)).setLabel("tplink-t2600g-52ts")
tplink_t1600g_28ps = MibIdentifier((1, 3, 6, 1, 4, 1, 11863, 5, 37)).setLabel("tplink-t1600g-28ps")
tplink_t1600g_52ps = MibIdentifier((1, 3, 6, 1, 4, 1, 11863, 5, 38)).setLabel("tplink-t1600g-52ps")
tplink_tlsg2224p = MibIdentifier((1, 3, 6, 1, 4, 1, 11863, 5, 39)).setLabel("tplink-tlsg2224p")
tplink_tlsg3428 = MibIdentifier((1, 3, 6, 1, 4, 1, 11863, 5, 40)).setLabel("tplink-tlsg3428")
tplink_t1700x_16ts = MibIdentifier((1, 3, 6, 1, 4, 1, 11863, 5, 41)).setLabel("tplink-t1700x-16ts")
mibBuilder.exportSymbols("TPLINK-PRODUCTS-MIB", tplink_tlsg2008=tplink_tlsg2008, tplink_tlsg5428cn=tplink_tlsg5428cn, tplink_t1700g_28tq=tplink_t1700g_28tq, tplink_tlsg3216=tplink_tlsg3216, tplink_tlsg3424_ipv6=tplink_tlsg3424_ipv6, tplink_tlsg2210p=tplink_tlsg2210p, tplink_tlsg2210=tplink_tlsg2210, tplink_tlsg3428=tplink_tlsg3428, tplink_tlsg2224p=tplink_tlsg2224p, tplink_t1600g_52ps=tplink_t1600g_52ps, tplink_tlsg2424=tplink_tlsg2424, tplink_tlsg5428=tplink_tlsg5428, tplink_t3700g_54tq=tplink_t3700g_54tq, tplink_tlsl2218p=tplink_tlsl2218p, tplink_t1600g_28ts=tplink_t1600g_28ts, tplink_tlsl2452=tplink_tlsl2452, tplink_tlsl3428=tplink_tlsl3428, tplink_t1600g_52ts=tplink_t1600g_52ts, tplink_tlsl5428=tplink_tlsl5428, tplink_tlsg2216=tplink_tlsg2216, tplink_tlsl2210=tplink_tlsl2210, tplink_t2700g_28tq=tplink_t2700g_28tq, tplink_tlsg5412f=tplink_tlsg5412f, tplink_tlsl2428=tplink_tlsl2428, tplink_t1700g_52tq=tplink_t1700g_52tq, tplink_tlsg3210=tplink_tlsg3210, tplink_t2700_28tct=tplink_t2700_28tct, tplink_tlsg3424p=tplink_tlsg3424p, tplink_t2600g_52ts=tplink_t2600g_52ts, tplink_tlsg2452=tplink_tlsg2452, tplink_t3700g_28tq=tplink_t3700g_28tq, tplink_tlsl3452=tplink_tlsl3452, tplink_t1700x_16ts=tplink_t1700x_16ts, tplink_tlsl2226p=tplink_tlsl2226p, tplink_tlsg2424p=tplink_tlsg2424p, tplink_t2600g_28ts=tplink_t2600g_28ts, tplink_tlsg3424=tplink_tlsg3424, tplink_tlsl2218=tplink_tlsl2218, tplink_t1600g_28ps=tplink_t1600g_28ps)
| (integer, octet_string, object_identifier) = mibBuilder.importSymbols('ASN1', 'Integer', 'OctetString', 'ObjectIdentifier')
(named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues')
(value_range_constraint, value_size_constraint, single_value_constraint, constraints_intersection, constraints_union) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'ValueRangeConstraint', 'ValueSizeConstraint', 'SingleValueConstraint', 'ConstraintsIntersection', 'ConstraintsUnion')
(module_compliance, notification_group) = mibBuilder.importSymbols('SNMPv2-CONF', 'ModuleCompliance', 'NotificationGroup')
(counter32, integer32, object_identity, mib_identifier, bits, time_ticks, unsigned32, gauge32, module_identity, mib_scalar, mib_table, mib_table_row, mib_table_column, iso, counter64, notification_type, ip_address) = mibBuilder.importSymbols('SNMPv2-SMI', 'Counter32', 'Integer32', 'ObjectIdentity', 'MibIdentifier', 'Bits', 'TimeTicks', 'Unsigned32', 'Gauge32', 'ModuleIdentity', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn', 'iso', 'Counter64', 'NotificationType', 'IpAddress')
(display_string, textual_convention) = mibBuilder.importSymbols('SNMPv2-TC', 'DisplayString', 'TextualConvention')
(tplink_products,) = mibBuilder.importSymbols('TPLINK-MIB', 'tplinkProducts')
tplink_tlsl5428 = mib_identifier((1, 3, 6, 1, 4, 1, 11863, 5, 1)).setLabel('tplink-tlsl5428')
tplink_tlsl3452 = mib_identifier((1, 3, 6, 1, 4, 1, 11863, 5, 2)).setLabel('tplink-tlsl3452')
tplink_tlsg3424 = mib_identifier((1, 3, 6, 1, 4, 1, 11863, 5, 3)).setLabel('tplink-tlsg3424')
tplink_tlsg3216 = mib_identifier((1, 3, 6, 1, 4, 1, 11863, 5, 4)).setLabel('tplink-tlsg3216')
tplink_tlsg3210 = mib_identifier((1, 3, 6, 1, 4, 1, 11863, 5, 5)).setLabel('tplink-tlsg3210')
tplink_tlsl3428 = mib_identifier((1, 3, 6, 1, 4, 1, 11863, 5, 6)).setLabel('tplink-tlsl3428')
tplink_tlsg5428 = mib_identifier((1, 3, 6, 1, 4, 1, 11863, 5, 7)).setLabel('tplink-tlsg5428')
tplink_tlsg3424p = mib_identifier((1, 3, 6, 1, 4, 1, 11863, 5, 8)).setLabel('tplink-tlsg3424p')
tplink_tlsg5412f = mib_identifier((1, 3, 6, 1, 4, 1, 11863, 5, 9)).setLabel('tplink-tlsg5412f')
tplink_t2700_28tct = mib_identifier((1, 3, 6, 1, 4, 1, 11863, 5, 10)).setLabel('tplink-t2700-28tct')
tplink_tlsl2428 = mib_identifier((1, 3, 6, 1, 4, 1, 11863, 5, 11)).setLabel('tplink-tlsl2428')
tplink_tlsg2216 = mib_identifier((1, 3, 6, 1, 4, 1, 11863, 5, 12)).setLabel('tplink-tlsg2216')
tplink_tlsg2424 = mib_identifier((1, 3, 6, 1, 4, 1, 11863, 5, 13)).setLabel('tplink-tlsg2424')
tplink_tlsg5428cn = mib_identifier((1, 3, 6, 1, 4, 1, 11863, 5, 14)).setLabel('tplink-tlsg5428cn')
tplink_tlsg2452 = mib_identifier((1, 3, 6, 1, 4, 1, 11863, 5, 15)).setLabel('tplink-tlsg2452')
tplink_tlsl2218 = mib_identifier((1, 3, 6, 1, 4, 1, 11863, 5, 16)).setLabel('tplink-tlsl2218')
tplink_tlsg2424p = mib_identifier((1, 3, 6, 1, 4, 1, 11863, 5, 17)).setLabel('tplink-tlsg2424p')
tplink_tlsg2210 = mib_identifier((1, 3, 6, 1, 4, 1, 11863, 5, 18)).setLabel('tplink-tlsg2210')
tplink_tlsl2210 = mib_identifier((1, 3, 6, 1, 4, 1, 11863, 5, 19)).setLabel('tplink-tlsl2210')
tplink_t3700g_28tq = mib_identifier((1, 3, 6, 1, 4, 1, 11863, 5, 20)).setLabel('tplink-t3700g-28tq')
tplink_tlsl2226p = mib_identifier((1, 3, 6, 1, 4, 1, 11863, 5, 21)).setLabel('tplink-tlsl2226p')
tplink_tlsl2452 = mib_identifier((1, 3, 6, 1, 4, 1, 11863, 5, 22)).setLabel('tplink-tlsl2452')
tplink_tlsl2218p = mib_identifier((1, 3, 6, 1, 4, 1, 11863, 5, 23)).setLabel('tplink-tlsl2218p')
tplink_tlsg3424_ipv6 = mib_identifier((1, 3, 6, 1, 4, 1, 11863, 5, 24)).setLabel('tplink-tlsg3424-ipv6')
tplink_tlsg2008 = mib_identifier((1, 3, 6, 1, 4, 1, 11863, 5, 25)).setLabel('tplink-tlsg2008')
tplink_tlsg2210p = mib_identifier((1, 3, 6, 1, 4, 1, 11863, 5, 26)).setLabel('tplink-tlsg2210p')
tplink_t2700g_28tq = mib_identifier((1, 3, 6, 1, 4, 1, 11863, 5, 27)).setLabel('tplink-t2700g-28tq')
tplink_t1600g_28ts = mib_identifier((1, 3, 6, 1, 4, 1, 11863, 5, 28)).setLabel('tplink-t1600g-28ts')
tplink_t1600g_52ts = mib_identifier((1, 3, 6, 1, 4, 1, 11863, 5, 29)).setLabel('tplink-t1600g-52ts')
tplink_t3700g_54tq = mib_identifier((1, 3, 6, 1, 4, 1, 11863, 5, 30)).setLabel('tplink-t3700g-54tq')
tplink_t1700g_28tq = mib_identifier((1, 3, 6, 1, 4, 1, 11863, 5, 31)).setLabel('tplink-t1700g-28tq')
tplink_t1700g_52tq = mib_identifier((1, 3, 6, 1, 4, 1, 11863, 5, 32)).setLabel('tplink-t1700g-52tq')
tplink_t2600g_28ts = mib_identifier((1, 3, 6, 1, 4, 1, 11863, 5, 33)).setLabel('tplink-t2600g-28ts')
tplink_t2600g_52ts = mib_identifier((1, 3, 6, 1, 4, 1, 11863, 5, 34)).setLabel('tplink-t2600g-52ts')
tplink_t1600g_28ps = mib_identifier((1, 3, 6, 1, 4, 1, 11863, 5, 37)).setLabel('tplink-t1600g-28ps')
tplink_t1600g_52ps = mib_identifier((1, 3, 6, 1, 4, 1, 11863, 5, 38)).setLabel('tplink-t1600g-52ps')
tplink_tlsg2224p = mib_identifier((1, 3, 6, 1, 4, 1, 11863, 5, 39)).setLabel('tplink-tlsg2224p')
tplink_tlsg3428 = mib_identifier((1, 3, 6, 1, 4, 1, 11863, 5, 40)).setLabel('tplink-tlsg3428')
tplink_t1700x_16ts = mib_identifier((1, 3, 6, 1, 4, 1, 11863, 5, 41)).setLabel('tplink-t1700x-16ts')
mibBuilder.exportSymbols('TPLINK-PRODUCTS-MIB', tplink_tlsg2008=tplink_tlsg2008, tplink_tlsg5428cn=tplink_tlsg5428cn, tplink_t1700g_28tq=tplink_t1700g_28tq, tplink_tlsg3216=tplink_tlsg3216, tplink_tlsg3424_ipv6=tplink_tlsg3424_ipv6, tplink_tlsg2210p=tplink_tlsg2210p, tplink_tlsg2210=tplink_tlsg2210, tplink_tlsg3428=tplink_tlsg3428, tplink_tlsg2224p=tplink_tlsg2224p, tplink_t1600g_52ps=tplink_t1600g_52ps, tplink_tlsg2424=tplink_tlsg2424, tplink_tlsg5428=tplink_tlsg5428, tplink_t3700g_54tq=tplink_t3700g_54tq, tplink_tlsl2218p=tplink_tlsl2218p, tplink_t1600g_28ts=tplink_t1600g_28ts, tplink_tlsl2452=tplink_tlsl2452, tplink_tlsl3428=tplink_tlsl3428, tplink_t1600g_52ts=tplink_t1600g_52ts, tplink_tlsl5428=tplink_tlsl5428, tplink_tlsg2216=tplink_tlsg2216, tplink_tlsl2210=tplink_tlsl2210, tplink_t2700g_28tq=tplink_t2700g_28tq, tplink_tlsg5412f=tplink_tlsg5412f, tplink_tlsl2428=tplink_tlsl2428, tplink_t1700g_52tq=tplink_t1700g_52tq, tplink_tlsg3210=tplink_tlsg3210, tplink_t2700_28tct=tplink_t2700_28tct, tplink_tlsg3424p=tplink_tlsg3424p, tplink_t2600g_52ts=tplink_t2600g_52ts, tplink_tlsg2452=tplink_tlsg2452, tplink_t3700g_28tq=tplink_t3700g_28tq, tplink_tlsl3452=tplink_tlsl3452, tplink_t1700x_16ts=tplink_t1700x_16ts, tplink_tlsl2226p=tplink_tlsl2226p, tplink_tlsg2424p=tplink_tlsg2424p, tplink_t2600g_28ts=tplink_t2600g_28ts, tplink_tlsg3424=tplink_tlsg3424, tplink_tlsl2218=tplink_tlsl2218, tplink_t1600g_28ps=tplink_t1600g_28ps) |
def add(x:int, y:int) -> int:
pass
print(add.__annotations__)
# Annotations usually show up in documentation and also are used
# by third party tools
| def add(x: int, y: int) -> int:
pass
print(add.__annotations__) |
# https://app.codesignal.com/arcade/code-arcade/book-market/G9wj2j6zaWwFWsise
def isCaseInsensitivePalindrome(input_string):
# Check if word is a palindrome ignoring casing.
word = input_string.lower()
return word == word[::-1]
| def is_case_insensitive_palindrome(input_string):
word = input_string.lower()
return word == word[::-1] |
def spring(point, N, reeks):
if point in reeks:
print(reeks)
for i in (point.x, N):
point.x = + 1
if point.x <= N and (point.y + 1) <= N:
spring(Point(point.x + 2, point.y + 1), N, reeks)
point.x -= 1
reeks.append(point)
class Point:
def __init__(self, x, y) -> None:
super().__init__()
self.x = x
self.y = y
def __eq__(self, o: object) -> bool:
return self.x == o.x and self.y == o.y
if __name__ == '__main__':
spring(0, 0, 8, [])
| def spring(point, N, reeks):
if point in reeks:
print(reeks)
for i in (point.x, N):
point.x = +1
if point.x <= N and point.y + 1 <= N:
spring(point(point.x + 2, point.y + 1), N, reeks)
point.x -= 1
reeks.append(point)
class Point:
def __init__(self, x, y) -> None:
super().__init__()
self.x = x
self.y = y
def __eq__(self, o: object) -> bool:
return self.x == o.x and self.y == o.y
if __name__ == '__main__':
spring(0, 0, 8, []) |
# Instruksi:
# Buat variabel-variabel berikut dan definisikan sesuai nilai yang diminta:
#
# angka_saya memiliki nilai 1945
# float_saya diisi dengan desimal 17.8
# boolean_saya menjadi True
angka_saya = 1945
float_saya = 17.8
boolean = True
print(angka_saya,boolean) | angka_saya = 1945
float_saya = 17.8
boolean = True
print(angka_saya, boolean) |
class Result:
def __init__(self, value, pos):
self.value = value
self.pos = pos
def __repr__(self):
return "Result(%s, %d)" % (self.value, self.pos)
class Parser:
def __add__(self, other):
return Concat(self, other)
def __mul__(self, other):
return Exp(self, other)
def __or__(self, other):
return Alternate(self, other)
def __xor__(self, function):
return Process(self, function)
class Tag(Parser):
def __init__(self, tag):
self.tag = tag
def __call__(self, tokens, pos):
if pos < len(tokens) and tokens[pos][1] is self.tag:
return Result(tokens[pos][0], pos + 1)
else:
return None
class Reserved(Parser):
def __init__(self, value, tag):
self.value = value
self.tag = tag
def __call__(self, tokens, pos):
if pos < len(tokens) and \
tokens[pos][0] == self.value and \
tokens[pos][1] is self.tag:
return Result(tokens[pos][0], pos + 1)
else:
return None
class Concat(Parser):
def __init__(self, left, right):
self.left = left
self.right = right
def __call__(self, tokens, pos):
left_result = self.left(tokens, pos)
if left_result:
right_result = self.right(tokens, left_result.pos)
if right_result:
combined_value = (left_result.value, right_result.value)
return Result(combined_value, right_result.pos)
return None
class Exp(Parser):
def __init__(self, parser, separator):
self.parser = parser
self.separator = separator
def __call__(self, tokens, pos):
result = self.parser(tokens, pos)
def process_next(parsed):
(sepfunc, right) = parsed
return sepfunc(result.value, right)
next_parser = self.separator + self.parser ^ process_next
next_result = result
while next_result:
next_result = next_parser(tokens, result.pos)
if next_result:
result = next_result
return result
class Alternate(Parser):
def __init__(self, left, right):
self.left = left
self.right = right
def __call__(self, tokens, pos):
left_result = self.left(tokens, pos)
if left_result:
return left_result
else:
right_result = self.right(tokens, pos)
return right_result
class Opt(Parser):
def __init__(self, parser):
self.parser = parser
def __call__(self, tokens, pos):
result = self.parser(tokens, pos)
if result:
return result
else:
return Result(None, pos)
class Rep(Parser):
def __init__(self, parser):
self.parser = parser
def __call__(self, tokens, pos):
results = []
result = self.parser(tokens, pos)
while result:
results.append(result.value)
pos = result.pos
result = self.parser(tokens, pos)
return Result(results, pos)
class Process(Parser):
def __init__(self, parser, function):
self.parser = parser
self.function = function
def __call__(self, tokens, pos):
result = self.parser(tokens, pos)
if result:
result.value = self.function(result.value)
return result
class Lazy(Parser):
def __init__(self, parser_func):
self.parser = None
self.parser_func = parser_func
def __call__(self, tokens, pos):
if not self.parser:
self.parser = self.parser_func()
return self.parser(tokens, pos)
class Phrase(Parser):
def __init__(self, parser):
self.parser = parser
def __call__(self, tokens, pos):
result = self.parser(tokens, pos)
if result and result.pos == len(tokens):
return result
else:
return None
| class Result:
def __init__(self, value, pos):
self.value = value
self.pos = pos
def __repr__(self):
return 'Result(%s, %d)' % (self.value, self.pos)
class Parser:
def __add__(self, other):
return concat(self, other)
def __mul__(self, other):
return exp(self, other)
def __or__(self, other):
return alternate(self, other)
def __xor__(self, function):
return process(self, function)
class Tag(Parser):
def __init__(self, tag):
self.tag = tag
def __call__(self, tokens, pos):
if pos < len(tokens) and tokens[pos][1] is self.tag:
return result(tokens[pos][0], pos + 1)
else:
return None
class Reserved(Parser):
def __init__(self, value, tag):
self.value = value
self.tag = tag
def __call__(self, tokens, pos):
if pos < len(tokens) and tokens[pos][0] == self.value and (tokens[pos][1] is self.tag):
return result(tokens[pos][0], pos + 1)
else:
return None
class Concat(Parser):
def __init__(self, left, right):
self.left = left
self.right = right
def __call__(self, tokens, pos):
left_result = self.left(tokens, pos)
if left_result:
right_result = self.right(tokens, left_result.pos)
if right_result:
combined_value = (left_result.value, right_result.value)
return result(combined_value, right_result.pos)
return None
class Exp(Parser):
def __init__(self, parser, separator):
self.parser = parser
self.separator = separator
def __call__(self, tokens, pos):
result = self.parser(tokens, pos)
def process_next(parsed):
(sepfunc, right) = parsed
return sepfunc(result.value, right)
next_parser = self.separator + self.parser ^ process_next
next_result = result
while next_result:
next_result = next_parser(tokens, result.pos)
if next_result:
result = next_result
return result
class Alternate(Parser):
def __init__(self, left, right):
self.left = left
self.right = right
def __call__(self, tokens, pos):
left_result = self.left(tokens, pos)
if left_result:
return left_result
else:
right_result = self.right(tokens, pos)
return right_result
class Opt(Parser):
def __init__(self, parser):
self.parser = parser
def __call__(self, tokens, pos):
result = self.parser(tokens, pos)
if result:
return result
else:
return result(None, pos)
class Rep(Parser):
def __init__(self, parser):
self.parser = parser
def __call__(self, tokens, pos):
results = []
result = self.parser(tokens, pos)
while result:
results.append(result.value)
pos = result.pos
result = self.parser(tokens, pos)
return result(results, pos)
class Process(Parser):
def __init__(self, parser, function):
self.parser = parser
self.function = function
def __call__(self, tokens, pos):
result = self.parser(tokens, pos)
if result:
result.value = self.function(result.value)
return result
class Lazy(Parser):
def __init__(self, parser_func):
self.parser = None
self.parser_func = parser_func
def __call__(self, tokens, pos):
if not self.parser:
self.parser = self.parser_func()
return self.parser(tokens, pos)
class Phrase(Parser):
def __init__(self, parser):
self.parser = parser
def __call__(self, tokens, pos):
result = self.parser(tokens, pos)
if result and result.pos == len(tokens):
return result
else:
return None |
class CleanUpTask:
def __init__(self, block_color, goal_room_color, block_name=None, goal_room_name=None):
'''
You can choose which attributes you would like to have represent the blocks and the rooms
'''
self.goal_room_name = goal_room_name
self.block_color = block_color
self.goal_room_color = goal_room_color
self.block_name = block_name
def __str__(self):
if self.goal_room_name is None and self.block_name is None:
return self.block_color + " to the " + self.goal_room_color + " room"
elif self.block_name is None:
return self.block_color + " to the room named " + self.goal_room_name
elif self.goal_room_name is None:
return "The block named " + self.block_name + " to the " + self.goal_room_color + " room"
else:
return "The block named " + self.block_name + " to the room named " + self.goal_room_name
| class Cleanuptask:
def __init__(self, block_color, goal_room_color, block_name=None, goal_room_name=None):
"""
You can choose which attributes you would like to have represent the blocks and the rooms
"""
self.goal_room_name = goal_room_name
self.block_color = block_color
self.goal_room_color = goal_room_color
self.block_name = block_name
def __str__(self):
if self.goal_room_name is None and self.block_name is None:
return self.block_color + ' to the ' + self.goal_room_color + ' room'
elif self.block_name is None:
return self.block_color + ' to the room named ' + self.goal_room_name
elif self.goal_room_name is None:
return 'The block named ' + self.block_name + ' to the ' + self.goal_room_color + ' room'
else:
return 'The block named ' + self.block_name + ' to the room named ' + self.goal_room_name |
# Definition for singly-linked list.
# class ListNode:
# def __init__(self, val=0, next=None):
# self.val = val
# self.next = next
class Solution:
def mergeTwoLists(self, list1: Optional[ListNode], list2: Optional[ListNode]) -> Optional[ListNode]:
head = ListNode(0)
result = head
if list1 is None:
return list2
elif list2 is None:
return list1
elif list1 is None and list2 is None:
return []
while list1 and list2:
if list1.val > list2.val:
head.next = ListNode(list2.val)
list2 = list2.next
head = head.next
else:
head.next = ListNode(list1.val)
list1 = list1.next
head = head.next
while list2:
head.next = ListNode(list2.val)
list2 = list2.next
head = head.next
while list1:
head.next = ListNode(list1.val)
list1 = list1.next
head = head.next
return result.next
class Solution:
def mergeTwoLists(self, l1: Optional[ListNode], l2: Optional[ListNode]) -> Optional[ListNode]:
if l1 is None and l2 is None:
return None
elif l1 is None:
return l2
elif l2 is None:
return l1
else:
listnode = ListNode()
cursor = listnode
while l1 and l2:
if l1.val > l2.val:
cursor.next = ListNode(l2.val)
cursor = cursor.next
l2 = l2.next
else:
cursor.next = ListNode(l1.val)
cursor = cursor.next
l1 = l1.next
while l1:
cursor.next = ListNode(l1.val)
l1 = l1.next
cursor = cursor.next
while l2:
cursor.next = ListNode(l2.val)
l2 = l2.next
cursor = cursor.next
return listnode.next
# Definition for singly-linked list.
# class ListNode:
# def __init__(self, val=0, next=None):
# self.val = val
# self.next = next
class Solution:
def mergeTwoLists(self, list1: Optional[ListNode], list2: Optional[ListNode]) -> Optional[ListNode]:
head = ListNode()
temp = head
while list1 and list2:
if list1.val < list2.val:
temp.next = list1
list1 = list1.next
else:
temp.next = list2
list2 = list2.next
temp = temp.next
if list1:
temp.next = list1
if list2:
temp.next = list2
return head.next
| class Solution:
def merge_two_lists(self, list1: Optional[ListNode], list2: Optional[ListNode]) -> Optional[ListNode]:
head = list_node(0)
result = head
if list1 is None:
return list2
elif list2 is None:
return list1
elif list1 is None and list2 is None:
return []
while list1 and list2:
if list1.val > list2.val:
head.next = list_node(list2.val)
list2 = list2.next
head = head.next
else:
head.next = list_node(list1.val)
list1 = list1.next
head = head.next
while list2:
head.next = list_node(list2.val)
list2 = list2.next
head = head.next
while list1:
head.next = list_node(list1.val)
list1 = list1.next
head = head.next
return result.next
class Solution:
def merge_two_lists(self, l1: Optional[ListNode], l2: Optional[ListNode]) -> Optional[ListNode]:
if l1 is None and l2 is None:
return None
elif l1 is None:
return l2
elif l2 is None:
return l1
else:
listnode = list_node()
cursor = listnode
while l1 and l2:
if l1.val > l2.val:
cursor.next = list_node(l2.val)
cursor = cursor.next
l2 = l2.next
else:
cursor.next = list_node(l1.val)
cursor = cursor.next
l1 = l1.next
while l1:
cursor.next = list_node(l1.val)
l1 = l1.next
cursor = cursor.next
while l2:
cursor.next = list_node(l2.val)
l2 = l2.next
cursor = cursor.next
return listnode.next
class Solution:
def merge_two_lists(self, list1: Optional[ListNode], list2: Optional[ListNode]) -> Optional[ListNode]:
head = list_node()
temp = head
while list1 and list2:
if list1.val < list2.val:
temp.next = list1
list1 = list1.next
else:
temp.next = list2
list2 = list2.next
temp = temp.next
if list1:
temp.next = list1
if list2:
temp.next = list2
return head.next |
class BottomReached(Exception):
pass
class TopReached(Exception):
pass
| class Bottomreached(Exception):
pass
class Topreached(Exception):
pass |
def validBraces(string):
open = ["(","[","{"]
close = [")","]","}"]
stack = []
for i in string:
if i in open:
stack.append(i)
else:
pos = close.index(i)
if len(stack) > 0 and open[pos] == stack[len(stack)-1]:
stack.pop()
else:
return False
return True if len(stack) == 0 else False | def valid_braces(string):
open = ['(', '[', '{']
close = [')', ']', '}']
stack = []
for i in string:
if i in open:
stack.append(i)
else:
pos = close.index(i)
if len(stack) > 0 and open[pos] == stack[len(stack) - 1]:
stack.pop()
else:
return False
return True if len(stack) == 0 else False |
# !/usr/bin/env python3
# Author: C.K
# Email: theck17@163.com
# DateTime:2021-10-15 20:03:00
# Description:
class Solution:
def findRelativeRanks(self, score: List[int]) -> List[str]:
Medal = ["Gold Medal", "Silver Medal", "Bronze Medal"]
size = len(score)
res = [""] * size
my_map = {}
for i in range(size):
my_map[score[i]] = i
score.sort(reverse=True)
for i in range(size):
if i < 3:
res[my_map[score[i]]] = Medal[i]
else:
res[my_map[score[i]]] = str(i + 1)
return res
if __name__ == "__main__":
pass
| class Solution:
def find_relative_ranks(self, score: List[int]) -> List[str]:
medal = ['Gold Medal', 'Silver Medal', 'Bronze Medal']
size = len(score)
res = [''] * size
my_map = {}
for i in range(size):
my_map[score[i]] = i
score.sort(reverse=True)
for i in range(size):
if i < 3:
res[my_map[score[i]]] = Medal[i]
else:
res[my_map[score[i]]] = str(i + 1)
return res
if __name__ == '__main__':
pass |
# -*- coding: utf-8 -*-
a = int(input("digite a primeira variavel: "))
b = int(input("digite a segunda variavel: "))
crescente = int(input("digite qualquer variavel: "))
if a < b:
print(a,b)
else:
crescente = b
b = a
a = crescente
print (a,b)
| a = int(input('digite a primeira variavel: '))
b = int(input('digite a segunda variavel: '))
crescente = int(input('digite qualquer variavel: '))
if a < b:
print(a, b)
else:
crescente = b
b = a
a = crescente
print(a, b) |
#!/usr/bin/env python
# -*- coding: utf-8 -*-
stream = "{{{{{{{<\"\"!>,<!<'}'ui!!!>!!!>!<{!!!!!>>},{}},{<<'\"i!!a!{oe!>!!e!!!,<u!>},<a>,{<}{a\",!',!!!>},<u,!!!>!}<,'!o<!>,<>}},{<!!!>'\"i!!!>u!>uai!<o>,<i!!!>!>},<!>,<!>!>}o!>},<!>,<!>},<!>,<!!!>>}},{{{<!!,!!!>oo\"!!a>}},{{{{<i!!!!{,!!}>}},{{{<a>},{{<a!{!!>}}}},{<!>!!i'!!!>\"\"\"!>>,{}}},{{},{{<!>'!>,e!>},<e!>},<,,{\"{\"!!!>'>}}},{{{{<\"ao!>!!!><!>,<!!}{{!!euai>,{<{!>,<!>!>,<!\"u}<!,>}},{<<!>,<!>,<<<}a!!!!a!>,<>,<!!uu!>!!!!!>!!\"oe!!,o{!>},<}!>},<<!>!a!!!>>}}},{{{{<>}}},{{<!ei}\"!>!!!>!!!>!!!>!>},<eu<!!<>,<\"!>},<i!!!>!>},<!>,<'!!!>!!io>},{{{{<}!!!><!>},<u!!!},!!!>!>},<a,!!<'>},{<'!>,<!!>}},<<!!,au!!uu!!!>,<!!{o>},{<e}!!!>},<!!{'{eu!!,{!!aei!>,<<!!,a!!!>>}},{{<u!,>},<}{a!oei!aa,}\"!!,e!>!!!>'!!}{>}}}}},{{{{<u!!!>!!i!!u!>>},<'!!!>!>},<!>,<!,>}},{<,!!!!!>,<'!a!!!>,<{!<>}}},{{{<,,'!>,<}i'!>,!>},<o<!>>},{{<!!!>!!>}}},{{<'!!>}},{{},<!>},<!>\"o!>,<!!!>!!!>>}},{{<e!>},<<}{<'!>,<!!!!!>!>,<!!!<eo!!!>>,{}},{{{},<>},{{{<oi{,!!!>}!<e\"<ueu!<!>>},<u!>,<!!<\">},{<!!!>!>,<}!!o<<e!!oa!>,<!>,<e!!!>{>}}}}},{{{<!,!>},<u!!!>'>},{<!!\"!o!!\"!>o!!i>}},{{}},{{<>,<!!!!<!>},<!!!>a}i{!>ii!><>},{{<u!{!!!>!!!>},<u>,{{<}{u!,u}{>},<}!>},<ie!>,<<{u!!!<!>{\">}},{}}}}},{{{{{},{}},{{<{e{!!!>i!>,<a!>uei\"!!!>},<,!<}!\"!!o>,{}}}},{{<>},{{<,o\"i!!,!oe!>},<\"}o!!!>,{i!,u>}}}},{{},{{{<<>,{}},{{{<!!a!'a}!!oeu}>}},{<!!!!!!i!>,<,'!!!>!!o>}}}},{<e<oa!!!>u!!!!!o{'!>ai>,{<e!!,!!!!!!,,i!>},<!a>}}},{{},{{<!>!>},<!!!}i<'<i<>,{<!>,<!!!>}u<i<{!>},<!!!!!>oue!>,<!!!>,<u'>,{<i!!!>},<!!ee,!>!>,<!>},<!,>}}}},{{{{<!\"!!}!!!!{}!>,<!>,<!>,<!>,<!>,<!>},<'!>,<!>,<!>>},{{{{<a<!!au!>>},{<!!!>a,!!!<\"'!!>}},{<ae}!>,<,'>,<!>i!}!>,<,!!'!!<!!}!,}>},{<'!!ee!!i!i>,{}}}},{}},{{{},{{{{<i!,>}}},{{<!!!>o<a{!!!>,!>eei>,{<}}!>},<<!!\"!>},<a!!!>ie!>},<<!!o>}},{<!!!>!>,<!'!!!>!>},<!>},<{}ua}uuu}o>}}}},{{{<o{!!!>oe!>},<!!!>'!>,<u!!!!o!a!!!>i\">,<a!>},<u\"e\"}!>},<{i\">},{<}ui\"!!!>\"},!>,<!o\">}},{{},{{<!!o,!>,<!>,<{io\"!\"e<,!!i!o}u\"\">},{<!>,<e!>,<'!!,'a{\"!>,<\"o\"ui,>}}},{{<e},u}!>\"!!!!,ia<!>}>,{{<!o\"!>,<'o}!!!!\">}}},{{{<!!!>!>!>},<>,<ao>}}},{{{},<!!!>,<!!!!!>!>},<!!!>\"e!!u!'!!!>>},<!!!>},<,e!!{!}u!>>}},{{{{{},{<u<!>{<o!{<!>},<\">}},{<\"!>},<\"!>},<!!!!!!{>,{<e!!,}!!!!>}},{{<i!!!>!!i<!!!>!!!>,<>},{{<!}!!!>e'ii<!!!!e<!!!>e\"!!u!!!>>},{<a\"!ii>}},{{{{}}}}}},{<<!,!!e!!!}{}!}!>},<>,<\"e<!!!>},<!>i!!}{u!>},<!>,<!!!>},<\"!!!>a!!!!>},{{{<e!!!>\"iu!>},<!!{}{!}!!!!!>a!!,>},{<ai!>},<!>,<}}!>!!ee{!><!!!!!>!!!!,!!'!>>}},{{<ue!{e,u>},{<o}e!aai!!!>}!!i}>}}}},{{<}o!>\"{!!!e!!\">},{{<>},<!u!!!>!!!>},<!>},<!><>},{{},<e!!oo>}}}}},{{{<<!!!><}\"uu!!i!>,!!!>,<!!i!>},<aa,!,e>,{<u>}},{<!!!!!>a<}>}},{<!<<uoe!io>,<!!!!i!>},<{ui!>},<'\"u!!{>}},{{{{}},{<{!>!!!aa!ua{!>!!!>!!{{>}},{<i!\"\"i!!!!!>''ueu}o}\"!>,!!!>!!!>>,<'!!!>!>!!!>!>!i,i!i!,!oie>}}},{{<u{!!}\",a!>},<oi!>!>!!!>,!!!\"'!!>},{}}},{{<!!!>}}!!o>},{<{'a!!ia'o!!!>},<o!!!>},<\"u>},{{{{<o}!>!!!!'{!!!!!>\"!>,<>},{}}},{<!>u!\"ooi!!!>!!>}}}},{{{{{{{<!>,<!>},<{!>},<!!!>},<}!>{i!>!!{!!!>!>>},{<!!!>},<!>},<!<!>},<<!u!!}iao{!!!>!!i,!>,<!}i>}},<,{!!'!!!>!!}ua>}},{{{<ou\"e!!!!a!{{\"!!<'!!\"i>,<!!!>'u!!o!!!>},<!!!!a,o<u\"}>},{<}i\"uo{!>>}}}},{{{<!!!>\"!!!>!!aioiii>}},{<!!!!!>!!!>!>,<e!>,<e}}\"!!'i\"u!>},<!u<au>,<!a!!!>a!!o!!}!o!!!{}!>!!!>a{oo!>e\">},{<!>},<'!!!!!>\"a'<!>!>,<o!>},<u!!\"a!>\"'<>,<!!a'>}},{{{},<>},{{{{{<!!!>!!a<u<e'!,\"ai>},{}}},{<oio>,<!!!>,<<uo!!!!}!!!>>}},{{<!!{'!>>},<,<!><<!,>}},{{{<!>},<!!o{\"!!i!>,,!>!!!>!!!e<e>},{<!!ei!!{\"!>,<!!e}!\",!!u,!>},<>}},{}}},{{<ia!>,<!!!>,<<o'{!!\"}u!!{\"<!!a>},{{<i>},{<{{'>}},{{},{<>}}}},{{<!!a!{,!>,<!>},<i!!!>,<>,{{<!!<'<}'>}}},{<}!{!>,<!>,<>,{<e{!e!>},<!!{!!!>>}},{{}}},{{<\"e,!>!>{<!>!>,<a,\"!!e}e>,{<<!><!!!>!auei!>},<!>>}},{<!!a\"'{!\"!>,<!><'e{!!<<>},{<e}!,{u{!>,<>}},{{{{{},{<!!!>,<!!!>!>,<!!!!{!!!!'{>,{{<!!i'!>},<ua!e{}}!!!>!>,<u!>>}}}}},{<!<!!!>},<i<!>},<!>,<!i{o!u''\"i!>,<<!>!!!>,<>},{{<!>ea,a!>,<!><!}>},{{{<{!!{!>,<<!!!>!!!>'!!!>\"{\"!>!!\"u'!e!>},<!!>},<}{,{>},<!>},<eio!>!!'!>,<\"!o!>,<,!>,<!>i!>\">},{<>,{<!>},<!>},<\"\"!>},<!!!!!!!>!>!{!!u!!!>e!!!>\"o>}}}},{{},{{<!!!>!a!!{!>},<o,!!a!!'!!!>>},<'!!i>}},{{{},{{{<e>}},{{<!!!>a,u!>},<!!o!>},<!<u}!>},<u!!!!!>!>},<'>}},{{<}!!}\"!!a!!!>{iu!>!>>,<!!!!!!!>\"!!,,}{}!\"!!e\"<i!!!!!>>}}},{{<'{o!!!!a!>{!>,<!!euou!>},<e!!!!!>,<>}}},{{},{{{<\",!!i!!ea{\"},>},{<!>},<!'<!!}>}}}},{{{{},{<<}!>}o!!!>!!!!!>!!a!a!>},<!>},<>}},{{{{<'>,<<u\"!>,<}!'e!!!>,iao,<a\">},{{<{!>},<!!>}},{{{},{}},{{{<ae!!<,{!>,<o!i<>}},{{<'!!!!!>},<'{!!!>>},{}}}}}},{<i!!!>a!!!>},<!>!>!!{i!e!u>,<io\"u!>},<!>},<}a>},{{<,!>},<!!!>e<!!'!!!>},<i!!!!\"!,''!!!>,!!oo>},<i!>},<'>}},{{{<!>},<!!!>!>!>,<'!!!>}}>},{<a}}!>},<e!!a!>,<!!!>!>,<>,<!!!>\"!!!>!!!!!><!>},<a!!!>!>,<!>},<i\"\"!>,<!\"!!!>!\"!'>}},{<!>},<!eui\">,<!!}e!!!>u!{!!{!!!>},<i!>,<'o!!i!>},<!>,<>},{{<>},{{<oo'!!!i!>,<!>,<!,{{a>}}}}},{{{{{<>}},{{{{},{{<!i!>i{ua!!!>},<e!>!!{o>}}}},{<!<,!>!>},<\"'!>u'!!u!!<<!!\"!>}u}>},{{<!!!>}!>!!!>,<>},{},{{{{<!!!>!!!>!!!>!>a}}!>i!!!>!!uu>}},{}},{{},<>}}}},{<\">,<\"!>>}},{{{{},<!{!>,<!>,<!\"u,!>},<>},{<!>},<a!!{{u!>},<a'!!!>i!!!>>}},{<e\",!!',\"aa\"i{\">,{<>}},{{<!!!>!>,<{!!!!!>,<>,{{<!>,<!!!>!!<!!!>,<i!>}a!!!\"!!!!u{!!i>},<}!>},<}!!!!!>,<\"!!!>,{\",!>},<!>},<>}},{<<!!{!>,<>},{<a''}e>,{<!!!>,<!>!!\"'!!!>'!!a}a''!>},<oe'>}}}},{{{<<!!!>},<!>,<\"'!!!>!!!>,<'!}!!u'!!!!!><!!!>,<>,<!>,<<!>o}a>},{},{}},{{}},{{{<}\">}},{{<,!>ea!!!>,{!>},!>,<{!>},<!!{}<o>},{}}}}},{},{{{{},{<\"'<!>,<!!i!><a!>},<!!!,}u!>,<!o>,<>},{}},{{{<!!,!!i<'\"e'\"}'{ue{!!!!<!>>,{<{o<!>},<!>},<!>!{\">}},{{<e!!!!!o!>i!!!>!!!>},<!!!>},<'o!!!>!>,<>},<}\"a!!!!!>,<!>,<}'!>,<'\"!>!>},<{<!\">},{{<'!>,<ea!!a!>,<!a!!i{!>},<!>},<!!!!!!<}<>},{}}},{{{<auo'<u'io!''!!!>}!}a>,{}}},{{{{<\">},<!e>},{}},{{<!!!><!>,<!!!>!!\"<u}!!!!!!!>}e>,{<!!,\"a>}},{<!!\"aa!!,!>},<<e!>},<u!!}!>,<'a{!a>}}}},{{{<!>!o{{!!{!>,<e!<!!!!'o\">,<a!\"<!>eu!\"i\"!!'!!\"\"!!!>},<\">},{},{{<!<iu!>},<!\"!>!!!><>},{<{!>!>,<!>},<o!>},<\"!>,<a!!,!>oaiui!>,<>}}},{{<}!>{,!!!!!>!!!>,<u<eu!>},<,!!!>e!!!>,<!>,<>},{}}},{{{}}}},{}},{{},{{{<u'!>!!!>},<i!>'!!!>\"!!<!!!>o!!!\">}}}},{{{{{{<!!!i}!>},<{!!!a!!!!!!>},<\",e!!!>!oe!!!>,!'o!!\"!>},<>}}},{{{{{}},{{<!>,<i\"a!!'!>,<!>o!>!!!>>},{<,i}{!>},<!>,<!>,<!!!><!>},<!!<a\"!!!>!>,<>,{{},<ue\"<o!!!!!>>}}}},{<\"au!{e\"!>>,<i!>},<{,i!>,<!>>}},{{<i!!!>!!!e>,<>},{<!!!!!>e{<!>,{a!!ee\"!}!>,<,}e'>,<!!!>o}e!><!>!{,!>!>,<{!!!>!'}<>},{{}}},{{<!!!}io{!!ou!}eu>},{{{<oi{}!!!!!>ue!>,<a<!!e!>,<>},{{{<\"!!>}}}},{}},{<i!!!>\"'{ieau,{u}!!\">,{<>,{}}}},{{<'!,!!!>},<}!>},<!!'!!i!i!!!!}a!!!>!>,<!!!>!!!>!>},<>},{{<!<<!!!\"'','!!a<'!!!>,<\"aa>},<ea}!>},<!>},<a\",<i'<<!>},<\">},{{<{!!!>,<!!!>,!!u!>!!a!!oai!>,<!>,<!>e}>},{<ue!>},<o\",!!!>!>},<}!>,<\"!!!!i!!!>!}ae{>}}}},{{{{<\"o}}{!!!>,<'!!>,<!!a{!!!>>}},{<e,!!!>'u!>},<!!!!!!!!!>\"!>,<>,{<!!!><!e'{e,o{\"\"!!!>{!>{!!>}},{{{{<i!<!>!!!!!>'e!!a,}ea,i!>>},{<{!!u!ao!!!,!!{!>!!!!!!!><\"}!>,<u!!!!!>,oi>}}},<i,}!!!>>}},{},{{<!!!>},<<!!ai!>},<!i!!!>,}>}},{{{{<>},{<!>},<,o!!<!!ai!!'!>},<u!>},<i<!a>}},{{<,!>}<,<!!!>\"!!!!<!!!>i!!!>>},{}},{}}}}},{{<o!!!a!!!>,<>,{<!>{!!!!!><{!!u!!!!!>o!!e!'i>}}},{{{{},{<!!!>!,i!!!!!!!>!\",>}},{{{<aou>}},<a!!}!!o}>},{<!>,<!!!>!!!!!>'!><u<!>,<o,!'{!!'ui!>,<>,{<{!!!>,<>}}},{{{},<!>,<!>},<!>},<ae,!!!>,<!!a!!\">},{{<<}!!!!!!}!>},<<!!\"'>}},{{},<!!!>},<!!oao!>,<!!a!!!>!>},<{,\"o{i!!!><>}},{{{{<au!>},<a}{>,{<\"\"!<'u'!!i>}},<!>{>}},{{{<!>o!>!!!!a!!e<!<!>!>,<!!\"!>,<>},{<\"!u>}}}},{{<\"'!,!<!!!>!u!>,<!>,<o\"!!!!ie>}}},{{{{<a,e}<!!!>},<>},{<,!ou!!!>>,{}}}},{<!!>,{{<!!u>},{{<{!>},<!>}!<ue!!!>,<e!!}>},{<<!>,<>,{}}}}}}},{}}},{{{<!!oi!!eauo>,<u<!!!>o>},{},{{<'o>,{<}!!ua'\"o<e!!,>}},{{{<!!!>{}{'!!'<!!!>i{\"!>e}!>a<!!!>>}}},{{},<\"{!!u!!}!!<!!!>,<<!!!!!>!!!>!>!!,u,\"u{>}}},{{{<,\",'!!!<o,\">},{}},{{{<!!!>!!!>,<<io!!!!,i\"'!>,<i,!>,<{>},{}},{<!!ueu!!!>'!!>}},{{}}},{}},{{{<!>,<\"{\"}\"oaa!!!>o\",!>},<a!{'!>!!!>,<>,<!!!>!!e!!ao,>},{{{<,!!!,u<!>},<!>},<uoo<ee!!!>\"o>}}},{{{<u!!!oi!!'!!!><e\"e!>,<!!,,\">},{}},{}}},{{},{{<a\"!!'!'!!!>eo!a!>},<\"!<<!>},<!u!>!>},<u!!!>>}},{{{<a!!!>!>},<!!!!!>,<>}}}},{{<{i\"}!i'!!}a!!i!!{,}}'!!!'!!>,<!a>},{{{<o>}},{}}},{}}}},{{{<a!>},<<\"}u!!'!>!>},<!!<>},{{},<!>},<\"a!u!\"\">}},{}}}}},{{{<<i!!<<}a{a!>,}!!!>a!>}'>},{{{{{<}!!!>'{!!!>!!!>!>!>},<!>},<i>}},<!!a>},{{},{<>}}},{{{<u!!!o!>,<!>{>},{{},{{{{}},<\",o!>!!,!>,<e\"!!a,!'}!!!>a,!!!!!>>},{<,i\"}>,{}}}},{{<!!!>>}}},{{<!!!>e!>ee<,!>\">},{}}},{{{<!>},<!>\"!!!>{u,!!!>},<<!,e>},{<!>,<!!!>{!!>}},{<<,eu,a{>,<!>!>,<\"a{!!!>a!eiao{!>},<!!!!!>!!u!e!!<>},{{},<!!!>},<!!!>},<}'!!\"a,e\"!>!{!!!!}>}}},{{<!!ou'uuu!!!!u>},{{},{{{<!!!!!!!!!>,<\"a,>}},{}}}}},{{{{{{{<<'!!!><!!!>'!>!!!>!!\"!!oe}<\">},{<u!!!>>}}},{{},{{{<\"!>}!!,!>,<!!!>,<!!!>u\"u}>}},{<!oe}!!<{!!aue>}},{<!>,<\"!!!><<!<u!>,<{!e<!>,<!!!a{oa!>>,<u<!u,o,>}},{<!!!>},<!!!>i!>!!!>!!e!!ua!!\"!''!!!>!,>,{<!!i{ao,{!!\"a!<,{!>},<!>,}}\"!!!>},<>}}},{},{{{}},<!>,<eu!>},<,!!!>!>,<'!!<!!!>},<!>,}!>},<,\">}},{},{{{},{<!!!>!>>,{}}}},{{{{<!<!!}a!>},<\"!>},<\"e!>,<a!>,<!>,<<!>ao}>},<,e!}<!!!!a>},{},{}},{{{},<>},{<!!!{!>,<\"<!>},<!!!>ea!><o,o{o,>,<!!\"!!!!!>!!'!>,<\"{\"!!oua!>!>},<,!!!>a>}},{{{<\"!!!!!!a\">},<!!!!!>,<eoa!!!>>}}}},{{<<i!>\"oua,{>,{<\"'!>},<!>},<!>!>},<,i!,}i<>}},{{{<}!>,<o}>},<}}a!>},<!>!!!!'!e!!!>,<!>i'i>}}},{{{{<!>},<!!!ao'<ia,!!{<uu!i!>},<i{a>},{}},{{{<'!>},<o!!!><!!uo!!}!>},<u!>,<{!!!!!>aa>}}},{}},{<!>,<}eauo!>\">,{<!!a<!>i<}!>\"!>,<ea>,<oeii>}}}},{{{{{<\"!>},<\"!>},<u!>},<o!!,u!>a>},{{}},{{<!>,<!>!!!!!\"!>'ii!!!!,>},<!uou}!!!>!!ea!!!>!>},<!!!!!>!!iu!!!!!>},<'!i>}}},{{{{<{!>,<'>}},{{{<i{,,!!!>},<!!!><'<,!>,<a<'u!!!!}!!\">}},{{{<!<o\"'!!!>},<,!>},<<>},{}},{{<\"\"<!>,<{,!!\"\"'e>},{{{<!>,<>,{<!!!><!!!!!>{!!!>},<>}},{}},{{}}},{{{<!!!>e!>,<!>},<}i'>}},{<iu>,{}},{}}},{{{}},<!!{\"!!'!>},<!!!>},<>}},{{<a!!!>a!!!!!>!!!>!>,<<\"!>,<!}u!!!>!i\"o!>\">},<>}}}},{{{<o'i!>ieio!>,<e>},{}}}},{{{<<ie!>,<>,<\"!>,<,!>,<<'<!>,<ae!!!>,<'\">},{<!!!>'a!!!>ae<!!!>!!ue,{!>!!!!!>!u>,<>},{{},{<!!\"!!}!>,<<!ae!u!!<!!u!!!>o,!>>}}},{{{<e!>,<!>},<o!!!>},<ii!!!>!\"!!!>>},{<a!!!!!>aa!!!!!>,<!!<'}\"!>e<'>,{<!!!>,!!{i}{\"!!auu,>}}},{<!>,<\"o!>!><o,!!\"}uo<>}}},{{<\"!!!}a>,{<!!!{u!!<u!,!>!},!!!>a!!''!!!!!>{}!ao\">}}},{{{{{},{{<!>,<a!>\"{'\"u}!{\"!>,<i!>},<!>>},<!>,<!!!>'o!>'!!!>!!a<ui>},{{<{!!!!!>o!!!>,<!>},<a!i<}!>},<!!>}}}}},{},{{},{<<a\"i!>},<!!!!{!!!{!>},<,!!!>o>}}}},{{{{<!>,<\"!>,<{e<,!>!>,<e,!,,\"!!i<<!i>,<>},{{<',}},!!'!>,<\"!>},<{!i<!e{>},{<!!!>u!<}\"!!!>!>!>,<!!i!>},<!!!>{'>,{<e!!eau!>},<,>}}},{{{<!!<'!!!>},<a}!!!>,<>}}}},{{<!o!!!><{i!!!>e}>,{{<<,!>,<!!!u,!>},<!i!!!i!!!>,<e!>},<i{,>}}},{<!>!>},<<u'!!!>!!}\"!>},<e!>},<,!\"!!!>a<!{!!!>>}}},{<}{o!e{!!!>a'!!!>e!!!!!!u!>,<!!!>},<>},{<ueo!!!!!>i!>,>,{<!!,!!ae!>,<\"!!!>i!>,<'!!!!o<>}}}},{{{<>}},{{{{<u!}!>,<!!!>{!>!>},<!!!>>}},<!!!<!!!>!>!>,<i,!>,<a!!!!!>aoau}!>},<}o>},{{{<>}},{<!>},<!a,ou!!,>,<!o,}>}},{{<ou,,!e}>,{<{!!!>}}a{'u<>}}}},{{{{<!>,<!i\"!!!>!!u,i!>},<!!,!>!!,!!!>,<!>>},{{},<}!!}!<!ia!!\"<!>},<a!!!>!!e'>}}},{{<u!u!>},<<!>},<!!\"\"!>!!!!i{>},{{<ia!>,<{!>!!!!!>o!!ii!!uoi!!!><ui>}}}}}},{{{{{<!>,<}>},{}}},{{{{<!>},<!>},<!aau{!u!>}!>i!!!>\"ai>,{}},{{<{\"!!i{'<!!!>,<>},{{{<!>!!!a'!>,<!!!>{'!!<i\"eio,e,o>}},{{<!!!>,<!ae!>},<>},<!!!>!!!!e!'!!a!>,<!!!>a!>!,u!!!>i<>}},{{<!!!>'>}}},{{<!>},<''!>,<{e!>e}!}!!!>!!'!>},<!iui>}}},{{}},{{{{{<u!>},<!!a!!!u,!!!>,\"!>,<!!!!\"'!!u{u{>,{<!>,<!>!!!>\"i,\"!>},<iu!!!!e'>}},<!!u{!>},<i!!o!!\"u!>,<!>,<i,<ea>},{<!!e,!!!>}!>,<}!>!ae!!uu!!!>,<>}},{<!>},<}!!!>iuaa!oa}}!!ia!>i\">}},{{{<!!!>e{,o!!}!!iu'>,{{<!!!>ui!!!uau<e!>!!!>>},{}}}},{{<!!{!oa'!!}<!!e>}}}}},{{{{{{<i!!!>}!!!>!!{!>},<!!}}!>,<>}}},{<>,<!{!>},<!!}\"!a>},{}},{{{<{ie!>!!,!>,<{!!'!>},<!>,<!!!>,!!!>>},{<!>!!>}},{<'<!>u<!!!!<u!!!>o<!!!>!>},<!!\"oo>},{}},{{{}},{{{<u>}},{{<!!!>},<!{>}},{{<!>,!!!>!!<'!!u,>},{<o!>},<}e>}}}},{{{},<{!!!!!!!'{<i>},{<>,{{{<{'i!!\">}}}}}},{{{<!'<<,!!iuu{!!!!!>!!!>!!!!i!>},<e{}>}},{{{{<aa!!!>,!!!>,<>,{{<>}}},{{{}},{<!!!!!>a!!}>,{<u!<{!!'!!<i\"{!!!>},<!!\"u\",>}},{<!>},<!>,<'\">,<{'i!>},<}!<ao!!!>!>},<!u!e,o,}'e!>,<>}}},{{{<ia<'{!>},<,'!!o!!!>,<!!!>!}o!!iei!>},<!!!>>}},{<!!u,!!!!!>!>},<!!!!!\"ae'!!!!\"!>>}}},{<u!!,!!!>,<!!!!!>!!!!e!!!>!!a>,{}}}}},{{{{{<>,{{<<}}!',}!>!>,<oa<!>,<o}e!!!>ia!!u>,{}},{<e!!,'!!!>a'>}}},{{{},{{<!!<iu{!!!>iu!!!!!>!!ae>}}}},{{<'\"i!>,<e!>!!{o!<>,{<,!>!>},<!!i,!>,<{\"e}u!>,<{<i>}}}}},{{{<}}!>},<'a!>},<!>},<\"i<{e<i!!o!>},<,>,{<<ao'<!>},<a!u<o!!\"'o<,{>}},<e'!!'>}},{{{<!{!>},<<!u!>!>},<!>},<ei!>},<o\"!>},<!!!>a!!ii\">,{<,!>,<,,}!>,<a!>i}a,\"o{!!!!>}}},{}}},{{{<<u!>},<!>''!!o{!!!o!>,i!>},<,>}}}},{{{{{{<}!!!>,<a<!>,<!!e!>},<!!!!!!ao>,<!!<!>,<,!}!u,a!!!>},<eo>},{{{<!!!>,<!!!>!!!>},<,!!!>},<i>}},<{!!!>!ao!a\"\"o!>!!!!a}!!o<!>},<'!!!>>}},<i<}o'!>,<ae,!!!>,<,iu!!i<>},{{{<!!{a!!<u,!>},<'!>},<!>!oi'!>},<!>,<}a'!>,<>}}}},{{{{{{<!>!>!>,<\"!>,<oau!>u,{!!!>a>}},{<!>},<!!!!}\"!!!>a!>,<!!a>}},{}},{<!!!u{!>,<!o!aa<i{\"!{!!<<>,<!>,<!!!>a'>},{{<\"o!>},<!>},<<{u!>},<{\"!>,<a!{>},{},{{<!>},<<!>!>!>,<!>,<<u!>},<o,}>},<\",i!!!!!!!!<>}}},{{},{}},{{{<ia!>,<{!},}!uu,'}'{!>,<!>},<!>'!>,<>},<>}}},{{<}!>,<!!uu<{!!!>,<\"!>!!!!i!>o'!>,<,>,<!!>},{{<}{!>,<<e'!>},<a<!!!>}<u!!!>,u}>},{}},{<!>,<<\"!!!{a!>,<!>,<!!!}!!!!!>},<u!>},<{e,>,{<!o<o{!!!>,<o}!!{>,<!>},<\"!!a!>>}}},{{{{<!>!!!!!!!>!,{}a!!\"'!!o!>!!!o!!!>!''>,{}},{{}},{{}}},{{{{<!>},<>},{<i<!!!>!>,<!{e>}}},{{<!>},<{u'{a,!!!!!!a<a!>,<au!>,<e>},<'!!!>,<o,!!\"eo!!!!!>!>!e!>,<ua!!{u>}}},{{{<<>},<iao',a<\"e!>,<\">},<!>},<!!,a!>a!!!!!>a!!!>!!!>u>},{{},{{}},{{<oo\"!!!>!>},<>},<,,,!!!ie'u!i!>o!}!>},<i!>},<ao{!!!>>}}}},{{{<'{'i}aeoo{!>,<aie>,<a'!!}!>!!!>,!u!!!>>}},{{{{<!>!<}>}},{<!ui!o!>,<o!!'!>,<a>},{<!>,<{!e{'>}},{{{<<!>,<!!u!!!!!>!i>},{<\">,{{}}}},<!!!>,<e!>!ua!!\"!ue',!}au!>>},{<!\"'i'!i!>!!'<a!>},<a!>,<a!>,<{>}}},{{{<a!>,<\"'<>},{<,'>}},{{<i'\",!>},<!>}>}},{<\"}}o{!!{!},!<}u!!>,<!>!>},<i!!!!!>,<'i!!!>},<!!!>e,!!o!>},<'o!!!>i!!>}},{{<!!io!!!>!!}!>,<a>,<!>},<!>,<!!!>,<a!!!>\"}<!!!,a!!\"!!o!,>},{{},{<!>,<!!!!!>\"eo'!!eu!>,<!!\"!!'!!!!!\"!>,!!!>{}o>}}}},{{{{<iu!!!>,<}!!\"!>},<\"!>},<!!<>}},{{{<a!!!!o}}}!!!!!>!!!>,\"o!>,<>}}},{{<!a!!!!!!!>},<>,{<e!!!>a!>},<!>o<!!!!,oiu\"}'>,{<!!!>,i!!\"i>}}}}},{{{{<u}!>},<i\"{}!>},<e\"!!!>,<e,!!!!}u>},<<a!!!}!!i!>},<}\"!!a}{u>},{<!!}'ei!!!>!u!>,<!\"!!!>!>},<\"!!!>>,<,o\"!>},<!>},<!!>},{<o<!>},<!>},<<!!,>}},{{{<\"!>},<}{,a!!!>>},{{{}},{<u!>},<oi!>{o!>,<i!>},<!>{<!>,<}!>},<i,a>}}},{{<}\"o,\"!!}!!{!>},<}!>u>},<e{e>},{<ue'}!!a!!}'!>},<{>,{<e!>},<\"u!eui{,!>},<{{'o>}}}}}},{{{{},{{{<!>},<!!}>},<!>!>,<u!!o!>,<!>!!!>!!!>!!!>!>}',e{!'!!!>o>}}},{{{{<!!i<'\"!>},<}!!u!!!>!!!>!>,<{>},<e!eea\"!!!>!!e}>},<>},{{{<{!!!>,<e!!!>!>,!>'i!!!>!!{'!!!><ia!!!>u>}},{<!>!!!>},<,!!!>!!!>}o\"!>>}}}},{{{<i}!>,<!,!>,<!>!>!>},<>}},{{<e{!>},<o!!!>!>},<\"}!>!>,<!!!>!!!>a<u>,{<,!>{,<e<i<eo\"!>,<,}o',!>,<>}},{{}}}},{{{<'<!>\"!'!!!!o!\"!!{!>,<,!\"u{<,!\">},{}},{{},<aa!>}!!'!!!>!eaae{!!!>},<!>oo>},{<!aoa!!>,<!>},<,!!!!!>!i,!>},<a>}}},{{{{{<a}!!!>,<!!!><a!!i!e<u\"!a}\"i!>,<!e>}},<!!e!!!>,!>},<!>!!>},{<!o!>},<<!!!!{!!!!e!!o!i!!!>!}!!!{>,{{<}i!!!>!!\"!>},<!>},<eo{u\"{!!!>!!i<{>,{<e!!}<}!>},<a!!!>,<!aea!!{<!!!!\",!>,<>}},{<{!>>}}},{{<!!}!>,<{}'e!<>},{<<i!>!!!>>}}}},{{{},{{<!>!!a\"<u!!e!a!!a{!>},<!!!>!>,<>},{{},{{{},<e{!!\"!>},<!\">}}},{{{<!>!,!>,<i'!!e'o,!}!ie}>,{{{<!!ei!!{>},{<!>,<'!>},<!>,<\"<}<i!>,<i>}},{<!>eu{i'!!oou!>,<<!>,!!!!!>}o}!>,<>}}},{{{<>},{<i!!aao!><!>},<>}},{{<!!!>!!'<!!!!>,<e!!!>'>},{<!>!>},<a!!\"i!o!!!a!!!>!!,\"\">}}},{{{{<i'<{'>},{<!!!>,<!>},<{e,,!>},<!!a{!!!!!!!!!!,>}},{<a<!,!>},<'!>},<!!}'!!\"!\"eo!!!>,<!>,<!'>,<eei!>},<<ue'!>>}},{}}},{{<!!!>ei{!!!>\"}i<>},{<!\"!!u!!!>,!!!!\"!>,<!!e,,\"<iu!>!!}!e!!{>},{{<ae}!!iiaaoou!!i{}!!}!'>,<\"!!!>{a>},{{<!!o!!!>u\"!!\"{!>},<<!>,<!>},<o!!!>o}!>},<!{!!!!'!>>}}}},{{{<},!>,<!!!!!><!!!!!><!!!>!!!>>},{{{<!>,<>}}}},{<e\"!!!>>}}}},{{{{{<!>,<!>,<>},<!!!!!>e!>},<a!>},<u!>},<>}},{{},{<!},\"!}!!{o{'!!'ie>}},{{<!>!o{e!>},<!!!!e!!}i!a{>},{<\">}}},{{},{<!e\"a!!!>{!!!!{a}'!>,<!!!>{!>,<!!!>>,<o{a!!!\"<!o<!>!!!!o!>}!>!!\"o!!{\"!o!!!>>},{{{<!!!>'!>,<<!>!!!>e,<{!>!!,>}}}},{{{{<>},{<,!>},<!>'\"e>}},{}},{{{<>},<a{,i,!>,<!>,<!!!>,<!<!!!>!>},<!!!!!!!\"!!!>},<>},{{<>},{<!!!>u!a\"!>eae!!oi<!>i<o!,!!!!!>>}}},{{},{{<e<ua!!''!>,<!>},<,u!!!!,ue>},<{!>,<>}}}},{{{}},{{},{{<}\"}!!!!,!!!>!!!!!>!>i<>},{}},{<!>},<a!!',{,oi!>},<\",!!!>u!!!>!>>}},{{{<ou\"!!!>e!!\"!!!>'>,{<!>!>,<!!{,!>},<!e>}},{{<!!i!!e!>!>},<!!!>!>uu\",!!e!!!>a}i!!'>},<!!e'!>!>,e!!\"i!!!>}i!ui\"uo!!>},{<a!!!>}e>,{{},{{{<<i!>},<ea!!!>,<!!\",i!!}!>,<'}!>,<<!a!>},<!!!>!>>}}}}}},{{<!i'!!!a!!!>!>!>e>},{<!>,<!>a'<o,u!!!>!>},<o'<!{o,i>}}},{{{}},{{}}}}},{{{<!>,<}\"}a{!!!>!!!>!!!!a{!>eiu>},<,!!!>u>}},{},{{{}},{{},<!>},<'i!u'!!!>e!!oe!>},<!!!>}!ii!>!!e!>,<\">},{{<!!!>!>,<!!!>!!!>!!!>!!oe!>},<!!>},<!}!!e>}}}},{{{{{{<i!>!>!!!>eai<!>},<!!{,!>,<!!\"!!'{!}!>i>}},{{{<!!!>!!!!!>,<\"'!!}!!!}!>eu!!!!!>},<!!i!>,<,>}}},{}},{<}a!>},<!!{!>,<eo!!{!!!>!!!!!<>,{<!>},<!u!!!>u{}io,{'iu!>,<!!!>>}},{{}}},{{{{<!>!!'!!!>},<\"!!!!<}i{!>,<<!!'\"!!u>},{{},{{<u>}}},{}},{},{}},{{{{<o!>,<!>,<{!!,{i!>}}!\"o!!>}},{}},{{{}},<\"o>}},{{{{{{<\">}}},{<!!!!!>,<\"!e!<{{!>,<'ou>,{<>}}},{{<i!!!!a!'!>!!u!'o\"!!<!!<u!!!>},<!>},<}>},<!>},<{!>,<}!!!>!!'!!!!{!>,<!>,<>}},{{{{{<!>,<<'!>!!a>}},<!>},<\"!!!!!>>},<ei,<<!>>},{{<\"!>!>},<ee!>,<>},{<,!>},<!!!>!>i!!}a}{}!>\",!}eu>,{<e}!>,<a!>},<eo>}}}},{{<}o!!!>!>,>},{}}},{{},{},{}}},{{{{<!!!>!!!!!>uo,!>},<<i!>\"!!!>!o!>,<!!i!{>}},{{},<ae!!!>,<!>e,!!!>,<!>},<a>}},{{<<{\"!>},<i}u<!>,<!!!><'\"!>},<\">,{{<o!!!!!><}i!',!>},<!>},<e\"!!!>}>,<!{{o!!!!oe>}}},{{{{<!!!>\"e!>},<oo!>,<!!}!!!><>},<>}},{<\"<\"u,!!!>e!!}!i<a}!!!>!>a>,<'\"'a!{!>,<'!>},<>},{{<}}ia!!!>!>},<,!>\"!>a!>>},{<!!!!a!!\"<!!!>},<>}}},{{<u!>!!!>!oo,!!!><!>,<eu>},{{},<}!>'!},i'>}}},{{{{<!>e!!<'i!>,<\"!!\"e>,<<{!!!>!>!!!'!!}!'eai!uu!>>}},{{{},{<!!e<!>},<e<!!euo'!>'!o!><oe!!!>>,{<!ai!!ia!>}<!>,<}>}},{{<>,{}},{{{},{}},{{<{\"<i\"<!e'!\"!>},<!!a{!!'>}}},{<!>,<!>,<!!!>!!!>e>,{{}}}}},{{<e<,\"<}i!!!ii\"!!!!>}},{{{{{{{{<!!!!!!i!!!!!>},<!,{!!>}},{<!!,!>},<<a!!!>i,o}a!>,<o>}},{}},{{}}}},{<{\"!>,<!>},<>,<!>},<!!!>!>!!'o!>i!iua\"\"!!!>},<u,e>},{<i!!o!!!!!>!!\"!>},<!!!>!!!>!>,>}},{}}},{<\"'{<,i<<'\"!>},<'!>},<!!!>>,{<}!a!!{>}}},{{{<aa!!!>!>},<a!!!>o}!>},<e!>!>,<<iae!>},<>}},<,>},{{{<!>},<}}a\",!eo!>},<e!>},<<uii>}}}},{{{{{{}},{{}},{{{{{<!!'\",o!!iia,ae!!i!!i>}},<!>,<u>}},{}}},{{<u<'>,{<\"!!\"!>},<!!!>u!!!>!>!>!>},<ao\"e'>}},{{}}}},{{{<!!<!!!>!{!}!>e>},<!>>},{{{<!>,<!<!>},<a,u!!!>i<{>}},{<o'a{i'e<!!!>!!!><!!!!}\"!!!>a<<!!!>!!!>>,{<>}},{<!>,<e!}!!!!<}ii}u>,{<>}}},{{{{{}},{<!>}!>,<u!>{!!o!>,<{oe\"!>>}},<!!!!!>!!ue!>},<'u!!!>a'>},{<{!!<>,<}a!!!>!>ooa>}}},{{{{{{}},{}}}},{{{<<!>,<!>},<!>,<<e>},{<!!\"!!!!a>,{<}!>,<!>},<!!>}}},<{!!!>},<!<!>!!u!>},<!!!!a!!!>!!!><>},{{<>},{{{<,,!!!>!{{>}}}}}},{{<!>!!!>uu{!!{>,<a!><!{<oaa!>},<ie!!!>!!{,!!!>,<\">},{<u!!!>u!!!>}!>a!!!><!!,<!!!>!!!>u,>,{<a>}}}}},{{<\"!!!>,<'!!!>!ao>},{<!!{>,<\"{!>},<<o,}oi!!a!!!>!!!>>},{{{}},{<a>,{}}}}},{{{<!>,<'!>},<,!>,<ei!>!!!!!!!a!!!>>,{{},{<!!!>!!!>o>}}},{{},{}},{{{<ea{}ae!>!>ee<\"!!!>,<>}},{<!!,u{u!!e'i!!!>!>,<i!!i\"\"u!>>}}},{{<,a!!!>!!}{e!>}o!>>,{<},\"!a!>!>}}!!!>,!!!>\"o!>},<'i{>}},{{<o!u!!,!!!>!!'<}!!,<!'!>,<u\"e!!!>},<>},{<>}}},{{{{{<!>,<!>,<'!!!'\"!}<!!!>>},{<<,{ei>}}},{{{{<!>},<,<\"i!!e!!'i!>},<\"!!!>!!!>!!!>,<>},<!!<>},{<u!>}!>,<,!>,<i!!!>!!i!!!>{!>,<>}},{{},{<!>,<u!!!><'u!!'!}!e!\"!>{a!o!>},<,!>!>,<!>,<>,<o'!!!>!i\"!!<<!>},<a!!!>}>}}},{{<{!!!>>}}},{{<{!>},<!!!>'!!!>,<!!i\"o!>>}}},{{{<a!!aii!>,<uo!>,<,>},{<!>},<!>,<e<i>},{{{<!<ee!>!>!!!!!>},<>},<!>},<<\"<!a>}}},{{{<'!!!>!!!!!!<!}!>!>},<!>au!i!>u!!!>\"<!!u>},{<!>,<a!>},<\"!!!\"}!!u,<{<'au!!{!>,<>}},{{<{!>},<'iioa!>o'''!!!>u!!!>},<>},{{<i!>},<!>,<u!>>},<!\"!>,<<{!ue!!!>i!>!>},<!>>},{<ae!>,<\">,{<oau>}}},{{<i!>},<!!>,{<i!!!!!><u!>!>},<o>,{<o{!>>}}},{{{}},<!,!e<\"!!!!a!!'!!!i!>,<!>},<oa!>,<!!,e!>i>},{{<e!!!>!>},<o!>,<<!>,<ua,e!!!!a{>},<>}}},{{{<{a!>,<!>,<!>},<\"{{'>},{<{>,{<!!!>o<\"i!>},<!!o!!!!!>!!!>e!!!><!!o\"!!i!>,<!!!>>}},{{<>}}},{{{<!!!!!>>}},<!>\"iu'!!a!>},<,!!i!>a<!>e!>},<!>>}},{{<{<!>\">},{<!!<}!!!!<u}{>,{<!!<!!!>,!>},<!>!!!>!>},<!!!!<e!!<<!!!'!!au>,{{{}},{<!!e{!>},<{!<i>}}}},{{<}u{}oo''{'<!>},<>,{{{<u'!,!!e{!!!!<!!u>},{{<u!!}!!!!!>!}a!!!!!>>},<!'!!,!>!!!!!>uo!o}!!!>,o>}}}},{{{<e'e'{!>},<!o!!<a<>},{<!>!!<aai!>,<!!!>{e!!>}},{<>,{}},{<i!>u{a'!>,<!>!auu\"!>,<o!a,>}},{<'ae{!!!>!>{!>,<>}}}}}},{},{{{{<e!!i!!!a\",!>,<<o,!>o!>},<!>},<>},{<!\"a!>},<uae!!ei!>!>!!!>>}},{<{iu!>},<!>a\">,<{'\"o!!!>},<!>},<!!!!!>!<!}!>},<{,\"a!!!!\"!>},<>},{{<ue!>,<\"o!>!>,<!>},<>},{<\"!!e\"!!!>!>,<u>,{<'!>,!!'!!aia}!>},<!!!>},<<!!!!u!!!>!><e<>}}}},{{{<!>,<,>,{{<<u>}}}},{{{<{u<io!>,<'<u!{\"e<}{!>,<\"!>>}},{{<!!!>>}}},{<,\"{u'!>!>,<!\">,{{{<!>,<ea!!!>a!!!!!a!\"!},!>o!>,<\",!!!,u!!!>},<>}},{<!>,<!>},<}\"!>,<!!''<,{!!<ii!!i!>o>}}}},{{{{<ouoi<!>},<!ui!!e!>},<!!!!a>},<!>},<a!!e!>,<!!!>'!>o!>!\"{ae{a!!a<i!>>},<i{>},{<i,>,<a!<'i<i'!a\"a!i{<!>!>},<!>,<\"!>a>}},{{<,{}i!}'!{!>>},{}}},{{{{<i>},{<!o!!!!!>,<a!!!>>,<!>,<e'{o!!!>,<>}},{{<>},{<>,{<!!}<\"!!!!!!\"!!!>!!!>e!!!>!>a!o!,ue,{!ua>}}},{{{<>},{<!>,<,}\"!!ao\"!>,<<!!!!!!!!!>,<!>>}},{<}!!!>!!uo}!!!!!!!>,<!!!>!o,u!>,<!!!>a!!,!>>,{<e>}},{{<{!!!>,<!>},<\",\"i!!>,{{<{i'!!{\"\"i!!!>,<!uau,!!!}\"e!>>},{{<o>}}}},{},{<!>,<a!>,<{i!!!!!>}a,!!u!>},<!!!>\"!>},<!{>,{}}}}}}}}"
def puzzle():
def track_garbage(idx):
i = 1
count = 0
while stream[idx + i] != '>':
if stream[idx + i] == '!':
i += 2
else:
i += 1
count += 1
return i, count
def track_group(idx, score):
level = score
count = 0
i = 1
while stream[idx + i] != '}':
if stream[idx + i] == '!':
# skip the next character
i += 2
continue
elif stream[idx + i] == '<':
# start of some garbage
dif, c = track_garbage(idx + i)
i += dif
count += c
continue
elif stream[idx + i] == '{':
# start of a new group
s, dif, c = track_group(idx + i, level + 1)
score += s
i += dif + 1
count += c
else:
# random character
i += 1
return score, i, count
s, i, c = track_group(0, 1)
return s, c
if __name__ == "__main__":
p1, p2 = puzzle()
print("1: {}\n2: {}".format(p1, p2))
| stream = '{{{{{{{<""!>,<!<\'}\'ui!!!>!!!>!<{!!!!!>>},{}},{<<\'"i!!a!{oe!>!!e!!!,<u!>},<a>,{<}{a",!\',!!!>},<u,!!!>!}<,\'!o<!>,<>}},{<!!!>\'"i!!!>u!>uai!<o>,<i!!!>!>},<!>,<!>!>}o!>},<!>,<!>},<!>,<!!!>>}},{{{<!!,!!!>oo"!!a>}},{{{{<i!!!!{,!!}>}},{{{<a>},{{<a!{!!>}}}},{<!>!!i\'!!!>"""!>>,{}}},{{},{{<!>\'!>,e!>},<e!>},<,,{"{"!!!>\'>}}},{{{{<"ao!>!!!><!>,<!!}{{!!euai>,{<{!>,<!>!>,<!"u}<!,>}},{<<!>,<!>,<<<}a!!!!a!>,<>,<!!uu!>!!!!!>!!"oe!!,o{!>},<}!>},<<!>!a!!!>>}}},{{{{<>}}},{{<!ei}"!>!!!>!!!>!!!>!>},<eu<!!<>,<"!>},<i!!!>!>},<!>,<\'!!!>!!io>},{{{{<}!!!><!>},<u!!!},!!!>!>},<a,!!<\'>},{<\'!>,<!!>}},<<!!,au!!uu!!!>,<!!{o>},{<e}!!!>},<!!{\'{eu!!,{!!aei!>,<<!!,a!!!>>}},{{<u!,>},<}{a!oei!aa,}"!!,e!>!!!>\'!!}{>}}}}},{{{{<u!!!>!!i!!u!>>},<\'!!!>!>},<!>,<!,>}},{<,!!!!!>,<\'!a!!!>,<{!<>}}},{{{<,,\'!>,<}i\'!>,!>},<o<!>>},{{<!!!>!!>}}},{{<\'!!>}},{{},<!>},<!>"o!>,<!!!>!!!>>}},{{<e!>},<<}{<\'!>,<!!!!!>!>,<!!!<eo!!!>>,{}},{{{},<>},{{{<oi{,!!!>}!<e"<ueu!<!>>},<u!>,<!!<">},{<!!!>!>,<}!!o<<e!!oa!>,<!>,<e!!!>{>}}}}},{{{<!,!>},<u!!!>\'>},{<!!"!o!!"!>o!!i>}},{{}},{{<>,<!!!!<!>},<!!!>a}i{!>ii!><>},{{<u!{!!!>!!!>},<u>,{{<}{u!,u}{>},<}!>},<ie!>,<<{u!!!<!>{">}},{}}}}},{{{{{},{}},{{<{e{!!!>i!>,<a!>uei"!!!>},<,!<}!"!!o>,{}}}},{{<>},{{<,o"i!!,!oe!>},<"}o!!!>,{i!,u>}}}},{{},{{{<<>,{}},{{{<!!a!\'a}!!oeu}>}},{<!!!!!!i!>,<,\'!!!>!!o>}}}},{<e<oa!!!>u!!!!!o{\'!>ai>,{<e!!,!!!!!!,,i!>},<!a>}}},{{},{{<!>!>},<!!!}i<\'<i<>,{<!>,<!!!>}u<i<{!>},<!!!!!>oue!>,<!!!>,<u\'>,{<i!!!>},<!!ee,!>!>,<!>},<!,>}}}},{{{{<!"!!}!!!!{}!>,<!>,<!>,<!>,<!>,<!>},<\'!>,<!>,<!>>},{{{{<a<!!au!>>},{<!!!>a,!!!<"\'!!>}},{<ae}!>,<,\'>,<!>i!}!>,<,!!\'!!<!!}!,}>},{<\'!!ee!!i!i>,{}}}},{}},{{{},{{{{<i!,>}}},{{<!!!>o<a{!!!>,!>eei>,{<}}!>},<<!!"!>},<a!!!>ie!>},<<!!o>}},{<!!!>!>,<!\'!!!>!>},<!>},<{}ua}uuu}o>}}}},{{{<o{!!!>oe!>},<!!!>\'!>,<u!!!!o!a!!!>i">,<a!>},<u"e"}!>},<{i">},{<}ui"!!!>"},!>,<!o">}},{{},{{<!!o,!>,<!>,<{io"!"e<,!!i!o}u"">},{<!>,<e!>,<\'!!,\'a{"!>,<"o"ui,>}}},{{<e},u}!>"!!!!,ia<!>}>,{{<!o"!>,<\'o}!!!!">}}},{{{<!!!>!>!>},<>,<ao>}}},{{{},<!!!>,<!!!!!>!>},<!!!>"e!!u!\'!!!>>},<!!!>},<,e!!{!}u!>>}},{{{{{},{<u<!>{<o!{<!>},<">}},{<"!>},<"!>},<!!!!!!{>,{<e!!,}!!!!>}},{{<i!!!>!!i<!!!>!!!>,<>},{{<!}!!!>e\'ii<!!!!e<!!!>e"!!u!!!>>},{<a"!ii>}},{{{{}}}}}},{<<!,!!e!!!}{}!}!>},<>,<"e<!!!>},<!>i!!}{u!>},<!>,<!!!>},<"!!!>a!!!!>},{{{<e!!!>"iu!>},<!!{}{!}!!!!!>a!!,>},{<ai!>},<!>,<}}!>!!ee{!><!!!!!>!!!!,!!\'!>>}},{{<ue!{e,u>},{<o}e!aai!!!>}!!i}>}}}},{{<}o!>"{!!!e!!">},{{<>},<!u!!!>!!!>},<!>},<!><>},{{},<e!!oo>}}}}},{{{<<!!!><}"uu!!i!>,!!!>,<!!i!>},<aa,!,e>,{<u>}},{<!!!!!>a<}>}},{<!<<uoe!io>,<!!!!i!>},<{ui!>},<\'"u!!{>}},{{{{}},{<{!>!!!aa!ua{!>!!!>!!{{>}},{<i!""i!!!!!>\'\'ueu}o}"!>,!!!>!!!>>,<\'!!!>!>!!!>!>!i,i!i!,!oie>}}},{{<u{!!}",a!>},<oi!>!>!!!>,!!!"\'!!>},{}}},{{<!!!>}}!!o>},{<{\'a!!ia\'o!!!>},<o!!!>},<"u>},{{{{<o}!>!!!!\'{!!!!!>"!>,<>},{}}},{<!>u!"ooi!!!>!!>}}}},{{{{{{{<!>,<!>},<{!>},<!!!>},<}!>{i!>!!{!!!>!>>},{<!!!>},<!>},<!<!>},<<!u!!}iao{!!!>!!i,!>,<!}i>}},<,{!!\'!!!>!!}ua>}},{{{<ou"e!!!!a!{{"!!<\'!!"i>,<!!!>\'u!!o!!!>},<!!!!a,o<u"}>},{<}i"uo{!>>}}}},{{{<!!!>"!!!>!!aioiii>}},{<!!!!!>!!!>!>,<e!>,<e}}"!!\'i"u!>},<!u<au>,<!a!!!>a!!o!!}!o!!!{}!>!!!>a{oo!>e">},{<!>},<\'!!!!!>"a\'<!>!>,<o!>},<u!!"a!>"\'<>,<!!a\'>}},{{{},<>},{{{{{<!!!>!!a<u<e\'!,"ai>},{}}},{<oio>,<!!!>,<<uo!!!!}!!!>>}},{{<!!{\'!>>},<,<!><<!,>}},{{{<!>},<!!o{"!!i!>,,!>!!!>!!!e<e>},{<!!ei!!{"!>,<!!e}!",!!u,!>},<>}},{}}},{{<ia!>,<!!!>,<<o\'{!!"}u!!{"<!!a>},{{<i>},{<{{\'>}},{{},{<>}}}},{{<!!a!{,!>,<!>},<i!!!>,<>,{{<!!<\'<}\'>}}},{<}!{!>,<!>,<>,{<e{!e!>},<!!{!!!>>}},{{}}},{{<"e,!>!>{<!>!>,<a,"!!e}e>,{<<!><!!!>!auei!>},<!>>}},{<!!a"\'{!"!>,<!><\'e{!!<<>},{<e}!,{u{!>,<>}},{{{{{},{<!!!>,<!!!>!>,<!!!!{!!!!\'{>,{{<!!i\'!>},<ua!e{}}!!!>!>,<u!>>}}}}},{<!<!!!>},<i<!>},<!>,<!i{o!u\'\'"i!>,<<!>!!!>,<>},{{<!>ea,a!>,<!><!}>},{{{<{!!{!>,<<!!!>!!!>\'!!!>"{"!>!!"u\'!e!>},<!!>},<}{,{>},<!>},<eio!>!!\'!>,<"!o!>,<,!>,<!>i!>">},{<>,{<!>},<!>},<""!>},<!!!!!!!>!>!{!!u!!!>e!!!>"o>}}}},{{},{{<!!!>!a!!{!>},<o,!!a!!\'!!!>>},<\'!!i>}},{{{},{{{<e>}},{{<!!!>a,u!>},<!!o!>},<!<u}!>},<u!!!!!>!>},<\'>}},{{<}!!}"!!a!!!>{iu!>!>>,<!!!!!!!>"!!,,}{}!"!!e"<i!!!!!>>}}},{{<\'{o!!!!a!>{!>,<!!euou!>},<e!!!!!>,<>}}},{{},{{{<",!!i!!ea{"},>},{<!>},<!\'<!!}>}}}},{{{{},{<<}!>}o!!!>!!!!!>!!a!a!>},<!>},<>}},{{{{<\'>,<<u"!>,<}!\'e!!!>,iao,<a">},{{<{!>},<!!>}},{{{},{}},{{{<ae!!<,{!>,<o!i<>}},{{<\'!!!!!>},<\'{!!!>>},{}}}}}},{<i!!!>a!!!>},<!>!>!!{i!e!u>,<io"u!>},<!>},<}a>},{{<,!>},<!!!>e<!!\'!!!>},<i!!!!"!,\'\'!!!>,!!oo>},<i!>},<\'>}},{{{<!>},<!!!>!>!>,<\'!!!>}}>},{<a}}!>},<e!!a!>,<!!!>!>,<>,<!!!>"!!!>!!!!!><!>},<a!!!>!>,<!>},<i""!>,<!"!!!>!"!\'>}},{<!>},<!eui">,<!!}e!!!>u!{!!{!!!>},<i!>,<\'o!!i!>},<!>,<>},{{<>},{{<oo\'!!!i!>,<!>,<!,{{a>}}}}},{{{{{<>}},{{{{},{{<!i!>i{ua!!!>},<e!>!!{o>}}}},{<!<,!>!>},<"\'!>u\'!!u!!<<!!"!>}u}>},{{<!!!>}!>!!!>,<>},{},{{{{<!!!>!!!>!!!>!>a}}!>i!!!>!!uu>}},{}},{{},<>}}}},{<">,<"!>>}},{{{{},<!{!>,<!>,<!"u,!>},<>},{<!>},<a!!{{u!>},<a\'!!!>i!!!>>}},{<e",!!\',"aa"i{">,{<>}},{{<!!!>!>,<{!!!!!>,<>,{{<!>,<!!!>!!<!!!>,<i!>}a!!!"!!!!u{!!i>},<}!>},<}!!!!!>,<"!!!>,{",!>},<!>},<>}},{<<!!{!>,<>},{<a\'\'}e>,{<!!!>,<!>!!"\'!!!>\'!!a}a\'\'!>},<oe\'>}}}},{{{<<!!!>},<!>,<"\'!!!>!!!>,<\'!}!!u\'!!!!!><!!!>,<>,<!>,<<!>o}a>},{},{}},{{}},{{{<}">}},{{<,!>ea!!!>,{!>},!>,<{!>},<!!{}<o>},{}}}}},{},{{{{},{<"\'<!>,<!!i!><a!>},<!!!,}u!>,<!o>,<>},{}},{{{<!!,!!i<\'"e\'"}\'{ue{!!!!<!>>,{<{o<!>},<!>},<!>!{">}},{{<e!!!!!o!>i!!!>!!!>},<!!!>},<\'o!!!>!>,<>},<}"a!!!!!>,<!>,<}\'!>,<\'"!>!>},<{<!">},{{<\'!>,<ea!!a!>,<!a!!i{!>},<!>},<!!!!!!<}<>},{}}},{{{<auo\'<u\'io!\'\'!!!>}!}a>,{}}},{{{{<">},<!e>},{}},{{<!!!><!>,<!!!>!!"<u}!!!!!!!>}e>,{<!!,"a>}},{<!!"aa!!,!>},<<e!>},<u!!}!>,<\'a{!a>}}}},{{{<!>!o{{!!{!>,<e!<!!!!\'o">,<a!"<!>eu!"i"!!\'!!""!!!>},<">},{},{{<!<iu!>},<!"!>!!!><>},{<{!>!>,<!>},<o!>},<"!>,<a!!,!>oaiui!>,<>}}},{{<}!>{,!!!!!>!!!>,<u<eu!>},<,!!!>e!!!>,<!>,<>},{}}},{{{}}}},{}},{{},{{{<u\'!>!!!>},<i!>\'!!!>"!!<!!!>o!!!">}}}},{{{{{{<!!!i}!>},<{!!!a!!!!!!>},<",e!!!>!oe!!!>,!\'o!!"!>},<>}}},{{{{{}},{{<!>,<i"a!!\'!>,<!>o!>!!!>>},{<,i}{!>},<!>,<!>,<!!!><!>},<!!<a"!!!>!>,<>,{{},<ue"<o!!!!!>>}}}},{<"au!{e"!>>,<i!>},<{,i!>,<!>>}},{{<i!!!>!!!e>,<>},{<!!!!!>e{<!>,{a!!ee"!}!>,<,}e\'>,<!!!>o}e!><!>!{,!>!>,<{!!!>!\'}<>},{{}}},{{<!!!}io{!!ou!}eu>},{{{<oi{}!!!!!>ue!>,<a<!!e!>,<>},{{{<"!!>}}}},{}},{<i!!!>"\'{ieau,{u}!!">,{<>,{}}}},{{<\'!,!!!>},<}!>},<!!\'!!i!i!!!!}a!!!>!>,<!!!>!!!>!>},<>},{{<!<<!!!"\'\',\'!!a<\'!!!>,<"aa>},<ea}!>},<!>},<a",<i\'<<!>},<">},{{<{!!!>,<!!!>,!!u!>!!a!!oai!>,<!>,<!>e}>},{<ue!>},<o",!!!>!>},<}!>,<"!!!!i!!!>!}ae{>}}}},{{{{<"o}}{!!!>,<\'!!>,<!!a{!!!>>}},{<e,!!!>\'u!>},<!!!!!!!!!>"!>,<>,{<!!!><!e\'{e,o{""!!!>{!>{!!>}},{{{{<i!<!>!!!!!>\'e!!a,}ea,i!>>},{<{!!u!ao!!!,!!{!>!!!!!!!><"}!>,<u!!!!!>,oi>}}},<i,}!!!>>}},{},{{<!!!>},<<!!ai!>},<!i!!!>,}>}},{{{{<>},{<!>},<,o!!<!!ai!!\'!>},<u!>},<i<!a>}},{{<,!>}<,<!!!>"!!!!<!!!>i!!!>>},{}},{}}}}},{{<o!!!a!!!>,<>,{<!>{!!!!!><{!!u!!!!!>o!!e!\'i>}}},{{{{},{<!!!>!,i!!!!!!!>!",>}},{{{<aou>}},<a!!}!!o}>},{<!>,<!!!>!!!!!>\'!><u<!>,<o,!\'{!!\'ui!>,<>,{<{!!!>,<>}}},{{{},<!>,<!>},<!>},<ae,!!!>,<!!a!!">},{{<<}!!!!!!}!>},<<!!"\'>}},{{},<!!!>},<!!oao!>,<!!a!!!>!>},<{,"o{i!!!><>}},{{{{<au!>},<a}{>,{<""!<\'u\'!!i>}},<!>{>}},{{{<!>o!>!!!!a!!e<!<!>!>,<!!"!>,<>},{<"!u>}}}},{{<"\'!,!<!!!>!u!>,<!>,<o"!!!!ie>}}},{{{{<a,e}<!!!>},<>},{<,!ou!!!>>,{}}}},{<!!>,{{<!!u>},{{<{!>},<!>}!<ue!!!>,<e!!}>},{<<!>,<>,{}}}}}}},{}}},{{{<!!oi!!eauo>,<u<!!!>o>},{},{{<\'o>,{<}!!ua\'"o<e!!,>}},{{{<!!!>{}{\'!!\'<!!!>i{"!>e}!>a<!!!>>}}},{{},<"{!!u!!}!!<!!!>,<<!!!!!>!!!>!>!!,u,"u{>}}},{{{<,",\'!!!<o,">},{}},{{{<!!!>!!!>,<<io!!!!,i"\'!>,<i,!>,<{>},{}},{<!!ueu!!!>\'!!>}},{{}}},{}},{{{<!>,<"{"}"oaa!!!>o",!>},<a!{\'!>!!!>,<>,<!!!>!!e!!ao,>},{{{<,!!!,u<!>},<!>},<uoo<ee!!!>"o>}}},{{{<u!!!oi!!\'!!!><e"e!>,<!!,,">},{}},{}}},{{},{{<a"!!\'!\'!!!>eo!a!>},<"!<<!>},<!u!>!>},<u!!!>>}},{{{<a!!!>!>},<!!!!!>,<>}}}},{{<{i"}!i\'!!}a!!i!!{,}}\'!!!\'!!>,<!a>},{{{<o>}},{}}},{}}}},{{{<a!>},<<"}u!!\'!>!>},<!!<>},{{},<!>},<"a!u!"">}},{}}}}},{{{<<i!!<<}a{a!>,}!!!>a!>}\'>},{{{{{<}!!!>\'{!!!>!!!>!>!>},<!>},<i>}},<!!a>},{{},{<>}}},{{{<u!!!o!>,<!>{>},{{},{{{{}},<",o!>!!,!>,<e"!!a,!\'}!!!>a,!!!!!>>},{<,i"}>,{}}}},{{<!!!>>}}},{{<!!!>e!>ee<,!>">},{}}},{{{<!>},<!>"!!!>{u,!!!>},<<!,e>},{<!>,<!!!>{!!>}},{<<,eu,a{>,<!>!>,<"a{!!!>a!eiao{!>},<!!!!!>!!u!e!!<>},{{},<!!!>},<!!!>},<}\'!!"a,e"!>!{!!!!}>}}},{{<!!ou\'uuu!!!!u>},{{},{{{<!!!!!!!!!>,<"a,>}},{}}}}},{{{{{{{<<\'!!!><!!!>\'!>!!!>!!"!!oe}<">},{<u!!!>>}}},{{},{{{<"!>}!!,!>,<!!!>,<!!!>u"u}>}},{<!oe}!!<{!!aue>}},{<!>,<"!!!><<!<u!>,<{!e<!>,<!!!a{oa!>>,<u<!u,o,>}},{<!!!>},<!!!>i!>!!!>!!e!!ua!!"!\'\'!!!>!,>,{<!!i{ao,{!!"a!<,{!>},<!>,}}"!!!>},<>}}},{},{{{}},<!>,<eu!>},<,!!!>!>,<\'!!<!!!>},<!>,}!>},<,">}},{},{{{},{<!!!>!>>,{}}}},{{{{<!<!!}a!>},<"!>},<"e!>,<a!>,<!>,<<!>ao}>},<,e!}<!!!!a>},{},{}},{{{},<>},{<!!!{!>,<"<!>},<!!!>ea!><o,o{o,>,<!!"!!!!!>!!\'!>,<"{"!!oua!>!>},<,!!!>a>}},{{{<"!!!!!!a">},<!!!!!>,<eoa!!!>>}}}},{{<<i!>"oua,{>,{<"\'!>},<!>},<!>!>},<,i!,}i<>}},{{{<}!>,<o}>},<}}a!>},<!>!!!!\'!e!!!>,<!>i\'i>}}},{{{{<!>},<!!!ao\'<ia,!!{<uu!i!>},<i{a>},{}},{{{<\'!>},<o!!!><!!uo!!}!>},<u!>,<{!!!!!>aa>}}},{}},{<!>,<}eauo!>">,{<!!a<!>i<}!>"!>,<ea>,<oeii>}}}},{{{{{<"!>},<"!>},<u!>},<o!!,u!>a>},{{}},{{<!>,<!>!!!!!"!>\'ii!!!!,>},<!uou}!!!>!!ea!!!>!>},<!!!!!>!!iu!!!!!>},<\'!i>}}},{{{{<{!>,<\'>}},{{{<i{,,!!!>},<!!!><\'<,!>,<a<\'u!!!!}!!">}},{{{<!<o"\'!!!>},<,!>},<<>},{}},{{<""<!>,<{,!!""\'e>},{{{<!>,<>,{<!!!><!!!!!>{!!!>},<>}},{}},{{}}},{{{<!!!>e!>,<!>},<}i\'>}},{<iu>,{}},{}}},{{{}},<!!{"!!\'!>},<!!!>},<>}},{{<a!!!>a!!!!!>!!!>!>,<<"!>,<!}u!!!>!i"o!>">},<>}}}},{{{<o\'i!>ieio!>,<e>},{}}}},{{{<<ie!>,<>,<"!>,<,!>,<<\'<!>,<ae!!!>,<\'">},{<!!!>\'a!!!>ae<!!!>!!ue,{!>!!!!!>!u>,<>},{{},{<!!"!!}!>,<<!ae!u!!<!!u!!!>o,!>>}}},{{{<e!>,<!>},<o!!!>},<ii!!!>!"!!!>>},{<a!!!!!>aa!!!!!>,<!!<\'}"!>e<\'>,{<!!!>,!!{i}{"!!auu,>}}},{<!>,<"o!>!><o,!!"}uo<>}}},{{<"!!!}a>,{<!!!{u!!<u!,!>!},!!!>a!!\'\'!!!!!>{}!ao">}}},{{{{{},{{<!>,<a!>"{\'"u}!{"!>,<i!>},<!>>},<!>,<!!!>\'o!>\'!!!>!!a<ui>},{{<{!!!!!>o!!!>,<!>},<a!i<}!>},<!!>}}}}},{},{{},{<<a"i!>},<!!!!{!!!{!>},<,!!!>o>}}}},{{{{<!>,<"!>,<{e<,!>!>,<e,!,,"!!i<<!i>,<>},{{<\',}},!!\'!>,<"!>},<{!i<!e{>},{<!!!>u!<}"!!!>!>!>,<!!i!>},<!!!>{\'>,{<e!!eau!>},<,>}}},{{{<!!<\'!!!>},<a}!!!>,<>}}}},{{<!o!!!><{i!!!>e}>,{{<<,!>,<!!!u,!>},<!i!!!i!!!>,<e!>},<i{,>}}},{<!>!>},<<u\'!!!>!!}"!>},<e!>},<,!"!!!>a<!{!!!>>}}},{<}{o!e{!!!>a\'!!!>e!!!!!!u!>,<!!!>},<>},{<ueo!!!!!>i!>,>,{<!!,!!ae!>,<"!!!>i!>,<\'!!!!o<>}}}},{{{<>}},{{{{<u!}!>,<!!!>{!>!>},<!!!>>}},<!!!<!!!>!>!>,<i,!>,<a!!!!!>aoau}!>},<}o>},{{{<>}},{<!>},<!a,ou!!,>,<!o,}>}},{{<ou,,!e}>,{<{!!!>}}a{\'u<>}}}},{{{{<!>,<!i"!!!>!!u,i!>},<!!,!>!!,!!!>,<!>>},{{},<}!!}!<!ia!!"<!>},<a!!!>!!e\'>}}},{{<u!u!>},<<!>},<!!""!>!!!!i{>},{{<ia!>,<{!>!!!!!>o!!ii!!uoi!!!><ui>}}}}}},{{{{{<!>,<}>},{}}},{{{{<!>},<!>},<!aau{!u!>}!>i!!!>"ai>,{}},{{<{"!!i{\'<!!!>,<>},{{{<!>!!!a\'!>,<!!!>{\'!!<i"eio,e,o>}},{{<!!!>,<!ae!>},<>},<!!!>!!!!e!\'!!a!>,<!!!>a!>!,u!!!>i<>}},{{<!!!>\'>}}},{{<!>},<\'\'!>,<{e!>e}!}!!!>!!\'!>},<!iui>}}},{{}},{{{{{<u!>},<!!a!!!u,!!!>,"!>,<!!!!"\'!!u{u{>,{<!>,<!>!!!>"i,"!>},<iu!!!!e\'>}},<!!u{!>},<i!!o!!"u!>,<!>,<i,<ea>},{<!!e,!!!>}!>,<}!>!ae!!uu!!!>,<>}},{<!>},<}!!!>iuaa!oa}}!!ia!>i">}},{{{<!!!>e{,o!!}!!iu\'>,{{<!!!>ui!!!uau<e!>!!!>>},{}}}},{{<!!{!oa\'!!}<!!e>}}}}},{{{{{{<i!!!>}!!!>!!{!>},<!!}}!>,<>}}},{<>,<!{!>},<!!}"!a>},{}},{{{<{ie!>!!,!>,<{!!\'!>},<!>,<!!!>,!!!>>},{<!>!!>}},{<\'<!>u<!!!!<u!!!>o<!!!>!>},<!!"oo>},{}},{{{}},{{{<u>}},{{<!!!>},<!{>}},{{<!>,!!!>!!<\'!!u,>},{<o!>},<}e>}}}},{{{},<{!!!!!!!\'{<i>},{<>,{{{<{\'i!!">}}}}}},{{{<!\'<<,!!iuu{!!!!!>!!!>!!!!i!>},<e{}>}},{{{{<aa!!!>,!!!>,<>,{{<>}}},{{{}},{<!!!!!>a!!}>,{<u!<{!!\'!!<i"{!!!>},<!!"u",>}},{<!>},<!>,<\'">,<{\'i!>},<}!<ao!!!>!>},<!u!e,o,}\'e!>,<>}}},{{{<ia<\'{!>},<,\'!!o!!!>,<!!!>!}o!!iei!>},<!!!>>}},{<!!u,!!!!!>!>},<!!!!!"ae\'!!!!"!>>}}},{<u!!,!!!>,<!!!!!>!!!!e!!!>!!a>,{}}}}},{{{{{<>,{{<<}}!\',}!>!>,<oa<!>,<o}e!!!>ia!!u>,{}},{<e!!,\'!!!>a\'>}}},{{{},{{<!!<iu{!!!>iu!!!!!>!!ae>}}}},{{<\'"i!>,<e!>!!{o!<>,{<,!>!>},<!!i,!>,<{"e}u!>,<{<i>}}}}},{{{<}}!>},<\'a!>},<!>},<"i<{e<i!!o!>},<,>,{<<ao\'<!>},<a!u<o!!"\'o<,{>}},<e\'!!\'>}},{{{<!{!>},<<!u!>!>},<!>},<ei!>},<o"!>},<!!!>a!!ii">,{<,!>,<,,}!>,<a!>i}a,"o{!!!!>}}},{}}},{{{<<u!>},<!>\'\'!!o{!!!o!>,i!>},<,>}}}},{{{{{{<}!!!>,<a<!>,<!!e!>},<!!!!!!ao>,<!!<!>,<,!}!u,a!!!>},<eo>},{{{<!!!>,<!!!>!!!>},<,!!!>},<i>}},<{!!!>!ao!a""o!>!!!!a}!!o<!>},<\'!!!>>}},<i<}o\'!>,<ae,!!!>,<,iu!!i<>},{{{<!!{a!!<u,!>},<\'!>},<!>!oi\'!>},<!>,<}a\'!>,<>}}}},{{{{{{<!>!>!>,<"!>,<oau!>u,{!!!>a>}},{<!>},<!!!!}"!!!>a!>,<!!a>}},{}},{<!!!u{!>,<!o!aa<i{"!{!!<<>,<!>,<!!!>a\'>},{{<"o!>},<!>},<<{u!>},<{"!>,<a!{>},{},{{<!>},<<!>!>!>,<!>,<<u!>},<o,}>},<",i!!!!!!!!<>}}},{{},{}},{{{<ia!>,<{!},}!uu,\'}\'{!>,<!>},<!>\'!>,<>},<>}}},{{<}!>,<!!uu<{!!!>,<"!>!!!!i!>o\'!>,<,>,<!!>},{{<}{!>,<<e\'!>},<a<!!!>}<u!!!>,u}>},{}},{<!>,<<"!!!{a!>,<!>,<!!!}!!!!!>},<u!>},<{e,>,{<!o<o{!!!>,<o}!!{>,<!>},<"!!a!>>}}},{{{{<!>!!!!!!!>!,{}a!!"\'!!o!>!!!o!!!>!\'\'>,{}},{{}},{{}}},{{{{<!>},<>},{<i<!!!>!>,<!{e>}}},{{<!>},<{u\'{a,!!!!!!a<a!>,<au!>,<e>},<\'!!!>,<o,!!"eo!!!!!>!>!e!>,<ua!!{u>}}},{{{<<>},<iao\',a<"e!>,<">},<!>},<!!,a!>a!!!!!>a!!!>!!!>u>},{{},{{}},{{<oo"!!!>!>},<>},<,,,!!!ie\'u!i!>o!}!>},<i!>},<ao{!!!>>}}}},{{{<\'{\'i}aeoo{!>,<aie>,<a\'!!}!>!!!>,!u!!!>>}},{{{{<!>!<}>}},{<!ui!o!>,<o!!\'!>,<a>},{<!>,<{!e{\'>}},{{{<<!>,<!!u!!!!!>!i>},{<">,{{}}}},<!!!>,<e!>!ua!!"!ue\',!}au!>>},{<!"\'i\'!i!>!!\'<a!>},<a!>,<a!>,<{>}}},{{{<a!>,<"\'<>},{<,\'>}},{{<i\'",!>},<!>}>}},{<"}}o{!!{!},!<}u!!>,<!>!>},<i!!!!!>,<\'i!!!>},<!!!>e,!!o!>},<\'o!!!>i!!>}},{{<!!io!!!>!!}!>,<a>,<!>},<!>,<!!!>,<a!!!>"}<!!!,a!!"!!o!,>},{{},{<!>,<!!!!!>"eo\'!!eu!>,<!!"!!\'!!!!!"!>,!!!>{}o>}}}},{{{{<iu!!!>,<}!!"!>},<"!>},<!!<>}},{{{<a!!!!o}}}!!!!!>!!!>,"o!>,<>}}},{{<!a!!!!!!!>},<>,{<e!!!>a!>},<!>o<!!!!,oiu"}\'>,{<!!!>,i!!"i>}}}}},{{{{<u}!>},<i"{}!>},<e"!!!>,<e,!!!!}u>},<<a!!!}!!i!>},<}"!!a}{u>},{<!!}\'ei!!!>!u!>,<!"!!!>!>},<"!!!>>,<,o"!>},<!>},<!!>},{<o<!>},<!>},<<!!,>}},{{{<"!>},<}{,a!!!>>},{{{}},{<u!>},<oi!>{o!>,<i!>},<!>{<!>,<}!>},<i,a>}}},{{<}"o,"!!}!!{!>},<}!>u>},<e{e>},{<ue\'}!!a!!}\'!>},<{>,{<e!>},<"u!eui{,!>},<{{\'o>}}}}}},{{{{},{{{<!>},<!!}>},<!>!>,<u!!o!>,<!>!!!>!!!>!!!>!>}\',e{!\'!!!>o>}}},{{{{<!!i<\'"!>},<}!!u!!!>!!!>!>,<{>},<e!eea"!!!>!!e}>},<>},{{{<{!!!>,<e!!!>!>,!>\'i!!!>!!{\'!!!><ia!!!>u>}},{<!>!!!>},<,!!!>!!!>}o"!>>}}}},{{{<i}!>,<!,!>,<!>!>!>},<>}},{{<e{!>},<o!!!>!>},<"}!>!>,<!!!>!!!>a<u>,{<,!>{,<e<i<eo"!>,<,}o\',!>,<>}},{{}}}},{{{<\'<!>"!\'!!!!o!"!!{!>,<,!"u{<,!">},{}},{{},<aa!>}!!\'!!!>!eaae{!!!>},<!>oo>},{<!aoa!!>,<!>},<,!!!!!>!i,!>},<a>}}},{{{{{<a}!!!>,<!!!><a!!i!e<u"!a}"i!>,<!e>}},<!!e!!!>,!>},<!>!!>},{<!o!>},<<!!!!{!!!!e!!o!i!!!>!}!!!{>,{{<}i!!!>!!"!>},<!>},<eo{u"{!!!>!!i<{>,{<e!!}<}!>},<a!!!>,<!aea!!{<!!!!",!>,<>}},{<{!>>}}},{{<!!}!>,<{}\'e!<>},{<<i!>!!!>>}}}},{{{},{{<!>!!a"<u!!e!a!!a{!>},<!!!>!>,<>},{{},{{{},<e{!!"!>},<!">}}},{{{<!>!,!>,<i\'!!e\'o,!}!ie}>,{{{<!!ei!!{>},{<!>,<\'!>},<!>,<"<}<i!>,<i>}},{<!>eu{i\'!!oou!>,<<!>,!!!!!>}o}!>,<>}}},{{{<>},{<i!!aao!><!>},<>}},{{<!!!>!!\'<!!!!>,<e!!!>\'>},{<!>!>},<a!!"i!o!!!a!!!>!!,"">}}},{{{{<i\'<{\'>},{<!!!>,<!>},<{e,,!>},<!!a{!!!!!!!!!!,>}},{<a<!,!>},<\'!>},<!!}\'!!"!"eo!!!>,<!>,<!\'>,<eei!>},<<ue\'!>>}},{}}},{{<!!!>ei{!!!>"}i<>},{<!"!!u!!!>,!!!!"!>,<!!e,,"<iu!>!!}!e!!{>},{{<ae}!!iiaaoou!!i{}!!}!\'>,<"!!!>{a>},{{<!!o!!!>u"!!"{!>},<<!>,<!>},<o!!!>o}!>},<!{!!!!\'!>>}}}},{{{<},!>,<!!!!!><!!!!!><!!!>!!!>>},{{{<!>,<>}}}},{<e"!!!>>}}}},{{{{{<!>,<!>,<>},<!!!!!>e!>},<a!>},<u!>},<>}},{{},{<!},"!}!!{o{\'!!\'ie>}},{{<!>!o{e!>},<!!!!e!!}i!a{>},{<">}}},{{},{<!e"a!!!>{!!!!{a}\'!>,<!!!>{!>,<!!!>>,<o{a!!!"<!o<!>!!!!o!>}!>!!"o!!{"!o!!!>>},{{{<!!!>\'!>,<<!>!!!>e,<{!>!!,>}}}},{{{{<>},{<,!>},<!>\'"e>}},{}},{{{<>},<a{,i,!>,<!>,<!!!>,<!<!!!>!>},<!!!!!!!"!!!>},<>},{{<>},{<!!!>u!a"!>eae!!oi<!>i<o!,!!!!!>>}}},{{},{{<e<ua!!\'\'!>,<!>},<,u!!!!,ue>},<{!>,<>}}}},{{{}},{{},{{<}"}!!!!,!!!>!!!!!>!>i<>},{}},{<!>},<a!!\',{,oi!>},<",!!!>u!!!>!>>}},{{{<ou"!!!>e!!"!!!>\'>,{<!>!>,<!!{,!>},<!e>}},{{<!!i!!e!>!>},<!!!>!>uu",!!e!!!>a}i!!\'>},<!!e\'!>!>,e!!"i!!!>}i!ui"uo!!>},{<a!!!>}e>,{{},{{{<<i!>},<ea!!!>,<!!",i!!}!>,<\'}!>,<<!a!>},<!!!>!>>}}}}}},{{<!i\'!!!a!!!>!>!>e>},{<!>,<!>a\'<o,u!!!>!>},<o\'<!{o,i>}}},{{{}},{{}}}}},{{{<!>,<}"}a{!!!>!!!>!!!!a{!>eiu>},<,!!!>u>}},{},{{{}},{{},<!>},<\'i!u\'!!!>e!!oe!>},<!!!>}!ii!>!!e!>,<">},{{<!!!>!>,<!!!>!!!>!!!>!!oe!>},<!!>},<!}!!e>}}}},{{{{{{<i!>!>!!!>eai<!>},<!!{,!>,<!!"!!\'{!}!>i>}},{{{<!!!>!!!!!>,<"\'!!}!!!}!>eu!!!!!>},<!!i!>,<,>}}},{}},{<}a!>},<!!{!>,<eo!!{!!!>!!!!!<>,{<!>},<!u!!!>u{}io,{\'iu!>,<!!!>>}},{{}}},{{{{<!>!!\'!!!>},<"!!!!<}i{!>,<<!!\'"!!u>},{{},{{<u>}}},{}},{},{}},{{{{<o!>,<!>,<{!!,{i!>}}!"o!!>}},{}},{{{}},<"o>}},{{{{{{<">}}},{<!!!!!>,<"!e!<{{!>,<\'ou>,{<>}}},{{<i!!!!a!\'!>!!u!\'o"!!<!!<u!!!>},<!>},<}>},<!>},<{!>,<}!!!>!!\'!!!!{!>,<!>,<>}},{{{{{<!>,<<\'!>!!a>}},<!>},<"!!!!!>>},<ei,<<!>>},{{<"!>!>},<ee!>,<>},{<,!>},<!!!>!>i!!}a}{}!>",!}eu>,{<e}!>,<a!>},<eo>}}}},{{<}o!!!>!>,>},{}}},{{},{},{}}},{{{{<!!!>!!!!!>uo,!>},<<i!>"!!!>!o!>,<!!i!{>}},{{},<ae!!!>,<!>e,!!!>,<!>},<a>}},{{<<{"!>},<i}u<!>,<!!!><\'"!>},<">,{{<o!!!!!><}i!\',!>},<!>},<e"!!!>}>,<!{{o!!!!oe>}}},{{{{<!!!>"e!>},<oo!>,<!!}!!!><>},<>}},{<"<"u,!!!>e!!}!i<a}!!!>!>a>,<\'"\'a!{!>,<\'!>},<>},{{<}}ia!!!>!>},<,!>"!>a!>>},{<!!!!a!!"<!!!>},<>}}},{{<u!>!!!>!oo,!!!><!>,<eu>},{{},<}!>\'!},i\'>}}},{{{{<!>e!!<\'i!>,<"!!"e>,<<{!!!>!>!!!\'!!}!\'eai!uu!>>}},{{{},{<!!e<!>},<e<!!euo\'!>\'!o!><oe!!!>>,{<!ai!!ia!>}<!>,<}>}},{{<>,{}},{{{},{}},{{<{"<i"<!e\'!"!>},<!!a{!!\'>}}},{<!>,<!>,<!!!>!!!>e>,{{}}}}},{{<e<,"<}i!!!ii"!!!!>}},{{{{{{{{<!!!!!!i!!!!!>},<!,{!!>}},{<!!,!>},<<a!!!>i,o}a!>,<o>}},{}},{{}}}},{<{"!>,<!>},<>,<!>},<!!!>!>!!\'o!>i!iua""!!!>},<u,e>},{<i!!o!!!!!>!!"!>},<!!!>!!!>!>,>}},{}}},{<"\'{<,i<<\'"!>},<\'!>},<!!!>>,{<}!a!!{>}}},{{{<aa!!!>!>},<a!!!>o}!>},<e!>!>,<<iae!>},<>}},<,>},{{{<!>},<}}a",!eo!>},<e!>},<<uii>}}}},{{{{{{}},{{}},{{{{{<!!\'",o!!iia,ae!!i!!i>}},<!>,<u>}},{}}},{{<u<\'>,{<"!!"!>},<!!!>u!!!>!>!>!>},<ao"e\'>}},{{}}}},{{{<!!<!!!>!{!}!>e>},<!>>},{{{<!>,<!<!>},<a,u!!!>i<{>}},{<o\'a{i\'e<!!!>!!!><!!!!}"!!!>a<<!!!>!!!>>,{<>}},{<!>,<e!}!!!!<}ii}u>,{<>}}},{{{{{}},{<!>}!>,<u!>{!!o!>,<{oe"!>>}},<!!!!!>!!ue!>},<\'u!!!>a\'>},{<{!!<>,<}a!!!>!>ooa>}}},{{{{{{}},{}}}},{{{<<!>,<!>},<!>,<<e>},{<!!"!!!!a>,{<}!>,<!>},<!!>}}},<{!!!>},<!<!>!!u!>},<!!!!a!!!>!!!><>},{{<>},{{{<,,!!!>!{{>}}}}}},{{<!>!!!>uu{!!{>,<a!><!{<oaa!>},<ie!!!>!!{,!!!>,<">},{<u!!!>u!!!>}!>a!!!><!!,<!!!>!!!>u,>,{<a>}}}}},{{<"!!!>,<\'!!!>!ao>},{<!!{>,<"{!>},<<o,}oi!!a!!!>!!!>>},{{{}},{<a>,{}}}}},{{{<!>,<\'!>},<,!>,<ei!>!!!!!!!a!!!>>,{{},{<!!!>!!!>o>}}},{{},{}},{{{<ea{}ae!>!>ee<"!!!>,<>}},{<!!,u{u!!e\'i!!!>!>,<i!!i""u!>>}}},{{<,a!!!>!!}{e!>}o!>>,{<},"!a!>!>}}!!!>,!!!>"o!>},<\'i{>}},{{<o!u!!,!!!>!!\'<}!!,<!\'!>,<u"e!!!>},<>},{<>}}},{{{{{<!>,<!>,<\'!!!\'"!}<!!!>>},{<<,{ei>}}},{{{{<!>},<,<"i!!e!!\'i!>},<"!!!>!!!>!!!>,<>},<!!<>},{<u!>}!>,<,!>,<i!!!>!!i!!!>{!>,<>}},{{},{<!>,<u!!!><\'u!!\'!}!e!"!>{a!o!>},<,!>!>,<!>,<>,<o\'!!!>!i"!!<<!>},<a!!!>}>}}},{{<{!!!>>}}},{{<{!>},<!!!>\'!!!>,<!!i"o!>>}}},{{{<a!!aii!>,<uo!>,<,>},{<!>},<!>,<e<i>},{{{<!<ee!>!>!!!!!>},<>},<!>},<<"<!a>}}},{{{<\'!!!>!!!!!!<!}!>!>},<!>au!i!>u!!!>"<!!u>},{<!>,<a!>},<"!!!"}!!u,<{<\'au!!{!>,<>}},{{<{!>},<\'iioa!>o\'\'\'!!!>u!!!>},<>},{{<i!>},<!>,<u!>>},<!"!>,<<{!ue!!!>i!>!>},<!>>},{<ae!>,<">,{<oau>}}},{{<i!>},<!!>,{<i!!!!!><u!>!>},<o>,{<o{!>>}}},{{{}},<!,!e<"!!!!a!!\'!!!i!>,<!>},<oa!>,<!!,e!>i>},{{<e!!!>!>},<o!>,<<!>,<ua,e!!!!a{>},<>}}},{{{<{a!>,<!>,<!>},<"{{\'>},{<{>,{<!!!>o<"i!>},<!!o!!!!!>!!!>e!!!><!!o"!!i!>,<!!!>>}},{{<>}}},{{{<!!!!!>>}},<!>"iu\'!!a!>},<,!!i!>a<!>e!>},<!>>}},{{<{<!>">},{<!!<}!!!!<u}{>,{<!!<!!!>,!>},<!>!!!>!>},<!!!!<e!!<<!!!\'!!au>,{{{}},{<!!e{!>},<{!<i>}}}},{{<}u{}oo\'\'{\'<!>},<>,{{{<u\'!,!!e{!!!!<!!u>},{{<u!!}!!!!!>!}a!!!!!>>},<!\'!!,!>!!!!!>uo!o}!!!>,o>}}}},{{{<e\'e\'{!>},<!o!!<a<>},{<!>!!<aai!>,<!!!>{e!!>}},{<>,{}},{<i!>u{a\'!>,<!>!auu"!>,<o!a,>}},{<\'ae{!!!>!>{!>,<>}}}}}},{},{{{{<e!!i!!!a",!>,<<o,!>o!>},<!>},<>},{<!"a!>},<uae!!ei!>!>!!!>>}},{<{iu!>},<!>a">,<{\'"o!!!>},<!>},<!!!!!>!<!}!>},<{,"a!!!!"!>},<>},{{<ue!>,<"o!>!>,<!>},<>},{<"!!e"!!!>!>,<u>,{<\'!>,!!\'!!aia}!>},<!!!>},<<!!!!u!!!>!><e<>}}}},{{{<!>,<,>,{{<<u>}}}},{{{<{u<io!>,<\'<u!{"e<}{!>,<"!>>}},{{<!!!>>}}},{<,"{u\'!>!>,<!">,{{{<!>,<ea!!!>a!!!!!a!"!},!>o!>,<",!!!,u!!!>},<>}},{<!>,<!>},<}"!>,<!!\'\'<,{!!<ii!!i!>o>}}}},{{{{<ouoi<!>},<!ui!!e!>},<!!!!a>},<!>},<a!!e!>,<!!!>\'!>o!>!"{ae{a!!a<i!>>},<i{>},{<i,>,<a!<\'i<i\'!a"a!i{<!>!>},<!>,<"!>a>}},{{<,{}i!}\'!{!>>},{}}},{{{{<i>},{<!o!!!!!>,<a!!!>>,<!>,<e\'{o!!!>,<>}},{{<>},{<>,{<!!}<"!!!!!!"!!!>!!!>e!!!>!>a!o!,ue,{!ua>}}},{{{<>},{<!>,<,}"!!ao"!>,<<!!!!!!!!!>,<!>>}},{<}!!!>!!uo}!!!!!!!>,<!!!>!o,u!>,<!!!>a!!,!>>,{<e>}},{{<{!!!>,<!>},<","i!!>,{{<{i\'!!{""i!!!>,<!uau,!!!}"e!>>},{{<o>}}}},{},{<!>,<a!>,<{i!!!!!>}a,!!u!>},<!!!>"!>},<!{>,{}}}}}}}}'
def puzzle():
def track_garbage(idx):
i = 1
count = 0
while stream[idx + i] != '>':
if stream[idx + i] == '!':
i += 2
else:
i += 1
count += 1
return (i, count)
def track_group(idx, score):
level = score
count = 0
i = 1
while stream[idx + i] != '}':
if stream[idx + i] == '!':
i += 2
continue
elif stream[idx + i] == '<':
(dif, c) = track_garbage(idx + i)
i += dif
count += c
continue
elif stream[idx + i] == '{':
(s, dif, c) = track_group(idx + i, level + 1)
score += s
i += dif + 1
count += c
else:
i += 1
return (score, i, count)
(s, i, c) = track_group(0, 1)
return (s, c)
if __name__ == '__main__':
(p1, p2) = puzzle()
print('1: {}\n2: {}'.format(p1, p2)) |
class ViewHelpers:
def __init__(self, view):
self.view = view
def __iter__(self):
for sel in self.view.sel():
yield ViewHelper(self.view, sel)
class ViewHelper:
def __init__(self, view, sel):
self.view = view
self.sel = sel
def initial_xpos(self):
return self.view.text_to_layout(self.initial_cursor_position())[0]
def initial_cursor_position(self):
return self.initial_selection().b
def initial_selection(self):
return self.sel
def initial_column(self):
return self.view.rowcol(self.initial_cursor_position())[1]
def initial_row(self):
return self.view.rowcol(self.initial_cursor_position())[0]
def cursor_at_top_of_selection(self):
return self.initial_selection().a > self.initial_selection().b
def cursor_at_bottom_of_selection(self):
return self.initial_selection().b > self.initial_selection().a
def target_column(self, target, indent_offset):
tab_size = self.view.settings().get("tab_size")
offset_column = self.initial_column() + tab_size * indent_offset
end_of_line = self.view.rowcol(self.find_eol(target))[1]
if offset_column > end_of_line:
return end_of_line
else:
return offset_column
def find_eol(self, point):
return self.view.line(point).end()
def find_bol(self, point):
return self.view.line(point).begin()
| class Viewhelpers:
def __init__(self, view):
self.view = view
def __iter__(self):
for sel in self.view.sel():
yield view_helper(self.view, sel)
class Viewhelper:
def __init__(self, view, sel):
self.view = view
self.sel = sel
def initial_xpos(self):
return self.view.text_to_layout(self.initial_cursor_position())[0]
def initial_cursor_position(self):
return self.initial_selection().b
def initial_selection(self):
return self.sel
def initial_column(self):
return self.view.rowcol(self.initial_cursor_position())[1]
def initial_row(self):
return self.view.rowcol(self.initial_cursor_position())[0]
def cursor_at_top_of_selection(self):
return self.initial_selection().a > self.initial_selection().b
def cursor_at_bottom_of_selection(self):
return self.initial_selection().b > self.initial_selection().a
def target_column(self, target, indent_offset):
tab_size = self.view.settings().get('tab_size')
offset_column = self.initial_column() + tab_size * indent_offset
end_of_line = self.view.rowcol(self.find_eol(target))[1]
if offset_column > end_of_line:
return end_of_line
else:
return offset_column
def find_eol(self, point):
return self.view.line(point).end()
def find_bol(self, point):
return self.view.line(point).begin() |
class Document :
# Default constructor
def __init__ ( self , _id ):
# initialize
self.id = _id
self.title =""
self.text= ""
self.succ = dict()
self.pred = dict()
#Setters
def setText(self,Text):
self.text = Text
def setTitle(self,Title):
self.title = Title
def addSuccessor(self,idDoc):
if ( idDoc in self.succ ):
self.succ[idDoc] += 1
else :
self.succ[idDoc] = 1
def addPredecessor(self,idDoc):
if ( idDoc in self.pred ):
self.pred[idDoc] += 1
else :
self.pred[idDoc] = 1
#Getters
def getId (self):
return self.id
def getText (self):
return self.text
def getTitle (self):
return self.title
def getSucessors(self):
return self.succ
def getPredecessors(self):
return self.pred
def getJsonFormat (self):
return { "Title" : self.title , "Text" : self.text , "sucessors" : self.succ , "predecessors" : self.pred }
| class Document:
def __init__(self, _id):
self.id = _id
self.title = ''
self.text = ''
self.succ = dict()
self.pred = dict()
def set_text(self, Text):
self.text = Text
def set_title(self, Title):
self.title = Title
def add_successor(self, idDoc):
if idDoc in self.succ:
self.succ[idDoc] += 1
else:
self.succ[idDoc] = 1
def add_predecessor(self, idDoc):
if idDoc in self.pred:
self.pred[idDoc] += 1
else:
self.pred[idDoc] = 1
def get_id(self):
return self.id
def get_text(self):
return self.text
def get_title(self):
return self.title
def get_sucessors(self):
return self.succ
def get_predecessors(self):
return self.pred
def get_json_format(self):
return {'Title': self.title, 'Text': self.text, 'sucessors': self.succ, 'predecessors': self.pred} |
class Calculator():
def __init__(self):
pass
def add(self, val1, val2):
try:
return val1 + val2
except:
raise ValueError("Not int")
def subtract(self, val1, val2):
val1 = self._checker(val1)
val2 = self._checker(val2)
if val1 and val2:
return val1 - val2
def multiply(self, val1, val2):
val1 = self._checker(val1)
val2 = self._checker(val2)
if val1 and val2:
return val1 * val2
def divide(self, val1, val2):
if val2 == 0:
raise ValueError("0 division error.")
val1 = self._checker(val1)
val2 = self._checker(val2)
if val1 and val2:
return val1 / val2
def _checker(self, val):
if type(val) is int:
return val
elif type(val) is float:
return val
# convert string representation of number to float
try:
return float(val)
except ValueError:
return False
# # convert string number to float
# try:
# return int(val)
# except ValueError:
# return False
obj = Calculator()
result = obj._checker("2.0")
print(result)
| class Calculator:
def __init__(self):
pass
def add(self, val1, val2):
try:
return val1 + val2
except:
raise value_error('Not int')
def subtract(self, val1, val2):
val1 = self._checker(val1)
val2 = self._checker(val2)
if val1 and val2:
return val1 - val2
def multiply(self, val1, val2):
val1 = self._checker(val1)
val2 = self._checker(val2)
if val1 and val2:
return val1 * val2
def divide(self, val1, val2):
if val2 == 0:
raise value_error('0 division error.')
val1 = self._checker(val1)
val2 = self._checker(val2)
if val1 and val2:
return val1 / val2
def _checker(self, val):
if type(val) is int:
return val
elif type(val) is float:
return val
try:
return float(val)
except ValueError:
return False
obj = calculator()
result = obj._checker('2.0')
print(result) |
class Torre:
def __init__(self):
self.id = int()
self.nome = str()
self.endereco = str()
def cadastrar(self, id, nome, endereco):
self.id = id
self.nome = nome
self.endereco = endereco
def imprimir(self):
print("ID TORRE:", self.id, " - TORRE", self.nome, " -", self.endereco)
| class Torre:
def __init__(self):
self.id = int()
self.nome = str()
self.endereco = str()
def cadastrar(self, id, nome, endereco):
self.id = id
self.nome = nome
self.endereco = endereco
def imprimir(self):
print('ID TORRE:', self.id, ' - TORRE', self.nome, ' -', self.endereco) |
#!/usr/bin/env python3
# pylint: disable=C0111
def all_steps(state):
result = list()
for action in range(len(state[0])):
if state[0][action] != 0:
next_state = jump(state, action, 1) or jump(state, action, 2)
if next_state:
result = result + all_steps(next_state)
else:
result = result + [state]
return result
def jump(state, action, distance):
destination = distance * state[0][action] + action
if destination < 0 or destination >= len(state[0]):
return None
if state[0][destination] != 0:
return None
result = list(state[0])
result[destination] = result[action]
result[action] = 0
return result, [action] + state[1]
print("\n".join(["%s : %s" % (x[0], [i for i in reversed(x[1])])
for x in all_steps([[1, 1, 1, 0, -1, -1, -1], []])
if x[0] == [-1, -1, -1, 0, 1, 1, 1]]))
| def all_steps(state):
result = list()
for action in range(len(state[0])):
if state[0][action] != 0:
next_state = jump(state, action, 1) or jump(state, action, 2)
if next_state:
result = result + all_steps(next_state)
else:
result = result + [state]
return result
def jump(state, action, distance):
destination = distance * state[0][action] + action
if destination < 0 or destination >= len(state[0]):
return None
if state[0][destination] != 0:
return None
result = list(state[0])
result[destination] = result[action]
result[action] = 0
return (result, [action] + state[1])
print('\n'.join(['%s : %s' % (x[0], [i for i in reversed(x[1])]) for x in all_steps([[1, 1, 1, 0, -1, -1, -1], []]) if x[0] == [-1, -1, -1, 0, 1, 1, 1]])) |
'''
codegen: this is the code generator for our Cuppa3 compiler
NOTE: this code generator does not need access to the symbol table,
the abstraction level of the AST has been lowered already to the level
of the abstract machine code
'''
#########################################################################
# curr_frame_size: we use this global variable to broadcast the frame
# size of the current function definition to all the statements within
# the function body -- the return statement needs this information in order
# to generate the proper pop frame instruction. Outside of a
# function definition this value is set to None
curr_frame_size = None
#########################################################################
def push_args(args):
if args[0] != 'LIST':
raise ValueError("expected an argument list")
# reversing the arg list because we need to push
# args in reverse order
# NOTE: reverse is an in-place op in Python
ll = args[1].copy()
ll.reverse()
code = list()
for e in ll:
(ecode, eloc) = walk(e)
code += ecode
code += [('pushv', eloc)]
return code
#########################################################################
def pop_args(args):
if args[0] != 'LIST':
raise ValueError("expected an argument list")
ll = args[1]
code = list()
for e in ll:
code += [('popv',)]
return code
#########################################################################
def init_formal_args(formal_args, frame_size):
'''
in order to understand this function recall that the stack
in the called function after the frame has been pushed
looks like this
...
actual arg n
actual arg n-1
...
actual arg 1
return address
local var m
local var m-1
local var 1 <- tsx
The local vars include the formal parameters. Here the frame size is m.
In order to find the location of the first actual argument we have to s
kip over the frame and the return address:
first actual arg: %tsx[0-m-1]
second actual arg: %tsx[-1-m-1]
...
nth actual arg: %tsx[-(n-1)-m-1]
'''
if formal_args[0] != 'LIST':
raise ValueError("expected an argument list")
ll = formal_args[1]
code = list()
arg_ix = 0
for id in ll:
(ADDR, sym) = id
if ADDR != 'ADDR':
raise ValueError("Expected and address.")
offset = str(arg_ix - frame_size - 1)
code += [('store', sym, '%tsx['+offset+']')]
arg_ix -= 1
return code
#########################################################################
# node functions
#########################################################################
# Statements
#########################################################################
def stmtlist(node):
(STMTLIST, lst) = node
code = list()
for stmt in lst:
code += walk(stmt)
return code
#########################################################################
def fundef_stmt(node):
global curr_frame_size
# unpack node
(FUNDEF,
(ADDR, name),
formal_arglist,
body,
(FRAMESIZE, curr_frame_size)) = node
ignore_label = label()
code = list()
code += [('jump', ignore_label)]
code += [('#','####################################')]
code += [('#','Start Function ' + name)]
code += [('#','####################################')]
code += [(name + ':',)]
code += [('pushf', str(curr_frame_size))]
code += init_formal_args(formal_arglist, curr_frame_size)
code += walk(body)
code += [('popf', str(curr_frame_size))]
code += [('return',)]
code += [('#','####################################')]
code += [('#','End Function ' + name)]
code += [('#','####################################')]
code += [(ignore_label + ':',)]
code += [('noop',)]
curr_frame_size = None
return code
#########################################################################
def call_stmt(node):
(CALLSTMT, (ADDR, name), actual_args) = node
code = list()
code += push_args(actual_args)
code += [('call', name)]
code += pop_args(actual_args)
return code
#########################################################################
def return_stmt(node):
global curr_frame_size
(RETURN, exp) = node
code = list()
# if return has a return value
if exp[0] != 'NIL':
(ecode, eloc) = walk(exp)
code += ecode
code += [('store', '%rvx', eloc)]
code += [('popf', str(curr_frame_size))]
code += [('return',)]
return code
#########################################################################
def assign_stmt(node):
(ASSIGN, (ADDR, target), exp) = node
(ecode, eloc) = walk(exp)
code = list()
code += ecode
code += [('store', target, eloc)]
return code
#########################################################################
def get_stmt(node):
(GET, (ADDR, target)) = node
code = [('input', target)]
return code
#########################################################################
def put_stmt(node):
(PUT, exp) = node
(ecode, eloc) = walk(exp)
code = list()
code += ecode
code += [('print', eloc)]
return code
#########################################################################
def while_stmt(node):
(WHILE, cond, body) = node
top_label = label()
bottom_label = label()
(cond_code, cond_loc) = walk(cond)
body_code = walk(body)
code = list()
code += [(top_label + ':',)]
code += cond_code
code += [('jumpf', cond_loc, bottom_label)]
code += body_code
code += [('jump', top_label)]
code += [(bottom_label + ':',)]
code += [('noop',)]
return code
#########################################################################
def if_stmt(node):
(IF, cond, s1, s2) = node
if s2[0] == 'NIL':
end_label = label();
(cond_code, cond_loc) = walk(cond)
s1_code = walk(s1)
code = list()
code += cond_code
code += [('jumpf', cond_loc, end_label)]
code += s1_code
code += [(end_label + ':',)]
code += [('noop',)]
return code
else:
else_label = label()
end_label = label()
(cond_code, cond_loc) = walk(cond)
s1_code = walk(s1)
s2_code = walk(s2)
code = list()
code += cond_code
code += [('jumpf', cond_loc, else_label)]
code += s1_code
code += [('jump', end_label)]
code += [(else_label + ':',)]
code += s2_code
code += [(end_label + ':',)]
code += [('noop',)]
return code
#########################################################################
def block_stmt(node):
(BLOCK, s) = node
code = walk(s)
return code
#########################################################################
# Expressions
#########################################################################
def binop_exp(node):
(OP, (ADDR, target), c1, c2) = node
if OP == 'PLUS':
OPSYM = '+'
elif OP == 'MINUS':
OPSYM = '-'
elif OP == 'MUL':
OPSYM = '*'
elif OP == 'DIV':
OPSYM = '/'
elif OP == 'EQ':
OPSYM = '=='
elif OP == 'LE':
OPSYM = '=<'
else:
raise ValueError('unknown operation: ' + OP)
(lcode, lloc) = walk(c1)
(rcode, rloc) = walk(c2)
code = list()
code += lcode
code += rcode
code += [('store', target, '(' + OPSYM + ' ' + lloc + ' ' + rloc + ')')]
return (code, target)
#########################################################################
def call_exp(node):
(CALLEXP, (ADDR, target), (ADDR, name), actual_args) = node
code = list()
code += push_args(actual_args)
code += [('call', name)]
code += pop_args(actual_args)
code += [('store', target, '%rvx')]
return (code, target)
#########################################################################
def integer_exp(node):
(INTEGER, value) = node
code = list()
loc = str(value)
return (code, loc)
#########################################################################
def addr_exp(node):
(ADDR, loc) = node
code = list()
return (code, loc)
#########################################################################
def uminus_exp(node):
(UMINUS, (ADDR, target), e) = node
(ecode, eloc) = walk(e)
code = list()
code += ecode
code += [('store', target, '-' + eloc)]
loc = target
return (code, loc)
#########################################################################
def not_exp(node):
(NOT, (ADDR, target), e) = node
(ecode, eloc) = walk(e)
code = list()
code += ecode
code += [('store', target, '!' + eloc)]
loc = target
return (code, loc)
#########################################################################
# walk
#########################################################################
def walk(node):
node_type = node[0]
if node_type in dispatch_dict:
node_function = dispatch_dict[node_type]
return node_function(node)
else:
raise ValueError("walk: unknown tree node type: " + node_type)
# a dictionary to associate tree nodes with node functions
dispatch_dict = {
'STMTLIST' : stmtlist,
'FUNDEF' : fundef_stmt,
'CALLSTMT' : call_stmt,
'RETURN' : return_stmt,
'ASSIGN' : assign_stmt,
'GET' : get_stmt,
'PUT' : put_stmt,
'WHILE' : while_stmt,
'IF' : if_stmt,
'BLOCK' : block_stmt,
'CALLEXP' : call_exp,
'INTEGER' : integer_exp,
'ADDR' : addr_exp,
'UMINUS' : uminus_exp,
'NOT' : not_exp,
'PLUS' : binop_exp,
'MINUS' : binop_exp,
'MUL' : binop_exp,
'DIV' : binop_exp,
'EQ' : binop_exp,
'LE' : binop_exp,
}
#########################################################################
label_id = 0
def label():
global label_id
s = 'L' + str(label_id)
label_id += 1
return s
#########################################################################
| """
codegen: this is the code generator for our Cuppa3 compiler
NOTE: this code generator does not need access to the symbol table,
the abstraction level of the AST has been lowered already to the level
of the abstract machine code
"""
curr_frame_size = None
def push_args(args):
if args[0] != 'LIST':
raise value_error('expected an argument list')
ll = args[1].copy()
ll.reverse()
code = list()
for e in ll:
(ecode, eloc) = walk(e)
code += ecode
code += [('pushv', eloc)]
return code
def pop_args(args):
if args[0] != 'LIST':
raise value_error('expected an argument list')
ll = args[1]
code = list()
for e in ll:
code += [('popv',)]
return code
def init_formal_args(formal_args, frame_size):
"""
in order to understand this function recall that the stack
in the called function after the frame has been pushed
looks like this
...
actual arg n
actual arg n-1
...
actual arg 1
return address
local var m
local var m-1
local var 1 <- tsx
The local vars include the formal parameters. Here the frame size is m.
In order to find the location of the first actual argument we have to s
kip over the frame and the return address:
first actual arg: %tsx[0-m-1]
second actual arg: %tsx[-1-m-1]
...
nth actual arg: %tsx[-(n-1)-m-1]
"""
if formal_args[0] != 'LIST':
raise value_error('expected an argument list')
ll = formal_args[1]
code = list()
arg_ix = 0
for id in ll:
(addr, sym) = id
if ADDR != 'ADDR':
raise value_error('Expected and address.')
offset = str(arg_ix - frame_size - 1)
code += [('store', sym, '%tsx[' + offset + ']')]
arg_ix -= 1
return code
def stmtlist(node):
(stmtlist, lst) = node
code = list()
for stmt in lst:
code += walk(stmt)
return code
def fundef_stmt(node):
global curr_frame_size
(fundef, (addr, name), formal_arglist, body, (framesize, curr_frame_size)) = node
ignore_label = label()
code = list()
code += [('jump', ignore_label)]
code += [('#', '####################################')]
code += [('#', 'Start Function ' + name)]
code += [('#', '####################################')]
code += [(name + ':',)]
code += [('pushf', str(curr_frame_size))]
code += init_formal_args(formal_arglist, curr_frame_size)
code += walk(body)
code += [('popf', str(curr_frame_size))]
code += [('return',)]
code += [('#', '####################################')]
code += [('#', 'End Function ' + name)]
code += [('#', '####################################')]
code += [(ignore_label + ':',)]
code += [('noop',)]
curr_frame_size = None
return code
def call_stmt(node):
(callstmt, (addr, name), actual_args) = node
code = list()
code += push_args(actual_args)
code += [('call', name)]
code += pop_args(actual_args)
return code
def return_stmt(node):
global curr_frame_size
(return, exp) = node
code = list()
if exp[0] != 'NIL':
(ecode, eloc) = walk(exp)
code += ecode
code += [('store', '%rvx', eloc)]
code += [('popf', str(curr_frame_size))]
code += [('return',)]
return code
def assign_stmt(node):
(assign, (addr, target), exp) = node
(ecode, eloc) = walk(exp)
code = list()
code += ecode
code += [('store', target, eloc)]
return code
def get_stmt(node):
(get, (addr, target)) = node
code = [('input', target)]
return code
def put_stmt(node):
(put, exp) = node
(ecode, eloc) = walk(exp)
code = list()
code += ecode
code += [('print', eloc)]
return code
def while_stmt(node):
(while, cond, body) = node
top_label = label()
bottom_label = label()
(cond_code, cond_loc) = walk(cond)
body_code = walk(body)
code = list()
code += [(top_label + ':',)]
code += cond_code
code += [('jumpf', cond_loc, bottom_label)]
code += body_code
code += [('jump', top_label)]
code += [(bottom_label + ':',)]
code += [('noop',)]
return code
def if_stmt(node):
(if, cond, s1, s2) = node
if s2[0] == 'NIL':
end_label = label()
(cond_code, cond_loc) = walk(cond)
s1_code = walk(s1)
code = list()
code += cond_code
code += [('jumpf', cond_loc, end_label)]
code += s1_code
code += [(end_label + ':',)]
code += [('noop',)]
return code
else:
else_label = label()
end_label = label()
(cond_code, cond_loc) = walk(cond)
s1_code = walk(s1)
s2_code = walk(s2)
code = list()
code += cond_code
code += [('jumpf', cond_loc, else_label)]
code += s1_code
code += [('jump', end_label)]
code += [(else_label + ':',)]
code += s2_code
code += [(end_label + ':',)]
code += [('noop',)]
return code
def block_stmt(node):
(block, s) = node
code = walk(s)
return code
def binop_exp(node):
(op, (addr, target), c1, c2) = node
if OP == 'PLUS':
opsym = '+'
elif OP == 'MINUS':
opsym = '-'
elif OP == 'MUL':
opsym = '*'
elif OP == 'DIV':
opsym = '/'
elif OP == 'EQ':
opsym = '=='
elif OP == 'LE':
opsym = '=<'
else:
raise value_error('unknown operation: ' + OP)
(lcode, lloc) = walk(c1)
(rcode, rloc) = walk(c2)
code = list()
code += lcode
code += rcode
code += [('store', target, '(' + OPSYM + ' ' + lloc + ' ' + rloc + ')')]
return (code, target)
def call_exp(node):
(callexp, (addr, target), (addr, name), actual_args) = node
code = list()
code += push_args(actual_args)
code += [('call', name)]
code += pop_args(actual_args)
code += [('store', target, '%rvx')]
return (code, target)
def integer_exp(node):
(integer, value) = node
code = list()
loc = str(value)
return (code, loc)
def addr_exp(node):
(addr, loc) = node
code = list()
return (code, loc)
def uminus_exp(node):
(uminus, (addr, target), e) = node
(ecode, eloc) = walk(e)
code = list()
code += ecode
code += [('store', target, '-' + eloc)]
loc = target
return (code, loc)
def not_exp(node):
(not, (addr, target), e) = node
(ecode, eloc) = walk(e)
code = list()
code += ecode
code += [('store', target, '!' + eloc)]
loc = target
return (code, loc)
def walk(node):
node_type = node[0]
if node_type in dispatch_dict:
node_function = dispatch_dict[node_type]
return node_function(node)
else:
raise value_error('walk: unknown tree node type: ' + node_type)
dispatch_dict = {'STMTLIST': stmtlist, 'FUNDEF': fundef_stmt, 'CALLSTMT': call_stmt, 'RETURN': return_stmt, 'ASSIGN': assign_stmt, 'GET': get_stmt, 'PUT': put_stmt, 'WHILE': while_stmt, 'IF': if_stmt, 'BLOCK': block_stmt, 'CALLEXP': call_exp, 'INTEGER': integer_exp, 'ADDR': addr_exp, 'UMINUS': uminus_exp, 'NOT': not_exp, 'PLUS': binop_exp, 'MINUS': binop_exp, 'MUL': binop_exp, 'DIV': binop_exp, 'EQ': binop_exp, 'LE': binop_exp}
label_id = 0
def label():
global label_id
s = 'L' + str(label_id)
label_id += 1
return s |
def double(oldimage):
oldw = oldimage.getWidth()
oldh = oldimage.getHeight()
newim = EmptyImage(oldw*2,oldh*2)
for row in range(newim.getWidth()): #// \label{lst:dib1}
for col in range(newim.getHeight()): #// \label{lst:dib2}
originalCol = col//2 #// \label{lst:dib3}
originalRow = row//2 #// \label{lst:dib4}
oldpixel = oldimage.getPixel(originalCol,originalRow)
newim.setPixel(col,row,oldpixel)
return newim
| def double(oldimage):
oldw = oldimage.getWidth()
oldh = oldimage.getHeight()
newim = empty_image(oldw * 2, oldh * 2)
for row in range(newim.getWidth()):
for col in range(newim.getHeight()):
original_col = col // 2
original_row = row // 2
oldpixel = oldimage.getPixel(originalCol, originalRow)
newim.setPixel(col, row, oldpixel)
return newim |
# 1
stringHamlet_1 = 'To be or not to be.'
# 2
print(len(stringHamlet_1))
# 3
stringHamlet_2 = 'That is the question.'
# 4
stringHamlet = stringHamlet_1 + stringHamlet_2
# 5
stringHamletTrinity = stringHamlet * 3 | string_hamlet_1 = 'To be or not to be.'
print(len(stringHamlet_1))
string_hamlet_2 = 'That is the question.'
string_hamlet = stringHamlet_1 + stringHamlet_2
string_hamlet_trinity = stringHamlet * 3 |
# For defining [Topic]hint_type, [Question]hint_type, [NLP_hints]hint_type
HINT_TYPE_CHOICES = (
('NONE', 'No hint'),
('WHERE', 'Where'),
('WHO', 'Who'),
('HOW MANY', 'How many'),
('WHEN', 'When'),
)
# nlp_exporter uses for requesting all available hints from NLP-Hints service
QUESTION_TYPES = (
{ 'ID': 1, 'Question': 'Where did it happen?' },
{ 'ID': 2, 'Question': 'Who was there?' },
{ 'ID': 3, 'Question': 'How many were there?' },
{ 'ID': 4, 'Question': 'When did it happen?' }
)
# nlp_importer uses for mapping question_id back to hint_type
QUESTION_TO_HINT_TYPE = {
1: 'WHERE',
2: 'WHO',
3: 'HOW MANY',
4: 'WHEN'
}
| hint_type_choices = (('NONE', 'No hint'), ('WHERE', 'Where'), ('WHO', 'Who'), ('HOW MANY', 'How many'), ('WHEN', 'When'))
question_types = ({'ID': 1, 'Question': 'Where did it happen?'}, {'ID': 2, 'Question': 'Who was there?'}, {'ID': 3, 'Question': 'How many were there?'}, {'ID': 4, 'Question': 'When did it happen?'})
question_to_hint_type = {1: 'WHERE', 2: 'WHO', 3: 'HOW MANY', 4: 'WHEN'} |
## TuplesAndLists
#
# Demonstration of techniques with tuples and lists
# Tuples cannot be changed, values enclosed with parenthesis.
# Tuples can be used as replacement for constant arrays
# available in other languages.
# Lists can be modified.
list1 = [ 10, 20, 30, 40, 50, 5, 2 ]
tuple1 = ( 10, 20, 30, 40, 50, 5, 2 )
list2 = [ 'apple', 'orange', 'banana' ]
tuple2 = ( 'apple', 'orange', 'banana' )
list3 = [ 10, 'apple', 30 ]
tuple3 = ( 10, 'apple', 30 )
list4 = [ 'aba', 'a1a', 'b5c', 'eaa' ]
# Two dimension list
list6 = [ [ 81, 82, 83 ], # Row 0
[ 84, 85, 86 ], # Row 1
[ 87, 88, 89 ] ] # Row 2
# Tuple using key-pair as dictionary lookup
Countries = { 'United Kingdom': 'London',
'France' : 'Paris',
'Spain' : 'Madrid' }
## Tuple returning values ######################################################
# Show capital
print( Countries[ 'France' ] )
# Country not found - gives runtime error
print( Countries[ 'USA'] )
## List adding elements ########################################################
# Appending to single dimension list
print( list1 )
list1.append( 80 )
print( list1 )
# Appending to two dimension list - list will have 4 columns instead of 3
print( list6 )
list6[ 0 ].append( 10 )
list6[ 1 ].append( 11 )
list6[ 2 ].append( 12 )
print( list6 )
## List iteration ##############################################################
# Print full list
print( list1 )
print( tuple1 )
# Can iterate manually - for integer list convert to str for printing
for listIndex, listItem in enumerate( list1 ):
print( 'Index: ' + str( listIndex ) + ' ListItem: ' + str( listItem ) )
# Iterating a string list
for listIndex, listItem in enumerate( list2 ):
print( 'Index: ' + str( listIndex ) + ' ListItem: ' + listItem )
# Iterate two dimension list
for rowIndex, rowItem in enumerate( list6 ):
print( '---' )
for colIndex, colItem in enumerate( rowItem ):
print( 'Row:' + str( rowIndex ) + ' Col: ' + str( colIndex ) + ' Value: ' + str( colItem ) )
## List Min/Max/Sum ############################################################
# Get maximum element
print( 'Max list ' + str( max( list1 ) ) )
print( 'Max tuple ' + str( max( tuple1 ) ) )
# Get minimum element
print( 'Min list ' + str( min( list1 ) ) )
print( 'Min tuple ' + str( min( tuple1 ) ) )
# For string elements shows highest value alphabetically
print( 'Max string list ' + str( max( list2 ) ) )
print( 'Max string tuple ' + str( max( tuple2 ) ) )
## List element conversion #####################################################
# Convert elements from integer to string
print( list3 )
liststr1 = []
for listItem in list3:
liststr1.append( str( listItem ) )
print( liststr1 )
# We can assign new list to old list
list3 = liststr1
# Now we can get max, was failling because elements were of different data types
print( 'Max list ' + str( max( list3 ) ) )
## List sorting ################################################################
# Sort list using sort
list1.sort()
print( list1 )
# Sort list using sort, reverse
list1.sort( reverse = True )
print( list1 )
# Sort list using sorted
list1a = sorted( list1 )
print( list1a )
# Custom sort function - strings are 0 offset based
def sortOnSecondElement( AElement ):
return AElement[ 1 ]
# Custom sort by calling a function for element comparison - sorting on second element
list4.sort( key = sortOnSecondElement )
print( list4 )
| list1 = [10, 20, 30, 40, 50, 5, 2]
tuple1 = (10, 20, 30, 40, 50, 5, 2)
list2 = ['apple', 'orange', 'banana']
tuple2 = ('apple', 'orange', 'banana')
list3 = [10, 'apple', 30]
tuple3 = (10, 'apple', 30)
list4 = ['aba', 'a1a', 'b5c', 'eaa']
list6 = [[81, 82, 83], [84, 85, 86], [87, 88, 89]]
countries = {'United Kingdom': 'London', 'France': 'Paris', 'Spain': 'Madrid'}
print(Countries['France'])
print(Countries['USA'])
print(list1)
list1.append(80)
print(list1)
print(list6)
list6[0].append(10)
list6[1].append(11)
list6[2].append(12)
print(list6)
print(list1)
print(tuple1)
for (list_index, list_item) in enumerate(list1):
print('Index: ' + str(listIndex) + ' ListItem: ' + str(listItem))
for (list_index, list_item) in enumerate(list2):
print('Index: ' + str(listIndex) + ' ListItem: ' + listItem)
for (row_index, row_item) in enumerate(list6):
print('---')
for (col_index, col_item) in enumerate(rowItem):
print('Row:' + str(rowIndex) + ' Col: ' + str(colIndex) + ' Value: ' + str(colItem))
print('Max list ' + str(max(list1)))
print('Max tuple ' + str(max(tuple1)))
print('Min list ' + str(min(list1)))
print('Min tuple ' + str(min(tuple1)))
print('Max string list ' + str(max(list2)))
print('Max string tuple ' + str(max(tuple2)))
print(list3)
liststr1 = []
for list_item in list3:
liststr1.append(str(listItem))
print(liststr1)
list3 = liststr1
print('Max list ' + str(max(list3)))
list1.sort()
print(list1)
list1.sort(reverse=True)
print(list1)
list1a = sorted(list1)
print(list1a)
def sort_on_second_element(AElement):
return AElement[1]
list4.sort(key=sortOnSecondElement)
print(list4) |
DEFAULT = False
called = DEFAULT
def reset_app():
global called
called = DEFAULT
def generate_sampledata(options):
global called
assert called == DEFAULT
called = True
| default = False
called = DEFAULT
def reset_app():
global called
called = DEFAULT
def generate_sampledata(options):
global called
assert called == DEFAULT
called = True |
# Use the file name mbox-short.txt as the file name
fname = input("Enter file name: ")
fh = open(fname)
x=0
tot=0
for line in fh:
if not line.startswith("X-DSPAM-Confidence:") : continue
pos=line.find(":")
l=line[pos+1:]
l=l.strip()
tot+=float(l)
x+=1
print("Average spam confidence: "+str(tot/x))
| fname = input('Enter file name: ')
fh = open(fname)
x = 0
tot = 0
for line in fh:
if not line.startswith('X-DSPAM-Confidence:'):
continue
pos = line.find(':')
l = line[pos + 1:]
l = l.strip()
tot += float(l)
x += 1
print('Average spam confidence: ' + str(tot / x)) |
# Definition for singly-linked list.
class ListNode:
def __init__(self, val=0, next=None):
self.val = val
self.next = next
class Solution:
def reverseList(self, head: ListNode) -> ListNode:
if not head or not head.next:
return head
p = self.reverseList(head.next)
head.next.next = head # main part - refer to notes
head.next = None
return p
if __name__ == "__main__":
a = ListNode(1)
b = ListNode(2)
c = ListNode(3)
d = ListNode(4)
e = ListNode(5)
a.next = b
b.next = c
c.next = d
d.next = e
head = Solution().reverseList(a)
while head:
print(head.val)
head = head.next
| class Listnode:
def __init__(self, val=0, next=None):
self.val = val
self.next = next
class Solution:
def reverse_list(self, head: ListNode) -> ListNode:
if not head or not head.next:
return head
p = self.reverseList(head.next)
head.next.next = head
head.next = None
return p
if __name__ == '__main__':
a = list_node(1)
b = list_node(2)
c = list_node(3)
d = list_node(4)
e = list_node(5)
a.next = b
b.next = c
c.next = d
d.next = e
head = solution().reverseList(a)
while head:
print(head.val)
head = head.next |
# https://leetcode.com/problems/3sum/
#%%
nums = [-1,0,1,2,-1,-4]
target = 0
#%%
def threeSum(nums: list):
nums.sort()
indeces = []
values = []
uniqueIndeces = {}
#need to stop when I reach len(nums) - 2 because that I am going to deal with 2 pointers
for ind in range(0, len(nums) - 2):
lowInd = ind + 1
highInd = len(nums) - 1
while(lowInd < highInd):
sum_value = nums[ind] + nums[lowInd] + nums[highInd]
#print(sum_value)
if sum_value == 0:
if str(nums[ind]) + ' ' + str(nums[lowInd]) + ' ' + str(nums[lowInd]) not in uniqueIndeces:
uniqueIndeces[str(nums[ind]) + ' ' + str(nums[lowInd]) + ' ' + str(nums[lowInd])] = [ind, lowInd, highInd]
indeces.append([ind, lowInd, highInd])
values.append([nums[ind], nums[lowInd], nums[highInd]])
if sum_value > 0:
highInd -= 1
else:
lowInd += 1
return values
threeSum(nums)
# %%
| nums = [-1, 0, 1, 2, -1, -4]
target = 0
def three_sum(nums: list):
nums.sort()
indeces = []
values = []
unique_indeces = {}
for ind in range(0, len(nums) - 2):
low_ind = ind + 1
high_ind = len(nums) - 1
while lowInd < highInd:
sum_value = nums[ind] + nums[lowInd] + nums[highInd]
if sum_value == 0:
if str(nums[ind]) + ' ' + str(nums[lowInd]) + ' ' + str(nums[lowInd]) not in uniqueIndeces:
uniqueIndeces[str(nums[ind]) + ' ' + str(nums[lowInd]) + ' ' + str(nums[lowInd])] = [ind, lowInd, highInd]
indeces.append([ind, lowInd, highInd])
values.append([nums[ind], nums[lowInd], nums[highInd]])
if sum_value > 0:
high_ind -= 1
else:
low_ind += 1
return values
three_sum(nums) |
#Leia uma distancia em milhas e apresente-a convertida em quilometros.
#A formula de conversao eh K =M*1.61 ,
# sendo K a distancia em quilometros e M em milhas.
m=float(input("Informe a distancia em milhas: "))
K=m*1.61
print(f"A distancia convertida em km eh {K}km/h") | m = float(input('Informe a distancia em milhas: '))
k = m * 1.61
print(f'A distancia convertida em km eh {K}km/h') |
class TaskType:
JOINT = 'joint'
MENTION_LOCALIZATION = 'mention_localization'
COREFERENCE_RESOLUTION = 'coreference_resolution'
ENTITY_CLASSIFICATION = 'entity_classification'
RELATION_CLASSIFICATION = 'rel_classification'
| class Tasktype:
joint = 'joint'
mention_localization = 'mention_localization'
coreference_resolution = 'coreference_resolution'
entity_classification = 'entity_classification'
relation_classification = 'rel_classification' |
def multiuply(multiplyer,multiplycant):
result = multiplyer * multiplycant
return result
answer = multiuply(10.5,4)
print(answer)
print (multiuply(8,10))
def __init__(self):
return(__init__+3) | def multiuply(multiplyer, multiplycant):
result = multiplyer * multiplycant
return result
answer = multiuply(10.5, 4)
print(answer)
print(multiuply(8, 10))
def __init__(self):
return __init__ + 3 |
RECURSE_INTO = {
"p",
"blockquote",
"div",
"em",
"i",
"b",
"u",
"strong",
"h2",
"figure",
}
INCLUDE_TAGNAME = {
"blockquote",
"em",
"i",
"b",
"u",
"strong",
"h2",
}
INCLUDE_VERBATIM = {"li", "ul", "ol"}
NEWLINE_AFTER = {
"blockquote",
"h2",
}
DOUBLE_NEWLINE_AFTER = {"p", "br", "img"}
AVOID = {
"header",
}
USE_IMAGE_ANALYSIS = {"img"}
| recurse_into = {'p', 'blockquote', 'div', 'em', 'i', 'b', 'u', 'strong', 'h2', 'figure'}
include_tagname = {'blockquote', 'em', 'i', 'b', 'u', 'strong', 'h2'}
include_verbatim = {'li', 'ul', 'ol'}
newline_after = {'blockquote', 'h2'}
double_newline_after = {'p', 'br', 'img'}
avoid = {'header'}
use_image_analysis = {'img'} |
def first_check():
pass
def second_check():
pass
def main():
print('badge checks TODO')
first_check()
second_check()
if __name__ == "__main__":
main()
| def first_check():
pass
def second_check():
pass
def main():
print('badge checks TODO')
first_check()
second_check()
if __name__ == '__main__':
main() |
''' Print Asterisks
Write a program that can print the line of asterisks. I have to define a founction called printAsterisks(). This finction should take single argument/parameter. This argument will take an interger value that represents the number of asterisks. My program should print the number of asterisks on a single line based on supplied integer value.
'''
def printAsterisks(N):
print("*" * N) # **********
# main program starts here
printAsterisks(10) # When the app is run [printAsterisks(10)] replaces the N on line 5 with [10], then the print statement replaces it,s N with 10, and then prints out 10 asterisks as shown.
| """ Print Asterisks
Write a program that can print the line of asterisks. I have to define a founction called printAsterisks(). This finction should take single argument/parameter. This argument will take an interger value that represents the number of asterisks. My program should print the number of asterisks on a single line based on supplied integer value.
"""
def print_asterisks(N):
print('*' * N)
print_asterisks(10) |
N = int(input())
L = len(str(N))
ans = 0
for i in range(2, L+1, 2):
if i == L:
head = int(str(N)[:i//2])
tail = int(str(N)[i//2:])
if head <= 9:
if head > tail:
head -= 1
ans += head
else:
if head > tail:
head -= 1
ans += max(0, head-ans)
else:
ans += 9*int('1'+'0'*((i//2)-1))
print(ans)
| n = int(input())
l = len(str(N))
ans = 0
for i in range(2, L + 1, 2):
if i == L:
head = int(str(N)[:i // 2])
tail = int(str(N)[i // 2:])
if head <= 9:
if head > tail:
head -= 1
ans += head
else:
if head > tail:
head -= 1
ans += max(0, head - ans)
else:
ans += 9 * int('1' + '0' * (i // 2 - 1))
print(ans) |
#
# Copyright 2017 Google Inc. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS-IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
{
'includes' : [
'../common.gypi',
],
'target_defaults': {
'type': 'static_library',
'includes' : [
'../dev/target_visibility.gypi',
],
'conditions': [
['OS == "nacl"', {
'link_settings': {
'libraries': [
'-lnacl_io',
],
},
}],
], # conditions
},
'targets' : [
{
'target_name' : 'remote_assets',
'type': 'static_library',
'includes' : [
'../dev/zipasset_generator.gypi',
],
'sources': [
'res/calltrace.iad',
'res/nodegraph.iad',
'res/resources.iad',
'res/root.iad',
'res/settings.iad',
'res/shader_editor.iad',
'res/tracing.iad',
# Excluded conditionally below.
'res/geturi_asmjs.iad',
'res/geturi_cc.iad',
],
'conditions': [
['OS in ["asmjs", "nacl"]', {
'sources!': [
'res/geturi_cc.iad',
],
}, { # else
'sources!': [
'res/geturi_asmjs.iad',
],
}],
], # conditions
'dependencies' : [
'<(ion_dir)/port/port.gyp:ionport',
],
},
{
'target_name' : 'ionremote',
'sources': [
'calltracehandler.cc',
'calltracehandler.h',
'httpserver.cc',
'httpserver.h',
'nodegraphhandler.cc',
'nodegraphhandler.h',
'remoteserver.cc',
'remoteserver.h',
'resourcehandler.cc',
'resourcehandler.h',
'settinghandler.cc',
'settinghandler.h',
'shaderhandler.cc',
'shaderhandler.h',
'tracinghandler.cc',
'tracinghandler.h',
],
'dependencies': [
':remote_assets',
'<(ion_dir)/analytics/analytics.gyp:ionanalytics',
'<(ion_dir)/base/base.gyp:ionbase',
'<(ion_dir)/external/external.gyp:ionmongoose',
'<(ion_dir)/external/external.gyp:ionstblib',
'<(ion_dir)/external/external.gyp:ionzlib',
'<(ion_dir)/external/imagecompression.gyp:ionimagecompression',
'<(ion_dir)/gfx/gfx.gyp:iongfx',
'<(ion_dir)/gfxprofile/gfxprofile.gyp:iongfxprofile',
'<(ion_dir)/gfxutils/gfxutils.gyp:iongfxutils',
'<(ion_dir)/image/image.gyp:ionimage',
'<(ion_dir)/port/port.gyp:ionport',
'<(ion_dir)/portgfx/portgfx.gyp:ionportgfx',
'<(ion_dir)/profile/profile.gyp:ionprofile',
],
},
{
'target_name': 'ionremote_test_utils',
'type': 'static_library',
'sources': [
'tests/getunusedport.cc',
'tests/getunusedport.h',
],
'dependencies' : [
'<(ion_dir)/base/base.gyp:ionbase_for_tests',
],
}, # target: ionremote_test_utils
{
'target_name': 'ionremote_for_tests',
'type': 'static_library',
'sources': [
'tests/getunusedport.cc',
'tests/getunusedport.h',
'tests/httpservertest.h',
],
'dependencies' : [
':httpclient',
':ionremote',
':ionremote_test_utils',
':portutils',
'<(ion_dir)/base/base.gyp:ionbase_for_tests',
'<(ion_dir)/gfx/gfx.gyp:iongfx_for_tests',
'<(ion_dir)/gfxutils/gfxutils.gyp:iongfxutils_for_tests',
'<(ion_dir)/image/image.gyp:ionimage_for_tests',
'<(ion_dir)/portgfx/portgfx.gyp:ionportgfx_for_tests',
],
}, # target: ionremote_for_tests
{
'target_name': 'httpclient',
'type': 'static_library',
'sources': [
'httpclient.cc',
'httpclient.h',
],
'dependencies': [
':remote_assets',
'<(ion_dir)/base/base.gyp:ionbase',
'<(ion_dir)/port/port.gyp:ionport',
'<(ion_dir)/external/external.gyp:ionmongoose',
],
}, # target: httpclient
{
'target_name': 'portutils',
'type': 'static_library',
'sources': [
'portutils.cc',
'portutils.h',
],
'dependencies': [
'<(ion_dir)/base/base.gyp:ionbase',
'<(ion_dir)/port/port.gyp:ionport',
],
}, # target: portutils
],
}
| {'includes': ['../common.gypi'], 'target_defaults': {'type': 'static_library', 'includes': ['../dev/target_visibility.gypi'], 'conditions': [['OS == "nacl"', {'link_settings': {'libraries': ['-lnacl_io']}}]]}, 'targets': [{'target_name': 'remote_assets', 'type': 'static_library', 'includes': ['../dev/zipasset_generator.gypi'], 'sources': ['res/calltrace.iad', 'res/nodegraph.iad', 'res/resources.iad', 'res/root.iad', 'res/settings.iad', 'res/shader_editor.iad', 'res/tracing.iad', 'res/geturi_asmjs.iad', 'res/geturi_cc.iad'], 'conditions': [['OS in ["asmjs", "nacl"]', {'sources!': ['res/geturi_cc.iad']}, {'sources!': ['res/geturi_asmjs.iad']}]], 'dependencies': ['<(ion_dir)/port/port.gyp:ionport']}, {'target_name': 'ionremote', 'sources': ['calltracehandler.cc', 'calltracehandler.h', 'httpserver.cc', 'httpserver.h', 'nodegraphhandler.cc', 'nodegraphhandler.h', 'remoteserver.cc', 'remoteserver.h', 'resourcehandler.cc', 'resourcehandler.h', 'settinghandler.cc', 'settinghandler.h', 'shaderhandler.cc', 'shaderhandler.h', 'tracinghandler.cc', 'tracinghandler.h'], 'dependencies': [':remote_assets', '<(ion_dir)/analytics/analytics.gyp:ionanalytics', '<(ion_dir)/base/base.gyp:ionbase', '<(ion_dir)/external/external.gyp:ionmongoose', '<(ion_dir)/external/external.gyp:ionstblib', '<(ion_dir)/external/external.gyp:ionzlib', '<(ion_dir)/external/imagecompression.gyp:ionimagecompression', '<(ion_dir)/gfx/gfx.gyp:iongfx', '<(ion_dir)/gfxprofile/gfxprofile.gyp:iongfxprofile', '<(ion_dir)/gfxutils/gfxutils.gyp:iongfxutils', '<(ion_dir)/image/image.gyp:ionimage', '<(ion_dir)/port/port.gyp:ionport', '<(ion_dir)/portgfx/portgfx.gyp:ionportgfx', '<(ion_dir)/profile/profile.gyp:ionprofile']}, {'target_name': 'ionremote_test_utils', 'type': 'static_library', 'sources': ['tests/getunusedport.cc', 'tests/getunusedport.h'], 'dependencies': ['<(ion_dir)/base/base.gyp:ionbase_for_tests']}, {'target_name': 'ionremote_for_tests', 'type': 'static_library', 'sources': ['tests/getunusedport.cc', 'tests/getunusedport.h', 'tests/httpservertest.h'], 'dependencies': [':httpclient', ':ionremote', ':ionremote_test_utils', ':portutils', '<(ion_dir)/base/base.gyp:ionbase_for_tests', '<(ion_dir)/gfx/gfx.gyp:iongfx_for_tests', '<(ion_dir)/gfxutils/gfxutils.gyp:iongfxutils_for_tests', '<(ion_dir)/image/image.gyp:ionimage_for_tests', '<(ion_dir)/portgfx/portgfx.gyp:ionportgfx_for_tests']}, {'target_name': 'httpclient', 'type': 'static_library', 'sources': ['httpclient.cc', 'httpclient.h'], 'dependencies': [':remote_assets', '<(ion_dir)/base/base.gyp:ionbase', '<(ion_dir)/port/port.gyp:ionport', '<(ion_dir)/external/external.gyp:ionmongoose']}, {'target_name': 'portutils', 'type': 'static_library', 'sources': ['portutils.cc', 'portutils.h'], 'dependencies': ['<(ion_dir)/base/base.gyp:ionbase', '<(ion_dir)/port/port.gyp:ionport']}]} |
w = grenal = inter = gremio = empates = 0
while w == 0:
grenal += 1
g1, g2 = input().split(' ')
g1 = int(g1)
g2 = int(g2)
if g1 == g2:
empates += 1
elif g1 > g2:
inter += 1
else:
gremio += 1
print('Novo grenal (1-sim 2-nao)')
op = int(input())
if op == 2:
w = 1
print('{} grenais'.format(grenal))
print('Inter:{}'.format(inter))
print('Gremio:{}'.format(gremio))
print('Empates:{}'.format(empates))
if(inter > gremio):
print('Inter venceu mais')
else:
print('Gremio venceu mais') | w = grenal = inter = gremio = empates = 0
while w == 0:
grenal += 1
(g1, g2) = input().split(' ')
g1 = int(g1)
g2 = int(g2)
if g1 == g2:
empates += 1
elif g1 > g2:
inter += 1
else:
gremio += 1
print('Novo grenal (1-sim 2-nao)')
op = int(input())
if op == 2:
w = 1
print('{} grenais'.format(grenal))
print('Inter:{}'.format(inter))
print('Gremio:{}'.format(gremio))
print('Empates:{}'.format(empates))
if inter > gremio:
print('Inter venceu mais')
else:
print('Gremio venceu mais') |
# Copyright 2021 Kotaro Terada
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# Model Types
MODEL_ISING = "ising"
MODEL_QUBO = "qubo"
# Interaction Body Types
INTERACTION_LINEAR = 1 # 1-body
INTERACTION_QUADRATIC = 2 # 2-body
# Default label for Constraints
DEFAULT_LABEL_N_HOT = "Default N-hot Constraint"
DEFAULT_LABEL_EQUALITY = "Default Equality Constraint"
DEFAULT_LABEL_0_OR_1_HOT = "Default Zero-or-One-hot Constraint"
# Select format
SELECT_SERIES = "series"
SELECT_DICT = "dict"
# Algorithms
ALGORITHM_ATTENUATION = "attenuation"
ALGORITHM_DELTA = "delta"
ALGORITHM_INCREMENTAL = "incremental"
ALGORITHM_PARTIAL = "partial"
ALGORITHM_WINDOW = "window"
# Pick-up mode for Sawatabi Solver
PICKUP_MODE_RANDOM = "random"
PICKUP_MODE_SEQUENTIAL = "sequential"
| model_ising = 'ising'
model_qubo = 'qubo'
interaction_linear = 1
interaction_quadratic = 2
default_label_n_hot = 'Default N-hot Constraint'
default_label_equality = 'Default Equality Constraint'
default_label_0_or_1_hot = 'Default Zero-or-One-hot Constraint'
select_series = 'series'
select_dict = 'dict'
algorithm_attenuation = 'attenuation'
algorithm_delta = 'delta'
algorithm_incremental = 'incremental'
algorithm_partial = 'partial'
algorithm_window = 'window'
pickup_mode_random = 'random'
pickup_mode_sequential = 'sequential' |
# Write a Python program to multiplies all the items in a list.
def multiply_list(items):
multiply_numbers = 1
for x in items:
multiply_numbers *= x
return multiply_numbers
print(multiply_list([5,2,-8])) | def multiply_list(items):
multiply_numbers = 1
for x in items:
multiply_numbers *= x
return multiply_numbers
print(multiply_list([5, 2, -8])) |
def _jar_jar_impl(ctx):
ctx.action(
inputs=[ctx.file.rules, ctx.file.input_jar],
outputs=[ctx.outputs.jar],
executable=ctx.executable._jarjar_runner,
progress_message="jarjar %s" % ctx.label,
arguments=["process", ctx.file.rules.path, ctx.file.input_jar.path, ctx.outputs.jar.path])
return JavaInfo(
output_jar = ctx.outputs.jar,
compile_jar = ctx.outputs.jar
)
jar_jar = rule(
implementation = _jar_jar_impl,
attrs = {
"input_jar": attr.label(allow_files=True, single_file=True),
"rules": attr.label(allow_files=True, single_file=True),
"_jarjar_runner": attr.label(executable=True, cfg="host", default=Label("@com_github_johnynek_bazel_jar_jar//:jarjar_runner")),
},
outputs = {
"jar": "%{name}.jar"
},
provides = [JavaInfo])
def _mvn_name(coord):
nocolon = "_".join(coord.split(":"))
nodot = "_".join(nocolon.split("."))
nodash = "_".join(nodot.split("-"))
return nodash
def _mvn_jar(coord, sha, bname, serv):
nm = _mvn_name(coord)
native.maven_jar(
name = nm,
artifact = coord,
sha1 = sha,
server = serv
)
native.bind(name=("com_github_johnynek_bazel_jar_jar/%s" % bname), actual = "@%s//jar" % nm)
def jar_jar_repositories(server=None):
_mvn_jar(
"org.pantsbuild:jarjar:1.6.3",
"cf54d4b142f5409c394095181c8d308a81869622",
"jarjar",
server)
_mvn_jar(
"org.ow2.asm:asm:5.0.4",
"0da08b8cce7bbf903602a25a3a163ae252435795",
"asm",
server)
_mvn_jar(
"org.ow2.asm:asm-commons:5.0.4",
"5a556786086c23cd689a0328f8519db93821c04c",
"asm_commons",
server)
| def _jar_jar_impl(ctx):
ctx.action(inputs=[ctx.file.rules, ctx.file.input_jar], outputs=[ctx.outputs.jar], executable=ctx.executable._jarjar_runner, progress_message='jarjar %s' % ctx.label, arguments=['process', ctx.file.rules.path, ctx.file.input_jar.path, ctx.outputs.jar.path])
return java_info(output_jar=ctx.outputs.jar, compile_jar=ctx.outputs.jar)
jar_jar = rule(implementation=_jar_jar_impl, attrs={'input_jar': attr.label(allow_files=True, single_file=True), 'rules': attr.label(allow_files=True, single_file=True), '_jarjar_runner': attr.label(executable=True, cfg='host', default=label('@com_github_johnynek_bazel_jar_jar//:jarjar_runner'))}, outputs={'jar': '%{name}.jar'}, provides=[JavaInfo])
def _mvn_name(coord):
nocolon = '_'.join(coord.split(':'))
nodot = '_'.join(nocolon.split('.'))
nodash = '_'.join(nodot.split('-'))
return nodash
def _mvn_jar(coord, sha, bname, serv):
nm = _mvn_name(coord)
native.maven_jar(name=nm, artifact=coord, sha1=sha, server=serv)
native.bind(name='com_github_johnynek_bazel_jar_jar/%s' % bname, actual='@%s//jar' % nm)
def jar_jar_repositories(server=None):
_mvn_jar('org.pantsbuild:jarjar:1.6.3', 'cf54d4b142f5409c394095181c8d308a81869622', 'jarjar', server)
_mvn_jar('org.ow2.asm:asm:5.0.4', '0da08b8cce7bbf903602a25a3a163ae252435795', 'asm', server)
_mvn_jar('org.ow2.asm:asm-commons:5.0.4', '5a556786086c23cd689a0328f8519db93821c04c', 'asm_commons', server) |
def square(a):
return a * a
print(square(4))
| def square(a):
return a * a
print(square(4)) |
#!/usr/bin/env python
NAME = 'SiteGround (SiteGround)'
def is_waf(self):
for attack in self.attacks:
r = attack(self)
if r is None:
return
_, page = r
if any(i in page for i in (b'Our system thinks you might be a robot!',
b'The page you are trying to access is restricted due to a security rule')):
return True
return False | name = 'SiteGround (SiteGround)'
def is_waf(self):
for attack in self.attacks:
r = attack(self)
if r is None:
return
(_, page) = r
if any((i in page for i in (b'Our system thinks you might be a robot!', b'The page you are trying to access is restricted due to a security rule'))):
return True
return False |
class Solution:
def solve(self, a, b):
def multiply(x,y,c):
m = x*y + c
return m//10,m%10
e1,e2 = -1,-1
si = 1
if a[0] == "-":
e1 = 0
si *=-1
if b[0] == "-":
e2 = 0
si *=-1
n1 = len(a)
n2 = len(b)
final = 0
ans = ""
c = 0
k = ""
for i in range(n1-1,e1,-1):
for j in range(n2-1,e2,-1):
c,s = multiply(int(a[i]),int(b[j]),c)
ans = str(s) + ans
if c:
ans = str(c) + ans
final += int(ans)
ans = k + "0"
k += "0"
c = 0
final *= si
return str(final)
| class Solution:
def solve(self, a, b):
def multiply(x, y, c):
m = x * y + c
return (m // 10, m % 10)
(e1, e2) = (-1, -1)
si = 1
if a[0] == '-':
e1 = 0
si *= -1
if b[0] == '-':
e2 = 0
si *= -1
n1 = len(a)
n2 = len(b)
final = 0
ans = ''
c = 0
k = ''
for i in range(n1 - 1, e1, -1):
for j in range(n2 - 1, e2, -1):
(c, s) = multiply(int(a[i]), int(b[j]), c)
ans = str(s) + ans
if c:
ans = str(c) + ans
final += int(ans)
ans = k + '0'
k += '0'
c = 0
final *= si
return str(final) |
# %% [markdown]
# # 1 - Print
# %% [markdown]
# `print()` is build in function in python that takes any type of object as it's parameter
#
# The [print](https://docs.python.org/3/library/functions.html#print) function let's you send an output to the terminal
#
#
# Python [built-in functions](https://docs.python.org/3/library/functions.html)
# %%
print("Hello, World!")
# %% [markdown]
# You can enclose strings in **double** quotes (" ") or **single** quotes (' ')
# %%
print('Hello, World!')
# %% [markdown]
# In case you have to use a signle quote in a string (for example: I'm a string) you can use the escape sequence (\) or use double quotes for the string
# %%
print("I'm a string")
print('I\'m a string')
# %% [markdown]
# You can combine strings with + or , <br />
# The difference is that + concatenates strings, while , joins strings
# %%
# Concatinate strings with sign +
print("Hello, " + "World!")
print("Hello,", "World!", "!")
# %% [markdown]
# How to print a new line in python?
# %%
print("Hello, World!")
# print a blank line
print()
print("This is a new line")
# %%
# print a line with \n
# \n is a special character sequence that tells Python to start a new line
print("This is the first line \nThis is the second line")
# %%
# print a line with a tab
print("This is a regular line")
print("\tThis is a new line with a tab")
# %% [markdown]
# Another usefull built-in function in python is `input()` <br />
# It allows you to prompt the user to input a value <br />
# But you need to declare a variable to hold the user's value in it
# %%
# Here name is variable that will hold the user's input
name = input("Please eneter your name: ")
print("Your name is:", name) | print('Hello, World!')
print('Hello, World!')
print("I'm a string")
print("I'm a string")
print('Hello, ' + 'World!')
print('Hello,', 'World!', '!')
print('Hello, World!')
print()
print('This is a new line')
print('This is the first line \nThis is the second line')
print('This is a regular line')
print('\tThis is a new line with a tab')
name = input('Please eneter your name: ')
print('Your name is:', name) |
#
# PySNMP MIB module AC-PM-ATM-MIB (http://snmplabs.com/pysmi)
# ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/AC-PM-ATM-MIB
# Produced by pysmi-0.3.4 at Mon Apr 29 16:54:33 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, OctetString, ObjectIdentifier = mibBuilder.importSymbols("ASN1", "Integer", "OctetString", "ObjectIdentifier")
NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues")
ConstraintsUnion, SingleValueConstraint, ValueSizeConstraint, ConstraintsIntersection, ValueRangeConstraint = mibBuilder.importSymbols("ASN1-REFINEMENT", "ConstraintsUnion", "SingleValueConstraint", "ValueSizeConstraint", "ConstraintsIntersection", "ValueRangeConstraint")
NotificationGroup, ModuleCompliance = mibBuilder.importSymbols("SNMPv2-CONF", "NotificationGroup", "ModuleCompliance")
Bits, Counter32, Unsigned32, MibScalar, MibTable, MibTableRow, MibTableColumn, Gauge32, MibIdentifier, NotificationType, iso, Integer32, ObjectIdentity, ModuleIdentity, Counter64, IpAddress, TimeTicks, enterprises = mibBuilder.importSymbols("SNMPv2-SMI", "Bits", "Counter32", "Unsigned32", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "Gauge32", "MibIdentifier", "NotificationType", "iso", "Integer32", "ObjectIdentity", "ModuleIdentity", "Counter64", "IpAddress", "TimeTicks", "enterprises")
TextualConvention, DisplayString = mibBuilder.importSymbols("SNMPv2-TC", "TextualConvention", "DisplayString")
audioCodes = MibIdentifier((1, 3, 6, 1, 4, 1, 5003))
acRegistrations = MibIdentifier((1, 3, 6, 1, 4, 1, 5003, 7))
acGeneric = MibIdentifier((1, 3, 6, 1, 4, 1, 5003, 8))
acProducts = MibIdentifier((1, 3, 6, 1, 4, 1, 5003, 9))
acPerformance = MibIdentifier((1, 3, 6, 1, 4, 1, 5003, 10))
acPMAtm = ModuleIdentity((1, 3, 6, 1, 4, 1, 5003, 10, 12))
if mibBuilder.loadTexts: acPMAtm.setLastUpdated('200601261643Z')
if mibBuilder.loadTexts: acPMAtm.setOrganization('AudioCodes Ltd')
acPMAtmConfiguration = MibIdentifier((1, 3, 6, 1, 4, 1, 5003, 10, 12, 1))
acPMAtmConfigurationPeriodLength = MibScalar((1, 3, 6, 1, 4, 1, 5003, 10, 12, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 894780))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: acPMAtmConfigurationPeriodLength.setStatus('current')
acPMAtmConfigurationResetTotalCounters = MibScalar((1, 3, 6, 1, 4, 1, 5003, 10, 12, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("resetCountersDone", 1), ("resetTotalCounters", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: acPMAtmConfigurationResetTotalCounters.setStatus('current')
acPMAtmCellAttributes = MibIdentifier((1, 3, 6, 1, 4, 1, 5003, 10, 12, 1, 31))
acPMAtmCellAttributesTxHighThreshold = MibScalar((1, 3, 6, 1, 4, 1, 5003, 10, 12, 1, 31, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(100, 3000))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: acPMAtmCellAttributesTxHighThreshold.setStatus('current')
acPMAtmCellAttributesTxLowThreshold = MibScalar((1, 3, 6, 1, 4, 1, 5003, 10, 12, 1, 31, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(100, 3000))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: acPMAtmCellAttributesTxLowThreshold.setStatus('current')
acPMAtmCellAttributesRxHighThreshold = MibScalar((1, 3, 6, 1, 4, 1, 5003, 10, 12, 1, 31, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(100, 3000))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: acPMAtmCellAttributesRxHighThreshold.setStatus('current')
acPMAtmCellAttributesRxLowThreshold = MibScalar((1, 3, 6, 1, 4, 1, 5003, 10, 12, 1, 31, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(100, 3000))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: acPMAtmCellAttributesRxLowThreshold.setStatus('current')
acPMAtmData = MibIdentifier((1, 3, 6, 1, 4, 1, 5003, 10, 12, 2))
acPMAtmDataAcPMAtmTimeFromStartOfInterval = MibScalar((1, 3, 6, 1, 4, 1, 5003, 10, 12, 2, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 2147483647))).setMaxAccess("readonly")
if mibBuilder.loadTexts: acPMAtmDataAcPMAtmTimeFromStartOfInterval.setStatus('current')
acPMAtmCellTxTable = MibTable((1, 3, 6, 1, 4, 1, 5003, 10, 12, 2, 21), )
if mibBuilder.loadTexts: acPMAtmCellTxTable.setStatus('current')
acPMAtmCellTxEntry = MibTableRow((1, 3, 6, 1, 4, 1, 5003, 10, 12, 2, 21, 1), ).setIndexNames((0, "AC-PM-ATM-MIB", "acPMAtmCellTxInterface"), (0, "AC-PM-ATM-MIB", "acPMAtmCellTxInterval"))
if mibBuilder.loadTexts: acPMAtmCellTxEntry.setStatus('current')
acPMAtmCellTxInterface = MibTableColumn((1, 3, 6, 1, 4, 1, 5003, 10, 12, 2, 21, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 2)))
if mibBuilder.loadTexts: acPMAtmCellTxInterface.setStatus('current')
acPMAtmCellTxInterval = MibTableColumn((1, 3, 6, 1, 4, 1, 5003, 10, 12, 2, 21, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 2)))
if mibBuilder.loadTexts: acPMAtmCellTxInterval.setStatus('current')
acPMAtmCellTxAverage = MibTableColumn((1, 3, 6, 1, 4, 1, 5003, 10, 12, 2, 21, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(-1, 2147483647))).setMaxAccess("readonly")
if mibBuilder.loadTexts: acPMAtmCellTxAverage.setStatus('current')
acPMAtmCellTxMax = MibTableColumn((1, 3, 6, 1, 4, 1, 5003, 10, 12, 2, 21, 1, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(-1, 2147483647))).setMaxAccess("readonly")
if mibBuilder.loadTexts: acPMAtmCellTxMax.setStatus('current')
acPMAtmCellTxMin = MibTableColumn((1, 3, 6, 1, 4, 1, 5003, 10, 12, 2, 21, 1, 5), Integer32().subtype(subtypeSpec=ValueRangeConstraint(-1, 2147483647))).setMaxAccess("readonly")
if mibBuilder.loadTexts: acPMAtmCellTxMin.setStatus('current')
acPMAtmCellTxVolume = MibTableColumn((1, 3, 6, 1, 4, 1, 5003, 10, 12, 2, 21, 1, 6), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: acPMAtmCellTxVolume.setStatus('current')
acPMAtmCellTxTimeBelowLowThreshold = MibTableColumn((1, 3, 6, 1, 4, 1, 5003, 10, 12, 2, 21, 1, 7), Integer32().subtype(subtypeSpec=ValueRangeConstraint(-1, 100))).setMaxAccess("readonly")
if mibBuilder.loadTexts: acPMAtmCellTxTimeBelowLowThreshold.setStatus('current')
acPMAtmCellTxTimeBetweenThresholds = MibTableColumn((1, 3, 6, 1, 4, 1, 5003, 10, 12, 2, 21, 1, 8), Integer32().subtype(subtypeSpec=ValueRangeConstraint(-1, 100))).setMaxAccess("readonly")
if mibBuilder.loadTexts: acPMAtmCellTxTimeBetweenThresholds.setStatus('current')
acPMAtmCellTxTimeAboveHighThreshold = MibTableColumn((1, 3, 6, 1, 4, 1, 5003, 10, 12, 2, 21, 1, 9), Integer32().subtype(subtypeSpec=ValueRangeConstraint(-1, 100))).setMaxAccess("readonly")
if mibBuilder.loadTexts: acPMAtmCellTxTimeAboveHighThreshold.setStatus('current')
acPMAtmCellTxFullDayAverage = MibTableColumn((1, 3, 6, 1, 4, 1, 5003, 10, 12, 2, 21, 1, 10), Integer32().subtype(subtypeSpec=ValueRangeConstraint(-1, 2147483647))).setMaxAccess("readonly")
if mibBuilder.loadTexts: acPMAtmCellTxFullDayAverage.setStatus('current')
acPMAtmCellRxTable = MibTable((1, 3, 6, 1, 4, 1, 5003, 10, 12, 2, 22), )
if mibBuilder.loadTexts: acPMAtmCellRxTable.setStatus('current')
acPMAtmCellRxEntry = MibTableRow((1, 3, 6, 1, 4, 1, 5003, 10, 12, 2, 22, 1), ).setIndexNames((0, "AC-PM-ATM-MIB", "acPMAtmCellRxInterface"), (0, "AC-PM-ATM-MIB", "acPMAtmCellRxInterval"))
if mibBuilder.loadTexts: acPMAtmCellRxEntry.setStatus('current')
acPMAtmCellRxInterface = MibTableColumn((1, 3, 6, 1, 4, 1, 5003, 10, 12, 2, 22, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 2)))
if mibBuilder.loadTexts: acPMAtmCellRxInterface.setStatus('current')
acPMAtmCellRxInterval = MibTableColumn((1, 3, 6, 1, 4, 1, 5003, 10, 12, 2, 22, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 2)))
if mibBuilder.loadTexts: acPMAtmCellRxInterval.setStatus('current')
acPMAtmCellRxAverage = MibTableColumn((1, 3, 6, 1, 4, 1, 5003, 10, 12, 2, 22, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(-1, 2147483647))).setMaxAccess("readonly")
if mibBuilder.loadTexts: acPMAtmCellRxAverage.setStatus('current')
acPMAtmCellRxMax = MibTableColumn((1, 3, 6, 1, 4, 1, 5003, 10, 12, 2, 22, 1, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(-1, 2147483647))).setMaxAccess("readonly")
if mibBuilder.loadTexts: acPMAtmCellRxMax.setStatus('current')
acPMAtmCellRxMin = MibTableColumn((1, 3, 6, 1, 4, 1, 5003, 10, 12, 2, 22, 1, 5), Integer32().subtype(subtypeSpec=ValueRangeConstraint(-1, 2147483647))).setMaxAccess("readonly")
if mibBuilder.loadTexts: acPMAtmCellRxMin.setStatus('current')
acPMAtmCellRxVolume = MibTableColumn((1, 3, 6, 1, 4, 1, 5003, 10, 12, 2, 22, 1, 6), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: acPMAtmCellRxVolume.setStatus('current')
acPMAtmCellRxTimeBelowLowThreshold = MibTableColumn((1, 3, 6, 1, 4, 1, 5003, 10, 12, 2, 22, 1, 7), Integer32().subtype(subtypeSpec=ValueRangeConstraint(-1, 100))).setMaxAccess("readonly")
if mibBuilder.loadTexts: acPMAtmCellRxTimeBelowLowThreshold.setStatus('current')
acPMAtmCellRxTimeBetweenThresholds = MibTableColumn((1, 3, 6, 1, 4, 1, 5003, 10, 12, 2, 22, 1, 8), Integer32().subtype(subtypeSpec=ValueRangeConstraint(-1, 100))).setMaxAccess("readonly")
if mibBuilder.loadTexts: acPMAtmCellRxTimeBetweenThresholds.setStatus('current')
acPMAtmCellRxTimeAboveHighThreshold = MibTableColumn((1, 3, 6, 1, 4, 1, 5003, 10, 12, 2, 22, 1, 9), Integer32().subtype(subtypeSpec=ValueRangeConstraint(-1, 100))).setMaxAccess("readonly")
if mibBuilder.loadTexts: acPMAtmCellRxTimeAboveHighThreshold.setStatus('current')
acPMAtmCellRxFullDayAverage = MibTableColumn((1, 3, 6, 1, 4, 1, 5003, 10, 12, 2, 22, 1, 10), Integer32().subtype(subtypeSpec=ValueRangeConstraint(-1, 2147483647))).setMaxAccess("readonly")
if mibBuilder.loadTexts: acPMAtmCellRxFullDayAverage.setStatus('current')
acPMAtmCellDiscardedTable = MibTable((1, 3, 6, 1, 4, 1, 5003, 10, 12, 2, 23), )
if mibBuilder.loadTexts: acPMAtmCellDiscardedTable.setStatus('current')
acPMAtmCellDiscardedEntry = MibTableRow((1, 3, 6, 1, 4, 1, 5003, 10, 12, 2, 23, 1), ).setIndexNames((0, "AC-PM-ATM-MIB", "acPMAtmCellDiscardedInterface"), (0, "AC-PM-ATM-MIB", "acPMAtmCellDiscardedInterval"))
if mibBuilder.loadTexts: acPMAtmCellDiscardedEntry.setStatus('current')
acPMAtmCellDiscardedInterface = MibTableColumn((1, 3, 6, 1, 4, 1, 5003, 10, 12, 2, 23, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 2)))
if mibBuilder.loadTexts: acPMAtmCellDiscardedInterface.setStatus('current')
acPMAtmCellDiscardedInterval = MibTableColumn((1, 3, 6, 1, 4, 1, 5003, 10, 12, 2, 23, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 2)))
if mibBuilder.loadTexts: acPMAtmCellDiscardedInterval.setStatus('current')
acPMAtmCellDiscardedVal = MibTableColumn((1, 3, 6, 1, 4, 1, 5003, 10, 12, 2, 23, 1, 3), Gauge32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: acPMAtmCellDiscardedVal.setStatus('current')
mibBuilder.exportSymbols("AC-PM-ATM-MIB", acPMAtmCellRxInterval=acPMAtmCellRxInterval, acPMAtmCellRxTimeBelowLowThreshold=acPMAtmCellRxTimeBelowLowThreshold, acPMAtmConfigurationPeriodLength=acPMAtmConfigurationPeriodLength, acPMAtmCellTxFullDayAverage=acPMAtmCellTxFullDayAverage, acPerformance=acPerformance, acPMAtmConfiguration=acPMAtmConfiguration, acPMAtmData=acPMAtmData, acPMAtmCellTxTable=acPMAtmCellTxTable, acPMAtmCellTxAverage=acPMAtmCellTxAverage, acPMAtmCellDiscardedTable=acPMAtmCellDiscardedTable, acPMAtmDataAcPMAtmTimeFromStartOfInterval=acPMAtmDataAcPMAtmTimeFromStartOfInterval, acPMAtmCellTxTimeBetweenThresholds=acPMAtmCellTxTimeBetweenThresholds, acPMAtmCellRxAverage=acPMAtmCellRxAverage, acPMAtmCellRxVolume=acPMAtmCellRxVolume, acPMAtmCellRxMax=acPMAtmCellRxMax, acPMAtmCellAttributesTxLowThreshold=acPMAtmCellAttributesTxLowThreshold, PYSNMP_MODULE_ID=acPMAtm, acPMAtmCellRxTimeBetweenThresholds=acPMAtmCellRxTimeBetweenThresholds, acPMAtmCellRxTimeAboveHighThreshold=acPMAtmCellRxTimeAboveHighThreshold, acPMAtmCellTxTimeAboveHighThreshold=acPMAtmCellTxTimeAboveHighThreshold, acProducts=acProducts, acPMAtmCellDiscardedVal=acPMAtmCellDiscardedVal, acGeneric=acGeneric, acPMAtmCellTxEntry=acPMAtmCellTxEntry, acPMAtmCellRxFullDayAverage=acPMAtmCellRxFullDayAverage, acPMAtmCellRxMin=acPMAtmCellRxMin, acPMAtmConfigurationResetTotalCounters=acPMAtmConfigurationResetTotalCounters, acPMAtmCellAttributesTxHighThreshold=acPMAtmCellAttributesTxHighThreshold, acPMAtmCellRxTable=acPMAtmCellRxTable, acPMAtmCellTxTimeBelowLowThreshold=acPMAtmCellTxTimeBelowLowThreshold, acPMAtmCellTxMin=acPMAtmCellTxMin, acPMAtmCellTxMax=acPMAtmCellTxMax, acPMAtmCellAttributes=acPMAtmCellAttributes, acPMAtmCellAttributesRxLowThreshold=acPMAtmCellAttributesRxLowThreshold, acPMAtmCellAttributesRxHighThreshold=acPMAtmCellAttributesRxHighThreshold, acPMAtmCellTxVolume=acPMAtmCellTxVolume, acRegistrations=acRegistrations, acPMAtmCellTxInterval=acPMAtmCellTxInterval, acPMAtmCellRxInterface=acPMAtmCellRxInterface, acPMAtmCellDiscardedInterval=acPMAtmCellDiscardedInterval, acPMAtm=acPMAtm, acPMAtmCellDiscardedEntry=acPMAtmCellDiscardedEntry, acPMAtmCellTxInterface=acPMAtmCellTxInterface, acPMAtmCellDiscardedInterface=acPMAtmCellDiscardedInterface, acPMAtmCellRxEntry=acPMAtmCellRxEntry, audioCodes=audioCodes)
| (integer, octet_string, object_identifier) = mibBuilder.importSymbols('ASN1', 'Integer', 'OctetString', 'ObjectIdentifier')
(named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues')
(constraints_union, single_value_constraint, value_size_constraint, constraints_intersection, value_range_constraint) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'ConstraintsUnion', 'SingleValueConstraint', 'ValueSizeConstraint', 'ConstraintsIntersection', 'ValueRangeConstraint')
(notification_group, module_compliance) = mibBuilder.importSymbols('SNMPv2-CONF', 'NotificationGroup', 'ModuleCompliance')
(bits, counter32, unsigned32, mib_scalar, mib_table, mib_table_row, mib_table_column, gauge32, mib_identifier, notification_type, iso, integer32, object_identity, module_identity, counter64, ip_address, time_ticks, enterprises) = mibBuilder.importSymbols('SNMPv2-SMI', 'Bits', 'Counter32', 'Unsigned32', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn', 'Gauge32', 'MibIdentifier', 'NotificationType', 'iso', 'Integer32', 'ObjectIdentity', 'ModuleIdentity', 'Counter64', 'IpAddress', 'TimeTicks', 'enterprises')
(textual_convention, display_string) = mibBuilder.importSymbols('SNMPv2-TC', 'TextualConvention', 'DisplayString')
audio_codes = mib_identifier((1, 3, 6, 1, 4, 1, 5003))
ac_registrations = mib_identifier((1, 3, 6, 1, 4, 1, 5003, 7))
ac_generic = mib_identifier((1, 3, 6, 1, 4, 1, 5003, 8))
ac_products = mib_identifier((1, 3, 6, 1, 4, 1, 5003, 9))
ac_performance = mib_identifier((1, 3, 6, 1, 4, 1, 5003, 10))
ac_pm_atm = module_identity((1, 3, 6, 1, 4, 1, 5003, 10, 12))
if mibBuilder.loadTexts:
acPMAtm.setLastUpdated('200601261643Z')
if mibBuilder.loadTexts:
acPMAtm.setOrganization('AudioCodes Ltd')
ac_pm_atm_configuration = mib_identifier((1, 3, 6, 1, 4, 1, 5003, 10, 12, 1))
ac_pm_atm_configuration_period_length = mib_scalar((1, 3, 6, 1, 4, 1, 5003, 10, 12, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 894780))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
acPMAtmConfigurationPeriodLength.setStatus('current')
ac_pm_atm_configuration_reset_total_counters = mib_scalar((1, 3, 6, 1, 4, 1, 5003, 10, 12, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('resetCountersDone', 1), ('resetTotalCounters', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
acPMAtmConfigurationResetTotalCounters.setStatus('current')
ac_pm_atm_cell_attributes = mib_identifier((1, 3, 6, 1, 4, 1, 5003, 10, 12, 1, 31))
ac_pm_atm_cell_attributes_tx_high_threshold = mib_scalar((1, 3, 6, 1, 4, 1, 5003, 10, 12, 1, 31, 1), integer32().subtype(subtypeSpec=value_range_constraint(100, 3000))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
acPMAtmCellAttributesTxHighThreshold.setStatus('current')
ac_pm_atm_cell_attributes_tx_low_threshold = mib_scalar((1, 3, 6, 1, 4, 1, 5003, 10, 12, 1, 31, 2), integer32().subtype(subtypeSpec=value_range_constraint(100, 3000))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
acPMAtmCellAttributesTxLowThreshold.setStatus('current')
ac_pm_atm_cell_attributes_rx_high_threshold = mib_scalar((1, 3, 6, 1, 4, 1, 5003, 10, 12, 1, 31, 3), integer32().subtype(subtypeSpec=value_range_constraint(100, 3000))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
acPMAtmCellAttributesRxHighThreshold.setStatus('current')
ac_pm_atm_cell_attributes_rx_low_threshold = mib_scalar((1, 3, 6, 1, 4, 1, 5003, 10, 12, 1, 31, 4), integer32().subtype(subtypeSpec=value_range_constraint(100, 3000))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
acPMAtmCellAttributesRxLowThreshold.setStatus('current')
ac_pm_atm_data = mib_identifier((1, 3, 6, 1, 4, 1, 5003, 10, 12, 2))
ac_pm_atm_data_ac_pm_atm_time_from_start_of_interval = mib_scalar((1, 3, 6, 1, 4, 1, 5003, 10, 12, 2, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 2147483647))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
acPMAtmDataAcPMAtmTimeFromStartOfInterval.setStatus('current')
ac_pm_atm_cell_tx_table = mib_table((1, 3, 6, 1, 4, 1, 5003, 10, 12, 2, 21))
if mibBuilder.loadTexts:
acPMAtmCellTxTable.setStatus('current')
ac_pm_atm_cell_tx_entry = mib_table_row((1, 3, 6, 1, 4, 1, 5003, 10, 12, 2, 21, 1)).setIndexNames((0, 'AC-PM-ATM-MIB', 'acPMAtmCellTxInterface'), (0, 'AC-PM-ATM-MIB', 'acPMAtmCellTxInterval'))
if mibBuilder.loadTexts:
acPMAtmCellTxEntry.setStatus('current')
ac_pm_atm_cell_tx_interface = mib_table_column((1, 3, 6, 1, 4, 1, 5003, 10, 12, 2, 21, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 2)))
if mibBuilder.loadTexts:
acPMAtmCellTxInterface.setStatus('current')
ac_pm_atm_cell_tx_interval = mib_table_column((1, 3, 6, 1, 4, 1, 5003, 10, 12, 2, 21, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 2)))
if mibBuilder.loadTexts:
acPMAtmCellTxInterval.setStatus('current')
ac_pm_atm_cell_tx_average = mib_table_column((1, 3, 6, 1, 4, 1, 5003, 10, 12, 2, 21, 1, 3), integer32().subtype(subtypeSpec=value_range_constraint(-1, 2147483647))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
acPMAtmCellTxAverage.setStatus('current')
ac_pm_atm_cell_tx_max = mib_table_column((1, 3, 6, 1, 4, 1, 5003, 10, 12, 2, 21, 1, 4), integer32().subtype(subtypeSpec=value_range_constraint(-1, 2147483647))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
acPMAtmCellTxMax.setStatus('current')
ac_pm_atm_cell_tx_min = mib_table_column((1, 3, 6, 1, 4, 1, 5003, 10, 12, 2, 21, 1, 5), integer32().subtype(subtypeSpec=value_range_constraint(-1, 2147483647))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
acPMAtmCellTxMin.setStatus('current')
ac_pm_atm_cell_tx_volume = mib_table_column((1, 3, 6, 1, 4, 1, 5003, 10, 12, 2, 21, 1, 6), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
acPMAtmCellTxVolume.setStatus('current')
ac_pm_atm_cell_tx_time_below_low_threshold = mib_table_column((1, 3, 6, 1, 4, 1, 5003, 10, 12, 2, 21, 1, 7), integer32().subtype(subtypeSpec=value_range_constraint(-1, 100))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
acPMAtmCellTxTimeBelowLowThreshold.setStatus('current')
ac_pm_atm_cell_tx_time_between_thresholds = mib_table_column((1, 3, 6, 1, 4, 1, 5003, 10, 12, 2, 21, 1, 8), integer32().subtype(subtypeSpec=value_range_constraint(-1, 100))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
acPMAtmCellTxTimeBetweenThresholds.setStatus('current')
ac_pm_atm_cell_tx_time_above_high_threshold = mib_table_column((1, 3, 6, 1, 4, 1, 5003, 10, 12, 2, 21, 1, 9), integer32().subtype(subtypeSpec=value_range_constraint(-1, 100))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
acPMAtmCellTxTimeAboveHighThreshold.setStatus('current')
ac_pm_atm_cell_tx_full_day_average = mib_table_column((1, 3, 6, 1, 4, 1, 5003, 10, 12, 2, 21, 1, 10), integer32().subtype(subtypeSpec=value_range_constraint(-1, 2147483647))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
acPMAtmCellTxFullDayAverage.setStatus('current')
ac_pm_atm_cell_rx_table = mib_table((1, 3, 6, 1, 4, 1, 5003, 10, 12, 2, 22))
if mibBuilder.loadTexts:
acPMAtmCellRxTable.setStatus('current')
ac_pm_atm_cell_rx_entry = mib_table_row((1, 3, 6, 1, 4, 1, 5003, 10, 12, 2, 22, 1)).setIndexNames((0, 'AC-PM-ATM-MIB', 'acPMAtmCellRxInterface'), (0, 'AC-PM-ATM-MIB', 'acPMAtmCellRxInterval'))
if mibBuilder.loadTexts:
acPMAtmCellRxEntry.setStatus('current')
ac_pm_atm_cell_rx_interface = mib_table_column((1, 3, 6, 1, 4, 1, 5003, 10, 12, 2, 22, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 2)))
if mibBuilder.loadTexts:
acPMAtmCellRxInterface.setStatus('current')
ac_pm_atm_cell_rx_interval = mib_table_column((1, 3, 6, 1, 4, 1, 5003, 10, 12, 2, 22, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 2)))
if mibBuilder.loadTexts:
acPMAtmCellRxInterval.setStatus('current')
ac_pm_atm_cell_rx_average = mib_table_column((1, 3, 6, 1, 4, 1, 5003, 10, 12, 2, 22, 1, 3), integer32().subtype(subtypeSpec=value_range_constraint(-1, 2147483647))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
acPMAtmCellRxAverage.setStatus('current')
ac_pm_atm_cell_rx_max = mib_table_column((1, 3, 6, 1, 4, 1, 5003, 10, 12, 2, 22, 1, 4), integer32().subtype(subtypeSpec=value_range_constraint(-1, 2147483647))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
acPMAtmCellRxMax.setStatus('current')
ac_pm_atm_cell_rx_min = mib_table_column((1, 3, 6, 1, 4, 1, 5003, 10, 12, 2, 22, 1, 5), integer32().subtype(subtypeSpec=value_range_constraint(-1, 2147483647))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
acPMAtmCellRxMin.setStatus('current')
ac_pm_atm_cell_rx_volume = mib_table_column((1, 3, 6, 1, 4, 1, 5003, 10, 12, 2, 22, 1, 6), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
acPMAtmCellRxVolume.setStatus('current')
ac_pm_atm_cell_rx_time_below_low_threshold = mib_table_column((1, 3, 6, 1, 4, 1, 5003, 10, 12, 2, 22, 1, 7), integer32().subtype(subtypeSpec=value_range_constraint(-1, 100))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
acPMAtmCellRxTimeBelowLowThreshold.setStatus('current')
ac_pm_atm_cell_rx_time_between_thresholds = mib_table_column((1, 3, 6, 1, 4, 1, 5003, 10, 12, 2, 22, 1, 8), integer32().subtype(subtypeSpec=value_range_constraint(-1, 100))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
acPMAtmCellRxTimeBetweenThresholds.setStatus('current')
ac_pm_atm_cell_rx_time_above_high_threshold = mib_table_column((1, 3, 6, 1, 4, 1, 5003, 10, 12, 2, 22, 1, 9), integer32().subtype(subtypeSpec=value_range_constraint(-1, 100))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
acPMAtmCellRxTimeAboveHighThreshold.setStatus('current')
ac_pm_atm_cell_rx_full_day_average = mib_table_column((1, 3, 6, 1, 4, 1, 5003, 10, 12, 2, 22, 1, 10), integer32().subtype(subtypeSpec=value_range_constraint(-1, 2147483647))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
acPMAtmCellRxFullDayAverage.setStatus('current')
ac_pm_atm_cell_discarded_table = mib_table((1, 3, 6, 1, 4, 1, 5003, 10, 12, 2, 23))
if mibBuilder.loadTexts:
acPMAtmCellDiscardedTable.setStatus('current')
ac_pm_atm_cell_discarded_entry = mib_table_row((1, 3, 6, 1, 4, 1, 5003, 10, 12, 2, 23, 1)).setIndexNames((0, 'AC-PM-ATM-MIB', 'acPMAtmCellDiscardedInterface'), (0, 'AC-PM-ATM-MIB', 'acPMAtmCellDiscardedInterval'))
if mibBuilder.loadTexts:
acPMAtmCellDiscardedEntry.setStatus('current')
ac_pm_atm_cell_discarded_interface = mib_table_column((1, 3, 6, 1, 4, 1, 5003, 10, 12, 2, 23, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 2)))
if mibBuilder.loadTexts:
acPMAtmCellDiscardedInterface.setStatus('current')
ac_pm_atm_cell_discarded_interval = mib_table_column((1, 3, 6, 1, 4, 1, 5003, 10, 12, 2, 23, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 2)))
if mibBuilder.loadTexts:
acPMAtmCellDiscardedInterval.setStatus('current')
ac_pm_atm_cell_discarded_val = mib_table_column((1, 3, 6, 1, 4, 1, 5003, 10, 12, 2, 23, 1, 3), gauge32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
acPMAtmCellDiscardedVal.setStatus('current')
mibBuilder.exportSymbols('AC-PM-ATM-MIB', acPMAtmCellRxInterval=acPMAtmCellRxInterval, acPMAtmCellRxTimeBelowLowThreshold=acPMAtmCellRxTimeBelowLowThreshold, acPMAtmConfigurationPeriodLength=acPMAtmConfigurationPeriodLength, acPMAtmCellTxFullDayAverage=acPMAtmCellTxFullDayAverage, acPerformance=acPerformance, acPMAtmConfiguration=acPMAtmConfiguration, acPMAtmData=acPMAtmData, acPMAtmCellTxTable=acPMAtmCellTxTable, acPMAtmCellTxAverage=acPMAtmCellTxAverage, acPMAtmCellDiscardedTable=acPMAtmCellDiscardedTable, acPMAtmDataAcPMAtmTimeFromStartOfInterval=acPMAtmDataAcPMAtmTimeFromStartOfInterval, acPMAtmCellTxTimeBetweenThresholds=acPMAtmCellTxTimeBetweenThresholds, acPMAtmCellRxAverage=acPMAtmCellRxAverage, acPMAtmCellRxVolume=acPMAtmCellRxVolume, acPMAtmCellRxMax=acPMAtmCellRxMax, acPMAtmCellAttributesTxLowThreshold=acPMAtmCellAttributesTxLowThreshold, PYSNMP_MODULE_ID=acPMAtm, acPMAtmCellRxTimeBetweenThresholds=acPMAtmCellRxTimeBetweenThresholds, acPMAtmCellRxTimeAboveHighThreshold=acPMAtmCellRxTimeAboveHighThreshold, acPMAtmCellTxTimeAboveHighThreshold=acPMAtmCellTxTimeAboveHighThreshold, acProducts=acProducts, acPMAtmCellDiscardedVal=acPMAtmCellDiscardedVal, acGeneric=acGeneric, acPMAtmCellTxEntry=acPMAtmCellTxEntry, acPMAtmCellRxFullDayAverage=acPMAtmCellRxFullDayAverage, acPMAtmCellRxMin=acPMAtmCellRxMin, acPMAtmConfigurationResetTotalCounters=acPMAtmConfigurationResetTotalCounters, acPMAtmCellAttributesTxHighThreshold=acPMAtmCellAttributesTxHighThreshold, acPMAtmCellRxTable=acPMAtmCellRxTable, acPMAtmCellTxTimeBelowLowThreshold=acPMAtmCellTxTimeBelowLowThreshold, acPMAtmCellTxMin=acPMAtmCellTxMin, acPMAtmCellTxMax=acPMAtmCellTxMax, acPMAtmCellAttributes=acPMAtmCellAttributes, acPMAtmCellAttributesRxLowThreshold=acPMAtmCellAttributesRxLowThreshold, acPMAtmCellAttributesRxHighThreshold=acPMAtmCellAttributesRxHighThreshold, acPMAtmCellTxVolume=acPMAtmCellTxVolume, acRegistrations=acRegistrations, acPMAtmCellTxInterval=acPMAtmCellTxInterval, acPMAtmCellRxInterface=acPMAtmCellRxInterface, acPMAtmCellDiscardedInterval=acPMAtmCellDiscardedInterval, acPMAtm=acPMAtm, acPMAtmCellDiscardedEntry=acPMAtmCellDiscardedEntry, acPMAtmCellTxInterface=acPMAtmCellTxInterface, acPMAtmCellDiscardedInterface=acPMAtmCellDiscardedInterface, acPMAtmCellRxEntry=acPMAtmCellRxEntry, audioCodes=audioCodes) |
def Shell(A):
t = int(len(A)/2)
while t > 0:
for i in range(len(A)-t):
j = i
while j >= 0 and A[j] > A[j+t]:
A[j], A[j+t] = A[j+t], A[j]
j -= 1
t = int(t/2) | def shell(A):
t = int(len(A) / 2)
while t > 0:
for i in range(len(A) - t):
j = i
while j >= 0 and A[j] > A[j + t]:
(A[j], A[j + t]) = (A[j + t], A[j])
j -= 1
t = int(t / 2) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.