content stringlengths 7 1.05M |
|---|
"""Tests package.
Dummy file for allowing exclusion from mypy
"""
|
"""
Copyright (c) 2010 Aldo Cortesi
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
"""
# Possibly replace with a generator that produces Leonardo numbers?
# That would be of limited utility since this is all of them up to 31 bits.
LP = [ 1, 1, 3, 5, 9, 15, 25, 41, 67, 109, 177, 287, 465, 753, 1219, 1973,
3193, 5167, 8361, 13529, 21891, 35421, 57313, 92735, 150049, 242785,
392835, 635621, 1028457, 1664079, 2692537, 4356617, 7049155,
11405773, 18454929, 29860703, 48315633, 78176337, 126491971,
204668309, 331160281, 535828591, 866988873 ]
# Solution for determining number of trailing zeroes of a number's binary representation.
# Taken from http://www.0xe3.com/text/ntz/ComputingTrailingZerosHOWTO.html
# I don't much like the magic numbers, but they really are magic.
MultiplyDeBruijnBitPosition = [ 0, 1, 28, 2, 29, 14, 24, 3,
30, 22, 20, 15, 25, 17, 4, 8,
31, 27, 13, 23, 21, 19, 16, 7,
26, 12, 18, 6, 11, 5, 10, 9]
def trailingzeroes(v):
return MultiplyDeBruijnBitPosition[(((v & -v) * 0x077CB531) >> 27) & 0b11111]
def sift(lst, pshift, head):
while pshift > 1:
rt = head - 1
lf = head - 1 - LP[pshift - 2]
if lst[head] >= lst[lf] and lst[head] >= lst[rt]:
break
if lst[lf] >= lst[rt]:
lst[head], lst[lf] = lst[lf], lst[head]
head = lf
pshift -= 1
else:
lst[head], lst[rt] = lst[rt], lst[head]
head = rt
pshift -= 2
# lst.log()
def trinkle(lst, p, pshift, head, trusty):
while p != 1:
stepson = head - LP[pshift]
if lst[stepson] <= lst[head]:
break
if not trusty and pshift > 1:
rt = head - 1
lf = head - 1 - LP[pshift - 2]
if lst[rt] >= lst[stepson] or lst[lf] >= lst[stepson]:
break
lst[head], lst[stepson] = lst[stepson], lst[head]
# lst.log()
head = stepson
trail = trailingzeroes(p & ~1)
p >>= trail
pshift += trail
trusty = False
if not trusty:
sift(lst, pshift, head)
def smoothsort(lst):
p = 1
pshift = 1
head = 0
while head < len(lst) - 1:
if (p & 3) == 3:
sift(lst, pshift, head)
p >>= 2
pshift += 2
else:
if LP[pshift - 1] >= len(lst) - 1 - head:
trinkle(lst, p, pshift, head, False)
else:
sift(lst, pshift, head)
if pshift == 1:
p <<= 1
pshift -= 1
else:
p <<= pshift - 1
pshift = 1
p |= 1
head += 1
trinkle(lst, p, pshift, head, False)
while pshift != 1 or p != 1:
if pshift <= 1:
trail = trailingzeroes(p & ~1)
p >>= trail
pshift += trail
else:
p <<= 2
p ^= 7
pshift -= 2
trinkle(lst, p >> 1, pshift + 1, head - LP[pshift] - 1, True)
trinkle(lst, p, pshift, head - 1, True)
head -= 1
|
"""
An app for managing release notes. It reads in a configured release notes file from the source directory
(so that you don't have to do double documentation), then generates JSON and Atom feeds based on those.
It also has the ability to check to see if a given user has already seen a release notes entry which can be
used to selectively trigger showing them the relevant release notes on login.
"""
|
#
# 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)
|
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 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")
|
# coding:utf-8
class Stack(object):
"""栈"""
def __init__(self):
self.__list = []
def push(self, item):
"""添加一个新的元素item到栈顶"""
self.__list.append(item)
def pop(self):
"""弹出栈顶元素"""
return self.__list.pop()
def peek(self):
"""返回栈顶元素"""
if self.__list:
return self.__list[-1]
else:
return None
def is_empty(self):
"""判断栈是否为空"""
return self.__list == []
# return not self.__list
def size(self):
"""返回栈的元素个数"""
return len(self.__list)
if __name__ == "__main__":
s = Stack()
s.push(1)
s.push(2)
s.push(3)
s.push(4)
print(s.pop())
print(s.pop())
print(s.pop())
print(s.pop())
|
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 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
|
""" exceptions.py: PostcodeSearchBuilder Custom Exceptions """
class Error(Exception):
""" Base Exception Class """
pass
class StopSubjectBuilderErrorException(Error):
""" An error is raised during the ETL Pipeline """
pass
|
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('#')
|
total = mais1k = cheaper = cheaper_price = 0
while True:
print('-='*30)
produto = str(input('Produto: ')).strip()
price = float(input('Preço: R$'))
if price > 1000:
mais1k += 1
if cheaper == 0:
cheaper = produto
cheaper_price = price
if cheaper_price > price:
cheaper_price = price
cheaper = produto
total += price
print('-='*30)
while True:
option = str(input('Deseja continuar?[S/N] ')).strip().upper()
if option not in ['S', 'N', 'SIM', 'NAO', 'NÃO']:
print('Valor inválido! Tente novamente.')
else:
break
if option not in ['S', 'SIM']:
break
print(f'Total gasto: R${total:.2f}')
print(f'Quantidade de produtos que custam mais de R$1000: {mais1k}')
print(f'O produto mais barato foi {cheaper}, que custou R${cheaper_price:.2f} ')
|
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
|
_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."
|
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()))) |
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)
|
def makeprobability(hairetsu):
probability = []
for k in range(len(hairetsu)): # probabilityに確率を入れる
probability.append(hairetsu[k] / sum(hairetsu))
return probability
|
# -*- coding: utf8 -*-
# Copyright (c) 2017-2021 THL A29 Limited, a Tencent company. 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.
# CAM签名/鉴权错误。
AUTHFAILURE = 'AuthFailure'
# 请求未授权。请参考 CAM 文档对鉴权的说明。
AUTHFAILURE_UNAUTHORIZEDOPERATION = 'AuthFailure.UnauthorizedOperation'
# DryRun 操作,代表请求将会是成功的,只是多传了 DryRun 参数。
DRYRUNOPERATION = 'DryRunOperation'
# 操作失败。
FAILEDOPERATION = 'FailedOperation'
# 访问STS失败。
FAILEDOPERATION_ACCESSSTSFAIL = 'FailedOperation.AccessSTSFail'
# 访问用户TKE集群失败。
FAILEDOPERATION_ACCESSTKEFAIL = 'FailedOperation.AccessTKEFail'
# 访问标签服务失败。
FAILEDOPERATION_ACCESSTAGFAIL = 'FailedOperation.AccessTagFail'
# Agent版本不支持该操作,请升级Agent。
FAILEDOPERATION_AGENTVERSIONNOTSUPPORTED = 'FailedOperation.AgentVersionNotSupported'
# 删除过滤条件失败。
FAILEDOPERATION_ALERTFILTERRULEDELETEFAILED = 'FailedOperation.AlertFilterRuleDeleteFailed'
# 创建告警策略失败。
FAILEDOPERATION_ALERTPOLICYCREATEFAILED = 'FailedOperation.AlertPolicyCreateFailed'
# 告警策略删除失败。
FAILEDOPERATION_ALERTPOLICYDELETEFAILED = 'FailedOperation.AlertPolicyDeleteFailed'
# 告警策略查询失败。
FAILEDOPERATION_ALERTPOLICYDESCRIBEFAILED = 'FailedOperation.AlertPolicyDescribeFailed'
# 告警策略修改失败。
FAILEDOPERATION_ALERTPOLICYMODIFYFAILED = 'FailedOperation.AlertPolicyModifyFailed'
# 删除触发条件失败。
FAILEDOPERATION_ALERTTRIGGERRULEDELETEFAILED = 'FailedOperation.AlertTriggerRuleDeleteFailed'
# Yaml 格式不正确。
FAILEDOPERATION_BADYAMLFORMAT = 'FailedOperation.BadYamlFormat'
# 数据表字段不存在。
FAILEDOPERATION_DATACOLUMNNOTFOUND = 'FailedOperation.DataColumnNotFound'
# 数据查询失败。
FAILEDOPERATION_DATAQUERYFAILED = 'FailedOperation.DataQueryFailed'
# 数据表不存在。
FAILEDOPERATION_DATATABLENOTFOUND = 'FailedOperation.DataTableNotFound'
# 数据库查询失败。
FAILEDOPERATION_DBQUERYFAILED = 'FailedOperation.DbQueryFailed'
# 创建数据库记录失败。
FAILEDOPERATION_DBRECORDCREATEFAILED = 'FailedOperation.DbRecordCreateFailed'
# 数据库记录删除失败。
FAILEDOPERATION_DBRECORDDELETEFAILED = 'FailedOperation.DbRecordDeleteFailed'
# 数据库记录更新失败。
FAILEDOPERATION_DBRECORDUPDATEFAILED = 'FailedOperation.DbRecordUpdateFailed'
# 数据库事务开始失败。
FAILEDOPERATION_DBTRANSACTIONBEGINFAILED = 'FailedOperation.DbTransactionBeginFailed'
# 数据库事务提交失败。
FAILEDOPERATION_DBTRANSACTIONCOMMITFAILED = 'FailedOperation.DbTransactionCommitFailed'
# 请求维度查询服务失败。
FAILEDOPERATION_DIMQUERYREQUESTFAILED = 'FailedOperation.DimQueryRequestFailed'
# 被除数为0。
FAILEDOPERATION_DIVISIONBYZERO = 'FailedOperation.DivisionByZero'
# 查询分析数据失败。
FAILEDOPERATION_DRUIDQUERYFAILED = 'FailedOperation.DruidQueryFailed'
# druid表不存在。
FAILEDOPERATION_DRUIDTABLENOTFOUND = 'FailedOperation.DruidTableNotFound'
# 名字重复。
FAILEDOPERATION_DUPLICATENAME = 'FailedOperation.DuplicateName'
# 生成资源ID错误。
FAILEDOPERATION_GENERATEINSTANCEIDFAILED = 'FailedOperation.GenerateInstanceIDFailed'
# 实例没有运行。
FAILEDOPERATION_INSTANCENOTRUNNING = 'FailedOperation.InstanceNotRunning'
# 资源已经存在。
FAILEDOPERATION_RESOURCEEXIST = 'FailedOperation.ResourceExist'
# 资源不存在。
FAILEDOPERATION_RESOURCENOTFOUND = 'FailedOperation.ResourceNotFound'
# 发送授权请求失败。
FAILEDOPERATION_SENDREQUEST = 'FailedOperation.SendRequest'
# 服务未启用,开通服务后方可使用。
FAILEDOPERATION_SERVICENOTENABLED = 'FailedOperation.ServiceNotEnabled'
# 没有访问TKE权限。
FAILEDOPERATION_TKECLIENTAUTHFAIL = 'FailedOperation.TKEClientAuthFail'
# TKE的endpoint不可访问。
FAILEDOPERATION_TKEENDPOINTSTATUSERROR = 'FailedOperation.TKEEndpointStatusError'
# 更新TKE资源时出现冲突。
FAILEDOPERATION_TKERESOURCECONFLICT = 'FailedOperation.TKEResourceConflict'
# 内部错误。
INTERNALERROR = 'InternalError'
# 回调出错。
INTERNALERROR_CALLBACKFAIL = 'InternalError.CallbackFail'
# 依赖的其他api出错。
INTERNALERROR_DEPENDSAPI = 'InternalError.DependsApi'
# 依赖的db出错。
INTERNALERROR_DEPENDSDB = 'InternalError.DependsDb'
# 依赖的mq出错。
INTERNALERROR_DEPENDSMQ = 'InternalError.DependsMq'
# 执行超时。
INTERNALERROR_EXETIMEOUT = 'InternalError.ExeTimeout'
# 系统错误。
INTERNALERROR_SYSTEM = 'InternalError.System'
# 任务结果解析错误。
INTERNALERROR_TASKRESULTFORMAT = 'InternalError.TaskResultFormat'
# 参数错误。
INVALIDPARAMETER = 'InvalidParameter'
# 重复提交任务。
INVALIDPARAMETER_DUPTASK = 'InvalidParameter.DupTask'
# 参数错误。
INVALIDPARAMETER_INVALIDPARAMETER = 'InvalidParameter.InvalidParameter'
# 参数错误。
INVALIDPARAMETER_INVALIDPARAMETERPARAM = 'InvalidParameter.InvalidParameterParam'
# 缺少平台配置。
INVALIDPARAMETER_MISSAKSK = 'InvalidParameter.MissAKSK'
# 参数错误。
INVALIDPARAMETER_PARAMERROR = 'InvalidParameter.ParamError'
# 平台配置错误。
INVALIDPARAMETER_SECRETIDORSECRETKEYERROR = 'InvalidParameter.SecretIdOrSecretKeyError'
# 这个产品还不支持扫描。
INVALIDPARAMETER_UNSUPPORTEDPRODUCT = 'InvalidParameter.UnsupportedProduct'
# 参数取值错误。
INVALIDPARAMETERVALUE = 'InvalidParameterValue'
# dashboard 名重复。
INVALIDPARAMETERVALUE_DASHBOARDNAMEEXISTS = 'InvalidParameterValue.DashboardNameExists'
# 版本不匹配。
INVALIDPARAMETERVALUE_VERSIONMISMATCH = 'InvalidParameterValue.VersionMismatch'
# 超过配额限制。
LIMITEXCEEDED = 'LimitExceeded'
# 指标数量达到配额限制,禁止含有未注册指标的请求。
LIMITEXCEEDED_METRICQUOTAEXCEEDED = 'LimitExceeded.MetricQuotaExceeded'
# 缺少参数错误。
MISSINGPARAMETER = 'MissingParameter'
# 操作被拒绝。
OPERATIONDENIED = 'OperationDenied'
# 请求的次数超过了频率限制。
REQUESTLIMITEXCEEDED = 'RequestLimitExceeded'
# 资源被占用。
RESOURCEINUSE = 'ResourceInUse'
# 资源不足。
RESOURCEINSUFFICIENT = 'ResourceInsufficient'
# 资源不存在。
RESOURCENOTFOUND = 'ResourceNotFound'
# 任务不存在。
RESOURCENOTFOUND_NOTEXISTTASK = 'ResourceNotFound.NotExistTask'
# 资源不可用。
RESOURCEUNAVAILABLE = 'ResourceUnavailable'
# 资源售罄。
RESOURCESSOLDOUT = 'ResourcesSoldOut'
# 未授权操作。
UNAUTHORIZEDOPERATION = 'UnauthorizedOperation'
# 未知参数错误。
UNKNOWNPARAMETER = 'UnknownParameter'
# 操作不支持。
UNSUPPORTEDOPERATION = 'UnsupportedOperation'
|
"""
The constants used for Lobe Connect local API
"""
IMAGE_INPUT = 'image'
PREDICTIONS = 'predictions'
LABEL = 'label'
CONFIDENCE = 'confidence'
|
class AldebaranException(Exception):
""" Base exception for all Aldebaran API Exceptions. """
def __init__(self, status, message, data):
super(AldebaranException, self).__init__()
self.status = status
self.message = message
self.data = data
def __repr__(self):
return self.__str__()
def __str__(self):
return '%s: %s (%s)' % (self.status, self.message, self.data)
|
# -*- coding: utf-8 -*-
"""
@author:XuMing(xuming624@qq.com)
@description: refer https://github.com/ThilinaRajapakse/simpletransformers
"""
def sweep_config_to_sweep_values(sweep_config):
"""
Converts an instance of wandb.Config to plain values map.
wandb.Config varies across versions quite significantly,
so we use the `keys` method that works consistently.
"""
return {key: sweep_config[key] for key in sweep_config.keys()}
|
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
|
a = "Glad to see you here"
# 很高兴在这里遇见你
print("这是使用str方法:",str(a))
b = "Same here"
# 我也一样
print("这是使用repr方法:",repr(b))
|
# 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'))
|
"""
Wypisz spiralnie liste dwuwymiarowa.
"""
# Wersja 1
def spirala_v1(macierz, x=0, y=0):
wynik = []
if x == 0 and y == 0:
x, y = len(macierz[0]), len(macierz)
k = 0
l = 0
while k < y and l < x:
for i in range(l, x):
wynik.append(macierz[k][i])
k += 1
for i in range(k, y):
wynik.append(macierz[i][x - 1])
x -= 1
if k < x:
for i in range(x - 1, (l - 1), -1):
wynik.append(macierz[y - 1][i])
y -= 1
if l < y:
for i in range(y - 1, k - 1, -1):
wynik.append(macierz[i][l])
l += 1
return wynik
# Testy Poprawnosci
macierz = [
[1, 2, 3, 4, 5],
[16, 17, 18, 19, 6],
[15, 24, 25, 20, 7],
[14, 23, 22, 21, 8],
[13, 12, 11, 10, 9],
]
wynik = [
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
16,
17,
18,
19,
20,
21,
22,
23,
24,
25,
]
assert spirala_v1(macierz) == wynik
|
"""Create a Tree data structure.
The structure must be recursive. A node may have zero or more children. A node has access to children nodes, but not to its parent.
Source: programming-idioms.org
"""
# Implementation author: nickname
# Created on 2016-02-18T16:57:57.310492Z
# Last modified on 2017-10-04T20:22:26.702125Z
# Version 2
class Node(object):
def __init__(self, value, *children):
self.value = value
self.children = list(children)
|
# -*- coding: utf-8 -*-
#
# Copyright (c) 2021 VMware, Inc. All Rights Reserved.
# SPDX-License-Identifier: BSD-2-Clause
"""
SPDX document formatting
"""
# document level strings
spdx_version = 'SPDX-2.2'
data_license = 'CC0-1.0'
spdx_id = 'SPDXRef-DOCUMENT'
document_name = 'Tern report for {image_name}'
document_comment = 'This document was generated by ' \
'the Tern Project: https://github.com/tern-tools/tern'
document_namespace = 'https://spdx.org/spdxdocs/tern-' \
'report-{version}-{image}-{uuid}'
license_list_version = '3.8'
creator = 'Tool: tern-{version}'
created = '{timestamp}'
# Dictionary Formatting
def get_relationship_dict(element_id, related_element_id, relationship_type):
'''Given two SPDX element IDs and their relationship type, return a
dictionary that represents the relationship. Assume that the element_id
inputs are provided as SPDXRefs.
{
"spdxElementId" : "SPDXRef-element_id",
"relatedSpdxElement" : "SPDXRef-related_element_id",
"relationshipType" : "relationship_type"
}'''
return {
"spdxElementId": element_id,
"relatedSpdxElement": related_element_id,
"relationshipType": relationship_type
}
def get_extracted_text_dict(extracted_text, license_ref):
'''Given a plain text license string and the corresponding license_ref,
return a dictionary that describes the key-value pair:
{
"extractedText" : "extracted_text"
"licenseId": "license_ref"
}'''
return {
"extractedText": extracted_text,
"licenseId": license_ref
}
|
#!/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"
|
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 |
class User:
"""
GitHub User
https://developer.github.com/v3/users/
Attributes:
login: GitHub user name
id: Internal GitHub id
avatar_url: URL of image like "https://avatars.githubusercontent.com/u/6752317?v=3",
html_url: Public user URL looks like "https://github.com/baxterthehacker",
"""
def __init__(self, data):
# Internal GitHub id
self.id = data.get('id', 0)
self.login = data.get('login', '')
self.avatar_url = data.get('avatar_url', '')
# Public link
self.html_url = data.get('html_url', '')
|
#!/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[ ]:
|
"""
Given a non-empty string s and a dictionary wordDict containing a list of non-empty words, determine if s can be segmented into a space-separated sequence of one or more dictionary words.
Note:
The same word in the dictionary may be reused multiple times in the segmentation.
You may assume the dictionary does not contain duplicate words.
Example 1:
Input: s = "leetcode", wordDict = ["leet", "code"]
Output: true
Explanation: Return true because "leetcode" can be segmented as "leet code".
Example 2:
Input: s = "applepenapple", wordDict = ["apple", "pen"]
Output: true
Explanation: Return true because "applepenapple" can be segmented as "apple pen apple".
Note that you are allowed to reuse a dictionary word.
Example 3:
Input: s = "catsandog", wordDict = ["cats", "dog", "sand", "and", "cat"]
Output: false
"""
#METHOD1 -> DFS with Memorization TC (O(n) with memoization, O(2^n) without)
"""
The basic idea is to use DFS to remove any possible word from the word dictionary that exists in the begining of the string,
and then the remainder of each resultant string will have the same procedure recursively applied to it.
At the end of the day, if there's one recusrion that returns True, when a input string "" is found, then there exists a possible wordBreak.
Used a memo table to store previously seen postfix strings, so we don't have to go down the route of calculating already tabulated words.
"""
class Solution(object):
def dfs(self, string, wordDict, found):
if string == "":
return True
if string in found:
return found[string]
found_split = False
for word in wordDict:
if string .startswith(word):
found_split = found_split or self.dfs(string[len(word):], wordDict, found)
if found_split == True:
return True
found[string] = found_split
return found_split
def wordBreak(self, s, wordDict):
found = {}
return self.dfs(s, wordDict, found)
#METHOD2 -> Trie With Memorization
class Solution:
def __init__(self):
self.trie = [{}]
# memoization cache
self.found = {}
def get_prefixes(self, word):
prefixes = []
current_word = []
current = self.trie[0]
for c in word:
if "$" in current:
prefixes.append(''.join(current_word))
if c in current:
current_word.append(c)
current = self.trie[current[c]]
else:
break
if "$" in current:
prefixes.append(''.join(current_word))
return prefixes
def make_trie(self, wordDict):
for word in wordDict:
current = self.trie[0]
for c in word + "$":
if c in current:
current = self.trie[current[c]]
else:
# make new node
self.trie.append({})
current[c] = len(self.trie) - 1
current = self.trie[current[c]]
def dfs(self, suffix):
if suffix in self.found:
return False
if not suffix:
return True
for p in self.get_prefixes(suffix):
if self.dfs(suffix[len(p):]):
return True
self.found[suffix] = False
return False
def wordBreak(self, s, wordDict):
self.make_trie(wordDict)
return self.dfs(s)
|
# 1- Declarando variáveis.
grupo_de_pessoas = list()
pessoa = dict()
escolha = ''
ultima_mulher = ''
soma_de_idades = 0
# 2- Adicionando valores ao dicionário "pessoa".
while True:
print('-=-' * 30)
pessoa.clear()
pessoa['nome'] = str(input('Nome: ')).strip().title()
pessoa['sexo'] = str(input('Sexo: [M/F] ')).strip().upper()[0]
# 2.1- Fazendo com que "sexo" só possa receber "M" ou "F".
if pessoa['sexo'] not in 'MF':
while pessoa['sexo'] not in 'MF':
pessoa['sexo'] = str(input('Opção inválida. Sexo: [M/F] ')).strip().upper()[0]
pessoa['idade'] = int(input('Idade: '))
# 2.2- Adicionando "pessoa" ao "grupo_de_pessoas".
grupo_de_pessoas.append(pessoa.copy())
# 3- Somando as idades.
soma_de_idades += pessoa['idade']
# 4- Pegando o nome da última mulher.
if pessoa['sexo'] == 'F':
ultima_mulher = pessoa['nome']
# 5- Criando uma escolha entre continuar o programa ou não.
escolha = str(input('Quer continuar?: [S/N] ')).strip().upper()[0]
# 5.1- Fazendo com que "escolha" só possa receber "S" ou "N".
if escolha not in 'SN':
while escolha not in 'SN':
escolha = str(input('Opção inválida. Quer continuar?: [S/N] ')).strip().upper()[0]
# 5.2- Fechando o programa.
if escolha == 'N':
break
# 6- Mostrando resultados na tela.
print('-=-' * 30)
# 6.1- Mostrando a quantidade de pessoas registradas.
print(f'O grupo tem {len(grupo_de_pessoas)} pessoas.')
# 6.2- Mostrando a média de idade do grupo.
print(f'A média de idade do grupo é de {soma_de_idades / len(grupo_de_pessoas):.2f}.')
# 6.3- Mostrando as mulheres cadastradas.
print(f'As mulheres cadastradas foram ', end='')
for p in grupo_de_pessoas:
if p['sexo'] == 'F':
if p['nome'] == ultima_mulher:
print(f'{p["nome"]}.')
else:
print(f'{p["nome"]}, ', end='')
# 6.4- Mostrando as pessoas com idade acima da média de idade.
print('Lista de pessoas acima da média:')
for p in grupo_de_pessoas:
if p['idade'] > soma_de_idades / len(grupo_de_pessoas):
print(' ->', end='')
for k, v in p.items():
print(f' {k.title()}: {v}', end='')
if k != 'idade':
print(';', end='')
print('.')
print('-=-' * 30)
|
"""
Version
"""
__version__ = "1.17"
RELEASE = "V01_17"
|
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) |
# 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)
|
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 = ''
|
# Time: O(n + l * h), l is the number of leaves
# Space: O(h)
# Definition for a binary tree node.
class TreeNode(object):
def __init__(self, x):
self.val = x
self.left = None
self.right = None
class Solution(object):
def smallestFromLeaf(self, root):
"""
:type root: TreeNode
:rtype: str
"""
def dfs(node, candidate, result):
if not node:
return
candidate.append(chr(ord('a') + node.val))
if not node.left and not node.right:
result[0] = min(result[0], "".join(reversed(candidate)))
dfs(node.left, candidate, result)
dfs(node.right, candidate, result)
candidate.pop()
result = ["~"]
dfs(root, [], result)
return result[0]
|
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]
|
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) |
# 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))
|
class Solution:
def judgeCircle(self, moves: str) -> bool:
return moves.count('U')==moves.count('D') and moves.count('R')==moves.count('L')
"""
class Solution:
def judgeCircle(self, moves: str) -> bool:
v,h=0,0
for c in moves:
if c=='U':
v += 1
elif c=='D':
v -= 1
elif c=='R':
h += 1
else:
h -= 1
return v==0 and h==0
""" |
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 SessionProxy:
@property
def session(self):
"""Proxy for ``self._session``."""
return self._session # pragma: no cover
@property
def query(self):
"""Proxy for ``self._session.query``."""
return self._session.query # pragma: no cover
def add(self, *args, **kwargs):
"""Proxy for ``self._session.add()``."""
return self._session.add(*args, **kwargs) # pragma: no cover
def add_all(self, *args, **kwargs):
"""Proxy for ``self._session.add_all()``."""
return self._session.add_all(*args, **kwargs) # pragma: no cover
def begin(self, *args, **kwargs):
"""Proxy for ``self._session.begin()``."""
return self._session.begin(*args, **kwargs) # pragma: no cover
def begin_nested(self, *args, **kwargs):
"""Proxy for ``self._session.begin_nested()``."""
return self._session.begin_nested(*args, **kwargs) # pragma: no cover
def commit(self, *args, **kwargs):
"""Proxy for ``self._session.commit()``."""
return self._session.commit(*args, **kwargs) # pragma: no cover
def connection(self, *args, **kwargs):
"""Proxy for ``self._session.connection()``."""
return self._session.connection(*args, **kwargs) # pragma: no cover
def delete(self, *args, **kwargs):
"""Proxy for ``self._session.delete()``."""
return self._session.delete(*args, **kwargs) # pragma: no cover
def execute(self, *args, **kwargs):
"""Proxy for ``self._session.execute()``."""
return self._session.execute(*args, **kwargs) # pragma: no cover
def expire(self, *args, **kwargs):
"""Proxy for ``self._session.expire()``."""
return self._session.expire(*args, **kwargs) # pragma: no cover
def expire_all(self, *args, **kwargs):
"""Proxy for ``self._session.expire_all()``."""
return self._session.expire_all(*args, **kwargs) # pragma: no cover
def expunge(self, *args, **kwargs):
"""Proxy for ``self._session.expunge()``."""
return self._session.expunge(*args, **kwargs) # pragma: no cover
def expunge_all(self, *args, **kwargs):
"""Proxy for ``self._session.expunge_all()``."""
return self._session.expunge_all(*args, **kwargs) # pragma: no cover
def flush(self, *args, **kwargs):
"""Proxy for ``self._session.flush()``."""
return self._session.flush(*args, **kwargs) # pragma: no cover
def invalidate(self, *args, **kwargs):
"""Proxy for ``self._session.invalidate()``."""
return self._session.invalidate(*args, **kwargs) # pragma: no cover
def is_modified(self, *args, **kwargs):
"""Proxy for ``self._session.is_modified()``."""
return self._session.is_modified(*args, **kwargs) # pragma: no cover
def merge(self, *args, **kwargs):
"""Proxy for ``self._session.merge()``."""
return self._session.merge(*args, **kwargs) # pragma: no cover
def prepare(self, *args, **kwargs):
"""Proxy for ``self._session.prepare()``."""
return self._session.prepare(*args, **kwargs) # pragma: no cover
def prune(self, *args, **kwargs):
"""Proxy for ``self._session.prune()``."""
return self._session.prune(*args, **kwargs) # pragma: no cover
def refresh(self, *args, **kwargs):
"""Proxy for ``self._session.refresh()``."""
return self._session.refresh(*args, **kwargs) # pragma: no cover
def remove(self, *args, **kwargs):
"""Proxy for ``self._session.remove()``."""
return self._session.remove(*args, **kwargs) # pragma: no cover
def rollback(self, *args, **kwargs):
"""Proxy for ``self._session.rollback()``."""
return self._session.rollback(*args, **kwargs) # pragma: no cover
def scalar(self, *args, **kwargs):
"""Proxy for ``self._session.scalar()``."""
return self._session.scalar(*args, **kwargs) # pragma: no cover
|
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)) |
class Generator:
"""
Base generator class. Analogous to Input class.
Object Propertie(s):
------------------
data : Dict
A dictionary to hold all the node & edge information.
See also:
---------
RandomGNP
"""
def __init__(self):
self.data = {}
self.data['nodes'] = {}
self.data['edges'] = {}
|
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))
|
__all__ = ['SpikeSource']
class SpikeSource(object):
"""
A source of spikes.
An object that can be used as a source of spikes for objects such as
`SpikeMonitor`, `Synapses`, etc.
The defining properties of `SpikeSource` are that it should have:
* A length that can be extracted with ``len(obj)``, where the maximum spike
index possible is ``len(obj)-1``.
* An attribute `spikes`, an array of ints each from 0 to
``len(obj)-1`` with no repeats (but possibly not in sorted order). This
should be updated each time step.
* A `clock` attribute, this will be used as the default clock for objects
with this as a source.
.. attribute:: spikes
An array of ints, each from 0 to ``len(obj)-1`` with no repeats (but
possibly not in sorted order). Updated each time step.
.. attribute:: clock
The clock on which the spikes will be updated.
"""
# No implementation, just used for documentation purposes.
pass |
# 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")
|
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}
|
# 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,
],
)
|
# 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))
|
# Definition for a binary tree node.
# class TreeNode:
# def __init__(self, val=0, left=None, right=None):
# self.val = val
# self.left = left
# self.right = right
class Solution:
def findTarget(self, root: TreeNode, k: int) -> bool:
# 中序遍历是递增序列
def inorder(root):
if not root:
return []
return inorder(root.left) + [root.val] + inorder(root.right)
val = inorder(root)
# 双指针
left, right = 0, len(val) - 1
while left < right:
sumVal = val[left] + val[right]
if sumVal == k:
return True
elif sumVal > k:
right -= 1
else:
left += 1
return False |
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 |
"""
Programming for linguists
Implementation of the data structures "Node" and "Binary Tree"
"""
class Node:
"""Node class."""
def __init__(self, val):
self.value = val
self.left_child = None
self.right_child = None
def insert(self, data):
"""Insert data as node's child"""
if self.value == data:
return False
if self.value > data:
if self.left_child:
return self.left_child.insert(data)
self.left_child = Node(data)
return True
if self.right_child:
return self.right_child.insert(data)
self.right_child = Node(data)
return True
def find(self, data):
"""Find data in the node."""
if self.value == data:
return True
if self.value > data:
if self.left_child:
return self.left_child.find(data)
return False
if self.right_child:
return self.right_child.find(data)
return False
def get_height(self):
"""Get height of the node."""
if self.left_child and self.right_child:
return 1 + max(self.left_child.get_height(), self.right_child.get_height())
if self.left_child:
return 1 + self.left_child.get_height()
if self.right_child:
return 1 + self.right_child.get_height()
return 1
def depth_in_order_print(self):
"""Go to depth and print values."""
if self:
if self.left_child:
self.left_child.depth_in_order_print()
print(str(self.value), end=' ')
if self.right_child:
self.right_child.depth_in_order_print()
class BinaryTree:
"""Binary tree class."""
def __init__(self):
self.root = None
def insert(self, data):
"""Insert data to the tree."""
self._validate_data(data)
if self.root:
return self.root.insert(data)
self.root = Node(data)
return True
def find(self, data):
"""Find data in the tree."""
self._validate_data(data)
if self.root:
return self.root.find(data)
return False
def get_height(self):
"""Get haight of the tree."""
if self.root:
return self.root.get_height()
return 0
def remove(self, data):
"""Remove data from the tree."""
self._validate_data(data)
# empty tree
if self.root is None:
return False
# data is in root node
if self.root.value == data:
self._remove_root()
return True
parent = None
node = self.root
# find node to remove
while node and node.value != data:
parent = node
if data < node.value:
node = node.left_child
elif data > node.value:
node = node.right_child
# case 1: data not found
if node is None or node.value != data:
return False
# case 2: remove-node has no children
if node.left_child is None and node.right_child is None:
self._remove_node(data, node, parent, mode='no')
# case 3: remove-node has left child only
elif node.left_child and node.right_child is None:
self._remove_node(data, node, parent, mode='left')
# case 4: remove-node has right child only
elif node.left_child is None and node.right_child:
self._remove_node(data, node, parent, mode='right')
# case 5: remove-node has left and right children
else:
self._remove_node_two_children(node)
return True
def _remove_root(self):
"""Remove root."""
if self.root.left_child is None and self.root.right_child is None:
self.root = None
elif self.root.left_child and self.root.right_child is None:
self.root = self.root.left_child
elif self.root.left_child is None and self.root.right_child:
self.root = self.root.right_child
elif self.root.left_child and self.root.right_child:
del_node_parent = self.root
del_node = self.root.right_child
while del_node.left_child:
del_node_parent = del_node
del_node = del_node.left_child
if del_node.right_child:
if del_node_parent.value > del_node.value:
del_node_parent.left_child = del_node.right_child
elif del_node_parent.value < del_node.value:
del_node_parent.right_child = del_node.right_child
else:
if del_node.value < del_node_parent.value:
del_node_parent.left_child = None
else:
del_node_parent.right_child = None
self.root.value = del_node.value
@staticmethod
def _remove_node(data, node, parent, mode='no'):
mode_dict = {'no': None, 'left': node.left_child, 'right': node.right_child}
if data < parent.value:
parent.left_child = mode_dict[mode]
else:
parent.right_child = mode_dict[mode]
@staticmethod
def _remove_node_two_children(node):
"""Remove node with two children."""
del_node_parent = node
del_node = node.right_child
while del_node.left_child:
del_node_parent = del_node
del_node = del_node.left_child
node.value = del_node.value
if del_node.right_child:
if del_node_parent.value > del_node.value:
del_node_parent.left_child = del_node.right_child
elif del_node_parent.value < del_node.value:
del_node_parent.right_child = del_node.right_child
else:
if del_node.value < del_node_parent.value:
del_node_parent.left_child = None
else:
del_node_parent.right_child = None
def depth_in_order_print(self):
"""Go to depth and print values."""
if self.root is not None:
self.root.depth_in_order_print()
print('', end='\n')
@staticmethod
def _validate_data(data):
"""Validate data."""
if not isinstance(data, int):
raise ValueError('Data is not integer.')
|
# -*- coding: utf-8 -*-
{
'!langcode!': 'ro',
'!langname!': 'Română',
'"update" is an optional expression like "field1=\'newvalue\'". You cannot update or delete the results of a JOIN': '"update" (actualizează) este o expresie opțională precum "câmp1=\'valoare_nouă\'". Nu puteți actualiza sau șterge rezultatele unui JOIN',
'%s %%{row} deleted': '%s linii șterse',
'%s %%{row} updated': '%s linii actualizate',
'%s selected': '%s selectat(e)',
'%Y-%m-%d': '%Y-%m-%d',
'%Y-%m-%d %H:%M:%S': '%Y-%m-%d %H:%M:%S',
'(**%.0d MB**)': '(**%.0d MB**)',
'**%(items)s** %%{item(items)}, **%(bytes)s** %%{byte(bytes)}': '**%(items)s** %%{item(items)}, **%(bytes)s** %%{byte(bytes)}',
'**%(items)s** items, **%(bytes)s** %%{byte(bytes)}': '**%(items)s** items, **%(bytes)s** %%{byte(bytes)}',
'**not available** (requires the Python [[guppy http://pypi.python.org/pypi/guppy/ popup]] library)': '**not available** (requires the Python [[guppy http://pypi.python.org/pypi/guppy/ popup]] library)',
'?': '?',
'@markmin\x01(**%.0d MB**)': '(**%.0d MB**)',
'@markmin\x01**%(items)s** %%{item(items)}, **%(bytes)s** %%{byte(bytes)}': '**%(items)s** %%{item(items)}, **%(bytes)s** %%{byte(bytes)}',
'@markmin\x01**%(items)s** items, **%(bytes)s** %%{byte(bytes)}': '**%(items)s** items, **%(bytes)s** %%{byte(bytes)}',
'@markmin\x01**not available** (requires the Python [[Pympler https://pypi.python.org/pypi/Pympler popup]] library)': '**not available** (requires the Python [[Pympler https://pypi.python.org/pypi/Pympler popup]] library)',
'@markmin\x01``**not available**``:red (requires the Python [[Pympler https://pypi.python.org/pypi/Pympler popup]] library)': '``**not available**``:red (requires the Python [[Pympler https://pypi.python.org/pypi/Pympler popup]] library)',
'@markmin\x01An error occured, please [[reload %s]] the page': 'An error occured, please [[reload %s]] the page',
'@markmin\x01Cache contains items up to **%(hours)02d** %%{hour(hours)} **%(min)02d** %%{minute(min)} **%(sec)02d** %%{second(sec)} old.': 'Cache contains items up to **%(hours)02d** %%{hour(hours)} **%(min)02d** %%{minute(min)} **%(sec)02d** %%{second(sec)} old.',
'@markmin\x01DISK contains items up to **%(hours)02d** %%{hour(hours)} **%(min)02d** %%{minute(min)} **%(sec)02d** %%{second(sec)} old.': 'DISK contains items up to **%(hours)02d** %%{hour(hours)} **%(min)02d** %%{minute(min)} **%(sec)02d** %%{second(sec)} old.',
'@markmin\x01Hit Ratio: **%(ratio)s%%** (**%(hits)s** %%{hit(hits)} and **%(misses)s** %%{miss(misses)})': 'Hit Ratio: **%(ratio)s%%** (**%(hits)s** %%{hit(hits)} and **%(misses)s** %%{miss(misses)})',
'@markmin\x01Number of entries: **%s**': 'Number of entries: **%s**',
'@markmin\x01RAM contains items up to **%(hours)02d** %%{hour(hours)} **%(min)02d** %%{minute(min)} **%(sec)02d** %%{second(sec)} old.': 'RAM contains items up to **%(hours)02d** %%{hour(hours)} **%(min)02d** %%{minute(min)} **%(sec)02d** %%{second(sec)} old.',
'``**not available**``:red (requires the Python [[guppy http://pypi.python.org/pypi/guppy/ popup]] library)': '``**not available**``:red (requires the Python [[guppy http://pypi.python.org/pypi/guppy/ popup]] library)',
'A new password was emailed to you': 'A new password was emailed to you',
'About': 'Despre',
'Access Control': 'Control acces',
'admin': 'admin',
'Ajax Recipes': 'Rețete Ajax',
'An error occured, please [[reload %s]] the page': 'An error occured, please [[reload %s]] the page',
'API Example': 'API Example',
'appadmin is disabled because insecure channel': 'appadmin dezactivat deoarece conexiunea nu e sigură',
'Apply changes': 'Apply changes',
'Are you sure you want to delete this object?': 'Sigur ștergeți acest obiect?',
'Authentication code': 'Authentication code',
'Available Databases and Tables': 'Baze de date și tabele disponibile',
"Buy web2py's book": "Buy web2py's book",
'cache': 'cache',
'Cache': 'Cache',
'Cache Cleared': 'Cache Cleared',
'Cache contains items up to **%(hours)02d** %%{hour(hours)} **%(min)02d** %%{minute(min)} **%(sec)02d** %%{second(sec)} old.': 'Cache contains items up to **%(hours)02d** %%{hour(hours)} **%(min)02d** %%{minute(min)} **%(sec)02d** %%{second(sec)} old.',
'Cache Keys': 'Chei cache',
'Cannot be empty': 'Nu poate fi vid',
'Change Password': 'Schimbare parolă',
'Change password': 'Schimbare parolă',
'Check to delete': 'Coșați pentru a șterge',
'Clear CACHE?': 'Clear CACHE?',
'Clear DISK': 'Clear DISK',
'Clear RAM': 'Clear RAM',
'Click on the link %(link)s to reset your password': 'Click on the link %(link)s to reset your password',
'Client IP': 'IP client',
'Community': 'Comunitate',
'Components and Plugins': 'Componente și plugin-uri',
'Config.ini': 'Config.ini',
'Controller': 'Controlor',
'Copyright': 'Drepturi de autor',
'Current request': 'Cerere curentă',
'Current response': 'Răspuns curent',
'Current session': 'Sesiune curentă',
'data uploaded': 'date încărcate',
'Database': 'bază de date',
'Database %s select': 'selectare bază de date %s',
'Database Administration (appadmin)': 'Database Administration (appadmin)',
'db': 'db',
'DB Model': 'Model bază de date',
'Delete:': 'Șterge:',
'Demo': 'Demo',
'Deployment Recipes': 'Rețete de instalare',
'Description': 'Descriere',
'design': 'design',
'Design': 'Design',
'DISK': 'DISK',
'Disk Cache Keys': 'Chei cache de disc',
'Disk Cleared': 'Disk Cleared',
'DISK contains items up to **%(hours)02d** %%{hour(hours)} **%(min)02d** %%{minute(min)} **%(sec)02d** %%{second(sec)} old.': 'DISK contains items up to **%(hours)02d** %%{hour(hours)} **%(min)02d** %%{minute(min)} **%(sec)02d** %%{second(sec)} old.',
'Documentation': 'Documentație',
"Don't know what to do?": 'Nu știți ce să faceți?',
'done!': 'gata!',
'Download': 'Descărcare',
'E-mail': 'E-mail',
'Edit current record': 'Editare înregistrare curentă',
'Email and SMS': 'E-mail și SMS',
'Email sent': 'Email sent',
'Email verification': 'Email verification',
'Email verified': 'Email verified',
'Errors': 'Erori',
'export as csv file': 'exportă ca fișier csv',
'FAQ': 'Întrebări frecvente',
'First name': 'Prenume',
'Forms and Validators': 'Formulare și validatori',
'Free Applications': 'Aplicații gratuite',
'Function disabled': 'Function disabled',
'Graph Model': 'Graph Model',
'Grid Example': 'Grid Example',
'Group %(group_id)s created': 'Grup %(group_id)s creat',
'Group %(group_id)s deleted': 'Group %(group_id)s deleted',
'Group ID': 'ID grup',
'Group uniquely assigned to user %(id)s': 'Grup asociat în mod unic utilizatorului %(id)s',
'Groups': 'Grupuri',
'Hello World': 'Salutare lume',
'Helping web2py': 'Helping web2py',
'Hit Ratio: **%(ratio)s%%** (**%(hits)s** %%{hit(hits)} and **%(misses)s** %%{miss(misses)})': 'Hit Ratio: **%(ratio)s%%** (**%(hits)s** %%{hit(hits)} and **%(misses)s** %%{miss(misses)})',
'Home': 'Acasă',
'How did you get here?': 'Cum ați ajuns aici?',
'import': 'import',
'Import/Export': 'Import/Export',
'Incorrect code. {0} more attempt(s) remaining.': 'Incorrect code. {0} more attempt(s) remaining.',
'Insufficient privileges': 'Insufficient privileges',
'Internal State': 'Stare internă',
'Introduction': 'Introducere',
'Invalid email': 'E-mail invalid',
'Invalid key': 'Invalid key',
'Invalid login': 'Invalid login',
'Invalid password': 'Parolă invalidă',
'Invalid Query': 'Interogare invalidă',
'invalid request': 'cerere invalidă',
'Invalid reset password': 'Invalid reset password',
'Invalid user': 'Invalid user',
'Invalid username': 'Invalid username',
'Invitation to join %(site)s': 'Invitation to join %(site)s',
'Key': 'Key',
'Key verified': 'Key verified',
'Last name': 'Nume',
'Layout': 'Șablon',
'Live Chat': 'Chat live',
'Log In': 'Log In',
'Logged in': 'Logat',
'Logged out': 'Delogat',
'Login': 'Autentificare',
'Login disabled by administrator': 'Login disabled by administrator',
'Logout': 'Ieșire',
'Lost Password': 'Parolă pierdută',
'Lost your password?': 'Lost your password?',
'Manage %(action)s': 'Manage %(action)s',
'Manage Access Control': 'Manage Access Control',
'Manage Cache': 'Manage Cache',
'Memberships': 'Memberships',
'Menu Model': 'Model meniu',
'My Sites': 'Site-urile mele',
'Name': 'Nume',
'New password': 'Parola nouă',
'New Record': 'Înregistrare nouă',
'new record inserted': 'înregistrare nouă adăugată',
'next %s rows': 'next %s rows',
'No databases in this application': 'Aplicație fără bază de date',
'Number of entries: **%s**': 'Number of entries: **%s**',
'Object or table name': 'Obiect sau nume de tabel',
'Old password': 'Parola veche',
'Online book': 'Online book',
'Online examples': 'Exemple online',
'or import from csv file': 'sau importă din fișier csv',
'Origin': 'Origine',
'Other Recipes': 'Alte rețete',
'Overview': 'Prezentare de ansamblu',
'Password': 'Parola',
'Password changed': 'Password changed',
"Password fields don't match": 'Câmpurile de parolă nu se potrivesc',
'Password reset': 'Password reset',
'Password retrieve': 'Password retrieve',
'Permission': 'Permission',
'Permissions': 'Permissions',
'please input your password again': 'introduceți parola din nou',
'Plugins': 'Plugin-uri',
'Powered by': 'Pus în mișcare de',
'Preface': 'Prefață',
'previous %s rows': 'previous %s rows',
'Profile': 'Profil',
'Profile updated': 'Profile updated',
'pygraphviz library not found': 'pygraphviz library not found',
'Python': 'Python',
'Query:': 'Interogare:',
'Quick Examples': 'Exemple rapide',
'RAM': 'RAM',
'RAM Cache Keys': 'Chei cache RAM',
'Ram Cleared': 'Ram Cleared',
'RAM contains items up to **%(hours)02d** %%{hour(hours)} **%(min)02d** %%{minute(min)} **%(sec)02d** %%{second(sec)} old.': 'RAM contains items up to **%(hours)02d** %%{hour(hours)} **%(min)02d** %%{minute(min)} **%(sec)02d** %%{second(sec)} old.',
'Recipes': 'Rețete',
'Record': 'înregistrare',
'Record %(id)s created': 'Record %(id)s created',
'Record %(id)s deleted': 'Record %(id)s deleted',
'Record %(id)s read': 'Record %(id)s read',
'Record %(id)s updated': 'Record %(id)s updated',
'Record Created': 'Record Created',
'Record Deleted': 'Record Deleted',
'record does not exist': 'înregistrare inexistentă',
'Record id': 'id înregistrare',
'Record ID': 'ID înregistrare',
'Record Updated': 'Record Updated',
'Register': 'Înregistrare',
'Registration identifier': 'Identificator de autentificare',
'Registration is pending approval': 'Registration is pending approval',
'Registration key': 'Cheie înregistrare',
'Registration needs verification': 'Registration needs verification',
'Registration successful': 'Autentificare reușită',
'Remember me (for 30 days)': 'Ține-mă minte (timp de 30 de zile)',
'Request reset password': 'Cerere resetare parolă',
'Reset Password key': 'Cheie restare parolă',
'Role': 'Rol',
'Roles': 'Roles',
'Rows in Table': 'Linii în tabel',
'Rows selected': 'Linii selectate',
'Save model as...': 'Save model as...',
'Services': 'Servicii',
'Sign Up': 'Sign Up',
'Sign up': 'Sign up',
'Size of cache:': 'Size of cache:',
'state': 'stare',
'Statistics': 'Statistics',
'Stylesheet': 'Foaie de stiluri',
'submit': 'submit',
'Submit': 'Înregistrează',
'Support': 'Suport',
'Table': 'tabel',
'The "query" is a condition like "db.table1.field1==\'value\'". Something like "db.table1.field1==db.table2.field2" results in a SQL JOIN.': '"Interogarea (query)" este o condiție de tipul "db.tabel1.câmp1==\'valoare\'". Ceva de genul "db.tabel1.câmp1==db.tabel2.câmp2" generează un JOIN SQL.',
'The Core': 'Nucleul',
'The output of the file is a dictionary that was rendered by the view %s': 'Fișierul produce un dicționar care a fost prelucrat de vederea %s',
'The Views': 'Vederile',
'This App': 'Această aplicație',
'This code was emailed to you and is required for login.': 'This code was emailed to you and is required for login.',
'This email already has an account': 'This email already has an account',
'Time in Cache (h:m:s)': 'Time in Cache (h:m:s)',
'Timestamp': 'Moment în timp (timestamp)',
'Traceback': 'Traceback',
'Twitter': 'Twitter',
'Two-step Login Authentication Code': 'Two-step Login Authentication Code',
'unable to parse csv file': 'imposibil de analizat fișierul csv',
'Unable to send email': 'Unable to send email',
'Update:': 'Actualizare:',
'Use (...)&(...) for AND, (...)|(...) for OR, and ~(...) for NOT to build more complex queries.': 'Folosiți (...)&(...) pentru AND, (...)|(...) pentru OR, și ~(...) pentru NOT, pentru a crea interogări complexe.',
'User': 'User',
'User %(id)s is impersonating %(other_id)s': 'User %(id)s is impersonating %(other_id)s',
'User %(id)s Logged-in': 'Utilizator %(id)s autentificat',
'User %(id)s Logged-out': 'Utilizator %(id)s delogat',
'User %(id)s Password changed': 'Parola utilizatorului %(id)s a fost schimbată',
'User %(id)s Password reset': 'Resetare parola utilizator %(id)s',
'User %(id)s Password retrieved': 'User %(id)s Password retrieved',
'User %(id)s Profile updated': 'Profil utilizator %(id)s actualizat',
'User %(id)s Registered': 'Utilizator %(id)s înregistrat',
'User %(id)s Username retrieved': 'User %(id)s Username retrieved',
'User %(id)s Verification email sent': 'User %(id)s Verification email sent',
'User %(id)s verified registration key': 'User %(id)s verified registration key',
'User ID': 'ID utilizator',
'Username': 'Username',
'Username already taken': 'Username already taken',
'Username retrieve': 'Username retrieve',
'Users': 'Users',
'Verify Password': 'Verifică parola',
'Videos': 'Video-uri',
'View': 'Vedere',
'Welcome %(username)s! Click on the link %(link)s to verify your email': 'Welcome %(username)s! Click on the link %(link)s to verify your email',
'Welcome to web2py!': 'Bun venit la web2py!',
'Which called the function %s located in the file %s': 'Care a apelat funcția %s prezentă în fișierul %s',
'Wiki Example': 'Wiki Example',
'Working...': 'Working...',
'You are successfully running web2py': 'Rulați cu succes web2py',
'You can modify this application and adapt it to your needs': 'Puteți modifica și adapta aplicația nevoilor dvs.',
'You have been invited to join %(site)s, click %(link)s to complete the process': 'You have been invited to join %(site)s, click %(link)s to complete the process',
'You visited the url %s': 'Ați vizitat adresa %s',
'Your password is: %(password)s': 'Your password is: %(password)s',
'Your temporary login code is {0}': 'Your temporary login code is {0}',
'Your username is: %(username)s': 'Your username is: %(username)s',
'Your username was emailed to you': 'Your username was emailed to you',
}
|
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)
|
def get_date_restriction_text(tag, events):
"""Generates the text that tells the user the dates that the event they are adding/updating must be in between,
this text changes based on which events already exist, hence the if statements for when reminders are present."""
date_text_dict = {
"mps": [f"Must be before Go Live {_get_event_date_string('go_live', events)}"],
"go_live": [
f"Must be after MPS {_get_event_date_string('mps', events)}",
f"Must be before Return by {_get_event_date_string('return_by', events)}",
],
"return_by": [
f"Must be after Go Live {_get_event_date_string('go_live', events)}",
f"Must be before Exercise end {_get_event_date_string('exercise_end', events)}",
],
"exercise_end": [f"Must be after Return by {_get_event_date_string('return_by', events)}"],
"reminder": [
f"Must be after Go Live {_get_event_date_string('go_live', events)}",
f"Must be before Exercise end {_get_event_date_string('exercise_end', events)}",
],
"reminder2": [
f"Must be after First Reminder {_get_event_date_string('reminder', events)}",
f"Must be before Exercise end {_get_event_date_string('exercise_end', events)}",
],
"reminder3": [
f"Must be after Second Reminder {_get_event_date_string('reminder2', events)}",
f"Must be before Exercise end {_get_event_date_string('exercise_end', events)}",
],
"ref_period_start": [f"Must be before Reference Period end {_get_event_date_string('ref_period_end', events)}"],
"ref_period_end": [
f"Must be after Reference Period start " f"{_get_event_date_string('ref_period_start', events)}"
],
"nudge_email_0": [
"Maximum of five nudge email allowed",
f"Must be after Go Live {_get_event_date_string('go_live', events)}",
f"Must be before Return by {_get_event_date_string('return_by', events)}",
],
"nudge_email_1": [
"Maximum of five nudge email allowed",
f"Must be after Go Live {_get_event_date_string('go_live', events)}",
f"Must be before Return by {_get_event_date_string('return_by', events)}",
],
"nudge_email_2": [
"Maximum of five nudge email allowed",
f"Must be after Go Live {_get_event_date_string('go_live', events)}",
f"Must be before Return by {_get_event_date_string('return_by', events)}",
],
"nudge_email_3": [
"Maximum of five nudge email allowed",
f"Must be after Go Live {_get_event_date_string('go_live', events)}",
f"Must be before Return by {_get_event_date_string('return_by', events)}",
],
"nudge_email_4": [
"Maximum of five nudge email allowed",
f"Must be after Go Live {_get_event_date_string('go_live', events)}",
f"Must be before Return by {_get_event_date_string('return_by', events)}",
],
"employment": None,
}
if _get_event_date_string("reminder2", events):
date_text_dict["reminder"] = [
f"Must be after Go Live {_get_event_date_string('go_live', events)}",
f"Must be before Second Reminder {_get_event_date_string('reminder2', events)}",
]
if _get_event_date_string("reminder3", events):
date_text_dict["reminder2"] = [
f"Must be after First Reminder {_get_event_date_string('reminder', events)}",
f"Must be before Third Reminder {_get_event_date_string('reminder3', events)}",
]
return date_text_dict[tag]
def _get_event_date_string(tag, events):
try:
return f"{events[tag]['day']} {events[tag]['date']} {events[tag]['time']}"
except KeyError:
return ""
|
def load_text(path, num_heads=0, num_samples=-1):
lines = []
with open(path, encoding="utf-8") as f:
if num_heads > 0:
for _ in range(num_heads):
next(f)
for i, line in enumerate(f):
if (num_samples > 0) and (i >= num_samples):
break
lines.append(line.rstrip("\n"))
return lines
def load_parallel_text(source_path, target_path, num_heads=0, num_samples=-1):
sources = load_text(source_path, num_heads, num_samples)
targets = load_text(target_path, num_heads, num_samples)
if len(sources) != len(targets):
raise ValueError("Parallel corpus must have same length two files")
return sources, targets
def load_wikitext(path, num_lines=-1):
"""
Wikitext format
= Head1 =
text ...
text ...
= = 2ead = =
text ...
text ...
"""
if num_lines <= 0:
with open(path, encoding="utf-8") as f:
texts = f.read().split("\n =")
else:
lines = []
with open(path, encoding="utf-8") as f:
for i, line in enumerate(f):
if i >= num_lines:
break
lines.append(line)
texts = "".join(lines).split("\n =")
# fix missing prefix
texts = [texts[0]] + [f" ={text}" for text in texts[1:]]
return texts
|
"""Input an array of numbers, return the sum of all of the positives ones."""
def positive_sum(arr):
"""Return the sum of positive integers in a list of numbers."""
if arr:
return sum([a for a in arr if a > 0])
return 0
|
class animal():
def __init__(self):
print('ANIMAL CREATED')
def eat(self):
print('EATING')
def who_am_i(self):
print('ANIMAL')
# mya=animal()
# mya.eat()
# mya.who_am_i()
# حالا درایو کردن کلاس داگ از انیمال
class dog(animal):
def __init__(self):
# animal.__init__(self)
print('dog created')
def bark(self):
print('barking')
def eat(self):
print('DOG EATING')
myd=dog()
myd.eat()
myd.who_am_i()
# در واقع باید دونست که کلاس ها بسیار مطالب های مفصل تری دارند
# دو پلی لیست رو در یوتیوب اد کردم که بعدا نگاه کنم و زمانی که نگاه کنم فول میشم
# اولا اینگپسولیشن
# دومن درایو کلاس و اینا که به تدریج پیشرفته تر درآنها خواهم شد
print('===============================================')
class Employee():
num_of_emp = 0
raise_amount= 1.04
def __init__(self,first,last,pay):
self.first =first
self.last = last
self.pay = pay
self.email = self.first + "." + self.last +"@Company.com"
Employee.num_of_emp +=1
def full_name(self):
return f" {self.first} {self.last} gets {self.pay}"
def apply_raise(self):
self.pay =int(self.pay)*self.raise_amount
@classmethod
def set_raise_amount(cls,amount):
cls.raise_amount = amount
@classmethod
def from_str(cls,str):
first, last, pay= str.split(' ')
return cls(first,last,pay)
@staticmethod
def is_wrk_day(day):
if day.weekday() == 5 or day.weekday() == 6 :
return False
return True
# ============================================================
class developer(Employee):
raise_amount =1.10
# 1. اگر بخواهیم که برای اینت کردن بک متغیر دیگری بهکلاس بدهیم په
def __init__(self,first,last,pay,programing_lang ):
super().__init__(first,last,pay)
# روش دوم
# Employee.__init__(self,first,last,pay)
self.programing_lang = programing_lang
dev1=developer('mohammad','mohammdian',60000,'python')
dev2 =developer('hasan','alhijri',5000,'java')
print(dev1.email)
print(dev1.programing_lang)
print('==================================')
class manager(Employee):
# همیشه دیتا تایپ ها ی تغییر پذیر مثل آرایه را به طور دیفالت نباید به کلاس یا تابع داد
def __init__(self,first,last,pay,employees=None ):
super().__init__(first,last,pay)
if employees is None:
self.employees = []
else:
self.employees = employees
def add_emp(self,emp):
if emp not in self.employees:
self.employees.append(emp)
def rem_emp(self,emp):
if emp in self.employees :
self.employees.remove(emp)
def list_emp(self):
print (self.full_name()+' managers')
for emp in self.employees :
print('-->',emp.full_name())
mg1 =manager("mitra",'mohammadi',8000,[dev1,dev2])
mg1.rem_emp(dev2)
print(mg1.list_emp()) |
class Solution:
def numMatchingSubseq(self, S: str, words: List[str]) -> int:
"""Array.
Running time: O(s + w) where s == len(S) and w == sum(length of each word in words).
"""
n = len(words)
d = collections.defaultdict(list)
for word in words:
d[word[0]].append(iter(word[1:]))
res = 0
for s in S:
iters = d.pop(s, [])
for i in iters:
d[next(i, "")].append(i)
return len(d[""])
|
training_data = {
"politics": [
"Putin orders troops into pro-Russian regions of eastern Ukraine.",
"The president decided not to go through with his speech.",
"There is much uncertainty surrounding the coming elections.",
"Democrats are engaged in a ‘new politics of evasion’",
],
"sports": [
"The soccer team lost.",
"The team won by two against zero.",
"I love all sport.",
"The olympics were amazing.",
"Yesterday, the tennis players wrapped up wimbledon.",
],
"weather": [
"It is going to be sunny outside.",
"Heavy rainfall and wind during the afternoon.",
"Clear skies in the morning, but mist in the evenening.",
"It is cold during the winter.",
"There is going to be a storm with heavy rainfall.",
],
}
validation_data = ["I am surely talking about politics.", "Sports is all you need.", "Weather is amazing."]
|
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]) |
'''
Given an array of size n, find the majority element. The majority element is the element that appears more than ⌊ n/2 ⌋ times.
You may assume that the array is non-empty and the majority element always exist in the array.
'''
class Solution:
# @param {integer[]} nums
# @return {integer}
def majorityElement(self, nums):
count = 0
result = 0
for num in nums:
if count == 0:
result = num
count += 1
elif result == num:
count += 1
else:
count -= 1
return result
|
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})
|
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
|
# Faça um programa que leia três números e mostre qual é o maior e qual é o menor.
print('-' * 100)
print('{: ^100}'.format('EXERCÍCIO 033 - MAIOR E MENOR VALORES'))
print('-' * 100)
v1 = int(input('Primeiro valor: '))
v2 = int(input('Segundo valor: '))
v3 = int(input('Terceiro valor: '))
menor = v1 # Estamos reduzindo um if ao utilizar essa variável
maior = v1
# Verificando o menor
if v2 < v1 and v2 < v3:
menor = v2
if v3 < v1 and v3 < v2:
menor = v3
# Verificando o maior
if v2 > v1 and v2 > v3:
maior = v2
if v3 > v1 and v3 > v2:
maior = v3
print(f'O menor valor digitado foi: {menor}')
print(f'O maior valor digitado foi: {maior}')
print('-' * 100)
input('Pressione ENTER para sair...')
|
#
# 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)
|
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
|
# 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 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, [])
|
print('\033[32m---\033[m' * 20)
print('\033[32mDescubra se você está em regularidade com o alistamento militar obrigatório!\033[m')
per = int(input('Digite quantos anos você tem: '))
if per < 18:
print(f'Ainda falta(m) {18 - per} ano(s) para você se alistar! ')
elif per == 18:
print('Você está na idade de alistamento!')
else:
print(f'Já se passaram {per - 18} ano(s) da idade de alistamento! Faça o quanto antes!')
print('\033[32m---\033[m' * 20)
|
# 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) |
# 클래스 생성 => 계산기 클래스를 이미 생성했다고 가정해보자.
# 계산기 클래스를 활용한 예제
c1 = Cal(10,10)
print(c1.add())
print(c1.subtract())
c2 = Cal(30,20)
print(c2.add())
print(c2.subtract())
|
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
|
"""
File:baginterface.py
Author:yeyuning
"""
class BagInterface(object):
"""Interface for all bag types"""
# Constructor
def __init__(self, SourceCollection=None):
"""Sets the initial state of self, which includes the contents of sourceCollection,
if it's present."""
pass
# Accessor methods
def isEmpty(self):
"""Returns True if len(self) == 0 or False otherwise."""
return True
def __len__(self):
"""Returns the number of items in self."""
return 0
def __str__(self):
"""Returns the string representation of self."""
return ""
def __iter__(self):
"""Support iteration over a view of self."""
return None
def __add__(self, other):
"""Returns a new bag containing the contents of self and other"""
return None
def __eq__(self, other):
"""Returns True if self equals other, or False otherwise."""
return False
# Mutator methods
def clear(self):
"""Marks self become empty."""
pass
def add(self, item):
"""Adds item to self."""
pass
def remove(self, item):
"""Precondition: item is in self.
Raises: KeyError if item in not in self.
Postcondition: item is removed from self."""
pass
|
# Wraps DB-API 2.0 query results to provide a nice list and dictionary interface.
# Copyright (C) 2002 Dr. Conan C. Albrecht <conan_albrecht@byu.edu>
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2.1 of the License, or (at your option) any later version.
#
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with this library; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
# I created this class and related functions because I like accessing
# database results by field name rather than field number. Accessing
# by field number has many problems: code is less readable, code gets
# broken when field positions change or fields are added or deleted from
# the query, etc.
#
# This class should have little overhead if you are already using fetchall().
# It wraps each result row in a ResultRow class which allows you to
# retrieve results via a dictionary interface (by column name). The regular
# list interface (by column number) is also provided.
#
# I can't believe the DB-API 2.0 api didn't include dictionary-style results.
# I'd love to see the reasoning behind not requiring them of database connection
# classes.
# This module comes from:
# http://aspn.activestate.com/ASPN/Cookbook/Python/Recipe/163605
def get_rows(cursor, sql):
"""Return a list of ResultRow objects from an SQL query."""
# run the query
cursor.execute(sql)
# return the list
return getdict(cursor.fetchall(), cursor.description)
def getdict(results, description):
"""Return the list of DBRows in `results` with a given description."""
# get the field names
fields = {}
for i in range(len(description)):
fields[description[i][0]] = i
# generate the list of DBRow objects
rows = []
for result in results:
rows.append(DBRow(result, fields))
# return to the user
return rows
class DBRow(object):
"""A single row in a result set.
Each DBRow has a dictionary-style and list-style interface.
"""
def __init__(self, row, fields):
"""Called by ResultSet function. Don't call directly"""
self.fields = fields
self.row = row
self._extra_fields = {}
def __repr__(self):
return "<DBrow with %s fields>" % len(self)
def __str__(self):
"""Return a string representation"""
return str(self.row)
def __getattr__(self, attr):
return self.row[self.fields[attr]]
def set_extra_attr(self, attr, value):
self._extra_fields[attr] = value
def __getitem__(self, key):
"""Return the value of the named column"""
if type(key) == type(1): # if a number
return self.row[key]
else: # a field name
return self.row[self.fields[key]]
def __setitem__(self, key, value):
"""Not used in this implementation"""
raise TypeError("can't set an item of a result set")
def __getslice__(self, i, j):
"""Return the value of the numbered column"""
return self.row[i: j]
def __setslice__(self, i, j, list):
"""Not used in this implementation"""
raise TypeError("can't set an item of a result set")
def keys(self):
"""Return the field names"""
return self.fields.keys()
def keymappings(self):
"""Return a dictionary of the keys and their indices in the row"""
return self.fields
def has_key(self, key):
"""Return whether the given key is valid"""
return self.fields.has_key(key)
def as_dict(self):
d = {}
for field_name, pos in self.fields.iteritems():
d[field_name] = self.row[pos]
for field_name, field in self._extra_fields.iteritems():
d[field_name] = field
return d
def __len__(self):
"""Return how many columns are in this row"""
return len(self.row)
def __nonzero__(self):
return len(self.row) != 0
def __eq__(self, other):
## Error if other is not set
if other == None:
return False
return self.fields == other.fields
|
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 UnexpectedError(Exception):
"""Uneforseen Error."""
def __init__(self, message=None):
ErrorMsg = ("An Unexpected Error has occured.")
self.message = (ErrorMsg + " " + message) if message is not None else ErrorMsg
super().__init__(self.message)
class InvalidEncryptionMode(Exception):
"""The encryption mode entered is invalid."""
def __init__(self, mode):
self.ErrorMsg = f"Unsupported Encryption/Decryption Mode: {mode}"
AvailableModes = "AES, DES, Salsa20"
super().__init__(self.ErrorMsg + "\n Currently Supported Modes are: (Case Insensitive): \n " + AvailableModes)
class EmptyDataFile(Exception):
"""The Data File provided is empty."""
def __init__(self, path=None):
self.ErrorMsg = "Data File Provided is empty." if not path else f"{path} is empty."
super().__init__(self.ErrorMsg)
class NotAWAVFile(Exception):
"""The file provided is not a WAV file."""
def __init__(self, path=None):
self.ErrorMsg = "The file provided must be a WAV file." if not path else f"{path} is not a WAV File."
super().__init__(self.ErrorMsg)
class URLError(Exception):
"""The URL provided is invalid."""
def __init__(self):
super().__init__("Invalid URL.")
class FileDoesNotExist(Exception):
"""The path provided is invalid."""
def __init__(self, path=None):
self.ErrorMsg = "File does not exist." if not path else f"{path} is invalid."
super().__init__(self.ErrorMsg)
class LSBError(Exception):
"""LSB must be specified for extraction."""
def __init__(self):
super().__init__("The LSB value must be specified for extraction/retrieval.")
class NBytesError(Exception):
"""NBytes must be specified during extraction/retrieval."""
def __init__(self):
super().__init__("The number of bytes to extract must be specified for extraction/retrieval.")
if __name__ == "__main__":
raise NBytesError()
|
# Definition for binary tree with next pointer.
# class TreeLinkNode(object):
# def __init__(self, x):
# self.val = x
# self.left = None
# self.right = None
# self.next = None
class Solution(object):
def connect(self, root):
"""
:type root: TreeLinkNode
:rtype: nothing
"""
if not root:
return None
root.next = None
self.recurse(root)
def recurse(self, node):
if not node or not node.left:
return
node.left.next = node.right
if node.next:
node.right.next = node.next.left
else:
node.right.next = None
self.recurse(node.left)
self.recurse(node.right)
|
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
Created on Sat Jan 22 18:27:25 2022
@author: victor
"""
def make_pizza(topping='bacon'):
"""Make a single-topping pizza."""
print("Have a " + topping + " pizza!")
make_pizza()
make_pizza('pepperoni') |
# 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 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 |
# !/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
|
# -*- 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)
|
#!/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))
|
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()
|
def common_elements(list1, list2):
"""common elements between two sorted arrays
Arguments:
list1 sorted array
list2 sorted array
Returns:
array with common elements
"""
result = []
visited_elements = []
for item in list1:
index = len(visited_elements)
while index < len(list2):
if(item >= list2[index]):
visited_elements.append(list2[index])
if(item == list2[index]):
result.append(list2[index])
break
index += 1
pass
pass
return result
def common_elements_pro(list1, list2):
pointer1 = 0
pointer2 = 0
result = []
while pointer1 < len(list1) and pointer2 < len(list2):
if(list1[pointer1] == list2[pointer2]):
result.append(list1[pointer1])
pointer1 += 1
pointer2 += 1
if(list1[pointer1] > list2[pointer2]):
pointer2 += 1
else:
pointer1 += 1
return result
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.