content
stringlengths
7
1.05M
fixed_cases
stringlengths
1
1.28M
#!/usr/bin/env python3 # creates a function add_one() from the lambda x: x + 1 add_one = lambda x: x + 1 print(add_one(2))
add_one = lambda x: x + 1 print(add_one(2))
__all__ = ["is_private", "Mirror"] def is_private(attribute): """Return whether an attribute is private.""" return attribute.startswith("_") class Mirror: """Class to access attributes via reflection. :param hide_private: do not include private (according to :any:`is_private`) attributes when reflecting attributes. Default is `True`. :param top_down: if `True`, reflect classes from top (most base, usually :any:`object`) to bottom (most derived, i.e., the type of the instance); otherwise from bottom to top. Default is `True` (top to bottom). """ def __init__(self, hide_private=True, top_down=True): self.hide_private = hide_private self.top_down = top_down def reflect_classes(self, instance): """Return all classes in the method resolution order (MRO) for the given instance's type. :param instance: the object whose classes should be reflected """ classes_bottom_up = type(instance).__mro__ if not self.top_down: return classes_bottom_up return reversed(classes_bottom_up) def reflect_attributes(self, instance): """Return all visible attributes of the given instance. :param instance: the object whose attributes should be reflected """ attributes = [] for klass in self.reflect_classes(instance): slots = klass.__dict__.get("__slots__", None) if slots is not None: attributes.extend( attribute for attribute in self._filter_private_attributes(slots) if hasattr(instance, attribute) ) if hasattr(instance, "__dict__"): attributes.extend(self._filter_private_attributes(instance.__dict__.keys())) return attributes def _filter_private_attributes(self, candidate_attributes): if not self.hide_private: return candidate_attributes return ( attribute for attribute in candidate_attributes if not is_private(attribute) ) def __repr__(self): # No easy way to get EasyRepr in here. "I guide others to a treasure I # cannot possess." return f"Mirror(skip_private={self.hide_private}, top_down={self.top_down})"
__all__ = ['is_private', 'Mirror'] def is_private(attribute): """Return whether an attribute is private.""" return attribute.startswith('_') class Mirror: """Class to access attributes via reflection. :param hide_private: do not include private (according to :any:`is_private`) attributes when reflecting attributes. Default is `True`. :param top_down: if `True`, reflect classes from top (most base, usually :any:`object`) to bottom (most derived, i.e., the type of the instance); otherwise from bottom to top. Default is `True` (top to bottom). """ def __init__(self, hide_private=True, top_down=True): self.hide_private = hide_private self.top_down = top_down def reflect_classes(self, instance): """Return all classes in the method resolution order (MRO) for the given instance's type. :param instance: the object whose classes should be reflected """ classes_bottom_up = type(instance).__mro__ if not self.top_down: return classes_bottom_up return reversed(classes_bottom_up) def reflect_attributes(self, instance): """Return all visible attributes of the given instance. :param instance: the object whose attributes should be reflected """ attributes = [] for klass in self.reflect_classes(instance): slots = klass.__dict__.get('__slots__', None) if slots is not None: attributes.extend((attribute for attribute in self._filter_private_attributes(slots) if hasattr(instance, attribute))) if hasattr(instance, '__dict__'): attributes.extend(self._filter_private_attributes(instance.__dict__.keys())) return attributes def _filter_private_attributes(self, candidate_attributes): if not self.hide_private: return candidate_attributes return (attribute for attribute in candidate_attributes if not is_private(attribute)) def __repr__(self): return f'Mirror(skip_private={self.hide_private}, top_down={self.top_down})'
#!/usr/bin/python # SPDX-License-Identifier: MIT with open("input", "r") as file: depths = list(map(int, file)) differences = [j - i for i, j in zip(depths[:-1], depths[1:])] increases = len([i for i in differences if i > 0]) print(f"number of depth increases: {increases}")
with open('input', 'r') as file: depths = list(map(int, file)) differences = [j - i for (i, j) in zip(depths[:-1], depths[1:])] increases = len([i for i in differences if i > 0]) print(f'number of depth increases: {increases}')
s = input() while len(s) > 10: print(s[0:10], end='\n') s = s[10:] if len(s) != 0: print(s) # Reference: https://cleancode-ws.tistory.com/60 """ s = input() for i in range(0, len(s), 10): print(s[i: i+10]) """
s = input() while len(s) > 10: print(s[0:10], end='\n') s = s[10:] if len(s) != 0: print(s) '\ns = input()\nfor i in range(0, len(s), 10):\n print(s[i: i+10])\n'
cavemap_raw = """4323999434356678989012399854245901359876432101298901239876569892012345896567996545678912345689998921 6319898921234589878923987653129892349989949212347892398765498765423456789469884326789923468998997890 5498767892945678967899876543256789998999898943456789987654329878534567994398765434567894579997876789 7598756789896789656799988654347897897898787899969894198969210989675679865789987645678965989986845678 9987642356789995345789999767658966956987676987898943019898921299789789989898998759789996899895434567 8765421234597893234567899878979654645696545545787892198797993459895995797967439867899989998756523456 9873210123456789145978967989989743234985432123456953987676889567994379976543123978969878987643212677 8654321234599891059899656196899820189876541034567999876545678978989457898991034989454569899876543467 8765432346789932129789543245698721278987632175679789985434899299879768909989549994323798789997654578 9876543459999943398656959366797632368999543286789679876545789349768979219978998943212345695498765679 8987654567899854987847898997987543456987655399896598987656999998657894398769876543101456789329876789 7998766678998769876236987789998787567898867899989467898789679876546796987654989654212567893210989894 6879878789439898765134896578999898678999978999876347999892498765435689996543498765323989964348994943 5667989894323949873256789459899969989799989298765276789901999976523499989432369878554899979767893212 4456998976210239954367892365797654395689990198754345890199898765434678978943458987675789989989989103 3347897654321298765458921234998753234567891259869656789989729879656789567954667898789895698794567924 2256998985434349999567890147899432145678942345998969999877610998789893457895978989899924997643457895 0197899876579569878998921356987553269789653496987898998765431239898921238989989876968999876432346796 1989921989698998767889432387898769998997654989976767999865432378997632345678998765656789997321245989 9879899998997897658978943499949898787898769878765657892976543456796543458989987654245894395460349878 8768778987986986546569765678934987656789898765454345991097694567987654567999998742134589987651298766 7656567996765987432458979899929876545689997654343234789198989798998785688958999821023678987542987654 8543457895454599543567898987898965432398789543210123678999978989109898799767898762124589998963499763 7432568976323987654678987896587898751987678954621234567899868878998969899878987654355678999654598754 6563678996454598785789876543456789899896567976542545689988759767897653978989698776456789498775679876 7674569987887679899899998954587893998765456897678766789977648956789792368994569897568992349896789987 8789678998998799987978989899998941987654347998989877899866537845678989457893556998989641239987896599 9996989469239899976567976798889432398743257789995989999654326534989878968942445989899932398998965456 9765794345999998655456985697778943469854345679954197898765410129798956899321239876787899497899999999 7654654239878899543257894986567954567965466789893246799987654397657645965490399865676798976789987878 6543210198768789954145993214456895699876587898789345678998766498543237896989988754545987545698986767 7659323498756567893239872102345696989987679987678956989999987987632126789879876543234985434767895456 8798944987643476789398765213456989878998793236567897899897899876543245998765987656129876323456789346 9997955698652345679459854323469878767899892105478898998766976987654346789654598761034987654979893234 9986896789821239896567967469598765457894999212345789999845275698766457896543469878236798899897992123 8875989899843345798999897578999854346795698923458897898732154569899598987674878989345899988756789634 7654678998764466989987789989899965234896987894567976987621013456987699698765999999456999879645899546 8463567899876577978996578898659894365689876789678965496434154789998789549896899898767898766434578957 4322456799988789467986459789548789456790245678989654398645865699899899932987998789998999654323467898 3210345989999891239874345678937578968921576789998763219856776789799999891098997656569998765634678959 4421299876789999498763234589425467899432347999899865498987887895679998789129986543467949976545689646 5542989665678998987654345678912348997543598998799986597898998954598987679298765432599234987898795431 6743976564567796598765466789323556789954689898678999986569899323987896567999877653789345698939894310 7769865433475689439876578895434667899899797654589998777476789012396543457899998789898959899323965621 9898764321234678912987889976545978998798976543478997654365692126597632349789109898967898989459875432 6969875430345799323498998797667899457657897652367898743234589987698721234589299987654987678998998745 5456989561256789534679967698799954312445679721458999892123678999899830145678989976543498899897897656 3237898762347897645789854549899543101239998932369898989294569767998764234889679885432459998786789767 6545679654456798789999753234997653212398887893456797679989678955349854345796598754101345987675679878 7656799765767899899899875123989964329987676799569986568678989844239965566897399543212659976564568999 8767949879878999956798765234567895498766565688998765454567897632198987677979987674353598989323656789 9878933989999997345987654347978987987657474567899864323456789543987798789657898765674987643212347898 2989212399899976499899765456789598999843323456798543412345897689976579896546989978786799532101234567 1099923456789897988769896567893459988732012347987632101276889798865456965435678989897899744312345678 2989894569898789876553987878932349876543123457898543242345678997655329876323468996998998765423456899 9878789678987678965432398989321956987654234567998765953456889896543212965414567895469999876536567893 8767679789876569896543459999939897899776876678929878767967996795432109876525678994356987987897678954 7654568998965456789654597899898789999897898789213989879979645689643234987987989789249876598998989865 6543457976434345678969986789787678989969959892102398998796534679865359898998995678998765459789999986 7532369865421237789998995897678459876553345943234567895679845989877899789999434567897654345678998987 8643456976510175893987654589541234985432237899765678954598759992989987678985326789999543256899987799 9754567984323234992199867678920349894321018989887899943698767921399976569876434697698954387929876545 9965678999654345689023978789321298765732147678998999892349878992349989678998556789567895998934984334 9896789698765456795434989897632349876654234567899998789759989789498798789987667898488976789949893213 8789996539876568976765699976543456987769645778998987698998795678997629899998979987569987899898789323 8678789623987878989876789987656567898998756789987654597899654578987510949879989097698998987678678934 6577678910198989099987899999878978999459867897898769986898943139995421234569992198987989766534567965 5464569923239099198798978987989989989234978976789898765567892098986532345678943469876878954323588976 6323467894549198999659767896590195678949899965878987653467894987987645456799654979765767893212789987 7467878995698987888943656987321234789998799894569876542345695986799656777898769898954456794325678999 9878989789987656567892346895499995894987676789678984321237989875678967888959998767893345689634789343 9989795678976545456789498976987889963298545798789995452345678964569898999543989656921239796545895212 8799654345987432367898569299876978954987656789896976563456789543456789212959876967892398987656954101 5698743239874321298987694398765767896799767899965698754689897632345898909899765898993987898787893212 8789842198765453456998789987654656789899879999854569869793998943458967898798654789989796789898965337 9898651019976764567899899876553234899999998999763579878892349894967898987698765678979655679929598656 8999532124987989678921999765454123689998987688932389989921498789898999876549876799768443458913459767 7987693535698998799210198754321014599997698567893499995210988679789498765434987897654312367904599898 6298989545679129898921239895932135679876542348954569874329876565699349954323698998766423778912989989 5129878996989098987892398989893234598765430567895678965498765434598998766464569239976534567899878879 4298767789998997645789997868689395987654321789989789876989954323457979887575698999988785678998767656 9987656679987673234669876546578989998865439896578999989879765545568967998786987989999876799987654343 8764346567895432123456987432446678969976546965456789998769877696678957899899876878913987891098765212 9843213457897641012349996551234569655987697892347999879656989987889345679999985467899999942139876909 9874326567999973253598987767897678934598788901256789765345699898998956798798754376788987659245989898 8765534567899654345696598988969789012479999432346789654236987649567897897649654234567898798967998767 9876645678958987656985459199459892123467987656759896543129876533456789986539867545678989987899879756 1989856789767898769874321012389943234568998767867987321013976512356899876621998656789679876789769845 0198967899878959998765453125678974345899459898978998534123497301245798765433498767896567965398654976 1987698901999239879876875234569865456789345949989987643294989212398999879754699878965459876797743988 9876569892999398767987864345678976567899276932994398784989978934567891989876789999894323987896532399 8765456789878999856998875457899987679998999899875999899876867897678910199997890123789412398965321246 9984345898768897645879987568999998793467989799989899988965456998989329988998943235694325499984210123 9765457987656789734567898979998879912399865689998789877652347899395498977899876545789434989875331234 9876569876545678923456789989987762101987754679987698768341236789219987656789998756789649878989445678 8997699997656789212345898795496543212976763567896549854210145678997697545899989867899998767898986789 7698989698767892101256987656398654323965432356789430969321234567976543234878978998999894854567997891 3569876569898976412345896546239876579876321245695321298763367898965432123458965459998763213458998942 2345965412969994324456789634123998689988432357976763497654456999976543234567898567987654101556789543 0156976323456789534567994321014569795499543568987954698767767894397654545798987678996543232345678954""" cavemap_raw_example = """2199943210 3987894921 9856789892 8767896789 9899965678""" cavemap = list(map(lambda line: list(map(int, list(line))), cavemap_raw.splitlines())) height = len(cavemap) width = len(cavemap[0]) total_risk_level = 0 basin_sizes = [] def get_basin(y, x, known_basin): search_space = [(y, x)] while len(search_space) > 0: (y,x) = search_space.pop() if y < 0 or y == height or x < 0 or x == width: continue # Add everything to search space that isn't already in the basin and is higher than this point. for (candidate_y, candidate_x) in [(y-1, x), (y+1, x), (y, x-1), (y, x+1)]: if candidate_y >= 0 and candidate_y < height and candidate_x >= 0 and candidate_x < width: if cavemap[candidate_y][candidate_x] != 9 and cavemap[y][x] < cavemap[candidate_y][candidate_x]: if (candidate_y, candidate_x) not in known_basin: search_space.append((candidate_y, candidate_x)) known_basin.add((y,x)) return known_basin for y in range(0, height): for x in range (0, width): if ((y == 0 or cavemap[y-1][x] > cavemap[y][x]) and (y == height - 1 or cavemap[y+1][x] > cavemap[y][x]) and (x == 0 or cavemap[y][x-1] > cavemap[y][x]) and (x == width - 1 or cavemap[y][x+1] > cavemap[y][x])): # This is a low point basin_sizes.append(len(get_basin(y, x, {(y,x)}))) total_risk_level += 1 + cavemap[y][x] print(total_risk_level) print(sorted(basin_sizes)) # I plugged the last three into a calculator lol
cavemap_raw = '4323999434356678989012399854245901359876432101298901239876569892012345896567996545678912345689998921\n6319898921234589878923987653129892349989949212347892398765498765423456789469884326789923468998997890\n5498767892945678967899876543256789998999898943456789987654329878534567994398765434567894579997876789\n7598756789896789656799988654347897897898787899969894198969210989675679865789987645678965989986845678\n9987642356789995345789999767658966956987676987898943019898921299789789989898998759789996899895434567\n8765421234597893234567899878979654645696545545787892198797993459895995797967439867899989998756523456\n9873210123456789145978967989989743234985432123456953987676889567994379976543123978969878987643212677\n8654321234599891059899656196899820189876541034567999876545678978989457898991034989454569899876543467\n8765432346789932129789543245698721278987632175679789985434899299879768909989549994323798789997654578\n9876543459999943398656959366797632368999543286789679876545789349768979219978998943212345695498765679\n8987654567899854987847898997987543456987655399896598987656999998657894398769876543101456789329876789\n7998766678998769876236987789998787567898867899989467898789679876546796987654989654212567893210989894\n6879878789439898765134896578999898678999978999876347999892498765435689996543498765323989964348994943\n5667989894323949873256789459899969989799989298765276789901999976523499989432369878554899979767893212\n4456998976210239954367892365797654395689990198754345890199898765434678978943458987675789989989989103\n3347897654321298765458921234998753234567891259869656789989729879656789567954667898789895698794567924\n2256998985434349999567890147899432145678942345998969999877610998789893457895978989899924997643457895\n0197899876579569878998921356987553269789653496987898998765431239898921238989989876968999876432346796\n1989921989698998767889432387898769998997654989976767999865432378997632345678998765656789997321245989\n9879899998997897658978943499949898787898769878765657892976543456796543458989987654245894395460349878\n8768778987986986546569765678934987656789898765454345991097694567987654567999998742134589987651298766\n7656567996765987432458979899929876545689997654343234789198989798998785688958999821023678987542987654\n8543457895454599543567898987898965432398789543210123678999978989109898799767898762124589998963499763\n7432568976323987654678987896587898751987678954621234567899868878998969899878987654355678999654598754\n6563678996454598785789876543456789899896567976542545689988759767897653978989698776456789498775679876\n7674569987887679899899998954587893998765456897678766789977648956789792368994569897568992349896789987\n8789678998998799987978989899998941987654347998989877899866537845678989457893556998989641239987896599\n9996989469239899976567976798889432398743257789995989999654326534989878968942445989899932398998965456\n9765794345999998655456985697778943469854345679954197898765410129798956899321239876787899497899999999\n7654654239878899543257894986567954567965466789893246799987654397657645965490399865676798976789987878\n6543210198768789954145993214456895699876587898789345678998766498543237896989988754545987545698986767\n7659323498756567893239872102345696989987679987678956989999987987632126789879876543234985434767895456\n8798944987643476789398765213456989878998793236567897899897899876543245998765987656129876323456789346\n9997955698652345679459854323469878767899892105478898998766976987654346789654598761034987654979893234\n9986896789821239896567967469598765457894999212345789999845275698766457896543469878236798899897992123\n8875989899843345798999897578999854346795698923458897898732154569899598987674878989345899988756789634\n7654678998764466989987789989899965234896987894567976987621013456987699698765999999456999879645899546\n8463567899876577978996578898659894365689876789678965496434154789998789549896899898767898766434578957\n4322456799988789467986459789548789456790245678989654398645865699899899932987998789998999654323467898\n3210345989999891239874345678937578968921576789998763219856776789799999891098997656569998765634678959\n4421299876789999498763234589425467899432347999899865498987887895679998789129986543467949976545689646\n5542989665678998987654345678912348997543598998799986597898998954598987679298765432599234987898795431\n6743976564567796598765466789323556789954689898678999986569899323987896567999877653789345698939894310\n7769865433475689439876578895434667899899797654589998777476789012396543457899998789898959899323965621\n9898764321234678912987889976545978998798976543478997654365692126597632349789109898967898989459875432\n6969875430345799323498998797667899457657897652367898743234589987698721234589299987654987678998998745\n5456989561256789534679967698799954312445679721458999892123678999899830145678989976543498899897897656\n3237898762347897645789854549899543101239998932369898989294569767998764234889679885432459998786789767\n6545679654456798789999753234997653212398887893456797679989678955349854345796598754101345987675679878\n7656799765767899899899875123989964329987676799569986568678989844239965566897399543212659976564568999\n8767949879878999956798765234567895498766565688998765454567897632198987677979987674353598989323656789\n9878933989999997345987654347978987987657474567899864323456789543987798789657898765674987643212347898\n2989212399899976499899765456789598999843323456798543412345897689976579896546989978786799532101234567\n1099923456789897988769896567893459988732012347987632101276889798865456965435678989897899744312345678\n2989894569898789876553987878932349876543123457898543242345678997655329876323468996998998765423456899\n9878789678987678965432398989321956987654234567998765953456889896543212965414567895469999876536567893\n8767679789876569896543459999939897899776876678929878767967996795432109876525678994356987987897678954\n7654568998965456789654597899898789999897898789213989879979645689643234987987989789249876598998989865\n6543457976434345678969986789787678989969959892102398998796534679865359898998995678998765459789999986\n7532369865421237789998995897678459876553345943234567895679845989877899789999434567897654345678998987\n8643456976510175893987654589541234985432237899765678954598759992989987678985326789999543256899987799\n9754567984323234992199867678920349894321018989887899943698767921399976569876434697698954387929876545\n9965678999654345689023978789321298765732147678998999892349878992349989678998556789567895998934984334\n9896789698765456795434989897632349876654234567899998789759989789498798789987667898488976789949893213\n8789996539876568976765699976543456987769645778998987698998795678997629899998979987569987899898789323\n8678789623987878989876789987656567898998756789987654597899654578987510949879989097698998987678678934\n6577678910198989099987899999878978999459867897898769986898943139995421234569992198987989766534567965\n5464569923239099198798978987989989989234978976789898765567892098986532345678943469876878954323588976\n6323467894549198999659767896590195678949899965878987653467894987987645456799654979765767893212789987\n7467878995698987888943656987321234789998799894569876542345695986799656777898769898954456794325678999\n9878989789987656567892346895499995894987676789678984321237989875678967888959998767893345689634789343\n9989795678976545456789498976987889963298545798789995452345678964569898999543989656921239796545895212\n8799654345987432367898569299876978954987656789896976563456789543456789212959876967892398987656954101\n5698743239874321298987694398765767896799767899965698754689897632345898909899765898993987898787893212\n8789842198765453456998789987654656789899879999854569869793998943458967898798654789989796789898965337\n9898651019976764567899899876553234899999998999763579878892349894967898987698765678979655679929598656\n8999532124987989678921999765454123689998987688932389989921498789898999876549876799768443458913459767\n7987693535698998799210198754321014599997698567893499995210988679789498765434987897654312367904599898\n6298989545679129898921239895932135679876542348954569874329876565699349954323698998766423778912989989\n5129878996989098987892398989893234598765430567895678965498765434598998766464569239976534567899878879\n4298767789998997645789997868689395987654321789989789876989954323457979887575698999988785678998767656\n9987656679987673234669876546578989998865439896578999989879765545568967998786987989999876799987654343\n8764346567895432123456987432446678969976546965456789998769877696678957899899876878913987891098765212\n9843213457897641012349996551234569655987697892347999879656989987889345679999985467899999942139876909\n9874326567999973253598987767897678934598788901256789765345699898998956798798754376788987659245989898\n8765534567899654345696598988969789012479999432346789654236987649567897897649654234567898798967998767\n9876645678958987656985459199459892123467987656759896543129876533456789986539867545678989987899879756\n1989856789767898769874321012389943234568998767867987321013976512356899876621998656789679876789769845\n0198967899878959998765453125678974345899459898978998534123497301245798765433498767896567965398654976\n1987698901999239879876875234569865456789345949989987643294989212398999879754699878965459876797743988\n9876569892999398767987864345678976567899276932994398784989978934567891989876789999894323987896532399\n8765456789878999856998875457899987679998999899875999899876867897678910199997890123789412398965321246\n9984345898768897645879987568999998793467989799989899988965456998989329988998943235694325499984210123\n9765457987656789734567898979998879912399865689998789877652347899395498977899876545789434989875331234\n9876569876545678923456789989987762101987754679987698768341236789219987656789998756789649878989445678\n8997699997656789212345898795496543212976763567896549854210145678997697545899989867899998767898986789\n7698989698767892101256987656398654323965432356789430969321234567976543234878978998999894854567997891\n3569876569898976412345896546239876579876321245695321298763367898965432123458965459998763213458998942\n2345965412969994324456789634123998689988432357976763497654456999976543234567898567987654101556789543\n0156976323456789534567994321014569795499543568987954698767767894397654545798987678996543232345678954' cavemap_raw_example = '2199943210\n3987894921\n9856789892\n8767896789\n9899965678' cavemap = list(map(lambda line: list(map(int, list(line))), cavemap_raw.splitlines())) height = len(cavemap) width = len(cavemap[0]) total_risk_level = 0 basin_sizes = [] def get_basin(y, x, known_basin): search_space = [(y, x)] while len(search_space) > 0: (y, x) = search_space.pop() if y < 0 or y == height or x < 0 or (x == width): continue for (candidate_y, candidate_x) in [(y - 1, x), (y + 1, x), (y, x - 1), (y, x + 1)]: if candidate_y >= 0 and candidate_y < height and (candidate_x >= 0) and (candidate_x < width): if cavemap[candidate_y][candidate_x] != 9 and cavemap[y][x] < cavemap[candidate_y][candidate_x]: if (candidate_y, candidate_x) not in known_basin: search_space.append((candidate_y, candidate_x)) known_basin.add((y, x)) return known_basin for y in range(0, height): for x in range(0, width): if (y == 0 or cavemap[y - 1][x] > cavemap[y][x]) and (y == height - 1 or cavemap[y + 1][x] > cavemap[y][x]) and (x == 0 or cavemap[y][x - 1] > cavemap[y][x]) and (x == width - 1 or cavemap[y][x + 1] > cavemap[y][x]): basin_sizes.append(len(get_basin(y, x, {(y, x)}))) total_risk_level += 1 + cavemap[y][x] print(total_risk_level) print(sorted(basin_sizes))
"""Clean Code in Python - Chapter 3: General Traits of Good Code > Packing / unpacking """ USERS = [(i, f"first_name_{i}", f"last_name_{i}") for i in range(1_000)] class User: """ >>> jsmith = User(1, "John", "Smith") >>> repr(jsmith) "User(1, 'John', 'Smith')" """ def __init__(self, user_id, first_name, last_name): self.user_id = user_id self.first_name = first_name self.last_name = last_name def __repr__(self): return ( f"{self.__class__.__name__}({self.user_id!r}, " f"{self.first_name!r}, " f"{self.last_name!r})" ) def bad_users_from_rows(dbrows) -> list: """A bad case (non-pythonic) of creating ``User``s from DB rows.""" return [User(row[0], row[1], row[2]) for row in dbrows] def users_from_rows(dbrows) -> list: """Create ``User``s from DB rows.""" return [ User(user_id, first_name, last_name) for (user_id, first_name, last_name) in dbrows ]
"""Clean Code in Python - Chapter 3: General Traits of Good Code > Packing / unpacking """ users = [(i, f'first_name_{i}', f'last_name_{i}') for i in range(1000)] class User: """ >>> jsmith = User(1, "John", "Smith") >>> repr(jsmith) "User(1, 'John', 'Smith')" """ def __init__(self, user_id, first_name, last_name): self.user_id = user_id self.first_name = first_name self.last_name = last_name def __repr__(self): return f'{self.__class__.__name__}({self.user_id!r}, {self.first_name!r}, {self.last_name!r})' def bad_users_from_rows(dbrows) -> list: """A bad case (non-pythonic) of creating ``User``s from DB rows.""" return [user(row[0], row[1], row[2]) for row in dbrows] def users_from_rows(dbrows) -> list: """Create ``User``s from DB rows.""" return [user(user_id, first_name, last_name) for (user_id, first_name, last_name) in dbrows]
load("@debian_package_list//:packages_db.bzl", "PACKAGES_DB") load("@rules_deb//deb/internal:virtual_filesystem.bzl", "write_path_to_label_mapping") load("@rules_deb//deb/internal:packages_parser.bzl", "sanitize_package_name") load("@rules_deb//deb/internal:ldconfig.bzl", "create_shlibs_symlinks") def _remove_extension(path, extension): """ Removes the extension from a path. """ return path[:-len(extension)] if path.endswith(extension) else path def lib_info(static_libs, shared_libs): """ Returns a list of library information for the current package. Libraries usually ship with two versions a static library and a shared both of which are located in the same directory with different extensions. This function returns a list of libraries with both of the shared and static versions of the library, or either if only one link mode is available. Args: static_libs: A list of static library paths. shared_libs: A list of shared library paths. Returns: A list of dicts in the format [{'static': static_path, 'shared': shared_path},...]. """ lib_info = {_remove_extension(lib, ".a"): {"static": lib, "shared": None} for lib in static_libs} for shared_lib in shared_libs: if _remove_extension(shared_lib, ".so") in lib_info: lib_info[_remove_extension(shared_lib, ".so")]["shared"] = shared_lib else: lib_info[_remove_extension(shared_lib, ".so")] = {"static": None, "shared": shared_lib} return lib_info.values() def _build_cc_deps_info(repository_ctx, packages_db, break_deps): """ Builds the C/C++ dependencies info. """ # Starlark doesn't support sets, so we can instead use a dict to # deduplicate. return { "@{dep}//:cc_{dep}".format(dep = dep.name): None for dep in packages_db[repository_ctx.name].depends if dep.name not in [ sanitize_package_name(dep) for dep in break_deps ] }.keys() def _build_package_info(repository_ctx, break_deps): return { "name": repository_ctx.name, "cc_deps": _build_cc_deps_info(repository_ctx, PACKAGES_DB, break_deps), } def _file_exists(repository_ctx, path): return repository_ctx.execute(["test", "-f", path]).return_code == 0 def _deb_archive_base_impl(repository_ctx): """ Builds the base Debian archive. """ break_deps = [ sanitize_package_name(dep) for dep in repository_ctx.attr.break_deps ] repository_ctx.download( url = repository_ctx.attr.url, sha256 = repository_ctx.attr.sha256, output = "package.deb", ) repository_ctx.report_progress("Extracting package.") result = repository_ctx.execute(["ar", "x", "package.deb"]) repository_ctx.execute(["rm", "package.deb"]) for archive in ["data.tar.xz", "control.tar.gz"]: # Only extract if the archive exists. if _file_exists(repository_ctx, archive): repository_ctx.extract(archive) repository_ctx.execute(["rm", archive]) if repository_ctx.attr.build_file_content and \ repository_ctx.attr.build_file: fail("Specify either build_file_content or build_file, not both.") if repository_ctx.attr.build_file_content: repository_ctx.file( "BUILD.bazel", repository_ctx.attr.build_file_content, ) else: repository_ctx.symlink(repository_ctx.attr.build_file, "BUILD.bazel") repository_ctx.report_progress("Creating package info.") repository_ctx.file( "package_info.bzl", "INFO = " + str(_build_package_info( repository_ctx, break_deps, )), ) create_shlibs_symlinks(repository_ctx) write_path_to_label_mapping( repository_ctx, PACKAGES_DB[repository_ctx.name].depends, break_deps, ) deb_archive = repository_rule( implementation = _deb_archive_base_impl, attrs = { "url": attr.string( mandatory = True, doc = "The URL of the package to download.", ), "sha256": attr.string( doc = "The SHA256 of the package to download.", ), "build_file": attr.label( doc = "The BUILD file to use for this package.", ), "build_file_content": attr.string( doc = "The content of the BUILD file to use, if 'build_file' is not specified.", ), "break_deps": attr.string_list( doc = "A list of dependencies to break. e.g. libc is provided by the toolchain, but is often depended on by other packages.", ), }, )
load('@debian_package_list//:packages_db.bzl', 'PACKAGES_DB') load('@rules_deb//deb/internal:virtual_filesystem.bzl', 'write_path_to_label_mapping') load('@rules_deb//deb/internal:packages_parser.bzl', 'sanitize_package_name') load('@rules_deb//deb/internal:ldconfig.bzl', 'create_shlibs_symlinks') def _remove_extension(path, extension): """ Removes the extension from a path. """ return path[:-len(extension)] if path.endswith(extension) else path def lib_info(static_libs, shared_libs): """ Returns a list of library information for the current package. Libraries usually ship with two versions a static library and a shared both of which are located in the same directory with different extensions. This function returns a list of libraries with both of the shared and static versions of the library, or either if only one link mode is available. Args: static_libs: A list of static library paths. shared_libs: A list of shared library paths. Returns: A list of dicts in the format [{'static': static_path, 'shared': shared_path},...]. """ lib_info = {_remove_extension(lib, '.a'): {'static': lib, 'shared': None} for lib in static_libs} for shared_lib in shared_libs: if _remove_extension(shared_lib, '.so') in lib_info: lib_info[_remove_extension(shared_lib, '.so')]['shared'] = shared_lib else: lib_info[_remove_extension(shared_lib, '.so')] = {'static': None, 'shared': shared_lib} return lib_info.values() def _build_cc_deps_info(repository_ctx, packages_db, break_deps): """ Builds the C/C++ dependencies info. """ return {'@{dep}//:cc_{dep}'.format(dep=dep.name): None for dep in packages_db[repository_ctx.name].depends if dep.name not in [sanitize_package_name(dep) for dep in break_deps]}.keys() def _build_package_info(repository_ctx, break_deps): return {'name': repository_ctx.name, 'cc_deps': _build_cc_deps_info(repository_ctx, PACKAGES_DB, break_deps)} def _file_exists(repository_ctx, path): return repository_ctx.execute(['test', '-f', path]).return_code == 0 def _deb_archive_base_impl(repository_ctx): """ Builds the base Debian archive. """ break_deps = [sanitize_package_name(dep) for dep in repository_ctx.attr.break_deps] repository_ctx.download(url=repository_ctx.attr.url, sha256=repository_ctx.attr.sha256, output='package.deb') repository_ctx.report_progress('Extracting package.') result = repository_ctx.execute(['ar', 'x', 'package.deb']) repository_ctx.execute(['rm', 'package.deb']) for archive in ['data.tar.xz', 'control.tar.gz']: if _file_exists(repository_ctx, archive): repository_ctx.extract(archive) repository_ctx.execute(['rm', archive]) if repository_ctx.attr.build_file_content and repository_ctx.attr.build_file: fail('Specify either build_file_content or build_file, not both.') if repository_ctx.attr.build_file_content: repository_ctx.file('BUILD.bazel', repository_ctx.attr.build_file_content) else: repository_ctx.symlink(repository_ctx.attr.build_file, 'BUILD.bazel') repository_ctx.report_progress('Creating package info.') repository_ctx.file('package_info.bzl', 'INFO = ' + str(_build_package_info(repository_ctx, break_deps))) create_shlibs_symlinks(repository_ctx) write_path_to_label_mapping(repository_ctx, PACKAGES_DB[repository_ctx.name].depends, break_deps) deb_archive = repository_rule(implementation=_deb_archive_base_impl, attrs={'url': attr.string(mandatory=True, doc='The URL of the package to download.'), 'sha256': attr.string(doc='The SHA256 of the package to download.'), 'build_file': attr.label(doc='The BUILD file to use for this package.'), 'build_file_content': attr.string(doc="The content of the BUILD file to use, if 'build_file' is not specified."), 'break_deps': attr.string_list(doc='A list of dependencies to break. e.g. libc is provided by the toolchain, but is often depended on by other packages.')})
test_str="Codility we test coders" k=14 for i in range(len(test_str)): if len(test_str)==14: print(test_str) elif len(test_str)<14: print(test_str.strip()) else: test_str1=test_str.split() print(test_str1) lenth=len(test_str1) print(lenth) new_array=[] for element in test_str: if len(element)==14: print(test_str) break elif len(element)<14: new_array.append(element) print(new_array) else: print('')
test_str = 'Codility we test coders' k = 14 for i in range(len(test_str)): if len(test_str) == 14: print(test_str) elif len(test_str) < 14: print(test_str.strip()) else: test_str1 = test_str.split() print(test_str1) lenth = len(test_str1) print(lenth) new_array = [] for element in test_str: if len(element) == 14: print(test_str) break elif len(element) < 14: new_array.append(element) print(new_array) else: print('')
""" Write a Python program to print the following floating numbers upto 2 decimal places. """ x = 3.141593 y = 12.99999 print("Original Number: {}".format(x)) print("Formatted Number: {:.2f}".format(x)) print("Original Number: {}".format(y)) print("Formatted Number: {:.2f}".format(y))
""" Write a Python program to print the following floating numbers upto 2 decimal places. """ x = 3.141593 y = 12.99999 print('Original Number: {}'.format(x)) print('Formatted Number: {:.2f}'.format(x)) print('Original Number: {}'.format(y)) print('Formatted Number: {:.2f}'.format(y))
# # PySNMP MIB module PDN-DNS-MIB (http://snmplabs.com/pysmi) # ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/PDN-DNS-MIB # Produced by pysmi-0.3.4 at Wed May 1 14:38:29 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) # OctetString, ObjectIdentifier, Integer = mibBuilder.importSymbols("ASN1", "OctetString", "ObjectIdentifier", "Integer") NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues") ConstraintsIntersection, ValueRangeConstraint, ConstraintsUnion, SingleValueConstraint, ValueSizeConstraint = mibBuilder.importSymbols("ASN1-REFINEMENT", "ConstraintsIntersection", "ValueRangeConstraint", "ConstraintsUnion", "SingleValueConstraint", "ValueSizeConstraint") pdn_dns, = mibBuilder.importSymbols("PDN-HEADER-MIB", "pdn-dns") DomainName, DNSServerType = mibBuilder.importSymbols("PDN-TC", "DomainName", "DNSServerType") NotificationGroup, ModuleCompliance = mibBuilder.importSymbols("SNMPv2-CONF", "NotificationGroup", "ModuleCompliance") Counter64, iso, Bits, ModuleIdentity, Gauge32, Unsigned32, Integer32, MibIdentifier, MibScalar, MibTable, MibTableRow, MibTableColumn, Counter32, ObjectIdentity, TimeTicks, IpAddress, NotificationType = mibBuilder.importSymbols("SNMPv2-SMI", "Counter64", "iso", "Bits", "ModuleIdentity", "Gauge32", "Unsigned32", "Integer32", "MibIdentifier", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "Counter32", "ObjectIdentity", "TimeTicks", "IpAddress", "NotificationType") RowStatus, DisplayString, TextualConvention = mibBuilder.importSymbols("SNMPv2-TC", "RowStatus", "DisplayString", "TextualConvention") pdnDNSMIBObjects = MibIdentifier((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 17, 1)) pdnDNSMIBTraps = MibIdentifier((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 17, 2)) devDNSDefaultDomainName = MibScalar((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 17, 1, 1), DomainName()).setMaxAccess("readwrite") if mibBuilder.loadTexts: devDNSDefaultDomainName.setStatus('mandatory') if mibBuilder.loadTexts: devDNSDefaultDomainName.setDescription('the object allows the NMS to configure the default domain name for the device') devDNSRetryTimeout = MibScalar((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 17, 1, 2), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: devDNSRetryTimeout.setStatus('mandatory') if mibBuilder.loadTexts: devDNSRetryTimeout.setDescription('the object allows the NMS to configure in seconds the time to wait for a response from a DNS server. The default value for this object is 5') devDNSMaxRetries = MibScalar((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 17, 1, 3), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: devDNSMaxRetries.setStatus('mandatory') if mibBuilder.loadTexts: devDNSMaxRetries.setDescription('the object allows the NMS to configure the number of maximum number of retires by the device before giving up or trying one of the secondary DNS servers if they have been configured. The default value for this object is 2') devDNSServerTable = MibTable((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 17, 1, 4), ) if mibBuilder.loadTexts: devDNSServerTable.setStatus('mandatory') if mibBuilder.loadTexts: devDNSServerTable.setDescription('A Table that contains information about the DNS server IP addresses') devDNSServerEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 17, 1, 4, 1), ).setIndexNames((0, "PDN-DNS-MIB", "devDNSServerIP")) if mibBuilder.loadTexts: devDNSServerEntry.setStatus('mandatory') if mibBuilder.loadTexts: devDNSServerEntry.setDescription('A Table that contains information about the DNS server IP addresses') devDNSServerIP = MibTableColumn((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 17, 1, 4, 1, 1), IpAddress()).setMaxAccess("readonly") if mibBuilder.loadTexts: devDNSServerIP.setStatus('mandatory') if mibBuilder.loadTexts: devDNSServerIP.setDescription('This Objects allows an NMS to configure a DNS server IP address Default value is 1') devDNSServerType = MibTableColumn((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 17, 1, 4, 1, 2), DNSServerType()).setMaxAccess("readwrite") if mibBuilder.loadTexts: devDNSServerType.setStatus('mandatory') if mibBuilder.loadTexts: devDNSServerType.setDescription('This Objects allows an NMS to specify whether the Server IP address is the primary DNS server or the secondary DNS server. Only One Primary DNS server is allowed to be configured.') devDNSRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 17, 1, 4, 1, 3), RowStatus()).setMaxAccess("readwrite") if mibBuilder.loadTexts: devDNSRowStatus.setStatus('mandatory') if mibBuilder.loadTexts: devDNSRowStatus.setDescription('Use CreateAndGo to Create a new object. use Destroy to remove an entry from this table') devHostMappingTable = MibTable((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 17, 1, 5), ) if mibBuilder.loadTexts: devHostMappingTable.setStatus('mandatory') if mibBuilder.loadTexts: devHostMappingTable.setDescription('A Table that contains information about host names for devices') devHostMappingEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 17, 1, 5, 1), ).setIndexNames((0, "PDN-DNS-MIB", "devHostMappingIpAddress")) if mibBuilder.loadTexts: devHostMappingEntry.setStatus('mandatory') if mibBuilder.loadTexts: devHostMappingEntry.setDescription('An entry that contains information about a device host name') devHostMappingIpAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 17, 1, 5, 1, 1), IpAddress()).setMaxAccess("readonly") if mibBuilder.loadTexts: devHostMappingIpAddress.setStatus('mandatory') if mibBuilder.loadTexts: devHostMappingIpAddress.setDescription('This object contains the IP Address of the host') devHostMappingHostName = MibTableColumn((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 17, 1, 5, 1, 2), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(1, 64))).setMaxAccess("readwrite") if mibBuilder.loadTexts: devHostMappingHostName.setStatus('mandatory') if mibBuilder.loadTexts: devHostMappingHostName.setDescription('This object contains the name of the host') devHostMappingRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 17, 1, 5, 1, 3), RowStatus()).setMaxAccess("readwrite") if mibBuilder.loadTexts: devHostMappingRowStatus.setStatus('mandatory') if mibBuilder.loadTexts: devHostMappingRowStatus.setDescription('This object is used to create or delete a row from the table') mibBuilder.exportSymbols("PDN-DNS-MIB", devDNSServerEntry=devDNSServerEntry, devDNSRowStatus=devDNSRowStatus, devDNSServerType=devDNSServerType, pdnDNSMIBObjects=pdnDNSMIBObjects, devHostMappingIpAddress=devHostMappingIpAddress, devHostMappingHostName=devHostMappingHostName, pdnDNSMIBTraps=pdnDNSMIBTraps, devDNSMaxRetries=devDNSMaxRetries, devDNSServerIP=devDNSServerIP, devHostMappingTable=devHostMappingTable, devDNSRetryTimeout=devDNSRetryTimeout, devHostMappingEntry=devHostMappingEntry, devHostMappingRowStatus=devHostMappingRowStatus, devDNSServerTable=devDNSServerTable, devDNSDefaultDomainName=devDNSDefaultDomainName)
(octet_string, object_identifier, integer) = mibBuilder.importSymbols('ASN1', 'OctetString', 'ObjectIdentifier', 'Integer') (named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues') (constraints_intersection, value_range_constraint, constraints_union, single_value_constraint, value_size_constraint) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'ConstraintsIntersection', 'ValueRangeConstraint', 'ConstraintsUnion', 'SingleValueConstraint', 'ValueSizeConstraint') (pdn_dns,) = mibBuilder.importSymbols('PDN-HEADER-MIB', 'pdn-dns') (domain_name, dns_server_type) = mibBuilder.importSymbols('PDN-TC', 'DomainName', 'DNSServerType') (notification_group, module_compliance) = mibBuilder.importSymbols('SNMPv2-CONF', 'NotificationGroup', 'ModuleCompliance') (counter64, iso, bits, module_identity, gauge32, unsigned32, integer32, mib_identifier, mib_scalar, mib_table, mib_table_row, mib_table_column, counter32, object_identity, time_ticks, ip_address, notification_type) = mibBuilder.importSymbols('SNMPv2-SMI', 'Counter64', 'iso', 'Bits', 'ModuleIdentity', 'Gauge32', 'Unsigned32', 'Integer32', 'MibIdentifier', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn', 'Counter32', 'ObjectIdentity', 'TimeTicks', 'IpAddress', 'NotificationType') (row_status, display_string, textual_convention) = mibBuilder.importSymbols('SNMPv2-TC', 'RowStatus', 'DisplayString', 'TextualConvention') pdn_dnsmib_objects = mib_identifier((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 17, 1)) pdn_dnsmib_traps = mib_identifier((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 17, 2)) dev_dns_default_domain_name = mib_scalar((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 17, 1, 1), domain_name()).setMaxAccess('readwrite') if mibBuilder.loadTexts: devDNSDefaultDomainName.setStatus('mandatory') if mibBuilder.loadTexts: devDNSDefaultDomainName.setDescription('the object allows the NMS to configure the default domain name for the device') dev_dns_retry_timeout = mib_scalar((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 17, 1, 2), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: devDNSRetryTimeout.setStatus('mandatory') if mibBuilder.loadTexts: devDNSRetryTimeout.setDescription('the object allows the NMS to configure in seconds the time to wait for a response from a DNS server. The default value for this object is 5') dev_dns_max_retries = mib_scalar((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 17, 1, 3), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: devDNSMaxRetries.setStatus('mandatory') if mibBuilder.loadTexts: devDNSMaxRetries.setDescription('the object allows the NMS to configure the number of maximum number of retires by the device before giving up or trying one of the secondary DNS servers if they have been configured. The default value for this object is 2') dev_dns_server_table = mib_table((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 17, 1, 4)) if mibBuilder.loadTexts: devDNSServerTable.setStatus('mandatory') if mibBuilder.loadTexts: devDNSServerTable.setDescription('A Table that contains information about the DNS server IP addresses') dev_dns_server_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 17, 1, 4, 1)).setIndexNames((0, 'PDN-DNS-MIB', 'devDNSServerIP')) if mibBuilder.loadTexts: devDNSServerEntry.setStatus('mandatory') if mibBuilder.loadTexts: devDNSServerEntry.setDescription('A Table that contains information about the DNS server IP addresses') dev_dns_server_ip = mib_table_column((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 17, 1, 4, 1, 1), ip_address()).setMaxAccess('readonly') if mibBuilder.loadTexts: devDNSServerIP.setStatus('mandatory') if mibBuilder.loadTexts: devDNSServerIP.setDescription('This Objects allows an NMS to configure a DNS server IP address Default value is 1') dev_dns_server_type = mib_table_column((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 17, 1, 4, 1, 2), dns_server_type()).setMaxAccess('readwrite') if mibBuilder.loadTexts: devDNSServerType.setStatus('mandatory') if mibBuilder.loadTexts: devDNSServerType.setDescription('This Objects allows an NMS to specify whether the Server IP address is the primary DNS server or the secondary DNS server. Only One Primary DNS server is allowed to be configured.') dev_dns_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 17, 1, 4, 1, 3), row_status()).setMaxAccess('readwrite') if mibBuilder.loadTexts: devDNSRowStatus.setStatus('mandatory') if mibBuilder.loadTexts: devDNSRowStatus.setDescription('Use CreateAndGo to Create a new object. use Destroy to remove an entry from this table') dev_host_mapping_table = mib_table((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 17, 1, 5)) if mibBuilder.loadTexts: devHostMappingTable.setStatus('mandatory') if mibBuilder.loadTexts: devHostMappingTable.setDescription('A Table that contains information about host names for devices') dev_host_mapping_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 17, 1, 5, 1)).setIndexNames((0, 'PDN-DNS-MIB', 'devHostMappingIpAddress')) if mibBuilder.loadTexts: devHostMappingEntry.setStatus('mandatory') if mibBuilder.loadTexts: devHostMappingEntry.setDescription('An entry that contains information about a device host name') dev_host_mapping_ip_address = mib_table_column((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 17, 1, 5, 1, 1), ip_address()).setMaxAccess('readonly') if mibBuilder.loadTexts: devHostMappingIpAddress.setStatus('mandatory') if mibBuilder.loadTexts: devHostMappingIpAddress.setDescription('This object contains the IP Address of the host') dev_host_mapping_host_name = mib_table_column((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 17, 1, 5, 1, 2), display_string().subtype(subtypeSpec=value_size_constraint(1, 64))).setMaxAccess('readwrite') if mibBuilder.loadTexts: devHostMappingHostName.setStatus('mandatory') if mibBuilder.loadTexts: devHostMappingHostName.setDescription('This object contains the name of the host') dev_host_mapping_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 17, 1, 5, 1, 3), row_status()).setMaxAccess('readwrite') if mibBuilder.loadTexts: devHostMappingRowStatus.setStatus('mandatory') if mibBuilder.loadTexts: devHostMappingRowStatus.setDescription('This object is used to create or delete a row from the table') mibBuilder.exportSymbols('PDN-DNS-MIB', devDNSServerEntry=devDNSServerEntry, devDNSRowStatus=devDNSRowStatus, devDNSServerType=devDNSServerType, pdnDNSMIBObjects=pdnDNSMIBObjects, devHostMappingIpAddress=devHostMappingIpAddress, devHostMappingHostName=devHostMappingHostName, pdnDNSMIBTraps=pdnDNSMIBTraps, devDNSMaxRetries=devDNSMaxRetries, devDNSServerIP=devDNSServerIP, devHostMappingTable=devHostMappingTable, devDNSRetryTimeout=devDNSRetryTimeout, devHostMappingEntry=devHostMappingEntry, devHostMappingRowStatus=devHostMappingRowStatus, devDNSServerTable=devDNSServerTable, devDNSDefaultDomainName=devDNSDefaultDomainName)
hexnum = input() number = int(hexnum,16) if(number % 2 == 0): print(0) else: print(1)
hexnum = input() number = int(hexnum, 16) if number % 2 == 0: print(0) else: print(1)
class Solution: def wordPatternMatch(self, pattern: str, str: str) -> bool: table = {} mapped = set() def dfs(pstart, sstart): if pstart == len(pattern): return sstart == len(str) for i in range(sstart, len(str)): if len(str) - i < len(pattern) - pstart: break temp = str[sstart : i + 1] if temp in table: if table[temp] != pattern[pstart]: continue elif dfs(pstart + 1, i + 1): return True elif pattern[pstart] not in mapped: table[temp] = pattern[pstart] mapped.add(pattern[pstart]) if dfs(pstart + 1, i + 1): return True del table[temp] mapped.remove(pattern[pstart]) return False return dfs(0, 0)
class Solution: def word_pattern_match(self, pattern: str, str: str) -> bool: table = {} mapped = set() def dfs(pstart, sstart): if pstart == len(pattern): return sstart == len(str) for i in range(sstart, len(str)): if len(str) - i < len(pattern) - pstart: break temp = str[sstart:i + 1] if temp in table: if table[temp] != pattern[pstart]: continue elif dfs(pstart + 1, i + 1): return True elif pattern[pstart] not in mapped: table[temp] = pattern[pstart] mapped.add(pattern[pstart]) if dfs(pstart + 1, i + 1): return True del table[temp] mapped.remove(pattern[pstart]) return False return dfs(0, 0)
"""Rules for running JavaScript programs""" load( "//js/private:js_binary.bzl", _js_binary = "js_binary", _js_binary_lib = "js_binary_lib", _js_test = "js_test", ) load( "//js/private:js_package.bzl", _JsPackageInfo = "JsPackageInfo", _js_package = "js_package", _js_package_lib = "js_package_lib", ) load( "//js/private:link_js_package.bzl", _link_js_package = "link_js_package", _link_js_package_dep = "link_js_package_dep", ) load( "//js/private:pnpm_utils.bzl", _pnpm_utils = "pnpm_utils", ) def js_binary(**kwargs): _js_binary( enable_runfiles = select({ "@aspect_rules_js//js/private:enable_runfiles": True, "//conditions:default": False, }), **kwargs ) def js_test(**kwargs): _js_test( enable_runfiles = select({ "@aspect_rules_js//js/private:enable_runfiles": True, "//conditions:default": False, }), **kwargs ) js_package = _js_package JsPackageInfo = _JsPackageInfo link_js_package = _link_js_package link_js_package_dep = _link_js_package_dep # export the starlark libraries as a public API js_binary_lib = _js_binary_lib js_package_lib = _js_package_lib # export constants since users might not always have syntax sugar constants = struct( # Prefix for link_js_package_direct links direct_link_prefix = _pnpm_utils.direct_link_prefix, # Prefix for link_js_package_store links store_link_prefix = _pnpm_utils.store_link_prefix, # Suffix for package directory filegroup and alias targets dir_suffix = _pnpm_utils.dir_suffix, ) # export utils since users might not always have syntax sugar utils = struct( # Prefix for link_js_package_direct links bazel_name = _pnpm_utils.bazel_name, )
"""Rules for running JavaScript programs""" load('//js/private:js_binary.bzl', _js_binary='js_binary', _js_binary_lib='js_binary_lib', _js_test='js_test') load('//js/private:js_package.bzl', _JsPackageInfo='JsPackageInfo', _js_package='js_package', _js_package_lib='js_package_lib') load('//js/private:link_js_package.bzl', _link_js_package='link_js_package', _link_js_package_dep='link_js_package_dep') load('//js/private:pnpm_utils.bzl', _pnpm_utils='pnpm_utils') def js_binary(**kwargs): _js_binary(enable_runfiles=select({'@aspect_rules_js//js/private:enable_runfiles': True, '//conditions:default': False}), **kwargs) def js_test(**kwargs): _js_test(enable_runfiles=select({'@aspect_rules_js//js/private:enable_runfiles': True, '//conditions:default': False}), **kwargs) js_package = _js_package js_package_info = _JsPackageInfo link_js_package = _link_js_package link_js_package_dep = _link_js_package_dep js_binary_lib = _js_binary_lib js_package_lib = _js_package_lib constants = struct(direct_link_prefix=_pnpm_utils.direct_link_prefix, store_link_prefix=_pnpm_utils.store_link_prefix, dir_suffix=_pnpm_utils.dir_suffix) utils = struct(bazel_name=_pnpm_utils.bazel_name)
def quick_sort(given_list): if len(given_list) < 1: return given_list else: pivot_element = given_list[0] #here I am choosing the first element to be a pivot left = quick_sort([element for element in given_list[1:] if element < pivot_element]) # moving smaller to left right = quick_sort([element for element in given_list[1:] if element > pivot_element]) #moving greater to right return left + [pivot_element] + right #usage mylist=[8,5,9,4,3,7,2,12,10] print (quick_sort(mylist))
def quick_sort(given_list): if len(given_list) < 1: return given_list else: pivot_element = given_list[0] left = quick_sort([element for element in given_list[1:] if element < pivot_element]) right = quick_sort([element for element in given_list[1:] if element > pivot_element]) return left + [pivot_element] + right mylist = [8, 5, 9, 4, 3, 7, 2, 12, 10] print(quick_sort(mylist))
class Solution(object): def isPalindrome(self, s): """ :type s: str :rtype: bool """ target = '' ordA = ord('A') ordZ = ord('Z') orda = ord('a') for c in s: if not c.isalnum(): continue ordC = ord(c) if ordC >= ordA and ordC <= ordZ: c = chr(ordC - ordA + orda) target += c left = 0 right = len(target) - 1 while left <= right: if target[left] != target[right]: return False left += 1 right -= 1 return True s = Solution() print(s.isPalindrome("A man, a plan, a canal: Panama"))
class Solution(object): def is_palindrome(self, s): """ :type s: str :rtype: bool """ target = '' ord_a = ord('A') ord_z = ord('Z') orda = ord('a') for c in s: if not c.isalnum(): continue ord_c = ord(c) if ordC >= ordA and ordC <= ordZ: c = chr(ordC - ordA + orda) target += c left = 0 right = len(target) - 1 while left <= right: if target[left] != target[right]: return False left += 1 right -= 1 return True s = solution() print(s.isPalindrome('A man, a plan, a canal: Panama'))
# Copyright (c) 2012 The Chromium Authors. All rights reserved. # Use of this source code is governed by a BSD-style license that can be # found in the LICENSE file. { 'variables': { 'chromium_code': 1, }, 'includes': [ 'ui_resources.gypi', ], 'targets': [ { 'target_name': 'ui', 'type': '<(component)', 'variables': { 'enable_wexit_time_destructors': 1, }, 'includes': [ 'base/ime/ime.gypi', ], 'dependencies': [ '../base/base.gyp:base', '../base/base.gyp:base_i18n', '../base/base.gyp:base_static', '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic_annotations', '../build/temp_gyp/googleurl.gyp:googleurl', '../net/net.gyp:net', '../skia/skia.gyp:skia', '../third_party/icu/icu.gyp:icui18n', '../third_party/icu/icu.gyp:icuuc', '../third_party/libpng/libpng.gyp:libpng', '../third_party/zlib/zlib.gyp:zlib', 'base/strings/ui_strings.gyp:ui_strings', 'ui_resources_standard', '<(libjpeg_gyp_path):libjpeg', ], 'defines': [ 'UI_IMPLEMENTATION', ], # Export these dependencies since text_elider.h includes ICU headers. 'export_dependent_settings': [ '../net/net.gyp:net', '../third_party/icu/icu.gyp:icui18n', '../third_party/icu/icu.gyp:icuuc', ], 'sources': [ 'base/accelerators/accelerator.cc', 'base/accelerators/accelerator.h', 'base/accelerators/accelerator_cocoa.h', 'base/accelerators/accelerator_cocoa.mm', 'base/accelerators/accelerator_gtk.cc', 'base/accelerators/accelerator_gtk.h', 'base/accelerators/accelerator_manager.cc', 'base/accelerators/accelerator_manager.h', 'base/accessibility/accessibility_types.h', 'base/accessibility/accessible_text_utils.cc', 'base/accessibility/accessible_text_utils.h', 'base/accessibility/accessible_view_state.cc', 'base/accessibility/accessible_view_state.h', 'base/animation/animation.cc', 'base/animation/animation.h', 'base/animation/animation_container.cc', 'base/animation/animation_container.h', 'base/animation/animation_container_element.h', 'base/animation/animation_container_observer.h', 'base/animation/animation_delegate.h', 'base/animation/linear_animation.cc', 'base/animation/linear_animation.h', 'base/animation/multi_animation.cc', 'base/animation/multi_animation.h', 'base/animation/slide_animation.cc', 'base/animation/slide_animation.h', 'base/animation/throb_animation.cc', 'base/animation/throb_animation.h', 'base/animation/tween.cc', 'base/animation/tween.h', 'base/clipboard/clipboard.cc', 'base/clipboard/clipboard.h', 'base/clipboard/clipboard_android.cc', 'base/clipboard/clipboard_aurax11.cc', 'base/clipboard/clipboard_gtk.cc', 'base/clipboard/clipboard_mac.mm', 'base/clipboard/clipboard_util_win.cc', 'base/clipboard/clipboard_util_win.h', 'base/clipboard/clipboard_win.cc', 'base/clipboard/custom_data_helper.cc', 'base/clipboard/custom_data_helper.h', 'base/clipboard/custom_data_helper_mac.mm', 'base/clipboard/custom_data_helper_x.cc', 'base/clipboard/scoped_clipboard_writer.cc', 'base/clipboard/scoped_clipboard_writer.h', 'base/cocoa/base_view.h', 'base/cocoa/base_view.mm', 'base/cocoa/events_mac.mm', 'base/cocoa/find_pasteboard.h', 'base/cocoa/find_pasteboard.mm', 'base/cocoa/focus_tracker.h', 'base/cocoa/focus_tracker.mm', 'base/cocoa/fullscreen_window_manager.h', 'base/cocoa/fullscreen_window_manager.mm', 'base/cocoa/nib_loading.h', 'base/cocoa/nib_loading.mm', 'base/cocoa/underlay_opengl_hosting_window.h', 'base/cocoa/underlay_opengl_hosting_window.mm', 'base/cocoa/window_size_constants.h', 'base/cocoa/window_size_constants.mm', 'base/cursor/cursor.cc', 'base/cursor/cursor.h', 'base/cursor/cursor_win.cc', 'base/cursor/cursor_x11.cc', 'base/dragdrop/cocoa_dnd_util.h', 'base/dragdrop/cocoa_dnd_util.mm', 'base/dragdrop/drag_drop_types_gtk.cc', 'base/dragdrop/drag_drop_types.h', 'base/dragdrop/drag_drop_types_win.cc', 'base/dragdrop/drag_source.cc', 'base/dragdrop/drag_source.h', 'base/dragdrop/drop_target.cc', 'base/dragdrop/drop_target.h', 'base/dragdrop/drag_utils.cc', 'base/dragdrop/drag_utils.h', 'base/dragdrop/drag_utils_aura.cc', 'base/dragdrop/drag_utils_gtk.cc', 'base/dragdrop/drag_utils_win.cc', 'base/dragdrop/gtk_dnd_util.cc', 'base/dragdrop/gtk_dnd_util.h', 'base/dragdrop/os_exchange_data.cc', 'base/dragdrop/os_exchange_data.h', 'base/dragdrop/os_exchange_data_provider_aura.cc', 'base/dragdrop/os_exchange_data_provider_aura.h', 'base/dragdrop/os_exchange_data_provider_gtk.cc', 'base/dragdrop/os_exchange_data_provider_gtk.h', 'base/dragdrop/os_exchange_data_provider_win.cc', 'base/dragdrop/os_exchange_data_provider_win.h', 'base/events.h', 'base/gestures/gesture_configuration.cc', 'base/gestures/gesture_configuration.h', 'base/gestures/gesture_point.cc', 'base/gestures/gesture_point.h', 'base/gestures/gesture_recognizer.h', 'base/gestures/gesture_recognizer_impl.cc', 'base/gestures/gesture_recognizer_impl.h', 'base/gestures/gesture_sequence.cc', 'base/gestures/gesture_sequence.h', 'base/gestures/velocity_calculator.cc', 'base/gestures/velocity_calculator.h', 'base/gtk/event_synthesis_gtk.cc', 'base/gtk/event_synthesis_gtk.h', 'base/gtk/focus_store_gtk.cc', 'base/gtk/focus_store_gtk.h', 'base/gtk/g_object_destructor_filo.cc', 'base/gtk/g_object_destructor_filo.h', 'base/gtk/gtk_expanded_container.cc', 'base/gtk/gtk_expanded_container.h', 'base/gtk/gtk_floating_container.cc', 'base/gtk/gtk_floating_container.h', 'base/gtk/gtk_im_context_util.cc', 'base/gtk/gtk_im_context_util.h', 'base/gtk/gtk_hig_constants.h', 'base/gtk/gtk_screen_util.cc', 'base/gtk/gtk_screen_util.h', 'base/gtk/gtk_signal.h', 'base/gtk/gtk_signal_registrar.cc', 'base/gtk/gtk_signal_registrar.h', 'base/gtk/gtk_windowing.cc', 'base/gtk/gtk_windowing.h', 'base/gtk/menu_label_accelerator_util.cc', 'base/gtk/menu_label_accelerator_util.h', 'base/gtk/owned_widget_gtk.cc', 'base/gtk/owned_widget_gtk.h', 'base/gtk/scoped_gobject.h', 'base/gtk/scoped_region.cc', 'base/gtk/scoped_region.h', 'base/hit_test.h', 'base/keycodes/keyboard_code_conversion.cc', 'base/keycodes/keyboard_code_conversion.h', 'base/keycodes/keyboard_code_conversion_gtk.cc', 'base/keycodes/keyboard_code_conversion_gtk.h', 'base/keycodes/keyboard_code_conversion_mac.h', 'base/keycodes/keyboard_code_conversion_mac.mm', 'base/keycodes/keyboard_code_conversion_win.cc', 'base/keycodes/keyboard_code_conversion_win.h', 'base/keycodes/keyboard_code_conversion_x.cc', 'base/keycodes/keyboard_code_conversion_x.h', 'base/keycodes/keyboard_codes.h', 'base/l10n/l10n_font_util.cc', 'base/l10n/l10n_font_util.h', 'base/l10n/l10n_util.cc', 'base/l10n/l10n_util.h', 'base/l10n/l10n_util_collator.h', 'base/l10n/l10n_util_mac.h', 'base/l10n/l10n_util_mac.mm', 'base/l10n/l10n_util_posix.cc', 'base/l10n/l10n_util_win.cc', 'base/l10n/l10n_util_win.h', 'base/layout.cc', 'base/layout.h', 'base/models/button_menu_item_model.cc', 'base/models/button_menu_item_model.h', 'base/models/combobox_model.h', 'base/models/list_model.h', 'base/models/list_model_observer.h', 'base/models/menu_model.cc', 'base/models/menu_model.h', 'base/models/menu_model_delegate.h', 'base/models/simple_menu_model.cc', 'base/models/simple_menu_model.h', 'base/models/table_model.cc', 'base/models/table_model.h', 'base/models/table_model_observer.h', 'base/models/tree_model.cc', 'base/models/tree_model.h', 'base/models/tree_node_iterator.h', 'base/models/tree_node_model.h', 'base/native_theme/native_theme.cc', 'base/native_theme/native_theme.h', 'base/native_theme/native_theme_android.cc', 'base/native_theme/native_theme_android.h', 'base/native_theme/native_theme_aura.cc', 'base/native_theme/native_theme_aura.h', 'base/native_theme/native_theme_base.cc', 'base/native_theme/native_theme_base.h', 'base/native_theme/native_theme_gtk.cc', 'base/native_theme/native_theme_gtk.h', 'base/native_theme/native_theme_win.cc', 'base/native_theme/native_theme_win.h', 'base/range/range.cc', 'base/range/range.h', 'base/range/range_mac.mm', 'base/range/range_win.cc', 'base/resource/data_pack.cc', 'base/resource/data_pack.h', 'base/resource/resource_bundle.cc', 'base/resource/resource_bundle.h', 'base/resource/resource_bundle_android.cc', 'base/resource/resource_bundle_aurax11.cc', 'base/resource/resource_bundle_gtk.cc', 'base/resource/resource_bundle_mac.mm', 'base/resource/resource_bundle_win.cc', 'base/resource/resource_bundle_win.h', 'base/resource/resource_data_dll_win.cc', 'base/resource/resource_data_dll_win.h', 'base/resource/resource_handle.h', 'base/text/bytes_formatting.cc', 'base/text/bytes_formatting.h', 'base/text/text_elider.cc', 'base/text/text_elider.h', 'base/text/utf16_indexing.cc', 'base/text/utf16_indexing.h', 'base/theme_provider.cc', 'base/theme_provider.h', 'base/touch/touch_factory.cc', 'base/touch/touch_factory.h', 'base/ui_base_exports.cc', 'base/ui_base_paths.cc', 'base/ui_base_paths.h', 'base/ui_base_switches.cc', 'base/ui_base_switches.h', 'base/ui_base_types.h', 'base/ui_export.h', 'base/view_prop.cc', 'base/view_prop.h', 'base/win/accessibility_misc_utils.h', 'base/win/accessibility_misc_utils.cc', 'base/win/atl_module.h', 'base/win/dpi.cc', 'base/win/dpi.h', 'base/win/events_win.cc', 'base/win/extra_sdk_defines.h', 'base/win/foreground_helper.cc', 'base/win/foreground_helper.h', 'base/win/hwnd_util.cc', 'base/win/hwnd_util.h', 'base/win/hwnd_subclass.cc', 'base/win/hwnd_subclass.h', 'base/win/ime_input.cc', 'base/win/ime_input.h', 'base/win/message_box_win.cc', 'base/win/message_box_win.h', 'base/win/mouse_wheel_util.cc', 'base/win/mouse_wheel_util.h', 'base/win/scoped_ole_initializer.cc', 'base/win/scoped_ole_initializer.h', 'base/win/scoped_set_map_mode.h', 'base/win/shell.cc', 'base/win/shell.h', 'base/win/singleton_hwnd.cc', 'base/win/singleton_hwnd.h', 'base/win/window_impl.cc', 'base/win/window_impl.h', 'base/work_area_watcher_observer.h', 'base/x/active_window_watcher_x.cc', 'base/x/active_window_watcher_x.h', 'base/x/active_window_watcher_x_observer.h', 'base/x/events_x.cc', 'base/x/root_window_property_watcher_x.cc', 'base/x/root_window_property_watcher_x.h', 'base/x/valuators.cc', 'base/x/valuators.h', 'base/x/work_area_watcher_x.cc', 'base/x/work_area_watcher_x.h', 'base/x/x11_util.cc', 'base/x/x11_util.h', 'base/x/x11_util_internal.h', 'gfx/blit.cc', 'gfx/blit.h', 'gfx/canvas.cc', 'gfx/canvas.h', 'gfx/canvas_android.cc', 'gfx/canvas_linux.cc', 'gfx/canvas_mac.mm', 'gfx/canvas_paint.h', 'gfx/canvas_paint_win.cc', 'gfx/canvas_skia.cc', 'gfx/canvas_skia_paint.h', 'gfx/canvas_win.cc', 'gfx/codec/jpeg_codec.cc', 'gfx/codec/jpeg_codec.h', 'gfx/codec/png_codec.cc', 'gfx/codec/png_codec.h', 'gfx/color_analysis.cc', 'gfx/color_analysis.h', 'gfx/color_utils.cc', 'gfx/color_utils.h', 'gfx/favicon_size.cc', 'gfx/favicon_size.h', 'gfx/font.h', 'gfx/font.cc', 'gfx/font_list.h', 'gfx/font_list.cc', 'gfx/font_smoothing_win.cc', 'gfx/font_smoothing_win.h', 'gfx/gfx_paths.cc', 'gfx/gfx_paths.h', 'gfx/image/image.cc', 'gfx/image/image.h', 'gfx/image/image_mac.mm', 'gfx/image/image_skia.cc', 'gfx/image/image_skia.h', 'gfx/image/image_util.cc', 'gfx/image/image_util.h', 'gfx/insets.cc', 'gfx/insets.h', 'gfx/interpolated_transform.h', 'gfx/interpolated_transform.cc', 'gfx/mac/nsimage_cache.h', 'gfx/mac/nsimage_cache.mm', 'gfx/mac/scoped_ns_disable_screen_updates.h', 'gfx/monitor.cc', 'gfx/monitor.h', 'gfx/native_widget_types.h', 'gfx/pango_util.h', 'gfx/pango_util.cc', 'gfx/path.cc', 'gfx/path.h', 'gfx/path_aura.cc', 'gfx/path_gtk.cc', 'gfx/path_win.cc', 'gfx/platform_font.h', 'gfx/platform_font_android.cc', 'gfx/platform_font_pango.h', 'gfx/platform_font_pango.cc', 'gfx/platform_font_mac.h', 'gfx/platform_font_mac.mm', 'gfx/platform_font_win.h', 'gfx/platform_font_win.cc', 'gfx/point.cc', 'gfx/point.h', 'gfx/point_base.h', 'gfx/rect.cc', 'gfx/rect.h', 'gfx/rect_base.h', 'gfx/rect_base_impl.h', 'gfx/render_text.cc', 'gfx/render_text.h', 'gfx/render_text_linux.cc', 'gfx/render_text_linux.h', 'gfx/render_text_win.cc', 'gfx/render_text_win.h', 'gfx/screen.h', 'gfx/screen_android.cc', 'gfx/screen_aura.cc', 'gfx/screen_gtk.cc', 'gfx/screen_impl.h', 'gfx/screen_mac.mm', 'gfx/screen_win.cc', 'gfx/scoped_cg_context_save_gstate_mac.h', 'gfx/scoped_ns_graphics_context_save_gstate_mac.h', 'gfx/scoped_ns_graphics_context_save_gstate_mac.mm', 'gfx/scrollbar_size.cc', 'gfx/scrollbar_size.h', 'gfx/selection_model.cc', 'gfx/selection_model.h', 'gfx/shadow_value.cc', 'gfx/shadow_value.h', 'gfx/size.cc', 'gfx/size.h', 'gfx/size_base.h', 'gfx/size_base_impl.h', 'gfx/skbitmap_operations.cc', 'gfx/skbitmap_operations.h', 'gfx/skia_util.cc', 'gfx/skia_util.h', 'gfx/skia_utils_gtk.cc', 'gfx/skia_utils_gtk.h', 'gfx/sys_color_change_listener.cc', 'gfx/sys_color_change_listener.h', 'gfx/transform.cc', 'gfx/transform.h', 'gfx/transform_util.cc', 'gfx/transform_util.h', 'gfx/video_decode_acceleration_support_mac.h', 'gfx/video_decode_acceleration_support_mac.mm', 'ui_controls/ui_controls.h', 'ui_controls/ui_controls_aura.cc', 'ui_controls/ui_controls_internal_win.h', 'ui_controls/ui_controls_internal_win.cc', 'ui_controls/ui_controls_gtk.cc', 'ui_controls/ui_controls_mac.mm', 'ui_controls/ui_controls_win.cc', ], 'conditions': [ # TODO(asvitkine): Switch all platforms to use canvas_skia.cc. # http://crbug.com/105550 ['use_canvas_skia==1', { 'sources!': [ 'gfx/canvas_android.cc', 'gfx/canvas_linux.cc', 'gfx/canvas_mac.mm', 'gfx/canvas_win.cc', ], }, { # use_canvas_skia!=1 'sources!': [ 'gfx/canvas_skia.cc', ], }], ['use_aura==1', { 'sources/': [ ['exclude', 'gfx/gtk_'], ['exclude', 'gfx/gtk_util.cc'], ['exclude', 'gfx/gtk_util.h'], ['exclude', 'gfx/screen_gtk.cc'], ['exclude', 'gfx/screen_win.cc'], ['exclude', 'base/dragdrop/drag_utils_win.cc'], ['exclude', 'base/win/mouse_wheel_util.cc'], ['exclude', 'base/win/mouse_wheel_util.h'], ['exclude', 'base/work_area_watcher_observer.h'], ['exclude', 'base/x/active_window_watcher_x.cc'], ['exclude', 'base/x/active_window_watcher_x.h'], ['exclude', 'base/x/active_window_watcher_x_observer.h'], ['exclude', 'base/x/root_window_property_watcher_x.cc'], ['exclude', 'base/x/root_window_property_watcher_x.h'], ['exclude', 'base/x/work_area_watcher_x.cc'], ['exclude', 'base/x/work_area_watcher_x.h'], ['exclude', 'ui_controls_win.cc'], ], }, { # use_aura!=1 'sources!': [ 'base/cursor/cursor.cc', 'base/cursor/cursor.h', 'base/cursor/cursor_win.cc', 'base/cursor/cursor_x11.cc', 'base/native_theme/native_theme_aura.cc', 'base/native_theme/native_theme_aura.h', ] }], ['use_aura==1 and OS=="win"', { 'sources/': [ ['exclude', 'base/dragdrop/os_exchange_data_provider_win.cc'], ['exclude', 'base/dragdrop/os_exchange_data_provider_win.h'], ['exclude', 'base/native_theme/native_theme_win.cc'], ['exclude', 'base/native_theme/native_theme_win.h'], ['exclude', 'gfx/path_win.cc'], ], }], ['use_aura==0 and toolkit_views==0', { 'sources/': [ ['exclude', '^base/gestures/*'], ] }], ['use_ibus==1', { 'dependencies': [ '../build/linux/system.gyp:ibus', ], }], ['use_glib == 1', { 'dependencies': [ # font_gtk.cc uses fontconfig. '../build/linux/system.gyp:fontconfig', '../build/linux/system.gyp:glib', '../build/linux/system.gyp:pangocairo', '../build/linux/system.gyp:x11', '../build/linux/system.gyp:xext', '../build/linux/system.gyp:xfixes', ], 'link_settings': { 'libraries': [ '-lXcursor', # For XCursor* function calls in x11_util.cc. '-lXrender', # For XRender* function calls in x11_util.cc. ], }, 'conditions': [ ['toolkit_views==0', { # Note: because of gyp predence rules this has to be defined as # 'sources/' rather than 'sources!'. 'sources/': [ ['exclude', '^base/dragdrop/drag_drop_types_gtk.cc'], ['exclude', '^base/dragdrop/drag_utils_gtk.cc'], ['exclude', '^base/dragdrop/drag_utils.cc'], ['exclude', '^base/dragdrop/drag_utils.h'], ['exclude', '^base/dragdrop/os_exchange_data.cc'], ['exclude', '^base/dragdrop/os_exchange_data.h'], ['exclude', '^base/dragdrop/os_exchange_data_provider_gtk.cc'], ['exclude', '^base/dragdrop/os_exchange_data_provider_gtk.h'], ], }, { # Note: because of gyp predence rules this has to be defined as # 'sources/' rather than 'sources!'. 'sources/': [ ['include', '^base/dragdrop/os_exchange_data.cc'], ], }], ], }], ['toolkit_uses_gtk == 1', { 'dependencies': [ '../build/linux/system.gyp:gtk', ], 'sources': [ 'gfx/gtk_native_view_id_manager.cc', 'gfx/gtk_native_view_id_manager.h', 'gfx/gtk_preserve_window.cc', 'gfx/gtk_preserve_window.h', 'gfx/gtk_util.cc', 'gfx/gtk_util.h', 'gfx/image/cairo_cached_surface.cc', 'gfx/image/cairo_cached_surface.h', ], }, { # toolkit_uses_gtk != 1 'sources!': [ 'base/native_theme/native_theme_gtk.cc', 'base/native_theme/native_theme_gtk.h', ] }], ['OS=="win"', { 'sources': [ 'gfx/gdi_util.cc', 'gfx/gdi_util.h', 'gfx/icon_util.cc', 'gfx/icon_util.h', 'base/native_theme/native_theme_win.cc', 'base/native_theme/native_theme_win.h', ], 'sources!': [ 'base/touch/touch_factory.cc', 'base/touch/touch_factory.h', 'gfx/pango_util.h', 'gfx/pango_util.cc', 'gfx/platform_font_pango.cc', 'gfx/platform_font_pango.h', ], 'include_dirs': [ '../', '../third_party/wtl/include', ], 'msvs_settings': { 'VCLinkerTool': { 'DelayLoadDLLs': [ 'd2d1.dll', 'd3d10_1.dll', ], 'AdditionalDependencies': [ 'd2d1.lib', 'd3d10_1.lib', ], }, }, 'link_settings': { 'libraries': [ '-limm32.lib', '-ld2d1.lib', '-loleacc.lib', ], }, },{ # OS!="win" 'conditions': [ ['use_aura==0', { 'sources!': [ 'base/view_prop.cc', 'base/view_prop.h', ], }], ], 'sources!': [ 'base/dragdrop/drag_source.cc', 'base/dragdrop/drag_source.h', 'base/dragdrop/drag_drop_types.h', 'base/dragdrop/drop_target.cc', 'base/dragdrop/drop_target.h', 'base/dragdrop/os_exchange_data.cc', 'base/native_theme/native_theme_win.cc', 'base/native_theme/native_theme_win.h', ], 'sources/': [ ['exclude', '^base/win/*'], ], }], ['OS=="mac"', { 'sources!': [ 'base/dragdrop/drag_utils.cc', 'base/dragdrop/drag_utils.h', 'base/touch/touch_factory.cc', 'base/touch/touch_factory.h', 'gfx/pango_util.h', 'gfx/pango_util.cc', 'gfx/platform_font_pango.h', 'gfx/platform_font_pango.cc', ], 'link_settings': { 'libraries': [ '$(SDKROOT)/System/Library/Frameworks/Accelerate.framework', '$(SDKROOT)/System/Library/Frameworks/AudioUnit.framework', '$(SDKROOT)/System/Library/Frameworks/CoreVideo.framework', ], }, }], ['OS=="android"', { 'sources!': [ 'gfx/pango_util.h', 'gfx/pango_util.cc', 'gfx/platform_font_pango.h', 'gfx/platform_font_pango.cc', ], }], ['use_x11==1', { 'all_dependent_settings': { 'ldflags': [ '-L<(PRODUCT_DIR)', ], 'link_settings': { 'libraries': [ '-lX11 -lXcursor', ], }, }, }, { # use_x11==0 'sources/': [ ['exclude', 'base/keycodes/keyboard_code_conversion_x.*'], ['exclude', 'base/x/*'], ], }], ['toolkit_views==0', { 'sources!': [ 'base/x/events_x.cc', ], }], ['toolkit_views==0 and use_canvas_skia==0', { 'sources!': [ 'gfx/render_text.cc', 'gfx/render_text.h', 'gfx/render_text_linux.cc', 'gfx/render_text_linux.h', 'gfx/render_text_win.cc', 'gfx/render_text_win.h', ], }], ['OS=="android"', { 'sources!': [ 'base/touch/touch_factory.cc', 'base/touch/touch_factory.h', 'gfx/pango_util.h', 'gfx/pango_util.cc', 'gfx/platform_font_pango.cc', 'gfx/platform_font_pango.h', ], }], ['OS=="linux"', { 'libraries': [ '-ldl', ], }], ['os_bsd==1 and use_system_libjpeg==1', { 'include_dirs': [ '/usr/local/include', ], }], ['inside_chromium_build==0', { 'dependencies': [ '<(DEPTH)/webkit/support/setup_third_party.gyp:third_party_headers', ], }], ], }, ], 'conditions': [ ['inside_chromium_build==1', { 'includes': [ 'ui_unittests.gypi', ], 'targets': [ { # TODO(rsesek): Remove this target once ui_unittests is run on the # waterfall instead of gfx_unittests. 'target_name': 'gfx_unittests', 'type': 'none', 'dependencies': [ 'ui_unittests', ], 'actions': [ { 'message': 'TEMPORARY: Copying ui_unittests to gfx_unittests', 'variables': { 'ui_copy_target': '<(PRODUCT_DIR)/ui_unittests<(EXECUTABLE_SUFFIX)', 'ui_copy_dest': '<(PRODUCT_DIR)/gfx_unittests<(EXECUTABLE_SUFFIX)', }, 'inputs': ['<(ui_copy_target)'], 'outputs': ['<(ui_copy_dest)'], 'action_name': 'TEMP_copy_ui_unittests', 'action': [ 'python', '-c', 'import os, shutil; ' \ 'shutil.copyfile(\'<(ui_copy_target)\', \'<(ui_copy_dest)\'); ' \ 'os.chmod(\'<(ui_copy_dest)\', 0700)' ] } ], }, ], }], ], }
{'variables': {'chromium_code': 1}, 'includes': ['ui_resources.gypi'], 'targets': [{'target_name': 'ui', 'type': '<(component)', 'variables': {'enable_wexit_time_destructors': 1}, 'includes': ['base/ime/ime.gypi'], 'dependencies': ['../base/base.gyp:base', '../base/base.gyp:base_i18n', '../base/base.gyp:base_static', '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic_annotations', '../build/temp_gyp/googleurl.gyp:googleurl', '../net/net.gyp:net', '../skia/skia.gyp:skia', '../third_party/icu/icu.gyp:icui18n', '../third_party/icu/icu.gyp:icuuc', '../third_party/libpng/libpng.gyp:libpng', '../third_party/zlib/zlib.gyp:zlib', 'base/strings/ui_strings.gyp:ui_strings', 'ui_resources_standard', '<(libjpeg_gyp_path):libjpeg'], 'defines': ['UI_IMPLEMENTATION'], 'export_dependent_settings': ['../net/net.gyp:net', '../third_party/icu/icu.gyp:icui18n', '../third_party/icu/icu.gyp:icuuc'], 'sources': ['base/accelerators/accelerator.cc', 'base/accelerators/accelerator.h', 'base/accelerators/accelerator_cocoa.h', 'base/accelerators/accelerator_cocoa.mm', 'base/accelerators/accelerator_gtk.cc', 'base/accelerators/accelerator_gtk.h', 'base/accelerators/accelerator_manager.cc', 'base/accelerators/accelerator_manager.h', 'base/accessibility/accessibility_types.h', 'base/accessibility/accessible_text_utils.cc', 'base/accessibility/accessible_text_utils.h', 'base/accessibility/accessible_view_state.cc', 'base/accessibility/accessible_view_state.h', 'base/animation/animation.cc', 'base/animation/animation.h', 'base/animation/animation_container.cc', 'base/animation/animation_container.h', 'base/animation/animation_container_element.h', 'base/animation/animation_container_observer.h', 'base/animation/animation_delegate.h', 'base/animation/linear_animation.cc', 'base/animation/linear_animation.h', 'base/animation/multi_animation.cc', 'base/animation/multi_animation.h', 'base/animation/slide_animation.cc', 'base/animation/slide_animation.h', 'base/animation/throb_animation.cc', 'base/animation/throb_animation.h', 'base/animation/tween.cc', 'base/animation/tween.h', 'base/clipboard/clipboard.cc', 'base/clipboard/clipboard.h', 'base/clipboard/clipboard_android.cc', 'base/clipboard/clipboard_aurax11.cc', 'base/clipboard/clipboard_gtk.cc', 'base/clipboard/clipboard_mac.mm', 'base/clipboard/clipboard_util_win.cc', 'base/clipboard/clipboard_util_win.h', 'base/clipboard/clipboard_win.cc', 'base/clipboard/custom_data_helper.cc', 'base/clipboard/custom_data_helper.h', 'base/clipboard/custom_data_helper_mac.mm', 'base/clipboard/custom_data_helper_x.cc', 'base/clipboard/scoped_clipboard_writer.cc', 'base/clipboard/scoped_clipboard_writer.h', 'base/cocoa/base_view.h', 'base/cocoa/base_view.mm', 'base/cocoa/events_mac.mm', 'base/cocoa/find_pasteboard.h', 'base/cocoa/find_pasteboard.mm', 'base/cocoa/focus_tracker.h', 'base/cocoa/focus_tracker.mm', 'base/cocoa/fullscreen_window_manager.h', 'base/cocoa/fullscreen_window_manager.mm', 'base/cocoa/nib_loading.h', 'base/cocoa/nib_loading.mm', 'base/cocoa/underlay_opengl_hosting_window.h', 'base/cocoa/underlay_opengl_hosting_window.mm', 'base/cocoa/window_size_constants.h', 'base/cocoa/window_size_constants.mm', 'base/cursor/cursor.cc', 'base/cursor/cursor.h', 'base/cursor/cursor_win.cc', 'base/cursor/cursor_x11.cc', 'base/dragdrop/cocoa_dnd_util.h', 'base/dragdrop/cocoa_dnd_util.mm', 'base/dragdrop/drag_drop_types_gtk.cc', 'base/dragdrop/drag_drop_types.h', 'base/dragdrop/drag_drop_types_win.cc', 'base/dragdrop/drag_source.cc', 'base/dragdrop/drag_source.h', 'base/dragdrop/drop_target.cc', 'base/dragdrop/drop_target.h', 'base/dragdrop/drag_utils.cc', 'base/dragdrop/drag_utils.h', 'base/dragdrop/drag_utils_aura.cc', 'base/dragdrop/drag_utils_gtk.cc', 'base/dragdrop/drag_utils_win.cc', 'base/dragdrop/gtk_dnd_util.cc', 'base/dragdrop/gtk_dnd_util.h', 'base/dragdrop/os_exchange_data.cc', 'base/dragdrop/os_exchange_data.h', 'base/dragdrop/os_exchange_data_provider_aura.cc', 'base/dragdrop/os_exchange_data_provider_aura.h', 'base/dragdrop/os_exchange_data_provider_gtk.cc', 'base/dragdrop/os_exchange_data_provider_gtk.h', 'base/dragdrop/os_exchange_data_provider_win.cc', 'base/dragdrop/os_exchange_data_provider_win.h', 'base/events.h', 'base/gestures/gesture_configuration.cc', 'base/gestures/gesture_configuration.h', 'base/gestures/gesture_point.cc', 'base/gestures/gesture_point.h', 'base/gestures/gesture_recognizer.h', 'base/gestures/gesture_recognizer_impl.cc', 'base/gestures/gesture_recognizer_impl.h', 'base/gestures/gesture_sequence.cc', 'base/gestures/gesture_sequence.h', 'base/gestures/velocity_calculator.cc', 'base/gestures/velocity_calculator.h', 'base/gtk/event_synthesis_gtk.cc', 'base/gtk/event_synthesis_gtk.h', 'base/gtk/focus_store_gtk.cc', 'base/gtk/focus_store_gtk.h', 'base/gtk/g_object_destructor_filo.cc', 'base/gtk/g_object_destructor_filo.h', 'base/gtk/gtk_expanded_container.cc', 'base/gtk/gtk_expanded_container.h', 'base/gtk/gtk_floating_container.cc', 'base/gtk/gtk_floating_container.h', 'base/gtk/gtk_im_context_util.cc', 'base/gtk/gtk_im_context_util.h', 'base/gtk/gtk_hig_constants.h', 'base/gtk/gtk_screen_util.cc', 'base/gtk/gtk_screen_util.h', 'base/gtk/gtk_signal.h', 'base/gtk/gtk_signal_registrar.cc', 'base/gtk/gtk_signal_registrar.h', 'base/gtk/gtk_windowing.cc', 'base/gtk/gtk_windowing.h', 'base/gtk/menu_label_accelerator_util.cc', 'base/gtk/menu_label_accelerator_util.h', 'base/gtk/owned_widget_gtk.cc', 'base/gtk/owned_widget_gtk.h', 'base/gtk/scoped_gobject.h', 'base/gtk/scoped_region.cc', 'base/gtk/scoped_region.h', 'base/hit_test.h', 'base/keycodes/keyboard_code_conversion.cc', 'base/keycodes/keyboard_code_conversion.h', 'base/keycodes/keyboard_code_conversion_gtk.cc', 'base/keycodes/keyboard_code_conversion_gtk.h', 'base/keycodes/keyboard_code_conversion_mac.h', 'base/keycodes/keyboard_code_conversion_mac.mm', 'base/keycodes/keyboard_code_conversion_win.cc', 'base/keycodes/keyboard_code_conversion_win.h', 'base/keycodes/keyboard_code_conversion_x.cc', 'base/keycodes/keyboard_code_conversion_x.h', 'base/keycodes/keyboard_codes.h', 'base/l10n/l10n_font_util.cc', 'base/l10n/l10n_font_util.h', 'base/l10n/l10n_util.cc', 'base/l10n/l10n_util.h', 'base/l10n/l10n_util_collator.h', 'base/l10n/l10n_util_mac.h', 'base/l10n/l10n_util_mac.mm', 'base/l10n/l10n_util_posix.cc', 'base/l10n/l10n_util_win.cc', 'base/l10n/l10n_util_win.h', 'base/layout.cc', 'base/layout.h', 'base/models/button_menu_item_model.cc', 'base/models/button_menu_item_model.h', 'base/models/combobox_model.h', 'base/models/list_model.h', 'base/models/list_model_observer.h', 'base/models/menu_model.cc', 'base/models/menu_model.h', 'base/models/menu_model_delegate.h', 'base/models/simple_menu_model.cc', 'base/models/simple_menu_model.h', 'base/models/table_model.cc', 'base/models/table_model.h', 'base/models/table_model_observer.h', 'base/models/tree_model.cc', 'base/models/tree_model.h', 'base/models/tree_node_iterator.h', 'base/models/tree_node_model.h', 'base/native_theme/native_theme.cc', 'base/native_theme/native_theme.h', 'base/native_theme/native_theme_android.cc', 'base/native_theme/native_theme_android.h', 'base/native_theme/native_theme_aura.cc', 'base/native_theme/native_theme_aura.h', 'base/native_theme/native_theme_base.cc', 'base/native_theme/native_theme_base.h', 'base/native_theme/native_theme_gtk.cc', 'base/native_theme/native_theme_gtk.h', 'base/native_theme/native_theme_win.cc', 'base/native_theme/native_theme_win.h', 'base/range/range.cc', 'base/range/range.h', 'base/range/range_mac.mm', 'base/range/range_win.cc', 'base/resource/data_pack.cc', 'base/resource/data_pack.h', 'base/resource/resource_bundle.cc', 'base/resource/resource_bundle.h', 'base/resource/resource_bundle_android.cc', 'base/resource/resource_bundle_aurax11.cc', 'base/resource/resource_bundle_gtk.cc', 'base/resource/resource_bundle_mac.mm', 'base/resource/resource_bundle_win.cc', 'base/resource/resource_bundle_win.h', 'base/resource/resource_data_dll_win.cc', 'base/resource/resource_data_dll_win.h', 'base/resource/resource_handle.h', 'base/text/bytes_formatting.cc', 'base/text/bytes_formatting.h', 'base/text/text_elider.cc', 'base/text/text_elider.h', 'base/text/utf16_indexing.cc', 'base/text/utf16_indexing.h', 'base/theme_provider.cc', 'base/theme_provider.h', 'base/touch/touch_factory.cc', 'base/touch/touch_factory.h', 'base/ui_base_exports.cc', 'base/ui_base_paths.cc', 'base/ui_base_paths.h', 'base/ui_base_switches.cc', 'base/ui_base_switches.h', 'base/ui_base_types.h', 'base/ui_export.h', 'base/view_prop.cc', 'base/view_prop.h', 'base/win/accessibility_misc_utils.h', 'base/win/accessibility_misc_utils.cc', 'base/win/atl_module.h', 'base/win/dpi.cc', 'base/win/dpi.h', 'base/win/events_win.cc', 'base/win/extra_sdk_defines.h', 'base/win/foreground_helper.cc', 'base/win/foreground_helper.h', 'base/win/hwnd_util.cc', 'base/win/hwnd_util.h', 'base/win/hwnd_subclass.cc', 'base/win/hwnd_subclass.h', 'base/win/ime_input.cc', 'base/win/ime_input.h', 'base/win/message_box_win.cc', 'base/win/message_box_win.h', 'base/win/mouse_wheel_util.cc', 'base/win/mouse_wheel_util.h', 'base/win/scoped_ole_initializer.cc', 'base/win/scoped_ole_initializer.h', 'base/win/scoped_set_map_mode.h', 'base/win/shell.cc', 'base/win/shell.h', 'base/win/singleton_hwnd.cc', 'base/win/singleton_hwnd.h', 'base/win/window_impl.cc', 'base/win/window_impl.h', 'base/work_area_watcher_observer.h', 'base/x/active_window_watcher_x.cc', 'base/x/active_window_watcher_x.h', 'base/x/active_window_watcher_x_observer.h', 'base/x/events_x.cc', 'base/x/root_window_property_watcher_x.cc', 'base/x/root_window_property_watcher_x.h', 'base/x/valuators.cc', 'base/x/valuators.h', 'base/x/work_area_watcher_x.cc', 'base/x/work_area_watcher_x.h', 'base/x/x11_util.cc', 'base/x/x11_util.h', 'base/x/x11_util_internal.h', 'gfx/blit.cc', 'gfx/blit.h', 'gfx/canvas.cc', 'gfx/canvas.h', 'gfx/canvas_android.cc', 'gfx/canvas_linux.cc', 'gfx/canvas_mac.mm', 'gfx/canvas_paint.h', 'gfx/canvas_paint_win.cc', 'gfx/canvas_skia.cc', 'gfx/canvas_skia_paint.h', 'gfx/canvas_win.cc', 'gfx/codec/jpeg_codec.cc', 'gfx/codec/jpeg_codec.h', 'gfx/codec/png_codec.cc', 'gfx/codec/png_codec.h', 'gfx/color_analysis.cc', 'gfx/color_analysis.h', 'gfx/color_utils.cc', 'gfx/color_utils.h', 'gfx/favicon_size.cc', 'gfx/favicon_size.h', 'gfx/font.h', 'gfx/font.cc', 'gfx/font_list.h', 'gfx/font_list.cc', 'gfx/font_smoothing_win.cc', 'gfx/font_smoothing_win.h', 'gfx/gfx_paths.cc', 'gfx/gfx_paths.h', 'gfx/image/image.cc', 'gfx/image/image.h', 'gfx/image/image_mac.mm', 'gfx/image/image_skia.cc', 'gfx/image/image_skia.h', 'gfx/image/image_util.cc', 'gfx/image/image_util.h', 'gfx/insets.cc', 'gfx/insets.h', 'gfx/interpolated_transform.h', 'gfx/interpolated_transform.cc', 'gfx/mac/nsimage_cache.h', 'gfx/mac/nsimage_cache.mm', 'gfx/mac/scoped_ns_disable_screen_updates.h', 'gfx/monitor.cc', 'gfx/monitor.h', 'gfx/native_widget_types.h', 'gfx/pango_util.h', 'gfx/pango_util.cc', 'gfx/path.cc', 'gfx/path.h', 'gfx/path_aura.cc', 'gfx/path_gtk.cc', 'gfx/path_win.cc', 'gfx/platform_font.h', 'gfx/platform_font_android.cc', 'gfx/platform_font_pango.h', 'gfx/platform_font_pango.cc', 'gfx/platform_font_mac.h', 'gfx/platform_font_mac.mm', 'gfx/platform_font_win.h', 'gfx/platform_font_win.cc', 'gfx/point.cc', 'gfx/point.h', 'gfx/point_base.h', 'gfx/rect.cc', 'gfx/rect.h', 'gfx/rect_base.h', 'gfx/rect_base_impl.h', 'gfx/render_text.cc', 'gfx/render_text.h', 'gfx/render_text_linux.cc', 'gfx/render_text_linux.h', 'gfx/render_text_win.cc', 'gfx/render_text_win.h', 'gfx/screen.h', 'gfx/screen_android.cc', 'gfx/screen_aura.cc', 'gfx/screen_gtk.cc', 'gfx/screen_impl.h', 'gfx/screen_mac.mm', 'gfx/screen_win.cc', 'gfx/scoped_cg_context_save_gstate_mac.h', 'gfx/scoped_ns_graphics_context_save_gstate_mac.h', 'gfx/scoped_ns_graphics_context_save_gstate_mac.mm', 'gfx/scrollbar_size.cc', 'gfx/scrollbar_size.h', 'gfx/selection_model.cc', 'gfx/selection_model.h', 'gfx/shadow_value.cc', 'gfx/shadow_value.h', 'gfx/size.cc', 'gfx/size.h', 'gfx/size_base.h', 'gfx/size_base_impl.h', 'gfx/skbitmap_operations.cc', 'gfx/skbitmap_operations.h', 'gfx/skia_util.cc', 'gfx/skia_util.h', 'gfx/skia_utils_gtk.cc', 'gfx/skia_utils_gtk.h', 'gfx/sys_color_change_listener.cc', 'gfx/sys_color_change_listener.h', 'gfx/transform.cc', 'gfx/transform.h', 'gfx/transform_util.cc', 'gfx/transform_util.h', 'gfx/video_decode_acceleration_support_mac.h', 'gfx/video_decode_acceleration_support_mac.mm', 'ui_controls/ui_controls.h', 'ui_controls/ui_controls_aura.cc', 'ui_controls/ui_controls_internal_win.h', 'ui_controls/ui_controls_internal_win.cc', 'ui_controls/ui_controls_gtk.cc', 'ui_controls/ui_controls_mac.mm', 'ui_controls/ui_controls_win.cc'], 'conditions': [['use_canvas_skia==1', {'sources!': ['gfx/canvas_android.cc', 'gfx/canvas_linux.cc', 'gfx/canvas_mac.mm', 'gfx/canvas_win.cc']}, {'sources!': ['gfx/canvas_skia.cc']}], ['use_aura==1', {'sources/': [['exclude', 'gfx/gtk_'], ['exclude', 'gfx/gtk_util.cc'], ['exclude', 'gfx/gtk_util.h'], ['exclude', 'gfx/screen_gtk.cc'], ['exclude', 'gfx/screen_win.cc'], ['exclude', 'base/dragdrop/drag_utils_win.cc'], ['exclude', 'base/win/mouse_wheel_util.cc'], ['exclude', 'base/win/mouse_wheel_util.h'], ['exclude', 'base/work_area_watcher_observer.h'], ['exclude', 'base/x/active_window_watcher_x.cc'], ['exclude', 'base/x/active_window_watcher_x.h'], ['exclude', 'base/x/active_window_watcher_x_observer.h'], ['exclude', 'base/x/root_window_property_watcher_x.cc'], ['exclude', 'base/x/root_window_property_watcher_x.h'], ['exclude', 'base/x/work_area_watcher_x.cc'], ['exclude', 'base/x/work_area_watcher_x.h'], ['exclude', 'ui_controls_win.cc']]}, {'sources!': ['base/cursor/cursor.cc', 'base/cursor/cursor.h', 'base/cursor/cursor_win.cc', 'base/cursor/cursor_x11.cc', 'base/native_theme/native_theme_aura.cc', 'base/native_theme/native_theme_aura.h']}], ['use_aura==1 and OS=="win"', {'sources/': [['exclude', 'base/dragdrop/os_exchange_data_provider_win.cc'], ['exclude', 'base/dragdrop/os_exchange_data_provider_win.h'], ['exclude', 'base/native_theme/native_theme_win.cc'], ['exclude', 'base/native_theme/native_theme_win.h'], ['exclude', 'gfx/path_win.cc']]}], ['use_aura==0 and toolkit_views==0', {'sources/': [['exclude', '^base/gestures/*']]}], ['use_ibus==1', {'dependencies': ['../build/linux/system.gyp:ibus']}], ['use_glib == 1', {'dependencies': ['../build/linux/system.gyp:fontconfig', '../build/linux/system.gyp:glib', '../build/linux/system.gyp:pangocairo', '../build/linux/system.gyp:x11', '../build/linux/system.gyp:xext', '../build/linux/system.gyp:xfixes'], 'link_settings': {'libraries': ['-lXcursor', '-lXrender']}, 'conditions': [['toolkit_views==0', {'sources/': [['exclude', '^base/dragdrop/drag_drop_types_gtk.cc'], ['exclude', '^base/dragdrop/drag_utils_gtk.cc'], ['exclude', '^base/dragdrop/drag_utils.cc'], ['exclude', '^base/dragdrop/drag_utils.h'], ['exclude', '^base/dragdrop/os_exchange_data.cc'], ['exclude', '^base/dragdrop/os_exchange_data.h'], ['exclude', '^base/dragdrop/os_exchange_data_provider_gtk.cc'], ['exclude', '^base/dragdrop/os_exchange_data_provider_gtk.h']]}, {'sources/': [['include', '^base/dragdrop/os_exchange_data.cc']]}]]}], ['toolkit_uses_gtk == 1', {'dependencies': ['../build/linux/system.gyp:gtk'], 'sources': ['gfx/gtk_native_view_id_manager.cc', 'gfx/gtk_native_view_id_manager.h', 'gfx/gtk_preserve_window.cc', 'gfx/gtk_preserve_window.h', 'gfx/gtk_util.cc', 'gfx/gtk_util.h', 'gfx/image/cairo_cached_surface.cc', 'gfx/image/cairo_cached_surface.h']}, {'sources!': ['base/native_theme/native_theme_gtk.cc', 'base/native_theme/native_theme_gtk.h']}], ['OS=="win"', {'sources': ['gfx/gdi_util.cc', 'gfx/gdi_util.h', 'gfx/icon_util.cc', 'gfx/icon_util.h', 'base/native_theme/native_theme_win.cc', 'base/native_theme/native_theme_win.h'], 'sources!': ['base/touch/touch_factory.cc', 'base/touch/touch_factory.h', 'gfx/pango_util.h', 'gfx/pango_util.cc', 'gfx/platform_font_pango.cc', 'gfx/platform_font_pango.h'], 'include_dirs': ['../', '../third_party/wtl/include'], 'msvs_settings': {'VCLinkerTool': {'DelayLoadDLLs': ['d2d1.dll', 'd3d10_1.dll'], 'AdditionalDependencies': ['d2d1.lib', 'd3d10_1.lib']}}, 'link_settings': {'libraries': ['-limm32.lib', '-ld2d1.lib', '-loleacc.lib']}}, {'conditions': [['use_aura==0', {'sources!': ['base/view_prop.cc', 'base/view_prop.h']}]], 'sources!': ['base/dragdrop/drag_source.cc', 'base/dragdrop/drag_source.h', 'base/dragdrop/drag_drop_types.h', 'base/dragdrop/drop_target.cc', 'base/dragdrop/drop_target.h', 'base/dragdrop/os_exchange_data.cc', 'base/native_theme/native_theme_win.cc', 'base/native_theme/native_theme_win.h'], 'sources/': [['exclude', '^base/win/*']]}], ['OS=="mac"', {'sources!': ['base/dragdrop/drag_utils.cc', 'base/dragdrop/drag_utils.h', 'base/touch/touch_factory.cc', 'base/touch/touch_factory.h', 'gfx/pango_util.h', 'gfx/pango_util.cc', 'gfx/platform_font_pango.h', 'gfx/platform_font_pango.cc'], 'link_settings': {'libraries': ['$(SDKROOT)/System/Library/Frameworks/Accelerate.framework', '$(SDKROOT)/System/Library/Frameworks/AudioUnit.framework', '$(SDKROOT)/System/Library/Frameworks/CoreVideo.framework']}}], ['OS=="android"', {'sources!': ['gfx/pango_util.h', 'gfx/pango_util.cc', 'gfx/platform_font_pango.h', 'gfx/platform_font_pango.cc']}], ['use_x11==1', {'all_dependent_settings': {'ldflags': ['-L<(PRODUCT_DIR)'], 'link_settings': {'libraries': ['-lX11 -lXcursor']}}}, {'sources/': [['exclude', 'base/keycodes/keyboard_code_conversion_x.*'], ['exclude', 'base/x/*']]}], ['toolkit_views==0', {'sources!': ['base/x/events_x.cc']}], ['toolkit_views==0 and use_canvas_skia==0', {'sources!': ['gfx/render_text.cc', 'gfx/render_text.h', 'gfx/render_text_linux.cc', 'gfx/render_text_linux.h', 'gfx/render_text_win.cc', 'gfx/render_text_win.h']}], ['OS=="android"', {'sources!': ['base/touch/touch_factory.cc', 'base/touch/touch_factory.h', 'gfx/pango_util.h', 'gfx/pango_util.cc', 'gfx/platform_font_pango.cc', 'gfx/platform_font_pango.h']}], ['OS=="linux"', {'libraries': ['-ldl']}], ['os_bsd==1 and use_system_libjpeg==1', {'include_dirs': ['/usr/local/include']}], ['inside_chromium_build==0', {'dependencies': ['<(DEPTH)/webkit/support/setup_third_party.gyp:third_party_headers']}]]}], 'conditions': [['inside_chromium_build==1', {'includes': ['ui_unittests.gypi'], 'targets': [{'target_name': 'gfx_unittests', 'type': 'none', 'dependencies': ['ui_unittests'], 'actions': [{'message': 'TEMPORARY: Copying ui_unittests to gfx_unittests', 'variables': {'ui_copy_target': '<(PRODUCT_DIR)/ui_unittests<(EXECUTABLE_SUFFIX)', 'ui_copy_dest': '<(PRODUCT_DIR)/gfx_unittests<(EXECUTABLE_SUFFIX)'}, 'inputs': ['<(ui_copy_target)'], 'outputs': ['<(ui_copy_dest)'], 'action_name': 'TEMP_copy_ui_unittests', 'action': ['python', '-c', "import os, shutil; shutil.copyfile('<(ui_copy_target)', '<(ui_copy_dest)'); os.chmod('<(ui_copy_dest)', 0700)"]}]}]}]]}
first = int (input ('First term ')) ratio = int (input ('Ratio ')) tenth = first + (10-1) * ratio for c in range (first, tenth + ratio, ratio): print (c, end = '')
first = int(input('First term ')) ratio = int(input('Ratio ')) tenth = first + (10 - 1) * ratio for c in range(first, tenth + ratio, ratio): print(c, end='')
# -*- coding: utf-8 -*- """ shepherd.commons ~~~~~ Defines details of the data exchange protocol between PRU0 and the python code. The various parameters need to be the same on both sides. Refer to the corresponding implementation in `software/firmware/include/commons.h` :copyright: (c) 2019 Networked Embedded Systems Lab, TU Dresden. :license: MIT, see LICENSE for more details. """ MAX_GPIO_EVT_PER_BUFFER = 16_384 # 2^14 # TODO: replace by (currently non-existing) sysfs_interface MSG_BUF_FROM_HOST = 0x01 MSG_BUF_FROM_PRU = 0x02 MSG_DBG_ADC = 0xA0 MSG_DBG_DAC = 0xA1 MSG_DBG_GPI = 0xA2 MSG_DBG_GP_BATOK = 0xA3 MSG_DBG_PRINT = 0xA6 MSG_DBG_VSOURCE_P_INP = 0xA8 MSG_DBG_VSOURCE_P_OUT = 0xA9 MSG_DBG_VSOURCE_V_CAP = 0xAA MSG_DBG_VSOURCE_V_OUT = 0xAB MSG_DBG_VSOURCE_INIT = 0xAC MSG_DBG_VSOURCE_CHARGE = 0xAD MSG_DBG_VSOURCE_DRAIN = 0xAE MSG_DBG_FN_TESTS = 0xAF MSG_DEP_ERR_INCMPLT = 0xE3 MSG_DEP_ERR_INVLDCMD = 0xE4 MSG_DEP_ERR_NOFREEBUF = 0xE5 GPIO_LOG_BIT_POSITIONS = """ pru_reg name linux_pin r31_00 TARGET_GPIO0 P8_45 r31_01 TARGET_GPIO1 P8_46 r31_02 TARGET_SWD_CLK P8_43 r31_03 TARGET_SWD_IO P8_44 r31_04 TARGET_UART_TX P8_41 r31_05 TARGET_UART_RX P8_42 r31_06 TARGET_GPIO2 P8_39 r31_07 TARGET_GPIO3 P8_40 r31_08 TARGET_GPIO4 P8_27 r30_09/out TARGET_BAT_OK P8_29 """ # Note: this table is copied (for hdf5-reference) from pru1/main.c
""" shepherd.commons ~~~~~ Defines details of the data exchange protocol between PRU0 and the python code. The various parameters need to be the same on both sides. Refer to the corresponding implementation in `software/firmware/include/commons.h` :copyright: (c) 2019 Networked Embedded Systems Lab, TU Dresden. :license: MIT, see LICENSE for more details. """ max_gpio_evt_per_buffer = 16384 msg_buf_from_host = 1 msg_buf_from_pru = 2 msg_dbg_adc = 160 msg_dbg_dac = 161 msg_dbg_gpi = 162 msg_dbg_gp_batok = 163 msg_dbg_print = 166 msg_dbg_vsource_p_inp = 168 msg_dbg_vsource_p_out = 169 msg_dbg_vsource_v_cap = 170 msg_dbg_vsource_v_out = 171 msg_dbg_vsource_init = 172 msg_dbg_vsource_charge = 173 msg_dbg_vsource_drain = 174 msg_dbg_fn_tests = 175 msg_dep_err_incmplt = 227 msg_dep_err_invldcmd = 228 msg_dep_err_nofreebuf = 229 gpio_log_bit_positions = '\npru_reg name linux_pin\nr31_00 TARGET_GPIO0 P8_45\nr31_01 TARGET_GPIO1 P8_46\nr31_02 TARGET_SWD_CLK P8_43\nr31_03 TARGET_SWD_IO P8_44\nr31_04 TARGET_UART_TX P8_41\nr31_05 TARGET_UART_RX P8_42\nr31_06 TARGET_GPIO2 P8_39\nr31_07 TARGET_GPIO3 P8_40\nr31_08 TARGET_GPIO4 P8_27\nr30_09/out TARGET_BAT_OK P8_29\n'
# coding: utf-8 """***************************************************************************** * Copyright (C) 2018 Microchip Technology Inc. and its subsidiaries. * * Subject to your compliance with these terms, you may use Microchip software * and any derivatives exclusively with Microchip products. It is your * responsibility to comply with third party license terms applicable to your * use of third party software (including open source software) that may * accompany Microchip software. * * THIS SOFTWARE IS SUPPLIED BY MICROCHIP "AS IS". NO WARRANTIES, WHETHER * EXPRESS, IMPLIED OR STATUTORY, APPLY TO THIS SOFTWARE, INCLUDING ANY IMPLIED * WARRANTIES OF NON-INFRINGEMENT, MERCHANTABILITY, AND FITNESS FOR A * PARTICULAR PURPOSE. * * IN NO EVENT WILL MICROCHIP BE LIABLE FOR ANY INDIRECT, SPECIAL, PUNITIVE, * INCIDENTAL OR CONSEQUENTIAL LOSS, DAMAGE, COST OR EXPENSE OF ANY KIND * WHATSOEVER RELATED TO THE SOFTWARE, HOWEVER CAUSED, EVEN IF MICROCHIP HAS * BEEN ADVISED OF THE POSSIBILITY OR THE DAMAGES ARE FORESEEABLE. TO THE * FULLEST EXTENT ALLOWED BY LAW, MICROCHIP'S TOTAL LIABILITY ON ALL CLAIMS IN * ANY WAY RELATED TO THIS SOFTWARE WILL NOT EXCEED THE AMOUNT OF FEES, IF ANY, * THAT YOU HAVE PAID DIRECTLY TO MICROCHIP FOR THIS SOFTWARE. *****************************************************************************""" ################################################################################ #### Business Logic #### ################################################################################ def genDriverHeaderRootFile(symbol, event): symbol.setEnabled(event["value"]) def genDriverHeaderCommonFile(symbol, event): symbol.setEnabled(event["value"]) ############################################################################ #### Code Generation #### ############################################################################ genDriverCommonFiles = harmonyCoreComponent.createBooleanSymbol("ENABLE_DRV_COMMON", None) genDriverCommonFiles.setLabel("Generate Harmony Driver Common Files") genDriverCommonFiles.setVisible(False) genDriverCommonFiles.setDefaultValue(False) driverHeaderRootFile = harmonyCoreComponent.createFileSymbol("DRIVER_ROOT", None) driverHeaderRootFile.setSourcePath("driver/driver.h") driverHeaderRootFile.setOutputName("driver.h") driverHeaderRootFile.setDestPath("driver/") driverHeaderRootFile.setProjectPath("config/" + configName + "/driver/") driverHeaderRootFile.setType("HEADER") driverHeaderRootFile.setOverwrite(True) driverHeaderRootFile.setEnabled(False) driverHeaderRootFile.setDependencies(genDriverHeaderRootFile, ["ENABLE_DRV_COMMON"]) driverHeaderCommonFile = harmonyCoreComponent.createFileSymbol("DRIVER_COMMON", None) driverHeaderCommonFile.setSourcePath("driver/driver_common.h") driverHeaderCommonFile.setOutputName("driver_common.h") driverHeaderCommonFile.setDestPath("driver/") driverHeaderCommonFile.setProjectPath("config/" + configName + "/driver/") driverHeaderCommonFile.setType("HEADER") driverHeaderCommonFile.setOverwrite(True) driverHeaderCommonFile.setEnabled(False) driverHeaderCommonFile.setDependencies(genDriverHeaderCommonFile, ["ENABLE_DRV_COMMON"])
"""***************************************************************************** * Copyright (C) 2018 Microchip Technology Inc. and its subsidiaries. * * Subject to your compliance with these terms, you may use Microchip software * and any derivatives exclusively with Microchip products. It is your * responsibility to comply with third party license terms applicable to your * use of third party software (including open source software) that may * accompany Microchip software. * * THIS SOFTWARE IS SUPPLIED BY MICROCHIP "AS IS". NO WARRANTIES, WHETHER * EXPRESS, IMPLIED OR STATUTORY, APPLY TO THIS SOFTWARE, INCLUDING ANY IMPLIED * WARRANTIES OF NON-INFRINGEMENT, MERCHANTABILITY, AND FITNESS FOR A * PARTICULAR PURPOSE. * * IN NO EVENT WILL MICROCHIP BE LIABLE FOR ANY INDIRECT, SPECIAL, PUNITIVE, * INCIDENTAL OR CONSEQUENTIAL LOSS, DAMAGE, COST OR EXPENSE OF ANY KIND * WHATSOEVER RELATED TO THE SOFTWARE, HOWEVER CAUSED, EVEN IF MICROCHIP HAS * BEEN ADVISED OF THE POSSIBILITY OR THE DAMAGES ARE FORESEEABLE. TO THE * FULLEST EXTENT ALLOWED BY LAW, MICROCHIP'S TOTAL LIABILITY ON ALL CLAIMS IN * ANY WAY RELATED TO THIS SOFTWARE WILL NOT EXCEED THE AMOUNT OF FEES, IF ANY, * THAT YOU HAVE PAID DIRECTLY TO MICROCHIP FOR THIS SOFTWARE. *****************************************************************************""" def gen_driver_header_root_file(symbol, event): symbol.setEnabled(event['value']) def gen_driver_header_common_file(symbol, event): symbol.setEnabled(event['value']) gen_driver_common_files = harmonyCoreComponent.createBooleanSymbol('ENABLE_DRV_COMMON', None) genDriverCommonFiles.setLabel('Generate Harmony Driver Common Files') genDriverCommonFiles.setVisible(False) genDriverCommonFiles.setDefaultValue(False) driver_header_root_file = harmonyCoreComponent.createFileSymbol('DRIVER_ROOT', None) driverHeaderRootFile.setSourcePath('driver/driver.h') driverHeaderRootFile.setOutputName('driver.h') driverHeaderRootFile.setDestPath('driver/') driverHeaderRootFile.setProjectPath('config/' + configName + '/driver/') driverHeaderRootFile.setType('HEADER') driverHeaderRootFile.setOverwrite(True) driverHeaderRootFile.setEnabled(False) driverHeaderRootFile.setDependencies(genDriverHeaderRootFile, ['ENABLE_DRV_COMMON']) driver_header_common_file = harmonyCoreComponent.createFileSymbol('DRIVER_COMMON', None) driverHeaderCommonFile.setSourcePath('driver/driver_common.h') driverHeaderCommonFile.setOutputName('driver_common.h') driverHeaderCommonFile.setDestPath('driver/') driverHeaderCommonFile.setProjectPath('config/' + configName + '/driver/') driverHeaderCommonFile.setType('HEADER') driverHeaderCommonFile.setOverwrite(True) driverHeaderCommonFile.setEnabled(False) driverHeaderCommonFile.setDependencies(genDriverHeaderCommonFile, ['ENABLE_DRV_COMMON'])
#!/usr/bin/python # -*- coding: UTF-8 -*- fo_src = open("src/cv.tex", "r") fo_rev = open("REVISION", "r") fo_print = open("build/cv_print.tex", "w") fo_screen = open("build/cv_screen.tex", "w") try: content = fo_src.read().replace('__REVISION__', fo_rev.read().strip()) fo_print.write(content.replace('__VERSION__', ',print')) fo_screen.write(content.replace('__VERSION__', '')) finally: fo_src.close() fo_print.close() fo_screen.close()
fo_src = open('src/cv.tex', 'r') fo_rev = open('REVISION', 'r') fo_print = open('build/cv_print.tex', 'w') fo_screen = open('build/cv_screen.tex', 'w') try: content = fo_src.read().replace('__REVISION__', fo_rev.read().strip()) fo_print.write(content.replace('__VERSION__', ',print')) fo_screen.write(content.replace('__VERSION__', '')) finally: fo_src.close() fo_print.close() fo_screen.close()
# https://atcoder.jp/contests/math-and-algorithm/tasks/abc145_d M = 10 ** 6 + 1 MOD = 10 ** 9 + 7 f = [0] * M fi = [0] * M iv = [0] * M f[0] = f[1] = 1 fi[0] = fi[1] = 1 iv[1] = 1 for i in range(2, M): f[i] = f[i - 1] * i % MOD iv[i] = MOD - iv[MOD % i] * (MOD // i) % MOD fi[i] = fi[i - 1] * iv[i] % MOD def comb(n, k): if n < k or n < 0 or k < 0: return 0 return f[n] * (fi[k] * fi[n - k] % MOD) % MOD x, y = map(int, input().split()) if (x + y) % 3 == 0: a = (x + y) // 3 b = 2 * a - x print(comb(a, b)) else: print(0)
m = 10 ** 6 + 1 mod = 10 ** 9 + 7 f = [0] * M fi = [0] * M iv = [0] * M f[0] = f[1] = 1 fi[0] = fi[1] = 1 iv[1] = 1 for i in range(2, M): f[i] = f[i - 1] * i % MOD iv[i] = MOD - iv[MOD % i] * (MOD // i) % MOD fi[i] = fi[i - 1] * iv[i] % MOD def comb(n, k): if n < k or n < 0 or k < 0: return 0 return f[n] * (fi[k] * fi[n - k] % MOD) % MOD (x, y) = map(int, input().split()) if (x + y) % 3 == 0: a = (x + y) // 3 b = 2 * a - x print(comb(a, b)) else: print(0)
""" @author: Wenchang Yang (yang.wenchang@uci.edu) """ # ######## data paths on the IRI data library. # surface pr_cmap = 'http://iridl.ldeo.columbia.edu/SOURCES/.NOAA/.NCEP/.CPC/.Merged_Analysis/.monthly/.latest/.ver2/.prcp_est' cmap = pr_cmap pr_gpcc = 'http://iridl.ldeo.columbia.edu/SOURCES/.WCRP/.GCOS/.GPCC/.FDP/.version6/.0p5/.prcp/30/div//units/%28mm/day%29def' gpcc = pr_gpcc pr_gpcp = 'http://iridl.ldeo.columbia.edu/SOURCES/.NASA/.GPCP/.V2p2/.satellite-gauge/.prcp' gpcp = pr_gpcp pr_cru = 'http://iridl.ldeo.columbia.edu/SOURCES/.UEA/.CRU/.TS3p21/.monthly/.pre/30/div' cru = pr_cru pr_echam5 = 'http://iridl.ldeo.columbia.edu/SOURCES/.IRI/.FD/.ECHAM5/.T42/.History/.ensemble24/.MONTHLY/.surface/.prec/24/mul/3600/mul' pr_echam4p5 = 'http://iridl.ldeo.columbia.edu/SOURCES/.IRI/.FD/.ECHAM4p5/.History/.MONTHLY/.surface/.prcp/1000/mul/24/mul/3600/mul' pr_ncep2 = 'http://iridl.ldeo.columbia.edu/SOURCES/.NOAA/.NCEP-DOE/.Reanalysis-2/.Monthly/.dg3/.dg3/.pratesfc/24/mul/3600/mul' pr_ncep = 'http://iridl.ldeo.columbia.edu/SOURCES/.NOAA/.NCEP-NCAR/.CDAS-1/.MONTHLY/.Diagnostic/.surface/.prate/24/mul/3600/mul' # ocean surface sst_ersst = 'http://iridl.ldeo.columbia.edu/SOURCES/.NOAA/.NCDC/.ERSST/.version3b/.sst%5Bzlev%5Daverage' ersst = 'http://iridl.ldeo.columbia.edu/SOURCES/.NOAA/.NCDC/.ERSST/.version3b/.sst[zlev]average' ersst4 = 'http://iridl.ldeo.columbia.edu/SOURCES/.NOAA/.NCDC/.ERSST/.version4/.sst[zlev]average' oisst = 'http://iridl.ldeo.columbia.edu/SOURCES/.NOAA/.NCDC/.OISST/.version2/.AVHRR/.sst%5Bzlev%5Daverage/lon/%28X%29renameGRID/lat/%28Y%29renameGRID/T/%28T%29%28days%20since%201960-01-01%29ordered/7933.5/1/20144.5/NewEvenGRID/replaceGRID' # atmosphere internal omega_echam5 = 'http://iridl.ldeo.columbia.edu/SOURCES/.IRI/.FD/.ECHAM5/.T42/.History/.ensemble24/.MONTHLY/.PressureLevel/.omg' omega_echam4p5 = 'http://iridl.ldeo.columbia.edu/SOURCES/.IRI/.FD/.ECHAM4p5/.History/.MONTHLY/.PressureLevel-SF/.omega' omega_era40 = 'http://iridl.ldeo.columbia.edu/SOURCES/.ECMWF/.ERA-40/.MONTHLY/.PressureLevel/.wa' omega_ncep2 = 'http://iridl.ldeo.columbia.edu/SOURCES/.NOAA/.NCEP-DOE/.Reanalysis-2/.Monthly/.pgb/.pgb/.vvelprs' omega_ncep = 'http://iridl.ldeo.columbia.edu/SOURCES/.NOAA/.NCEP-NCAR/.CDAS-1/.MONTHLY/.Intrinsic/.PressureLevel/.vvel' omega_ncep_daily = 'http://iridl.ldeo.columbia.edu/SOURCES/.NOAA/.NCEP-NCAR/.CDAS-1/.DAILY/.Intrinsic/.PressureLevel/.vvel' omega_r2 = 'http://iridl.ldeo.columbia.edu/SOURCES/.NOAA/.NCEP-DOE/.Reanalysis-2/.Monthly/.pgb/.pgb/.vvelprs' phi_ncep = 'http://iridl.ldeo.columbia.edu/SOURCES/.NOAA/.NCEP-NCAR/.CDAS-1/.MONTHLY/.Intrinsic/.PressureLevel/.phi' phi_r2 = 'http://iridl.ldeo.columbia.eduhttp://iridl.ldeo.columbia.edu/SOURCES/.NOAA/.NCEP-DOE/.Reanalysis-2/.Monthly/.pgb/.pgb/.hgtprs' phis_ncep2 = 'http://iridl.ldeo.columbia.edu/SOURCES/.NOAA/.NCEP-DOE/.Reanalysis-2/.Monthly/.pgb/.pgb/.hgtsfc' pr_era40 = 'http://iridl.ldeo.columbia.edu/SOURCES/.ECMWF/.ERA-40/.MONTHLY/.surface/.prc/SOURCES/.ECMWF/.ERA-40/.MONTHLY/.surface/.prl/add/1000/mul/4/mul' ps_ncep = 'http://iridl.ldeo.columbia.edu/SOURCES/.NOAA/.NCEP-NCAR/.CDAS-1/.MONTHLY/.Diagnostic/.surface/.pressure' ps_r2 = 'http://iridl.ldeo.columbia.edu/SOURCES/.NOAA/.NCEP-DOE/.Reanalysis-2/.Monthly/.pgb/.pgb/.pressfc' q_ncep = 'http://iridl.ldeo.columbia.edu/SOURCES/.NOAA/.NCEP-NCAR/.CDAS-1/.MONTHLY/.Intrinsic/.PressureLevel/.qa' qs_ncep = 'http://iridl.ldeo.columbia.edu/SOURCES/.NOAA/.NCEP-NCAR/.CDAS-1/.MONTHLY/.Diagnostic/.above_ground/.qa%5BZ%5Daverage' ssta_rsoi = 'http://iridl.ldeo.columbia.edu/SOURCES/.NOAA/.NCEP/.EMC/.CMB/.GLOBAL/.Reyn_SmithOIv2/.monthly/.ssta' ta_ncep = 'http://iridl.ldeo.columbia.edu/SOURCES/.NOAA/.NCEP-NCAR/.CDAS-1/.MONTHLY/.Intrinsic/.PressureLevel/.temp' tas_ncep = 'http://iridl.ldeo.columbia.edu/SOURCES/.NOAA/.NCEP-NCAR/.CDAS-1/.MONTHLY/.Diagnostic/.above_ground/.temp%5BZ%5Daverage' ta_r2 = 'http://iridl.ldeo.columbia.edu/SOURCES/.NOAA/.NCEP-DOE/.Reanalysis-2/.Monthly/.pgb/.pgb/.tmpprs' trmm_daily = 'http://iridl.ldeo.columbia.edu/SOURCES/.NASA/.GES-DAAC/.TRMM_L3/.TRMM_3B42/.v7/.daily/.precipitation' trmm = trmm_daily u_ncep = 'http://iridl.ldeo.columbia.edu/SOURCES/.NOAA/.NCEP-NCAR/.CDAS-1/.MONTHLY/.Intrinsic/.PressureLevel/.u' u_r2 = 'http://iridl.ldeo.columbia.edu/SOURCES/.NOAA/.NCEP-DOE/.Reanalysis-2/.Monthly/.pgb/.pgb/.ugrdprs' us_ncep = 'http://iridl.ldeo.columbia.edu/SOURCES/.NOAA/.NCEP-NCAR/.CDAS-1/.MONTHLY/.Diagnostic/.above_ground/.u%5BZ%5Daverage' v_ncep = 'http://iridl.ldeo.columbia.edu/SOURCES/.NOAA/.NCEP-NCAR/.CDAS-1/.MONTHLY/.Intrinsic/.PressureLevel/.v' v_r2 = 'http://iridl.ldeo.columbia.edu/SOURCES/.NOAA/.NCEP-DOE/.Reanalysis-2/.Monthly/.pgb/.pgb/.vgrdprs' vs_ncep = 'http://iridl.ldeo.columbia.edu/SOURCES/.NOAA/.NCEP-NCAR/.CDAS-1/.MONTHLY/.Diagnostic/.above_ground/.v%5BZ%5Daverage' # topo and land-sea mask land_sea_mask = 'http://iridl.ldeo.columbia.edu/SOURCES/.NASA/.ISLSCP/.GDSLAM/.Miscellaneous/.land_sea_mask' topo = 'http://iridl.ldeo.columbia.edu/SOURCES/.NOAA/.NGDC/.GLOBE/.topo' topo_worldbath = 'http://iridl.ldeo.columbia.edu/SOURCES/.WORLDBATH/.bath' topo_Peltier = 'http://iridl.ldeo.columbia.edu/SOURCES/.PELTIER/.topography/T/0/VALUE%5BT%5Daverage'
""" @author: Wenchang Yang (yang.wenchang@uci.edu) """ pr_cmap = 'http://iridl.ldeo.columbia.edu/SOURCES/.NOAA/.NCEP/.CPC/.Merged_Analysis/.monthly/.latest/.ver2/.prcp_est' cmap = pr_cmap pr_gpcc = 'http://iridl.ldeo.columbia.edu/SOURCES/.WCRP/.GCOS/.GPCC/.FDP/.version6/.0p5/.prcp/30/div//units/%28mm/day%29def' gpcc = pr_gpcc pr_gpcp = 'http://iridl.ldeo.columbia.edu/SOURCES/.NASA/.GPCP/.V2p2/.satellite-gauge/.prcp' gpcp = pr_gpcp pr_cru = 'http://iridl.ldeo.columbia.edu/SOURCES/.UEA/.CRU/.TS3p21/.monthly/.pre/30/div' cru = pr_cru pr_echam5 = 'http://iridl.ldeo.columbia.edu/SOURCES/.IRI/.FD/.ECHAM5/.T42/.History/.ensemble24/.MONTHLY/.surface/.prec/24/mul/3600/mul' pr_echam4p5 = 'http://iridl.ldeo.columbia.edu/SOURCES/.IRI/.FD/.ECHAM4p5/.History/.MONTHLY/.surface/.prcp/1000/mul/24/mul/3600/mul' pr_ncep2 = 'http://iridl.ldeo.columbia.edu/SOURCES/.NOAA/.NCEP-DOE/.Reanalysis-2/.Monthly/.dg3/.dg3/.pratesfc/24/mul/3600/mul' pr_ncep = 'http://iridl.ldeo.columbia.edu/SOURCES/.NOAA/.NCEP-NCAR/.CDAS-1/.MONTHLY/.Diagnostic/.surface/.prate/24/mul/3600/mul' sst_ersst = 'http://iridl.ldeo.columbia.edu/SOURCES/.NOAA/.NCDC/.ERSST/.version3b/.sst%5Bzlev%5Daverage' ersst = 'http://iridl.ldeo.columbia.edu/SOURCES/.NOAA/.NCDC/.ERSST/.version3b/.sst[zlev]average' ersst4 = 'http://iridl.ldeo.columbia.edu/SOURCES/.NOAA/.NCDC/.ERSST/.version4/.sst[zlev]average' oisst = 'http://iridl.ldeo.columbia.edu/SOURCES/.NOAA/.NCDC/.OISST/.version2/.AVHRR/.sst%5Bzlev%5Daverage/lon/%28X%29renameGRID/lat/%28Y%29renameGRID/T/%28T%29%28days%20since%201960-01-01%29ordered/7933.5/1/20144.5/NewEvenGRID/replaceGRID' omega_echam5 = 'http://iridl.ldeo.columbia.edu/SOURCES/.IRI/.FD/.ECHAM5/.T42/.History/.ensemble24/.MONTHLY/.PressureLevel/.omg' omega_echam4p5 = 'http://iridl.ldeo.columbia.edu/SOURCES/.IRI/.FD/.ECHAM4p5/.History/.MONTHLY/.PressureLevel-SF/.omega' omega_era40 = 'http://iridl.ldeo.columbia.edu/SOURCES/.ECMWF/.ERA-40/.MONTHLY/.PressureLevel/.wa' omega_ncep2 = 'http://iridl.ldeo.columbia.edu/SOURCES/.NOAA/.NCEP-DOE/.Reanalysis-2/.Monthly/.pgb/.pgb/.vvelprs' omega_ncep = 'http://iridl.ldeo.columbia.edu/SOURCES/.NOAA/.NCEP-NCAR/.CDAS-1/.MONTHLY/.Intrinsic/.PressureLevel/.vvel' omega_ncep_daily = 'http://iridl.ldeo.columbia.edu/SOURCES/.NOAA/.NCEP-NCAR/.CDAS-1/.DAILY/.Intrinsic/.PressureLevel/.vvel' omega_r2 = 'http://iridl.ldeo.columbia.edu/SOURCES/.NOAA/.NCEP-DOE/.Reanalysis-2/.Monthly/.pgb/.pgb/.vvelprs' phi_ncep = 'http://iridl.ldeo.columbia.edu/SOURCES/.NOAA/.NCEP-NCAR/.CDAS-1/.MONTHLY/.Intrinsic/.PressureLevel/.phi' phi_r2 = 'http://iridl.ldeo.columbia.eduhttp://iridl.ldeo.columbia.edu/SOURCES/.NOAA/.NCEP-DOE/.Reanalysis-2/.Monthly/.pgb/.pgb/.hgtprs' phis_ncep2 = 'http://iridl.ldeo.columbia.edu/SOURCES/.NOAA/.NCEP-DOE/.Reanalysis-2/.Monthly/.pgb/.pgb/.hgtsfc' pr_era40 = 'http://iridl.ldeo.columbia.edu/SOURCES/.ECMWF/.ERA-40/.MONTHLY/.surface/.prc/SOURCES/.ECMWF/.ERA-40/.MONTHLY/.surface/.prl/add/1000/mul/4/mul' ps_ncep = 'http://iridl.ldeo.columbia.edu/SOURCES/.NOAA/.NCEP-NCAR/.CDAS-1/.MONTHLY/.Diagnostic/.surface/.pressure' ps_r2 = 'http://iridl.ldeo.columbia.edu/SOURCES/.NOAA/.NCEP-DOE/.Reanalysis-2/.Monthly/.pgb/.pgb/.pressfc' q_ncep = 'http://iridl.ldeo.columbia.edu/SOURCES/.NOAA/.NCEP-NCAR/.CDAS-1/.MONTHLY/.Intrinsic/.PressureLevel/.qa' qs_ncep = 'http://iridl.ldeo.columbia.edu/SOURCES/.NOAA/.NCEP-NCAR/.CDAS-1/.MONTHLY/.Diagnostic/.above_ground/.qa%5BZ%5Daverage' ssta_rsoi = 'http://iridl.ldeo.columbia.edu/SOURCES/.NOAA/.NCEP/.EMC/.CMB/.GLOBAL/.Reyn_SmithOIv2/.monthly/.ssta' ta_ncep = 'http://iridl.ldeo.columbia.edu/SOURCES/.NOAA/.NCEP-NCAR/.CDAS-1/.MONTHLY/.Intrinsic/.PressureLevel/.temp' tas_ncep = 'http://iridl.ldeo.columbia.edu/SOURCES/.NOAA/.NCEP-NCAR/.CDAS-1/.MONTHLY/.Diagnostic/.above_ground/.temp%5BZ%5Daverage' ta_r2 = 'http://iridl.ldeo.columbia.edu/SOURCES/.NOAA/.NCEP-DOE/.Reanalysis-2/.Monthly/.pgb/.pgb/.tmpprs' trmm_daily = 'http://iridl.ldeo.columbia.edu/SOURCES/.NASA/.GES-DAAC/.TRMM_L3/.TRMM_3B42/.v7/.daily/.precipitation' trmm = trmm_daily u_ncep = 'http://iridl.ldeo.columbia.edu/SOURCES/.NOAA/.NCEP-NCAR/.CDAS-1/.MONTHLY/.Intrinsic/.PressureLevel/.u' u_r2 = 'http://iridl.ldeo.columbia.edu/SOURCES/.NOAA/.NCEP-DOE/.Reanalysis-2/.Monthly/.pgb/.pgb/.ugrdprs' us_ncep = 'http://iridl.ldeo.columbia.edu/SOURCES/.NOAA/.NCEP-NCAR/.CDAS-1/.MONTHLY/.Diagnostic/.above_ground/.u%5BZ%5Daverage' v_ncep = 'http://iridl.ldeo.columbia.edu/SOURCES/.NOAA/.NCEP-NCAR/.CDAS-1/.MONTHLY/.Intrinsic/.PressureLevel/.v' v_r2 = 'http://iridl.ldeo.columbia.edu/SOURCES/.NOAA/.NCEP-DOE/.Reanalysis-2/.Monthly/.pgb/.pgb/.vgrdprs' vs_ncep = 'http://iridl.ldeo.columbia.edu/SOURCES/.NOAA/.NCEP-NCAR/.CDAS-1/.MONTHLY/.Diagnostic/.above_ground/.v%5BZ%5Daverage' land_sea_mask = 'http://iridl.ldeo.columbia.edu/SOURCES/.NASA/.ISLSCP/.GDSLAM/.Miscellaneous/.land_sea_mask' topo = 'http://iridl.ldeo.columbia.edu/SOURCES/.NOAA/.NGDC/.GLOBE/.topo' topo_worldbath = 'http://iridl.ldeo.columbia.edu/SOURCES/.WORLDBATH/.bath' topo__peltier = 'http://iridl.ldeo.columbia.edu/SOURCES/.PELTIER/.topography/T/0/VALUE%5BT%5Daverage'
#!/usr/bin/env python # -*- coding: utf-8 -*- """ __title__ = 'check_coverage' __author__ = 'JieYuan' __mtime__ = '19-1-31' """ # from gensim.models import KeyedVectors # # news_path = '../input/embeddings/GoogleNews-vectors-negative300/GoogleNews-vectors-negative300.bin' # embeddings_index = KeyedVectors.load_word2vec_format(news_path, binary=True) # # import operator # # # def check_coverage(vocab, embeddings_index): # a = {} # oov = {} # k = 0 # i = 0 # for word in tqdm(vocab): # try: # a[word] = embeddings_index[word] # k += vocab[word] # except: # # oov[word] = vocab[word] # i += vocab[word] # pass # # print('Found embeddings for {:.2%} of vocab'.format(len(a) / len(vocab))) # print('Found embeddings for {:.2%} of all text'.format(k / (k + i))) # sorted_x = sorted(oov.items(), key=operator.itemgetter(1))[::-1] # # return sorted_x # # # if __name__ == '__main__': # oov = check_coverage(vocab, embeddings_index)
""" __title__ = 'check_coverage' __author__ = 'JieYuan' __mtime__ = '19-1-31' """
class Ugly: def isUgly(self, num: int) -> bool: num=int(num) while num: if num==0: return False while num%2 ==0: num=num/2 while num%3 ==0: num=num/3 while num%5==0: num=num/5 if num==1: return True elif num!=1: return False print(Ugly().isUgly(14)) print(Ugly().isUgly(1)) print(Ugly().isUgly(5)) print(Ugly().isUgly(1928263)) print(Ugly().isUgly(900))
class Ugly: def is_ugly(self, num: int) -> bool: num = int(num) while num: if num == 0: return False while num % 2 == 0: num = num / 2 while num % 3 == 0: num = num / 3 while num % 5 == 0: num = num / 5 if num == 1: return True elif num != 1: return False print(ugly().isUgly(14)) print(ugly().isUgly(1)) print(ugly().isUgly(5)) print(ugly().isUgly(1928263)) print(ugly().isUgly(900))
class Solution: def peakIndexInMountainArray(self, A: List[int]) -> int: if not A: return None return A.index(max(A))
class Solution: def peak_index_in_mountain_array(self, A: List[int]) -> int: if not A: return None return A.index(max(A))
def _res_statement(items): statements = "" for variable_name, value in items.items(): statements += """ <string name=\\"{}\\">{}</string>""".format(variable_name, value) return statements def _generate_xml(items): statements = """<?xml version=\\"1.0\\" encoding=\\"utf-8\\"?> <resources>{} </resources> """ return statements.format(items) def res_value( name, custom_package, manifest, strings = {}): """Generates an android library target that exposes values specified in strings as generated resources xml. Usage: Provide the string variables in the string dictionary and add a dependency on this target. Args: name: name for this target, custom_package: package used for Android resource processing, manifest: required when resource_files are defined, strings: string value of type string """ res_value_file = "src/main/res/values/gen_strings.xml" strings_statements = _res_statement(strings) xml_generation = _generate_xml(strings_statements) cmd = """echo "{xml_generation}" > $@""".format(xml_generation = xml_generation) native.genrule( name = "_" + name, outs = [res_value_file], message = "Generating %s's resources" % (native.package_name()), cmd = cmd, ) native.android_library( name = name, manifest = manifest, custom_package = custom_package, resource_files = [res_value_file], )
def _res_statement(items): statements = '' for (variable_name, value) in items.items(): statements += '\n <string name=\\"{}\\">{}</string>'.format(variable_name, value) return statements def _generate_xml(items): statements = '<?xml version=\\"1.0\\" encoding=\\"utf-8\\"?>\n<resources>{}\n</resources>\n ' return statements.format(items) def res_value(name, custom_package, manifest, strings={}): """Generates an android library target that exposes values specified in strings as generated resources xml. Usage: Provide the string variables in the string dictionary and add a dependency on this target. Args: name: name for this target, custom_package: package used for Android resource processing, manifest: required when resource_files are defined, strings: string value of type string """ res_value_file = 'src/main/res/values/gen_strings.xml' strings_statements = _res_statement(strings) xml_generation = _generate_xml(strings_statements) cmd = 'echo "{xml_generation}" > $@'.format(xml_generation=xml_generation) native.genrule(name='_' + name, outs=[res_value_file], message="Generating %s's resources" % native.package_name(), cmd=cmd) native.android_library(name=name, manifest=manifest, custom_package=custom_package, resource_files=[res_value_file])
class TreeNode: def __init__(self,key): self.left = None self.right = None self.data = key # Function to insert node in tree recursively def insertNode(root,node): if root is None: root = node else: if root.data < node.data: if root.right is None: root.right = node else: insertNode(root.right, node) else: if root.left is None: root.left = node else: insertNode(root.left, node) # Function to print inorder traversal recursively def inOrderTraversal(root, li): if root: inOrderTraversal(root.left, li) li.append(root.data) inOrderTraversal(root.right, li) # Creating a new BST with root as 50 r = TreeNode(55) insertNode(r,TreeNode(35)) insertNode(r,TreeNode(25)) insertNode(r,TreeNode(45)) insertNode(r,TreeNode(75)) insertNode(r,TreeNode(65)) insertNode(r,TreeNode(85)) # Print inoder traversal of the BST ll =[] inOrderTraversal(r, ll) print(ll)
class Treenode: def __init__(self, key): self.left = None self.right = None self.data = key def insert_node(root, node): if root is None: root = node elif root.data < node.data: if root.right is None: root.right = node else: insert_node(root.right, node) elif root.left is None: root.left = node else: insert_node(root.left, node) def in_order_traversal(root, li): if root: in_order_traversal(root.left, li) li.append(root.data) in_order_traversal(root.right, li) r = tree_node(55) insert_node(r, tree_node(35)) insert_node(r, tree_node(25)) insert_node(r, tree_node(45)) insert_node(r, tree_node(75)) insert_node(r, tree_node(65)) insert_node(r, tree_node(85)) ll = [] in_order_traversal(r, ll) print(ll)
# Search in a list def contains(items:[int], x:int) -> bool: i:int = 0 while i < len(items): if items[i] == x: return True i = i + 1 return False if contains([4, 8, 15, 16, 23], 15): print("Item found!") # Prints this else: print("Item not found.")
def contains(items: [int], x: int) -> bool: i: int = 0 while i < len(items): if items[i] == x: return True i = i + 1 return False if contains([4, 8, 15, 16, 23], 15): print('Item found!') else: print('Item not found.')
__all__ = () class ConnectionKey: """ Contains information about a host, like proxy, TLS to prevent reusing wrong connections from the pool. Attributes ---------- host : `str` The host's ip address. is_ssl : `bool` Whether the connection is secure. port : `int` The host's port. proxy_auth : `None`, ``BasicAuth`` Proxy authorization. proxy_url : `None`, ``URL`` Proxy's url. ssl : `None`, ``SSLContext``, `bool`, ``Fingerprint`` The connection's ssl type. """ __slots__ = ('host', 'is_ssl', 'port', 'proxy_auth', 'proxy_url', 'ssl',) # + 'proxy_header_hash', def __init__(self, request): # proxy_headers = request.proxy_headers # if request.proxy_headers is not None: # proxy_header_hash = hash(tuple(proxy_headers.items())) # else: # proxy_header_hash = None self.host = request.host self.port = request.port self.is_ssl = request.is_ssl() self.ssl = request.ssl self.proxy_auth = request.proxy_auth self.proxy_url = request.proxy_url # self.proxy_header_hash = proxy_header_hash def __repr__(self): """Returns the connection key's representation.""" return f'<{self.__class__.__name__} host={self.host!r}, port={self.port!r}>' def __eq__(self, other): """Returns whether the two connection keys are equal.""" if type(self) is not type(other): return NotImplemented if self.host != other.host: return False if self.port != other.port: return False if self.is_ssl != other.is_ssl: return False if self.ssl is None: if other.ssl is not None: return False else: if other.ssl is None: return False if self.ssl != other.ssl: return False if self.proxy_auth is None: if other.proxy_auth is not None: return False else: if other.proxy_auth is None: return False if self.proxy_auth != other.proxy_auth: return False if self.proxy_url is None: if other.proxy_url is not None: return False else: if other.proxy_url is None: return False if self.proxy_url != other.proxy_url: return False return True def __hash__(self): """Returns the connection key's hash value.""" return hash(self.host) ^ (self.port << 17) ^ hash(self.is_ssl) ^ hash(self.ssl) ^ hash(self.proxy_auth) ^ \ hash(self.proxy_url)
__all__ = () class Connectionkey: """ Contains information about a host, like proxy, TLS to prevent reusing wrong connections from the pool. Attributes ---------- host : `str` The host's ip address. is_ssl : `bool` Whether the connection is secure. port : `int` The host's port. proxy_auth : `None`, ``BasicAuth`` Proxy authorization. proxy_url : `None`, ``URL`` Proxy's url. ssl : `None`, ``SSLContext``, `bool`, ``Fingerprint`` The connection's ssl type. """ __slots__ = ('host', 'is_ssl', 'port', 'proxy_auth', 'proxy_url', 'ssl') def __init__(self, request): self.host = request.host self.port = request.port self.is_ssl = request.is_ssl() self.ssl = request.ssl self.proxy_auth = request.proxy_auth self.proxy_url = request.proxy_url def __repr__(self): """Returns the connection key's representation.""" return f'<{self.__class__.__name__} host={self.host!r}, port={self.port!r}>' def __eq__(self, other): """Returns whether the two connection keys are equal.""" if type(self) is not type(other): return NotImplemented if self.host != other.host: return False if self.port != other.port: return False if self.is_ssl != other.is_ssl: return False if self.ssl is None: if other.ssl is not None: return False else: if other.ssl is None: return False if self.ssl != other.ssl: return False if self.proxy_auth is None: if other.proxy_auth is not None: return False else: if other.proxy_auth is None: return False if self.proxy_auth != other.proxy_auth: return False if self.proxy_url is None: if other.proxy_url is not None: return False else: if other.proxy_url is None: return False if self.proxy_url != other.proxy_url: return False return True def __hash__(self): """Returns the connection key's hash value.""" return hash(self.host) ^ self.port << 17 ^ hash(self.is_ssl) ^ hash(self.ssl) ^ hash(self.proxy_auth) ^ hash(self.proxy_url)
__title__ = 'sec-edgar-financials' __description__ = 'Extract financial data from the SEC EDGAR database' __url__ = 'https://github.com/farhadab/sec-edgar-financials' __version__ = '0.0.1' __author__ = 'Farhad Abdolhosseini' __author_email__ = 'farhadab15@gmail.com' __license__ = 'MIT' # __copyright__ = 'Copyright 2019 Farhad Abdolhosseini'
__title__ = 'sec-edgar-financials' __description__ = 'Extract financial data from the SEC EDGAR database' __url__ = 'https://github.com/farhadab/sec-edgar-financials' __version__ = '0.0.1' __author__ = 'Farhad Abdolhosseini' __author_email__ = 'farhadab15@gmail.com' __license__ = 'MIT'
"""Reusable static data.""" COMMIT = """ <lock-configuration/> <commit/> <unlock-configuration/> """ COMMIT_CHECK = """ <commit-configuration> <check/> </commit-configuration> """ CONFIG_JSON = """ <lock-configuration/> <load-configuration format="json"> <configuration-json> {config} </configuration-json> </load-configuration> <commit/> <unlock-configuration/> """ RESULTS = """<results>{results}</results>"""
"""Reusable static data.""" commit = '\n<lock-configuration/>\n<commit/>\n<unlock-configuration/>\n' commit_check = '\n<commit-configuration>\n <check/>\n</commit-configuration>\n' config_json = '\n<lock-configuration/>\n<load-configuration format="json">\n <configuration-json>\n {config}\n </configuration-json>\n</load-configuration>\n<commit/>\n<unlock-configuration/>\n' results = '<results>{results}</results>'
""" Calculates the normal distribution's probability density function (PDF). Calculates Standard normal pdf for mean=0, std_dev=1. Equation: f(x) = 1 / sqrt(2*pi) * e^(-(x-mean)^2/ 2*std_dev^2) """ def pdf(x, mean=0, std_dev=1): PI = 3.141592653589793 E = 2.718281828459045 term1 = 1.0 / ( (2 * PI)**0.5 ) term2 = E**( -1.0* (x-mean)**2.0 / 2.0*(std_dev**2.0) ) return term1 * term2
""" Calculates the normal distribution's probability density function (PDF). Calculates Standard normal pdf for mean=0, std_dev=1. Equation: f(x) = 1 / sqrt(2*pi) * e^(-(x-mean)^2/ 2*std_dev^2) """ def pdf(x, mean=0, std_dev=1): pi = 3.141592653589793 e = 2.718281828459045 term1 = 1.0 / (2 * PI) ** 0.5 term2 = E ** (-1.0 * (x - mean) ** 2.0 / 2.0 * std_dev ** 2.0) return term1 * term2
def binary_search(a,x): first_pos=0 last_pos=len(a)-1 flag=0 count=0 while(first_pos<=last_pos and flag==0): count=count+1 mid=(first_pos+last_pos)//2 if(x==a[mid]): flag==1 print("The element is present at position:",str(mid)) print("Number of iterations:",str(count)) return else: if(x<a[mid]): last_pos=mid-1 else: first_pos=mid+1 print("The number is not present") a=[] for i in range(1,1001): a.append(i) binary_search(a,1000)
def binary_search(a, x): first_pos = 0 last_pos = len(a) - 1 flag = 0 count = 0 while first_pos <= last_pos and flag == 0: count = count + 1 mid = (first_pos + last_pos) // 2 if x == a[mid]: flag == 1 print('The element is present at position:', str(mid)) print('Number of iterations:', str(count)) return elif x < a[mid]: last_pos = mid - 1 else: first_pos = mid + 1 print('The number is not present') a = [] for i in range(1, 1001): a.append(i) binary_search(a, 1000)
# # PySNMP MIB module Juniper-REDUNDANCY-MIB (http://snmplabs.com/pysmi) # ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/Juniper-REDUNDANCY-MIB # Produced by pysmi-0.3.4 at Mon Apr 29 19:53:26 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) # OctetString, ObjectIdentifier, Integer = mibBuilder.importSymbols("ASN1", "OctetString", "ObjectIdentifier", "Integer") NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues") ValueRangeConstraint, ConstraintsIntersection, SingleValueConstraint, ConstraintsUnion, ValueSizeConstraint = mibBuilder.importSymbols("ASN1-REFINEMENT", "ValueRangeConstraint", "ConstraintsIntersection", "SingleValueConstraint", "ConstraintsUnion", "ValueSizeConstraint") juniMibs, = mibBuilder.importSymbols("Juniper-MIBs", "juniMibs") NotificationGroup, ObjectGroup, ModuleCompliance = mibBuilder.importSymbols("SNMPv2-CONF", "NotificationGroup", "ObjectGroup", "ModuleCompliance") sysUpTime, = mibBuilder.importSymbols("SNMPv2-MIB", "sysUpTime") MibScalar, MibTable, MibTableRow, MibTableColumn, Unsigned32, Gauge32, TimeTicks, IpAddress, iso, ObjectIdentity, Counter32, Integer32, Bits, ModuleIdentity, Counter64, MibIdentifier, NotificationType = mibBuilder.importSymbols("SNMPv2-SMI", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "Unsigned32", "Gauge32", "TimeTicks", "IpAddress", "iso", "ObjectIdentity", "Counter32", "Integer32", "Bits", "ModuleIdentity", "Counter64", "MibIdentifier", "NotificationType") TextualConvention, RowStatus, DisplayString, DateAndTime, TruthValue = mibBuilder.importSymbols("SNMPv2-TC", "TextualConvention", "RowStatus", "DisplayString", "DateAndTime", "TruthValue") juniRedundancyMIB = ModuleIdentity((1, 3, 6, 1, 4, 1, 4874, 2, 2, 74)) juniRedundancyMIB.setRevisions(('2003-12-12 00:00',)) if mibBuilder.loadTexts: juniRedundancyMIB.setLastUpdated('200312122104Z') if mibBuilder.loadTexts: juniRedundancyMIB.setOrganization('Juniper Networks, Inc.') class JuniRedundancyState(TextualConvention, Integer32): status = 'current' subtypeSpec = Integer32.subtypeSpec + ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6)) namedValues = NamedValues(("notKnown", 1), ("fileSystemSyncing", 2), ("disabled", 3), ("initializing", 4), ("pending", 5), ("active", 6)) class JuniRedundancyMode(TextualConvention, Integer32): status = 'current' subtypeSpec = Integer32.subtypeSpec + ConstraintsUnion(SingleValueConstraint(1, 2)) namedValues = NamedValues(("fileSystemSynchronization", 1), ("highAvailability", 2)) class JuniRedundancyResetReason(TextualConvention, Integer32): status = 'current' subtypeSpec = Integer32.subtypeSpec + ConstraintsUnion(SingleValueConstraint(1, 2, 3)) namedValues = NamedValues(("none", 1), ("notKnown", 2), ("userInitiated", 3)) class JuniRedundancySystemActivationType(TextualConvention, Integer32): status = 'current' subtypeSpec = Integer32.subtypeSpec + ConstraintsUnion(SingleValueConstraint(1, 2, 3)) namedValues = NamedValues(("reload", 1), ("coldSwitch", 2), ("warmSwitch", 3)) class JuniRedundancyResetType(TextualConvention, Integer32): status = 'current' subtypeSpec = Integer32.subtypeSpec + ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5)) namedValues = NamedValues(("notKnown", 1), ("srpReload", 2), ("srpSwitchover", 3), ("linecardReload", 4), ("linecardSwitchover", 5)) class JuniRedundancyHistoryCommand(TextualConvention, Integer32): status = 'current' subtypeSpec = Integer32.subtypeSpec + ConstraintsUnion(SingleValueConstraint(1, 2)) namedValues = NamedValues(("keep", 1), ("clear", 2)) juniRedundancyNotifications = MibIdentifier((1, 3, 6, 1, 4, 1, 4874, 2, 2, 74, 0)) juniRedundancyObjects = MibIdentifier((1, 3, 6, 1, 4, 1, 4874, 2, 2, 74, 1)) juniRedundancyMIBConformance = MibIdentifier((1, 3, 6, 1, 4, 1, 4874, 2, 2, 74, 2)) juniRedundancyStatus = MibIdentifier((1, 3, 6, 1, 4, 1, 4874, 2, 2, 74, 1, 1)) juniRedundancyCfg = MibIdentifier((1, 3, 6, 1, 4, 1, 4874, 2, 2, 74, 1, 2)) juniRedundancyHistory = MibIdentifier((1, 3, 6, 1, 4, 1, 4874, 2, 2, 74, 1, 3)) juniRedundancyActiveSlot = MibScalar((1, 3, 6, 1, 4, 1, 4874, 2, 2, 74, 1, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 255))).setMaxAccess("readonly") if mibBuilder.loadTexts: juniRedundancyActiveSlot.setStatus('current') juniRedundancyActiveSlotState = MibScalar((1, 3, 6, 1, 4, 1, 4874, 2, 2, 74, 1, 1, 2), JuniRedundancyState()).setMaxAccess("readonly") if mibBuilder.loadTexts: juniRedundancyActiveSlotState.setStatus('current') juniRedundancyStandbySlot = MibScalar((1, 3, 6, 1, 4, 1, 4874, 2, 2, 74, 1, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 255))).setMaxAccess("readonly") if mibBuilder.loadTexts: juniRedundancyStandbySlot.setStatus('current') juniRedundancyStandbySlotState = MibScalar((1, 3, 6, 1, 4, 1, 4874, 2, 2, 74, 1, 1, 4), JuniRedundancyState()).setMaxAccess("readonly") if mibBuilder.loadTexts: juniRedundancyStandbySlotState.setStatus('current') juniRedundancyLastResetReason = MibScalar((1, 3, 6, 1, 4, 1, 4874, 2, 2, 74, 1, 1, 5), JuniRedundancyResetReason()).setMaxAccess("readonly") if mibBuilder.loadTexts: juniRedundancyLastResetReason.setStatus('current') juniRedundancyLastSystemActivationTime = MibScalar((1, 3, 6, 1, 4, 1, 4874, 2, 2, 74, 1, 1, 6), TimeTicks()).setMaxAccess("readonly") if mibBuilder.loadTexts: juniRedundancyLastSystemActivationTime.setStatus('current') juniRedundancyLastSystemActivationType = MibScalar((1, 3, 6, 1, 4, 1, 4874, 2, 2, 74, 1, 1, 7), JuniRedundancySystemActivationType()).setMaxAccess("readonly") if mibBuilder.loadTexts: juniRedundancyLastSystemActivationType.setStatus('current') juniRedundancyHaActiveTime = MibScalar((1, 3, 6, 1, 4, 1, 4874, 2, 2, 74, 1, 1, 8), TimeTicks()).setMaxAccess("readonly") if mibBuilder.loadTexts: juniRedundancyHaActiveTime.setStatus('current') juniRedundancyNotifsEnabled = MibScalar((1, 3, 6, 1, 4, 1, 4874, 2, 2, 74, 1, 2, 1), TruthValue().clone('true')).setMaxAccess("readwrite") if mibBuilder.loadTexts: juniRedundancyNotifsEnabled.setStatus('current') juniRedundancyCfgRedundancyMode = MibScalar((1, 3, 6, 1, 4, 1, 4874, 2, 2, 74, 1, 2, 2), JuniRedundancyMode().clone('fileSystemSynchronization')).setMaxAccess("readwrite") if mibBuilder.loadTexts: juniRedundancyCfgRedundancyMode.setStatus('current') juniRedundancySystemActivationHistoryTableMaxLength = MibScalar((1, 3, 6, 1, 4, 1, 4874, 2, 2, 74, 1, 3, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 50))).setMaxAccess("readwrite") if mibBuilder.loadTexts: juniRedundancySystemActivationHistoryTableMaxLength.setStatus('current') juniRedundancySystemActivationHistoryCommand = MibScalar((1, 3, 6, 1, 4, 1, 4874, 2, 2, 74, 1, 3, 2), JuniRedundancyHistoryCommand().clone('keep')).setMaxAccess("readwrite") if mibBuilder.loadTexts: juniRedundancySystemActivationHistoryCommand.setStatus('current') juniRedundancySystemActivationHistoryTable = MibTable((1, 3, 6, 1, 4, 1, 4874, 2, 2, 74, 1, 3, 3), ) if mibBuilder.loadTexts: juniRedundancySystemActivationHistoryTable.setStatus('current') juniRedundancySystemActivationHistoryEntry = MibTableRow((1, 3, 6, 1, 4, 1, 4874, 2, 2, 74, 1, 3, 3, 1), ).setIndexNames((0, "Juniper-REDUNDANCY-MIB", "juniRedundancySystemActivationHistoryIndex")) if mibBuilder.loadTexts: juniRedundancySystemActivationHistoryEntry.setStatus('current') juniRedundancySystemActivationHistoryIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 4874, 2, 2, 74, 1, 3, 3, 1, 1), Integer32()) if mibBuilder.loadTexts: juniRedundancySystemActivationHistoryIndex.setStatus('current') juniRedundancyHistoryResetType = MibTableColumn((1, 3, 6, 1, 4, 1, 4874, 2, 2, 74, 1, 3, 3, 1, 2), JuniRedundancyResetType()).setMaxAccess("readonly") if mibBuilder.loadTexts: juniRedundancyHistoryResetType.setStatus('current') juniRedundancyHistoryActivationType = MibTableColumn((1, 3, 6, 1, 4, 1, 4874, 2, 2, 74, 1, 3, 3, 1, 3), JuniRedundancySystemActivationType()).setMaxAccess("readonly") if mibBuilder.loadTexts: juniRedundancyHistoryActivationType.setStatus('current') juniRedundancyHistoryPrevActiveSlot = MibTableColumn((1, 3, 6, 1, 4, 1, 4874, 2, 2, 74, 1, 3, 3, 1, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 255))).setMaxAccess("readonly") if mibBuilder.loadTexts: juniRedundancyHistoryPrevActiveSlot.setStatus('current') juniRedundancyHistoryPrevActiveRelease = MibTableColumn((1, 3, 6, 1, 4, 1, 4874, 2, 2, 74, 1, 3, 3, 1, 5), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: juniRedundancyHistoryPrevActiveRelease.setStatus('current') juniRedundancyHistoryCurrActiveSlot = MibTableColumn((1, 3, 6, 1, 4, 1, 4874, 2, 2, 74, 1, 3, 3, 1, 6), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 255))).setMaxAccess("readonly") if mibBuilder.loadTexts: juniRedundancyHistoryCurrActiveSlot.setStatus('current') juniRedundancyHistoryCurrActiveRelease = MibTableColumn((1, 3, 6, 1, 4, 1, 4874, 2, 2, 74, 1, 3, 3, 1, 7), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: juniRedundancyHistoryCurrActiveRelease.setStatus('current') juniRedundancyHistoryResetReason = MibTableColumn((1, 3, 6, 1, 4, 1, 4874, 2, 2, 74, 1, 3, 3, 1, 8), JuniRedundancyResetReason()).setMaxAccess("readonly") if mibBuilder.loadTexts: juniRedundancyHistoryResetReason.setStatus('current') juniRedundancyHistoryActivationTime = MibTableColumn((1, 3, 6, 1, 4, 1, 4874, 2, 2, 74, 1, 3, 3, 1, 9), DateAndTime()).setMaxAccess("readonly") if mibBuilder.loadTexts: juniRedundancyHistoryActivationTime.setStatus('current') juniRedundancyHistoryReloads = MibScalar((1, 3, 6, 1, 4, 1, 4874, 2, 2, 74, 1, 3, 4), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: juniRedundancyHistoryReloads.setStatus('current') juniRedundancyHistoryColdSwitchovers = MibScalar((1, 3, 6, 1, 4, 1, 4874, 2, 2, 74, 1, 3, 5), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: juniRedundancyHistoryColdSwitchovers.setStatus('current') juniRedundancyHistoryWarmSwitchovers = MibScalar((1, 3, 6, 1, 4, 1, 4874, 2, 2, 74, 1, 3, 6), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: juniRedundancyHistoryWarmSwitchovers.setStatus('current') juniRedundancyColdSwitchoverNotification = NotificationType((1, 3, 6, 1, 4, 1, 4874, 2, 2, 74, 0, 1)).setObjects(("Juniper-REDUNDANCY-MIB", "juniRedundancyActiveSlot"), ("Juniper-REDUNDANCY-MIB", "juniRedundancyLastResetReason")) if mibBuilder.loadTexts: juniRedundancyColdSwitchoverNotification.setStatus('current') juniRedundancyWarmSwitchoverNotification = NotificationType((1, 3, 6, 1, 4, 1, 4874, 2, 2, 74, 0, 2)).setObjects(("Juniper-REDUNDANCY-MIB", "juniRedundancyActiveSlot"), ("Juniper-REDUNDANCY-MIB", "juniRedundancyLastResetReason")) if mibBuilder.loadTexts: juniRedundancyWarmSwitchoverNotification.setStatus('current') juniRedundancyStateEnabledNotification = NotificationType((1, 3, 6, 1, 4, 1, 4874, 2, 2, 74, 0, 3)).setObjects(("Juniper-REDUNDANCY-MIB", "juniRedundancyActiveSlot")) if mibBuilder.loadTexts: juniRedundancyStateEnabledNotification.setStatus('current') juniRedundancyStateDisabledNotification = NotificationType((1, 3, 6, 1, 4, 1, 4874, 2, 2, 74, 0, 4)).setObjects(("Juniper-REDUNDANCY-MIB", "juniRedundancyActiveSlot")) if mibBuilder.loadTexts: juniRedundancyStateDisabledNotification.setStatus('current') juniRedundancyStatePendingNotification = NotificationType((1, 3, 6, 1, 4, 1, 4874, 2, 2, 74, 0, 5)).setObjects(("Juniper-REDUNDANCY-MIB", "juniRedundancyActiveSlot")) if mibBuilder.loadTexts: juniRedundancyStatePendingNotification.setStatus('current') juniRedundancyModeNotification = NotificationType((1, 3, 6, 1, 4, 1, 4874, 2, 2, 74, 0, 6)).setObjects(("Juniper-REDUNDANCY-MIB", "juniRedundancyActiveSlot"), ("Juniper-REDUNDANCY-MIB", "juniRedundancyCfgRedundancyMode")) if mibBuilder.loadTexts: juniRedundancyModeNotification.setStatus('current') juniRedundancyMIBCompliances = MibIdentifier((1, 3, 6, 1, 4, 1, 4874, 2, 2, 74, 2, 1)) juniRedundancyMIBGroups = MibIdentifier((1, 3, 6, 1, 4, 1, 4874, 2, 2, 74, 2, 2)) juniRedundancyMIBCompliance = ModuleCompliance((1, 3, 6, 1, 4, 1, 4874, 2, 2, 74, 2, 1, 1)).setObjects(("Juniper-REDUNDANCY-MIB", "juniRedundancyStatusGroup"), ("Juniper-REDUNDANCY-MIB", "juniRedundancyCfgGroup"), ("Juniper-REDUNDANCY-MIB", "juniRedundancyHistoryGroup"), ("Juniper-REDUNDANCY-MIB", "juniRedundancyNotificationGroup")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): juniRedundancyMIBCompliance = juniRedundancyMIBCompliance.setStatus('current') juniRedundancyStatusGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 4874, 2, 2, 74, 2, 2, 1)).setObjects(("Juniper-REDUNDANCY-MIB", "juniRedundancyActiveSlot"), ("Juniper-REDUNDANCY-MIB", "juniRedundancyActiveSlotState"), ("Juniper-REDUNDANCY-MIB", "juniRedundancyStandbySlot"), ("Juniper-REDUNDANCY-MIB", "juniRedundancyStandbySlotState"), ("Juniper-REDUNDANCY-MIB", "juniRedundancyLastResetReason"), ("Juniper-REDUNDANCY-MIB", "juniRedundancyLastSystemActivationTime"), ("Juniper-REDUNDANCY-MIB", "juniRedundancyLastSystemActivationType"), ("Juniper-REDUNDANCY-MIB", "juniRedundancyHaActiveTime")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): juniRedundancyStatusGroup = juniRedundancyStatusGroup.setStatus('current') juniRedundancyCfgGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 4874, 2, 2, 74, 2, 2, 2)).setObjects(("Juniper-REDUNDANCY-MIB", "juniRedundancyNotifsEnabled"), ("Juniper-REDUNDANCY-MIB", "juniRedundancyCfgRedundancyMode")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): juniRedundancyCfgGroup = juniRedundancyCfgGroup.setStatus('current') juniRedundancyHistoryGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 4874, 2, 2, 74, 2, 2, 3)).setObjects(("Juniper-REDUNDANCY-MIB", "juniRedundancySystemActivationHistoryTableMaxLength"), ("Juniper-REDUNDANCY-MIB", "juniRedundancySystemActivationHistoryCommand"), ("Juniper-REDUNDANCY-MIB", "juniRedundancyHistoryResetType"), ("Juniper-REDUNDANCY-MIB", "juniRedundancyHistoryActivationType"), ("Juniper-REDUNDANCY-MIB", "juniRedundancyHistoryPrevActiveSlot"), ("Juniper-REDUNDANCY-MIB", "juniRedundancyHistoryPrevActiveRelease"), ("Juniper-REDUNDANCY-MIB", "juniRedundancyHistoryCurrActiveSlot"), ("Juniper-REDUNDANCY-MIB", "juniRedundancyHistoryCurrActiveRelease"), ("Juniper-REDUNDANCY-MIB", "juniRedundancyHistoryResetReason"), ("Juniper-REDUNDANCY-MIB", "juniRedundancyHistoryActivationTime"), ("Juniper-REDUNDANCY-MIB", "juniRedundancyHistoryReloads"), ("Juniper-REDUNDANCY-MIB", "juniRedundancyHistoryColdSwitchovers"), ("Juniper-REDUNDANCY-MIB", "juniRedundancyHistoryWarmSwitchovers")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): juniRedundancyHistoryGroup = juniRedundancyHistoryGroup.setStatus('current') juniRedundancyNotificationGroup = NotificationGroup((1, 3, 6, 1, 4, 1, 4874, 2, 2, 74, 2, 2, 4)).setObjects(("Juniper-REDUNDANCY-MIB", "juniRedundancyColdSwitchoverNotification"), ("Juniper-REDUNDANCY-MIB", "juniRedundancyWarmSwitchoverNotification"), ("Juniper-REDUNDANCY-MIB", "juniRedundancyStateEnabledNotification"), ("Juniper-REDUNDANCY-MIB", "juniRedundancyStateDisabledNotification"), ("Juniper-REDUNDANCY-MIB", "juniRedundancyStatePendingNotification"), ("Juniper-REDUNDANCY-MIB", "juniRedundancyModeNotification")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): juniRedundancyNotificationGroup = juniRedundancyNotificationGroup.setStatus('current') mibBuilder.exportSymbols("Juniper-REDUNDANCY-MIB", juniRedundancyStatusGroup=juniRedundancyStatusGroup, juniRedundancyHistoryGroup=juniRedundancyHistoryGroup, JuniRedundancyHistoryCommand=JuniRedundancyHistoryCommand, juniRedundancyStatePendingNotification=juniRedundancyStatePendingNotification, juniRedundancySystemActivationHistoryCommand=juniRedundancySystemActivationHistoryCommand, juniRedundancyStateEnabledNotification=juniRedundancyStateEnabledNotification, juniRedundancySystemActivationHistoryIndex=juniRedundancySystemActivationHistoryIndex, PYSNMP_MODULE_ID=juniRedundancyMIB, juniRedundancyMIBCompliance=juniRedundancyMIBCompliance, JuniRedundancyState=JuniRedundancyState, juniRedundancyStateDisabledNotification=juniRedundancyStateDisabledNotification, juniRedundancyMIBConformance=juniRedundancyMIBConformance, juniRedundancyNotifsEnabled=juniRedundancyNotifsEnabled, juniRedundancySystemActivationHistoryTable=juniRedundancySystemActivationHistoryTable, juniRedundancyCfgGroup=juniRedundancyCfgGroup, juniRedundancyModeNotification=juniRedundancyModeNotification, juniRedundancyCfg=juniRedundancyCfg, juniRedundancyHistoryColdSwitchovers=juniRedundancyHistoryColdSwitchovers, juniRedundancyLastSystemActivationTime=juniRedundancyLastSystemActivationTime, juniRedundancyColdSwitchoverNotification=juniRedundancyColdSwitchoverNotification, juniRedundancyActiveSlotState=juniRedundancyActiveSlotState, juniRedundancyHistoryActivationType=juniRedundancyHistoryActivationType, JuniRedundancyMode=JuniRedundancyMode, juniRedundancyHistoryCurrActiveRelease=juniRedundancyHistoryCurrActiveRelease, juniRedundancyHistoryPrevActiveSlot=juniRedundancyHistoryPrevActiveSlot, juniRedundancyStatus=juniRedundancyStatus, juniRedundancyHistoryResetType=juniRedundancyHistoryResetType, juniRedundancyNotificationGroup=juniRedundancyNotificationGroup, juniRedundancyHistoryReloads=juniRedundancyHistoryReloads, juniRedundancyNotifications=juniRedundancyNotifications, juniRedundancyObjects=juniRedundancyObjects, juniRedundancyMIB=juniRedundancyMIB, juniRedundancyHistory=juniRedundancyHistory, juniRedundancySystemActivationHistoryEntry=juniRedundancySystemActivationHistoryEntry, JuniRedundancyResetReason=JuniRedundancyResetReason, juniRedundancyCfgRedundancyMode=juniRedundancyCfgRedundancyMode, juniRedundancySystemActivationHistoryTableMaxLength=juniRedundancySystemActivationHistoryTableMaxLength, juniRedundancyHistoryWarmSwitchovers=juniRedundancyHistoryWarmSwitchovers, juniRedundancyLastResetReason=juniRedundancyLastResetReason, juniRedundancyStandbySlot=juniRedundancyStandbySlot, juniRedundancyHistoryResetReason=juniRedundancyHistoryResetReason, juniRedundancyMIBGroups=juniRedundancyMIBGroups, JuniRedundancyResetType=JuniRedundancyResetType, juniRedundancyMIBCompliances=juniRedundancyMIBCompliances, JuniRedundancySystemActivationType=JuniRedundancySystemActivationType, juniRedundancyHistoryCurrActiveSlot=juniRedundancyHistoryCurrActiveSlot, juniRedundancyHaActiveTime=juniRedundancyHaActiveTime, juniRedundancyHistoryPrevActiveRelease=juniRedundancyHistoryPrevActiveRelease, juniRedundancyHistoryActivationTime=juniRedundancyHistoryActivationTime, juniRedundancyWarmSwitchoverNotification=juniRedundancyWarmSwitchoverNotification, juniRedundancyLastSystemActivationType=juniRedundancyLastSystemActivationType, juniRedundancyStandbySlotState=juniRedundancyStandbySlotState, juniRedundancyActiveSlot=juniRedundancyActiveSlot)
(octet_string, object_identifier, integer) = mibBuilder.importSymbols('ASN1', 'OctetString', 'ObjectIdentifier', 'Integer') (named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues') (value_range_constraint, constraints_intersection, single_value_constraint, constraints_union, value_size_constraint) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'ValueRangeConstraint', 'ConstraintsIntersection', 'SingleValueConstraint', 'ConstraintsUnion', 'ValueSizeConstraint') (juni_mibs,) = mibBuilder.importSymbols('Juniper-MIBs', 'juniMibs') (notification_group, object_group, module_compliance) = mibBuilder.importSymbols('SNMPv2-CONF', 'NotificationGroup', 'ObjectGroup', 'ModuleCompliance') (sys_up_time,) = mibBuilder.importSymbols('SNMPv2-MIB', 'sysUpTime') (mib_scalar, mib_table, mib_table_row, mib_table_column, unsigned32, gauge32, time_ticks, ip_address, iso, object_identity, counter32, integer32, bits, module_identity, counter64, mib_identifier, notification_type) = mibBuilder.importSymbols('SNMPv2-SMI', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn', 'Unsigned32', 'Gauge32', 'TimeTicks', 'IpAddress', 'iso', 'ObjectIdentity', 'Counter32', 'Integer32', 'Bits', 'ModuleIdentity', 'Counter64', 'MibIdentifier', 'NotificationType') (textual_convention, row_status, display_string, date_and_time, truth_value) = mibBuilder.importSymbols('SNMPv2-TC', 'TextualConvention', 'RowStatus', 'DisplayString', 'DateAndTime', 'TruthValue') juni_redundancy_mib = module_identity((1, 3, 6, 1, 4, 1, 4874, 2, 2, 74)) juniRedundancyMIB.setRevisions(('2003-12-12 00:00',)) if mibBuilder.loadTexts: juniRedundancyMIB.setLastUpdated('200312122104Z') if mibBuilder.loadTexts: juniRedundancyMIB.setOrganization('Juniper Networks, Inc.') class Juniredundancystate(TextualConvention, Integer32): status = 'current' subtype_spec = Integer32.subtypeSpec + constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6)) named_values = named_values(('notKnown', 1), ('fileSystemSyncing', 2), ('disabled', 3), ('initializing', 4), ('pending', 5), ('active', 6)) class Juniredundancymode(TextualConvention, Integer32): status = 'current' subtype_spec = Integer32.subtypeSpec + constraints_union(single_value_constraint(1, 2)) named_values = named_values(('fileSystemSynchronization', 1), ('highAvailability', 2)) class Juniredundancyresetreason(TextualConvention, Integer32): status = 'current' subtype_spec = Integer32.subtypeSpec + constraints_union(single_value_constraint(1, 2, 3)) named_values = named_values(('none', 1), ('notKnown', 2), ('userInitiated', 3)) class Juniredundancysystemactivationtype(TextualConvention, Integer32): status = 'current' subtype_spec = Integer32.subtypeSpec + constraints_union(single_value_constraint(1, 2, 3)) named_values = named_values(('reload', 1), ('coldSwitch', 2), ('warmSwitch', 3)) class Juniredundancyresettype(TextualConvention, Integer32): status = 'current' subtype_spec = Integer32.subtypeSpec + constraints_union(single_value_constraint(1, 2, 3, 4, 5)) named_values = named_values(('notKnown', 1), ('srpReload', 2), ('srpSwitchover', 3), ('linecardReload', 4), ('linecardSwitchover', 5)) class Juniredundancyhistorycommand(TextualConvention, Integer32): status = 'current' subtype_spec = Integer32.subtypeSpec + constraints_union(single_value_constraint(1, 2)) named_values = named_values(('keep', 1), ('clear', 2)) juni_redundancy_notifications = mib_identifier((1, 3, 6, 1, 4, 1, 4874, 2, 2, 74, 0)) juni_redundancy_objects = mib_identifier((1, 3, 6, 1, 4, 1, 4874, 2, 2, 74, 1)) juni_redundancy_mib_conformance = mib_identifier((1, 3, 6, 1, 4, 1, 4874, 2, 2, 74, 2)) juni_redundancy_status = mib_identifier((1, 3, 6, 1, 4, 1, 4874, 2, 2, 74, 1, 1)) juni_redundancy_cfg = mib_identifier((1, 3, 6, 1, 4, 1, 4874, 2, 2, 74, 1, 2)) juni_redundancy_history = mib_identifier((1, 3, 6, 1, 4, 1, 4874, 2, 2, 74, 1, 3)) juni_redundancy_active_slot = mib_scalar((1, 3, 6, 1, 4, 1, 4874, 2, 2, 74, 1, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 255))).setMaxAccess('readonly') if mibBuilder.loadTexts: juniRedundancyActiveSlot.setStatus('current') juni_redundancy_active_slot_state = mib_scalar((1, 3, 6, 1, 4, 1, 4874, 2, 2, 74, 1, 1, 2), juni_redundancy_state()).setMaxAccess('readonly') if mibBuilder.loadTexts: juniRedundancyActiveSlotState.setStatus('current') juni_redundancy_standby_slot = mib_scalar((1, 3, 6, 1, 4, 1, 4874, 2, 2, 74, 1, 1, 3), integer32().subtype(subtypeSpec=value_range_constraint(0, 255))).setMaxAccess('readonly') if mibBuilder.loadTexts: juniRedundancyStandbySlot.setStatus('current') juni_redundancy_standby_slot_state = mib_scalar((1, 3, 6, 1, 4, 1, 4874, 2, 2, 74, 1, 1, 4), juni_redundancy_state()).setMaxAccess('readonly') if mibBuilder.loadTexts: juniRedundancyStandbySlotState.setStatus('current') juni_redundancy_last_reset_reason = mib_scalar((1, 3, 6, 1, 4, 1, 4874, 2, 2, 74, 1, 1, 5), juni_redundancy_reset_reason()).setMaxAccess('readonly') if mibBuilder.loadTexts: juniRedundancyLastResetReason.setStatus('current') juni_redundancy_last_system_activation_time = mib_scalar((1, 3, 6, 1, 4, 1, 4874, 2, 2, 74, 1, 1, 6), time_ticks()).setMaxAccess('readonly') if mibBuilder.loadTexts: juniRedundancyLastSystemActivationTime.setStatus('current') juni_redundancy_last_system_activation_type = mib_scalar((1, 3, 6, 1, 4, 1, 4874, 2, 2, 74, 1, 1, 7), juni_redundancy_system_activation_type()).setMaxAccess('readonly') if mibBuilder.loadTexts: juniRedundancyLastSystemActivationType.setStatus('current') juni_redundancy_ha_active_time = mib_scalar((1, 3, 6, 1, 4, 1, 4874, 2, 2, 74, 1, 1, 8), time_ticks()).setMaxAccess('readonly') if mibBuilder.loadTexts: juniRedundancyHaActiveTime.setStatus('current') juni_redundancy_notifs_enabled = mib_scalar((1, 3, 6, 1, 4, 1, 4874, 2, 2, 74, 1, 2, 1), truth_value().clone('true')).setMaxAccess('readwrite') if mibBuilder.loadTexts: juniRedundancyNotifsEnabled.setStatus('current') juni_redundancy_cfg_redundancy_mode = mib_scalar((1, 3, 6, 1, 4, 1, 4874, 2, 2, 74, 1, 2, 2), juni_redundancy_mode().clone('fileSystemSynchronization')).setMaxAccess('readwrite') if mibBuilder.loadTexts: juniRedundancyCfgRedundancyMode.setStatus('current') juni_redundancy_system_activation_history_table_max_length = mib_scalar((1, 3, 6, 1, 4, 1, 4874, 2, 2, 74, 1, 3, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 50))).setMaxAccess('readwrite') if mibBuilder.loadTexts: juniRedundancySystemActivationHistoryTableMaxLength.setStatus('current') juni_redundancy_system_activation_history_command = mib_scalar((1, 3, 6, 1, 4, 1, 4874, 2, 2, 74, 1, 3, 2), juni_redundancy_history_command().clone('keep')).setMaxAccess('readwrite') if mibBuilder.loadTexts: juniRedundancySystemActivationHistoryCommand.setStatus('current') juni_redundancy_system_activation_history_table = mib_table((1, 3, 6, 1, 4, 1, 4874, 2, 2, 74, 1, 3, 3)) if mibBuilder.loadTexts: juniRedundancySystemActivationHistoryTable.setStatus('current') juni_redundancy_system_activation_history_entry = mib_table_row((1, 3, 6, 1, 4, 1, 4874, 2, 2, 74, 1, 3, 3, 1)).setIndexNames((0, 'Juniper-REDUNDANCY-MIB', 'juniRedundancySystemActivationHistoryIndex')) if mibBuilder.loadTexts: juniRedundancySystemActivationHistoryEntry.setStatus('current') juni_redundancy_system_activation_history_index = mib_table_column((1, 3, 6, 1, 4, 1, 4874, 2, 2, 74, 1, 3, 3, 1, 1), integer32()) if mibBuilder.loadTexts: juniRedundancySystemActivationHistoryIndex.setStatus('current') juni_redundancy_history_reset_type = mib_table_column((1, 3, 6, 1, 4, 1, 4874, 2, 2, 74, 1, 3, 3, 1, 2), juni_redundancy_reset_type()).setMaxAccess('readonly') if mibBuilder.loadTexts: juniRedundancyHistoryResetType.setStatus('current') juni_redundancy_history_activation_type = mib_table_column((1, 3, 6, 1, 4, 1, 4874, 2, 2, 74, 1, 3, 3, 1, 3), juni_redundancy_system_activation_type()).setMaxAccess('readonly') if mibBuilder.loadTexts: juniRedundancyHistoryActivationType.setStatus('current') juni_redundancy_history_prev_active_slot = mib_table_column((1, 3, 6, 1, 4, 1, 4874, 2, 2, 74, 1, 3, 3, 1, 4), integer32().subtype(subtypeSpec=value_range_constraint(0, 255))).setMaxAccess('readonly') if mibBuilder.loadTexts: juniRedundancyHistoryPrevActiveSlot.setStatus('current') juni_redundancy_history_prev_active_release = mib_table_column((1, 3, 6, 1, 4, 1, 4874, 2, 2, 74, 1, 3, 3, 1, 5), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: juniRedundancyHistoryPrevActiveRelease.setStatus('current') juni_redundancy_history_curr_active_slot = mib_table_column((1, 3, 6, 1, 4, 1, 4874, 2, 2, 74, 1, 3, 3, 1, 6), integer32().subtype(subtypeSpec=value_range_constraint(0, 255))).setMaxAccess('readonly') if mibBuilder.loadTexts: juniRedundancyHistoryCurrActiveSlot.setStatus('current') juni_redundancy_history_curr_active_release = mib_table_column((1, 3, 6, 1, 4, 1, 4874, 2, 2, 74, 1, 3, 3, 1, 7), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: juniRedundancyHistoryCurrActiveRelease.setStatus('current') juni_redundancy_history_reset_reason = mib_table_column((1, 3, 6, 1, 4, 1, 4874, 2, 2, 74, 1, 3, 3, 1, 8), juni_redundancy_reset_reason()).setMaxAccess('readonly') if mibBuilder.loadTexts: juniRedundancyHistoryResetReason.setStatus('current') juni_redundancy_history_activation_time = mib_table_column((1, 3, 6, 1, 4, 1, 4874, 2, 2, 74, 1, 3, 3, 1, 9), date_and_time()).setMaxAccess('readonly') if mibBuilder.loadTexts: juniRedundancyHistoryActivationTime.setStatus('current') juni_redundancy_history_reloads = mib_scalar((1, 3, 6, 1, 4, 1, 4874, 2, 2, 74, 1, 3, 4), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: juniRedundancyHistoryReloads.setStatus('current') juni_redundancy_history_cold_switchovers = mib_scalar((1, 3, 6, 1, 4, 1, 4874, 2, 2, 74, 1, 3, 5), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: juniRedundancyHistoryColdSwitchovers.setStatus('current') juni_redundancy_history_warm_switchovers = mib_scalar((1, 3, 6, 1, 4, 1, 4874, 2, 2, 74, 1, 3, 6), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: juniRedundancyHistoryWarmSwitchovers.setStatus('current') juni_redundancy_cold_switchover_notification = notification_type((1, 3, 6, 1, 4, 1, 4874, 2, 2, 74, 0, 1)).setObjects(('Juniper-REDUNDANCY-MIB', 'juniRedundancyActiveSlot'), ('Juniper-REDUNDANCY-MIB', 'juniRedundancyLastResetReason')) if mibBuilder.loadTexts: juniRedundancyColdSwitchoverNotification.setStatus('current') juni_redundancy_warm_switchover_notification = notification_type((1, 3, 6, 1, 4, 1, 4874, 2, 2, 74, 0, 2)).setObjects(('Juniper-REDUNDANCY-MIB', 'juniRedundancyActiveSlot'), ('Juniper-REDUNDANCY-MIB', 'juniRedundancyLastResetReason')) if mibBuilder.loadTexts: juniRedundancyWarmSwitchoverNotification.setStatus('current') juni_redundancy_state_enabled_notification = notification_type((1, 3, 6, 1, 4, 1, 4874, 2, 2, 74, 0, 3)).setObjects(('Juniper-REDUNDANCY-MIB', 'juniRedundancyActiveSlot')) if mibBuilder.loadTexts: juniRedundancyStateEnabledNotification.setStatus('current') juni_redundancy_state_disabled_notification = notification_type((1, 3, 6, 1, 4, 1, 4874, 2, 2, 74, 0, 4)).setObjects(('Juniper-REDUNDANCY-MIB', 'juniRedundancyActiveSlot')) if mibBuilder.loadTexts: juniRedundancyStateDisabledNotification.setStatus('current') juni_redundancy_state_pending_notification = notification_type((1, 3, 6, 1, 4, 1, 4874, 2, 2, 74, 0, 5)).setObjects(('Juniper-REDUNDANCY-MIB', 'juniRedundancyActiveSlot')) if mibBuilder.loadTexts: juniRedundancyStatePendingNotification.setStatus('current') juni_redundancy_mode_notification = notification_type((1, 3, 6, 1, 4, 1, 4874, 2, 2, 74, 0, 6)).setObjects(('Juniper-REDUNDANCY-MIB', 'juniRedundancyActiveSlot'), ('Juniper-REDUNDANCY-MIB', 'juniRedundancyCfgRedundancyMode')) if mibBuilder.loadTexts: juniRedundancyModeNotification.setStatus('current') juni_redundancy_mib_compliances = mib_identifier((1, 3, 6, 1, 4, 1, 4874, 2, 2, 74, 2, 1)) juni_redundancy_mib_groups = mib_identifier((1, 3, 6, 1, 4, 1, 4874, 2, 2, 74, 2, 2)) juni_redundancy_mib_compliance = module_compliance((1, 3, 6, 1, 4, 1, 4874, 2, 2, 74, 2, 1, 1)).setObjects(('Juniper-REDUNDANCY-MIB', 'juniRedundancyStatusGroup'), ('Juniper-REDUNDANCY-MIB', 'juniRedundancyCfgGroup'), ('Juniper-REDUNDANCY-MIB', 'juniRedundancyHistoryGroup'), ('Juniper-REDUNDANCY-MIB', 'juniRedundancyNotificationGroup')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): juni_redundancy_mib_compliance = juniRedundancyMIBCompliance.setStatus('current') juni_redundancy_status_group = object_group((1, 3, 6, 1, 4, 1, 4874, 2, 2, 74, 2, 2, 1)).setObjects(('Juniper-REDUNDANCY-MIB', 'juniRedundancyActiveSlot'), ('Juniper-REDUNDANCY-MIB', 'juniRedundancyActiveSlotState'), ('Juniper-REDUNDANCY-MIB', 'juniRedundancyStandbySlot'), ('Juniper-REDUNDANCY-MIB', 'juniRedundancyStandbySlotState'), ('Juniper-REDUNDANCY-MIB', 'juniRedundancyLastResetReason'), ('Juniper-REDUNDANCY-MIB', 'juniRedundancyLastSystemActivationTime'), ('Juniper-REDUNDANCY-MIB', 'juniRedundancyLastSystemActivationType'), ('Juniper-REDUNDANCY-MIB', 'juniRedundancyHaActiveTime')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): juni_redundancy_status_group = juniRedundancyStatusGroup.setStatus('current') juni_redundancy_cfg_group = object_group((1, 3, 6, 1, 4, 1, 4874, 2, 2, 74, 2, 2, 2)).setObjects(('Juniper-REDUNDANCY-MIB', 'juniRedundancyNotifsEnabled'), ('Juniper-REDUNDANCY-MIB', 'juniRedundancyCfgRedundancyMode')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): juni_redundancy_cfg_group = juniRedundancyCfgGroup.setStatus('current') juni_redundancy_history_group = object_group((1, 3, 6, 1, 4, 1, 4874, 2, 2, 74, 2, 2, 3)).setObjects(('Juniper-REDUNDANCY-MIB', 'juniRedundancySystemActivationHistoryTableMaxLength'), ('Juniper-REDUNDANCY-MIB', 'juniRedundancySystemActivationHistoryCommand'), ('Juniper-REDUNDANCY-MIB', 'juniRedundancyHistoryResetType'), ('Juniper-REDUNDANCY-MIB', 'juniRedundancyHistoryActivationType'), ('Juniper-REDUNDANCY-MIB', 'juniRedundancyHistoryPrevActiveSlot'), ('Juniper-REDUNDANCY-MIB', 'juniRedundancyHistoryPrevActiveRelease'), ('Juniper-REDUNDANCY-MIB', 'juniRedundancyHistoryCurrActiveSlot'), ('Juniper-REDUNDANCY-MIB', 'juniRedundancyHistoryCurrActiveRelease'), ('Juniper-REDUNDANCY-MIB', 'juniRedundancyHistoryResetReason'), ('Juniper-REDUNDANCY-MIB', 'juniRedundancyHistoryActivationTime'), ('Juniper-REDUNDANCY-MIB', 'juniRedundancyHistoryReloads'), ('Juniper-REDUNDANCY-MIB', 'juniRedundancyHistoryColdSwitchovers'), ('Juniper-REDUNDANCY-MIB', 'juniRedundancyHistoryWarmSwitchovers')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): juni_redundancy_history_group = juniRedundancyHistoryGroup.setStatus('current') juni_redundancy_notification_group = notification_group((1, 3, 6, 1, 4, 1, 4874, 2, 2, 74, 2, 2, 4)).setObjects(('Juniper-REDUNDANCY-MIB', 'juniRedundancyColdSwitchoverNotification'), ('Juniper-REDUNDANCY-MIB', 'juniRedundancyWarmSwitchoverNotification'), ('Juniper-REDUNDANCY-MIB', 'juniRedundancyStateEnabledNotification'), ('Juniper-REDUNDANCY-MIB', 'juniRedundancyStateDisabledNotification'), ('Juniper-REDUNDANCY-MIB', 'juniRedundancyStatePendingNotification'), ('Juniper-REDUNDANCY-MIB', 'juniRedundancyModeNotification')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): juni_redundancy_notification_group = juniRedundancyNotificationGroup.setStatus('current') mibBuilder.exportSymbols('Juniper-REDUNDANCY-MIB', juniRedundancyStatusGroup=juniRedundancyStatusGroup, juniRedundancyHistoryGroup=juniRedundancyHistoryGroup, JuniRedundancyHistoryCommand=JuniRedundancyHistoryCommand, juniRedundancyStatePendingNotification=juniRedundancyStatePendingNotification, juniRedundancySystemActivationHistoryCommand=juniRedundancySystemActivationHistoryCommand, juniRedundancyStateEnabledNotification=juniRedundancyStateEnabledNotification, juniRedundancySystemActivationHistoryIndex=juniRedundancySystemActivationHistoryIndex, PYSNMP_MODULE_ID=juniRedundancyMIB, juniRedundancyMIBCompliance=juniRedundancyMIBCompliance, JuniRedundancyState=JuniRedundancyState, juniRedundancyStateDisabledNotification=juniRedundancyStateDisabledNotification, juniRedundancyMIBConformance=juniRedundancyMIBConformance, juniRedundancyNotifsEnabled=juniRedundancyNotifsEnabled, juniRedundancySystemActivationHistoryTable=juniRedundancySystemActivationHistoryTable, juniRedundancyCfgGroup=juniRedundancyCfgGroup, juniRedundancyModeNotification=juniRedundancyModeNotification, juniRedundancyCfg=juniRedundancyCfg, juniRedundancyHistoryColdSwitchovers=juniRedundancyHistoryColdSwitchovers, juniRedundancyLastSystemActivationTime=juniRedundancyLastSystemActivationTime, juniRedundancyColdSwitchoverNotification=juniRedundancyColdSwitchoverNotification, juniRedundancyActiveSlotState=juniRedundancyActiveSlotState, juniRedundancyHistoryActivationType=juniRedundancyHistoryActivationType, JuniRedundancyMode=JuniRedundancyMode, juniRedundancyHistoryCurrActiveRelease=juniRedundancyHistoryCurrActiveRelease, juniRedundancyHistoryPrevActiveSlot=juniRedundancyHistoryPrevActiveSlot, juniRedundancyStatus=juniRedundancyStatus, juniRedundancyHistoryResetType=juniRedundancyHistoryResetType, juniRedundancyNotificationGroup=juniRedundancyNotificationGroup, juniRedundancyHistoryReloads=juniRedundancyHistoryReloads, juniRedundancyNotifications=juniRedundancyNotifications, juniRedundancyObjects=juniRedundancyObjects, juniRedundancyMIB=juniRedundancyMIB, juniRedundancyHistory=juniRedundancyHistory, juniRedundancySystemActivationHistoryEntry=juniRedundancySystemActivationHistoryEntry, JuniRedundancyResetReason=JuniRedundancyResetReason, juniRedundancyCfgRedundancyMode=juniRedundancyCfgRedundancyMode, juniRedundancySystemActivationHistoryTableMaxLength=juniRedundancySystemActivationHistoryTableMaxLength, juniRedundancyHistoryWarmSwitchovers=juniRedundancyHistoryWarmSwitchovers, juniRedundancyLastResetReason=juniRedundancyLastResetReason, juniRedundancyStandbySlot=juniRedundancyStandbySlot, juniRedundancyHistoryResetReason=juniRedundancyHistoryResetReason, juniRedundancyMIBGroups=juniRedundancyMIBGroups, JuniRedundancyResetType=JuniRedundancyResetType, juniRedundancyMIBCompliances=juniRedundancyMIBCompliances, JuniRedundancySystemActivationType=JuniRedundancySystemActivationType, juniRedundancyHistoryCurrActiveSlot=juniRedundancyHistoryCurrActiveSlot, juniRedundancyHaActiveTime=juniRedundancyHaActiveTime, juniRedundancyHistoryPrevActiveRelease=juniRedundancyHistoryPrevActiveRelease, juniRedundancyHistoryActivationTime=juniRedundancyHistoryActivationTime, juniRedundancyWarmSwitchoverNotification=juniRedundancyWarmSwitchoverNotification, juniRedundancyLastSystemActivationType=juniRedundancyLastSystemActivationType, juniRedundancyStandbySlotState=juniRedundancyStandbySlotState, juniRedundancyActiveSlot=juniRedundancyActiveSlot)
# -*- coding: utf-8 -*- # AtCoder Beginner Contest if __name__ == '__main__': n = int(input()) if n == 100: print('Perfect') elif 90 <= n <= 99: print('Great') elif 60 <= n <= 89: print('Good') else: print('Bad')
if __name__ == '__main__': n = int(input()) if n == 100: print('Perfect') elif 90 <= n <= 99: print('Great') elif 60 <= n <= 89: print('Good') else: print('Bad')
# -*- coding: utf-8 -*- """ collection This file was automatically generated by APIMATIC v2.0 ( https://apimatic.io ). """ class StatusEnum(object): """Implementation of the 'Status' enum. TODO: type enum description here. Attributes: PENDING: TODO: type description here. SUCCESSFUL: TODO: type description here. FAILED: TODO: type description here. """ PENDING = 'PENDING' SUCCESSFUL = 'SUCCESSFUL' FAILED = 'FAILED'
""" collection This file was automatically generated by APIMATIC v2.0 ( https://apimatic.io ). """ class Statusenum(object): """Implementation of the 'Status' enum. TODO: type enum description here. Attributes: PENDING: TODO: type description here. SUCCESSFUL: TODO: type description here. FAILED: TODO: type description here. """ pending = 'PENDING' successful = 'SUCCESSFUL' failed = 'FAILED'
""" The complete list of SCF level wavefunction quantities. """ scf_wavefunction = {} # Orbitals scf_wavefunction["scf_orbitals_a"] = { "type": "array", "description": "SCF alpha-spin orbitals in the AO basis.", "items": {"type": "number"}, "shape": {"nao", "nmo"} } scf_wavefunction["scf_orbitals_b"] = { "type": "array", "description": "SCF beta-spin orbitals in the AO basis.", "items": {"type": "number"}, "shape": {"nao", "nmo"} } # Density scf_wavefunction["scf_density_a"] = { "type": "array", "description": "SCF alpha-spin density in the AO basis.", "items": {"type": "number"}, "shape": {"nao", "nao"} } scf_wavefunction["scf_density_b"] = { "type": "array", "description": "SCF beta-spin density in the AO basis.", "items": {"type": "number"}, "shape": {"nao", "nao"} } # Fock matrix scf_wavefunction["scf_fock_a"] = { "type": "array", "description": "SCF alpha-spin Fock matrix in the AO basis.", "items": {"type": "number"}, "shape": {"nao", "nao"} } scf_wavefunction["scf_fock_b"] = { "type": "array", "description": "SCF beta-spin Fock matrix in the AO basis.", "items": {"type": "number"}, "shape": {"nao", "nao"} } scf_wavefunction["scf_coulomb_a"] = { "type": "array", "description": "SCF alpha-spin Coulomb matrix in the AO basis.", "items": {"type": "number"}, "shape": {"nao", "nao"} } scf_wavefunction["scf_coulomb_b"] = { "type": "array", "description": "SCF beta-spin Coulomb matrix in the AO basis.", "items": {"type": "number"}, "shape": {"nao", "nao"} } scf_wavefunction["scf_exchange_a"] = { "type": "array", "description": "SCF alpha-spin exchange matrix in the AO basis.", "items": {"type": "number"}, "shape": {"nao", "nao"} } scf_wavefunction["scf_exchange_b"] = { "type": "array", "description": "SCF beta-spin exchange matrix in the AO basis.", "items": {"type": "number"}, "shape": {"nao", "nao"} } # Eigenvalues scf_wavefunction["scf_eigenvalues_a"] = { "type": "array", "description": "SCF alpha-spin orbital eigenvalues.", "items": {"type": "number"}, "shape": {"nmo"} } scf_wavefunction["scf_eigenvalues_b"] = { "type": "array", "description": "SCF beta-spin orbital eigenvalues.", "items": {"type": "number"}, "shape": {"nmo"} } # Occupations scf_wavefunction["scf_occupations_a"] = { "type": "array", "description": "SCF alpha-spin orbital occupations.", "items": {"type": "number"}, "shape": {"nmo"} } scf_wavefunction["scf_occupations_b"] = { "type": "array", "description": "SCF beta-spin orbital occupations.", "items": {"type": "number"}, "shape": {"nmo"} }
""" The complete list of SCF level wavefunction quantities. """ scf_wavefunction = {} scf_wavefunction['scf_orbitals_a'] = {'type': 'array', 'description': 'SCF alpha-spin orbitals in the AO basis.', 'items': {'type': 'number'}, 'shape': {'nao', 'nmo'}} scf_wavefunction['scf_orbitals_b'] = {'type': 'array', 'description': 'SCF beta-spin orbitals in the AO basis.', 'items': {'type': 'number'}, 'shape': {'nao', 'nmo'}} scf_wavefunction['scf_density_a'] = {'type': 'array', 'description': 'SCF alpha-spin density in the AO basis.', 'items': {'type': 'number'}, 'shape': {'nao', 'nao'}} scf_wavefunction['scf_density_b'] = {'type': 'array', 'description': 'SCF beta-spin density in the AO basis.', 'items': {'type': 'number'}, 'shape': {'nao', 'nao'}} scf_wavefunction['scf_fock_a'] = {'type': 'array', 'description': 'SCF alpha-spin Fock matrix in the AO basis.', 'items': {'type': 'number'}, 'shape': {'nao', 'nao'}} scf_wavefunction['scf_fock_b'] = {'type': 'array', 'description': 'SCF beta-spin Fock matrix in the AO basis.', 'items': {'type': 'number'}, 'shape': {'nao', 'nao'}} scf_wavefunction['scf_coulomb_a'] = {'type': 'array', 'description': 'SCF alpha-spin Coulomb matrix in the AO basis.', 'items': {'type': 'number'}, 'shape': {'nao', 'nao'}} scf_wavefunction['scf_coulomb_b'] = {'type': 'array', 'description': 'SCF beta-spin Coulomb matrix in the AO basis.', 'items': {'type': 'number'}, 'shape': {'nao', 'nao'}} scf_wavefunction['scf_exchange_a'] = {'type': 'array', 'description': 'SCF alpha-spin exchange matrix in the AO basis.', 'items': {'type': 'number'}, 'shape': {'nao', 'nao'}} scf_wavefunction['scf_exchange_b'] = {'type': 'array', 'description': 'SCF beta-spin exchange matrix in the AO basis.', 'items': {'type': 'number'}, 'shape': {'nao', 'nao'}} scf_wavefunction['scf_eigenvalues_a'] = {'type': 'array', 'description': 'SCF alpha-spin orbital eigenvalues.', 'items': {'type': 'number'}, 'shape': {'nmo'}} scf_wavefunction['scf_eigenvalues_b'] = {'type': 'array', 'description': 'SCF beta-spin orbital eigenvalues.', 'items': {'type': 'number'}, 'shape': {'nmo'}} scf_wavefunction['scf_occupations_a'] = {'type': 'array', 'description': 'SCF alpha-spin orbital occupations.', 'items': {'type': 'number'}, 'shape': {'nmo'}} scf_wavefunction['scf_occupations_b'] = {'type': 'array', 'description': 'SCF beta-spin orbital occupations.', 'items': {'type': 'number'}, 'shape': {'nmo'}}
# coding=utf-8 """Utility functions""" class Utils(object): """Utility functions""" @staticmethod def combine_dicts(dict_1, dict_2): """Creates a new dictionary which is the union of two dictionaries with a shallow copy of the elements""" combined = {} for key, value in (dict_1 or {}).items(): combined[key] = value for key, value in (dict_2 or {}).items(): combined[key] = value return combined @staticmethod def optional_params(params): """Creates a new dictionary by making a shallow copy of an existing dictionary, but exclude entries from the final dictionary if their value is None""" optional_params = {} for key, value in params.items(): if value is not None: optional_params[key] = value return optional_params
"""Utility functions""" class Utils(object): """Utility functions""" @staticmethod def combine_dicts(dict_1, dict_2): """Creates a new dictionary which is the union of two dictionaries with a shallow copy of the elements""" combined = {} for (key, value) in (dict_1 or {}).items(): combined[key] = value for (key, value) in (dict_2 or {}).items(): combined[key] = value return combined @staticmethod def optional_params(params): """Creates a new dictionary by making a shallow copy of an existing dictionary, but exclude entries from the final dictionary if their value is None""" optional_params = {} for (key, value) in params.items(): if value is not None: optional_params[key] = value return optional_params
MCTS_CONFIG = { "c_puct": 5.0, "c_iterations": 400, } DATA_CONFIG = { # one of "random", "botzone", "mcts", "alpha_zero" "schedule": { "supervisor": ("traditional_mcts", { "c_puct": MCTS_CONFIG["c_puct"], "c_iterations": 20000 }), "candidates": [ ("random_mcts", MCTS_CONFIG), ("rave_mcts", MCTS_CONFIG), ("botzone", {"program": "deeeeep"}), ("botzone", {"program": "genm"}), None ] }, "process_num": 2, "buffer_size": 10000, "data_path": "./data/training_data", "data_files": [ # after read out, # file name will be marked ".consumed" ] } TRAINING_CONFIG = { "num_epoches": 5, "batch_size": 512, "learning_rate": 2e-3, "momentum": 0.9, "kl_target": 0.02, "eval_period": 100, "eval_rounds": 11, "model_file": "latest", "model_path": "./data/trained_models" }
mcts_config = {'c_puct': 5.0, 'c_iterations': 400} data_config = {'schedule': {'supervisor': ('traditional_mcts', {'c_puct': MCTS_CONFIG['c_puct'], 'c_iterations': 20000}), 'candidates': [('random_mcts', MCTS_CONFIG), ('rave_mcts', MCTS_CONFIG), ('botzone', {'program': 'deeeeep'}), ('botzone', {'program': 'genm'}), None]}, 'process_num': 2, 'buffer_size': 10000, 'data_path': './data/training_data', 'data_files': []} training_config = {'num_epoches': 5, 'batch_size': 512, 'learning_rate': 0.002, 'momentum': 0.9, 'kl_target': 0.02, 'eval_period': 100, 'eval_rounds': 11, 'model_file': 'latest', 'model_path': './data/trained_models'}
# Copyright 2017 The Forseti Security Authors. 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. """Util Errors module.""" class Error(Exception): """Base error class for the module.""" class EmailSendError(Error): """Unable to send email.""" pass class InvalidFileExtensionError(Error): """No parser exists for the given file extension.""" pass class InvalidParserTypeError(Error): """No parser exists for the given parser type.""" pass class MetadataServerHttpError(Error): """An error for handling HTTP errors with the metadata server.""" pass
"""Util Errors module.""" class Error(Exception): """Base error class for the module.""" class Emailsenderror(Error): """Unable to send email.""" pass class Invalidfileextensionerror(Error): """No parser exists for the given file extension.""" pass class Invalidparsertypeerror(Error): """No parser exists for the given parser type.""" pass class Metadataserverhttperror(Error): """An error for handling HTTP errors with the metadata server.""" pass
# https://www.interviewbit.com/problems/mathbug01/ # MATH_BUG01 class Solution: # @param A : integer # @return an integer def isPrime(self,A): upperLimit = int(A**0.5) for i in range(2, upperLimit + 1): if i < A and A % i == 0: return 0 return 1
class Solution: def is_prime(self, A): upper_limit = int(A ** 0.5) for i in range(2, upperLimit + 1): if i < A and A % i == 0: return 0 return 1
n=7 mid=(n+1)/2 for i in range(1,n+1): for j in range(1,n+1): condition= i + j>=mid + 1 and i + j<=mid + n and i-j<=mid-1 and j-i<=mid-1 and j<=mid if condition: print("0",end="") else: print(" ",end="") print()
n = 7 mid = (n + 1) / 2 for i in range(1, n + 1): for j in range(1, n + 1): condition = i + j >= mid + 1 and i + j <= mid + n and (i - j <= mid - 1) and (j - i <= mid - 1) and (j <= mid) if condition: print('0', end='') else: print(' ', end='') print()
_base_ = [ '../../_base_/models/vgg19bn.py', './dataset.py', './schedule.py', './default_runtime.py', ] model = dict( backbone=dict( num_classes=20, ) )
_base_ = ['../../_base_/models/vgg19bn.py', './dataset.py', './schedule.py', './default_runtime.py'] model = dict(backbone=dict(num_classes=20))
def load(h): return ({'abbr': 0, 'code': 0, 'title': 'Wave spectra (1)', 'units': '-'}, {'abbr': 1, 'code': 1, 'title': 'Wave spectra (2)', 'units': '-'}, {'abbr': 2, 'code': 2, 'title': 'Wave spectra (3)', 'units': '-'}, {'abbr': 3, 'code': 3, 'title': 'Significant height of combined wind waves and swell', 'units': 'm'}, {'abbr': 4, 'code': 4, 'title': 'Direction of wind waves', 'units': 'degree true'}, {'abbr': 5, 'code': 5, 'title': 'Significant height of wind waves', 'units': 'm'}, {'abbr': 6, 'code': 6, 'title': 'Mean period of wind waves', 'units': 's'}, {'abbr': 7, 'code': 7, 'title': 'Direction of swell waves', 'units': 'degree true'}, {'abbr': 8, 'code': 8, 'title': 'Significant height of swell waves', 'units': 'm'}, {'abbr': 9, 'code': 9, 'title': 'Mean period of swell waves', 'units': 's'}, {'abbr': 10, 'code': 10, 'title': 'Primary wave direction', 'units': 'degree true'}, {'abbr': 11, 'code': 11, 'title': 'Primary wave mean period', 'units': 's'}, {'abbr': 12, 'code': 12, 'title': 'Secondary wave direction', 'units': 'degree true'}, {'abbr': 13, 'code': 13, 'title': 'Secondary wave mean period', 'units': 's'}, {'abbr': 14, 'code': 14, 'title': 'Direction of combined wind waves and swell', 'units': 'degree true'}, {'abbr': 15, 'code': 15, 'title': 'Mean period of combined wind waves and swell', 'units': 's'}, {'abbr': 16, 'code': 16, 'title': 'Coefficient of drag with waves', 'units': '-'}, {'abbr': 17, 'code': 17, 'title': 'Friction velocity', 'units': 'm/s'}, {'abbr': 18, 'code': 18, 'title': 'Wave stress', 'units': 'N m-2'}, {'abbr': 19, 'code': 19, 'title': 'Normalized wave stress', 'units': '-'}, {'abbr': 20, 'code': 20, 'title': 'Mean square slope of waves', 'units': '-'}, {'abbr': 21, 'code': 21, 'title': 'u-component surface Stokes drift', 'units': 'm/s'}, {'abbr': 22, 'code': 22, 'title': 'v-component surface Stokes drift', 'units': 'm/s'}, {'abbr': 23, 'code': 23, 'title': 'Period of maximum individual wave height', 'units': 's'}, {'abbr': 24, 'code': 24, 'title': 'Maximum individual wave height', 'units': 'm'}, {'abbr': 25, 'code': 25, 'title': 'Inverse mean wave frequency', 'units': 's'}, {'abbr': 26, 'code': 26, 'title': 'Inverse mean frequency of wind waves', 'units': 's'}, {'abbr': 27, 'code': 27, 'title': 'Inverse mean frequency of total swell', 'units': 's'}, {'abbr': 28, 'code': 28, 'title': 'Mean zero-crossing wave period', 'units': 's'}, {'abbr': 29, 'code': 29, 'title': 'Mean zero-crossing period of wind waves', 'units': 's'}, {'abbr': 30, 'code': 30, 'title': 'Mean zero-crossing period of total swell', 'units': 's'}, {'abbr': 31, 'code': 31, 'title': 'Wave directional width', 'units': '-'}, {'abbr': 32, 'code': 32, 'title': 'Directional width of wind waves', 'units': '-'}, {'abbr': 33, 'code': 33, 'title': 'Directional width of total swell', 'units': '-'}, {'abbr': 34, 'code': 34, 'title': 'Peak wave period', 'units': 's'}, {'abbr': 35, 'code': 35, 'title': 'Peak period of wind waves', 'units': 's'}, {'abbr': 36, 'code': 36, 'title': 'Peak period of total swell', 'units': 's'}, {'abbr': 37, 'code': 37, 'title': 'Altimeter wave height', 'units': 'm'}, {'abbr': 38, 'code': 38, 'title': 'Altimeter corrected wave height', 'units': 'm'}, {'abbr': 39, 'code': 39, 'title': 'Altimeter range relative correction', 'units': '-'}, {'abbr': 40, 'code': 40, 'title': '10-metre neutral wind speed over waves', 'units': 'm/s'}, {'abbr': 41, 'code': 41, 'title': '10-metre wind direction over waves', 'units': 'deg'}, {'abbr': 42, 'code': 42, 'title': 'Wave energy spectrum', 'units': 'm2 s rad-1'}, {'abbr': 43, 'code': 43, 'title': 'Kurtosis of the sea-surface elevation due to waves', 'units': '-'}, {'abbr': 44, 'code': 44, 'title': 'Benjamin-Feir index', 'units': '-'}, {'abbr': 45, 'code': 45, 'title': 'Spectral peakedness factor', 'units': '/s'}, {'abbr': 46, 'code': 46, 'title': 'Peak wave direction', 'units': 'deg'}, {'abbr': 47, 'code': 47, 'title': 'Significant wave height of first swell partition', 'units': 'm'}, {'abbr': 48, 'code': 48, 'title': 'Significant wave height of second swell partition', 'units': 'm'}, {'abbr': 49, 'code': 49, 'title': 'Significant wave height of third swell partition', 'units': 'm'}, {'abbr': 50, 'code': 50, 'title': 'Mean wave period of first swell partition', 'units': 's'}, {'abbr': 51, 'code': 51, 'title': 'Mean wave period of second swell partition', 'units': 's'}, {'abbr': 52, 'code': 52, 'title': 'Mean wave period of third swell partition', 'units': 's'}, {'abbr': 53, 'code': 53, 'title': 'Mean wave direction of first swell partition', 'units': 'deg'}, {'abbr': 54, 'code': 54, 'title': 'Mean wave direction of second swell partition', 'units': 'deg'}, {'abbr': 55, 'code': 55, 'title': 'Mean wave direction of third swell partition', 'units': 'deg'}, {'abbr': 56, 'code': 56, 'title': 'Wave directional width of first swell partition', 'units': '-'}, {'abbr': 57, 'code': 57, 'title': 'Wave directional width of second swell partition', 'units': '-'}, {'abbr': 58, 'code': 58, 'title': 'Wave directional width of third swell partition', 'units': '-'}, {'abbr': 59, 'code': 59, 'title': 'Wave frequency width of first swell partition', 'units': '-'}, {'abbr': 60, 'code': 60, 'title': 'Wave frequency width of second swell partition', 'units': '-'}, {'abbr': 61, 'code': 61, 'title': 'Wave frequency width of third swell partition', 'units': '-'}, {'abbr': 62, 'code': 62, 'title': 'Wave frequency width', 'units': '-'}, {'abbr': 63, 'code': 63, 'title': 'Frequency width of wind waves', 'units': '-'}, {'abbr': 64, 'code': 64, 'title': 'Frequency width of total swell', 'units': '-'}, {'abbr': None, 'code': 255, 'title': 'Missing'})
def load(h): return ({'abbr': 0, 'code': 0, 'title': 'Wave spectra (1)', 'units': '-'}, {'abbr': 1, 'code': 1, 'title': 'Wave spectra (2)', 'units': '-'}, {'abbr': 2, 'code': 2, 'title': 'Wave spectra (3)', 'units': '-'}, {'abbr': 3, 'code': 3, 'title': 'Significant height of combined wind waves and swell', 'units': 'm'}, {'abbr': 4, 'code': 4, 'title': 'Direction of wind waves', 'units': 'degree true'}, {'abbr': 5, 'code': 5, 'title': 'Significant height of wind waves', 'units': 'm'}, {'abbr': 6, 'code': 6, 'title': 'Mean period of wind waves', 'units': 's'}, {'abbr': 7, 'code': 7, 'title': 'Direction of swell waves', 'units': 'degree true'}, {'abbr': 8, 'code': 8, 'title': 'Significant height of swell waves', 'units': 'm'}, {'abbr': 9, 'code': 9, 'title': 'Mean period of swell waves', 'units': 's'}, {'abbr': 10, 'code': 10, 'title': 'Primary wave direction', 'units': 'degree true'}, {'abbr': 11, 'code': 11, 'title': 'Primary wave mean period', 'units': 's'}, {'abbr': 12, 'code': 12, 'title': 'Secondary wave direction', 'units': 'degree true'}, {'abbr': 13, 'code': 13, 'title': 'Secondary wave mean period', 'units': 's'}, {'abbr': 14, 'code': 14, 'title': 'Direction of combined wind waves and swell', 'units': 'degree true'}, {'abbr': 15, 'code': 15, 'title': 'Mean period of combined wind waves and swell', 'units': 's'}, {'abbr': 16, 'code': 16, 'title': 'Coefficient of drag with waves', 'units': '-'}, {'abbr': 17, 'code': 17, 'title': 'Friction velocity', 'units': 'm/s'}, {'abbr': 18, 'code': 18, 'title': 'Wave stress', 'units': 'N m-2'}, {'abbr': 19, 'code': 19, 'title': 'Normalized wave stress', 'units': '-'}, {'abbr': 20, 'code': 20, 'title': 'Mean square slope of waves', 'units': '-'}, {'abbr': 21, 'code': 21, 'title': 'u-component surface Stokes drift', 'units': 'm/s'}, {'abbr': 22, 'code': 22, 'title': 'v-component surface Stokes drift', 'units': 'm/s'}, {'abbr': 23, 'code': 23, 'title': 'Period of maximum individual wave height', 'units': 's'}, {'abbr': 24, 'code': 24, 'title': 'Maximum individual wave height', 'units': 'm'}, {'abbr': 25, 'code': 25, 'title': 'Inverse mean wave frequency', 'units': 's'}, {'abbr': 26, 'code': 26, 'title': 'Inverse mean frequency of wind waves', 'units': 's'}, {'abbr': 27, 'code': 27, 'title': 'Inverse mean frequency of total swell', 'units': 's'}, {'abbr': 28, 'code': 28, 'title': 'Mean zero-crossing wave period', 'units': 's'}, {'abbr': 29, 'code': 29, 'title': 'Mean zero-crossing period of wind waves', 'units': 's'}, {'abbr': 30, 'code': 30, 'title': 'Mean zero-crossing period of total swell', 'units': 's'}, {'abbr': 31, 'code': 31, 'title': 'Wave directional width', 'units': '-'}, {'abbr': 32, 'code': 32, 'title': 'Directional width of wind waves', 'units': '-'}, {'abbr': 33, 'code': 33, 'title': 'Directional width of total swell', 'units': '-'}, {'abbr': 34, 'code': 34, 'title': 'Peak wave period', 'units': 's'}, {'abbr': 35, 'code': 35, 'title': 'Peak period of wind waves', 'units': 's'}, {'abbr': 36, 'code': 36, 'title': 'Peak period of total swell', 'units': 's'}, {'abbr': 37, 'code': 37, 'title': 'Altimeter wave height', 'units': 'm'}, {'abbr': 38, 'code': 38, 'title': 'Altimeter corrected wave height', 'units': 'm'}, {'abbr': 39, 'code': 39, 'title': 'Altimeter range relative correction', 'units': '-'}, {'abbr': 40, 'code': 40, 'title': '10-metre neutral wind speed over waves', 'units': 'm/s'}, {'abbr': 41, 'code': 41, 'title': '10-metre wind direction over waves', 'units': 'deg'}, {'abbr': 42, 'code': 42, 'title': 'Wave energy spectrum', 'units': 'm2 s rad-1'}, {'abbr': 43, 'code': 43, 'title': 'Kurtosis of the sea-surface elevation due to waves', 'units': '-'}, {'abbr': 44, 'code': 44, 'title': 'Benjamin-Feir index', 'units': '-'}, {'abbr': 45, 'code': 45, 'title': 'Spectral peakedness factor', 'units': '/s'}, {'abbr': 46, 'code': 46, 'title': 'Peak wave direction', 'units': 'deg'}, {'abbr': 47, 'code': 47, 'title': 'Significant wave height of first swell partition', 'units': 'm'}, {'abbr': 48, 'code': 48, 'title': 'Significant wave height of second swell partition', 'units': 'm'}, {'abbr': 49, 'code': 49, 'title': 'Significant wave height of third swell partition', 'units': 'm'}, {'abbr': 50, 'code': 50, 'title': 'Mean wave period of first swell partition', 'units': 's'}, {'abbr': 51, 'code': 51, 'title': 'Mean wave period of second swell partition', 'units': 's'}, {'abbr': 52, 'code': 52, 'title': 'Mean wave period of third swell partition', 'units': 's'}, {'abbr': 53, 'code': 53, 'title': 'Mean wave direction of first swell partition', 'units': 'deg'}, {'abbr': 54, 'code': 54, 'title': 'Mean wave direction of second swell partition', 'units': 'deg'}, {'abbr': 55, 'code': 55, 'title': 'Mean wave direction of third swell partition', 'units': 'deg'}, {'abbr': 56, 'code': 56, 'title': 'Wave directional width of first swell partition', 'units': '-'}, {'abbr': 57, 'code': 57, 'title': 'Wave directional width of second swell partition', 'units': '-'}, {'abbr': 58, 'code': 58, 'title': 'Wave directional width of third swell partition', 'units': '-'}, {'abbr': 59, 'code': 59, 'title': 'Wave frequency width of first swell partition', 'units': '-'}, {'abbr': 60, 'code': 60, 'title': 'Wave frequency width of second swell partition', 'units': '-'}, {'abbr': 61, 'code': 61, 'title': 'Wave frequency width of third swell partition', 'units': '-'}, {'abbr': 62, 'code': 62, 'title': 'Wave frequency width', 'units': '-'}, {'abbr': 63, 'code': 63, 'title': 'Frequency width of wind waves', 'units': '-'}, {'abbr': 64, 'code': 64, 'title': 'Frequency width of total swell', 'units': '-'}, {'abbr': None, 'code': 255, 'title': 'Missing'})
#SOLUTION FOR P32 '''P32 (**) Determine the greatest common divisor of two positive integer numbers. Use Euclid's algorithm. Example: * (gcd 36 63) 9''' num1 = int(input('enter first number = ')) num2 = int(input('enter second number = ')) #CREATE A FUNCTION TO CALCULATE GCD def find_gcd(n1,n2): while n2!=0: #BASE CASE IS - gcd(a,0) = a ; SO CHECK TILL N2 IS NOT ZERO n1,n2= n2,n1%n2 #ACCORDING TO ALGORITH gcd(a,b)=gcd(b,r) where r=a%b find_gcd(n1,n2) #CONTINUE TO CALCULATE GCD FOR NEW N1 AND N2 return n1 #WHEN BASE CASE SATISFIES, RETURN N1 res= find_gcd(num1,num2) #CALL THE FUNCTION AND PASS TWO NUMBERS print(F'GCD of {num1} & {num2} = {res}')
"""P32 (**) Determine the greatest common divisor of two positive integer numbers. Use Euclid's algorithm. Example: * (gcd 36 63) 9""" num1 = int(input('enter first number = ')) num2 = int(input('enter second number = ')) def find_gcd(n1, n2): while n2 != 0: (n1, n2) = (n2, n1 % n2) find_gcd(n1, n2) return n1 res = find_gcd(num1, num2) print(f'GCD of {num1} & {num2} = {res}')
class Type: def __init__(self, name, members: list = None): self.name = name self.members = members or ['*']
class Type: def __init__(self, name, members: list=None): self.name = name self.members = members or ['*']
def calculation(command, b, c): calculations = { 'multiply': b * c, 'divide': b / c, 'add': b + c, 'subtract': b - c, } return calculations[command] operator = input() parameter_one = int(input()) parameter_two = int(input()) print(calculation(operator, parameter_one, parameter_two))
def calculation(command, b, c): calculations = {'multiply': b * c, 'divide': b / c, 'add': b + c, 'subtract': b - c} return calculations[command] operator = input() parameter_one = int(input()) parameter_two = int(input()) print(calculation(operator, parameter_one, parameter_two))
# -*- coding: utf-8 -*- __version__ = '1.1.0' default_app_config = 'aldryn_search.apps.AldrynSearchConfig'
__version__ = '1.1.0' default_app_config = 'aldryn_search.apps.AldrynSearchConfig'
""" File: largest_digit.py Name: Rebecca ---------------------------------- This file recursively prints the biggest digit in 5 different integers, 12345, 281, 6, -111, -9453 If your implementation is correct, you should see 5, 8, 6, 1, 9 on Console. """ def main(): print(find_largest_digit(12345)) # 5 print(find_largest_digit(281)) # 8 print(find_largest_digit(6)) # 6 print(find_largest_digit(-111)) # 1 print(find_largest_digit(-9453)) # 9 def find_largest_digit(n): return find_largest_digit_helper(n, 0) def find_largest_digit_helper(n, largest_num): """ :param n: integer :param largest_num: first data :return largest_num: the biggest digit in integer """ n = abs(n) a = n % 10 if n / 10 == 0 and n % 10 == 0: return largest_num else: if a > largest_num: largest_num = a return find_largest_digit_helper(n//10, largest_num) if __name__ == '__main__': main()
""" File: largest_digit.py Name: Rebecca ---------------------------------- This file recursively prints the biggest digit in 5 different integers, 12345, 281, 6, -111, -9453 If your implementation is correct, you should see 5, 8, 6, 1, 9 on Console. """ def main(): print(find_largest_digit(12345)) print(find_largest_digit(281)) print(find_largest_digit(6)) print(find_largest_digit(-111)) print(find_largest_digit(-9453)) def find_largest_digit(n): return find_largest_digit_helper(n, 0) def find_largest_digit_helper(n, largest_num): """ :param n: integer :param largest_num: first data :return largest_num: the biggest digit in integer """ n = abs(n) a = n % 10 if n / 10 == 0 and n % 10 == 0: return largest_num else: if a > largest_num: largest_num = a return find_largest_digit_helper(n // 10, largest_num) if __name__ == '__main__': main()
class Node: pass class Void(Node): def __init__(self): self.computedType = 'Void' class ProgramNode(Node): def __init__(self, classList): self.classList = classList class ExpressionNode(Node): pass class Arithmetic(ExpressionNode): def __init__(self, left, right): self.left = left self.right = right class Assignment(ExpressionNode): #llrga la variable en id def __init__(self, asid, expr): self.id = asid self.expr = expr class Conditional(ExpressionNode): def __init__(self, ifexpr, thenexpr,elseexpr): self.ifexpr = ifexpr self.thenexpr = thenexpr self.elseexpr = elseexpr class Loop(ExpressionNode): def __init__(self, whileexpr, loopexpr): self.whileexpr = whileexpr self.loopexpr = loopexpr class Block(ExpressionNode): def __init__(self, exprlist): self.exprlist = exprlist class Compare(ExpressionNode): def __init__(self, left, right): self.left = left self.right = right class Equal(Compare): # def __init__(self, left, right): # self.left = left # self.right = right pass class CompareNotEqual(Compare): pass class LessThan(CompareNotEqual): pass class LessEqualThan(CompareNotEqual): pass class PlusNode(Arithmetic): # def __init__(self, left, right): # Arithmetic.__init__(self, left, right) pass class MinusNode(Arithmetic): pass class StarNode(Arithmetic): pass class DivNode(Arithmetic): pass class IsVoid(ExpressionNode): def __init__(self, expr): self.expr = expr class New(ExpressionNode): def __init__(self, newType): self.newType = newType class Not(ExpressionNode): def __init__(self,expr): self.expr = expr class Neg(ExpressionNode): def __init__(self, expr): self.expr = expr class Let(ExpressionNode): def __init__(self, letAttrList,body): self.letAttrList = letAttrList self.body = body # class LetAttr_Init(ExpressionNode): # def __init__(self, name_AttrType, expr): # self.name = name_AttrType[0] # self.attrType = name_AttrType[1] # self.expr = expr # class LetAttr_Declaration(ExpressionNode): # def __init__(self, name_attrType): # self.name = name_attrType[0] # self.attrType = name_attrType[1] class Declaration(ExpressionNode): def __init__(self, attrName, attrType, expr): self.attrName = attrName self.attrType = attrType self.expr = expr class DeclarationWithInitialization(Declaration): def __init__(self, decl_only, expr): super(DeclarationWithInitialization,self).__init__(decl_only.attrName,decl_only.attrType,expr) # self.expr = expr class DeclarationOnly(Declaration): def __init__(self, name_attrType): thetype = name_attrType[1] default = Void() if thetype == "Bool": default = Ctes(False,"Bool") elif thetype == "Int": default = Ctes(0,"Int") elif thetype == "String": default = Ctes("","String") super(DeclarationOnly,self).__init__(name_attrType[0],name_attrType[1],default) class Case(ExpressionNode): def __init__(self, case0,exprList): self.case0 = case0 self.exprList = exprList class CaseExpr(ExpressionNode): def __init__(self, decl,expr): self.decl = decl # tupla name,type self.expr = expr class CoolClass(ExpressionNode): def __init__(self, name,parent,attrs,methods): self.name = name # self.expr = expr self.attrs = attrs self.methods = methods self.parent = parent class ClassDecl(CoolClass): def __init__(self, name,attrs,methods): super(ClassDecl,self).__init__(name,"Object",attrs,methods) # self.name = name # # self.expr = expr # self.attrs = attrs # self.methods = methods class ClassInh(CoolClass): pass # def __init__(self, name,parent,methods,attrs): # self.name = name # # self.expr = expr # self.attrs = attrs # self.methods = methods # self.parent = parent class Method(ExpressionNode): def __init__(self, name, paramsList, returnType, exprbody): self.name = name self.returnType = returnType self.paramsList = paramsList self.exprbody = exprbody class DispatchSelf(ExpressionNode): def __init__(self, methodName, paramsList): self.methodName = methodName self.paramsList = paramsList class DispatchDot(ExpressionNode): def __init__(self, expr0, methodName, paramsList): self.expr0 = expr0 self.methodName = methodName self.paramsList = paramsList class StaticDispatch(ExpressionNode): def __init__(self, dispObject, className,methodName,paramsList): self.dispObject = dispObject self.className = className self.methodName = methodName self.paramsList = paramsList class Attribute(ExpressionNode): def __init__(self, name_attrType,expr): self.attrName = name_attrType.attrName self.attrType = name_attrType.attrType self.expr = expr class Attr_Init(Attribute): def __init__(self, name_attrType, expr): super(Attr_Init,self).__init__(name_attrType,expr) class Attr_Declaration(Attribute): def __init__(self, name_attrType): super(Attr_Declaration,self).__init__(name_attrType,name_attrType.expr) class Ctes(ExpressionNode): def __init__(self, value,ctetype): self.value = value self.type = ctetype class Variable(ExpressionNode): def __init__(self, name): self.name = name
class Node: pass class Void(Node): def __init__(self): self.computedType = 'Void' class Programnode(Node): def __init__(self, classList): self.classList = classList class Expressionnode(Node): pass class Arithmetic(ExpressionNode): def __init__(self, left, right): self.left = left self.right = right class Assignment(ExpressionNode): def __init__(self, asid, expr): self.id = asid self.expr = expr class Conditional(ExpressionNode): def __init__(self, ifexpr, thenexpr, elseexpr): self.ifexpr = ifexpr self.thenexpr = thenexpr self.elseexpr = elseexpr class Loop(ExpressionNode): def __init__(self, whileexpr, loopexpr): self.whileexpr = whileexpr self.loopexpr = loopexpr class Block(ExpressionNode): def __init__(self, exprlist): self.exprlist = exprlist class Compare(ExpressionNode): def __init__(self, left, right): self.left = left self.right = right class Equal(Compare): pass class Comparenotequal(Compare): pass class Lessthan(CompareNotEqual): pass class Lessequalthan(CompareNotEqual): pass class Plusnode(Arithmetic): pass class Minusnode(Arithmetic): pass class Starnode(Arithmetic): pass class Divnode(Arithmetic): pass class Isvoid(ExpressionNode): def __init__(self, expr): self.expr = expr class New(ExpressionNode): def __init__(self, newType): self.newType = newType class Not(ExpressionNode): def __init__(self, expr): self.expr = expr class Neg(ExpressionNode): def __init__(self, expr): self.expr = expr class Let(ExpressionNode): def __init__(self, letAttrList, body): self.letAttrList = letAttrList self.body = body class Declaration(ExpressionNode): def __init__(self, attrName, attrType, expr): self.attrName = attrName self.attrType = attrType self.expr = expr class Declarationwithinitialization(Declaration): def __init__(self, decl_only, expr): super(DeclarationWithInitialization, self).__init__(decl_only.attrName, decl_only.attrType, expr) class Declarationonly(Declaration): def __init__(self, name_attrType): thetype = name_attrType[1] default = void() if thetype == 'Bool': default = ctes(False, 'Bool') elif thetype == 'Int': default = ctes(0, 'Int') elif thetype == 'String': default = ctes('', 'String') super(DeclarationOnly, self).__init__(name_attrType[0], name_attrType[1], default) class Case(ExpressionNode): def __init__(self, case0, exprList): self.case0 = case0 self.exprList = exprList class Caseexpr(ExpressionNode): def __init__(self, decl, expr): self.decl = decl self.expr = expr class Coolclass(ExpressionNode): def __init__(self, name, parent, attrs, methods): self.name = name self.attrs = attrs self.methods = methods self.parent = parent class Classdecl(CoolClass): def __init__(self, name, attrs, methods): super(ClassDecl, self).__init__(name, 'Object', attrs, methods) class Classinh(CoolClass): pass class Method(ExpressionNode): def __init__(self, name, paramsList, returnType, exprbody): self.name = name self.returnType = returnType self.paramsList = paramsList self.exprbody = exprbody class Dispatchself(ExpressionNode): def __init__(self, methodName, paramsList): self.methodName = methodName self.paramsList = paramsList class Dispatchdot(ExpressionNode): def __init__(self, expr0, methodName, paramsList): self.expr0 = expr0 self.methodName = methodName self.paramsList = paramsList class Staticdispatch(ExpressionNode): def __init__(self, dispObject, className, methodName, paramsList): self.dispObject = dispObject self.className = className self.methodName = methodName self.paramsList = paramsList class Attribute(ExpressionNode): def __init__(self, name_attrType, expr): self.attrName = name_attrType.attrName self.attrType = name_attrType.attrType self.expr = expr class Attr_Init(Attribute): def __init__(self, name_attrType, expr): super(Attr_Init, self).__init__(name_attrType, expr) class Attr_Declaration(Attribute): def __init__(self, name_attrType): super(Attr_Declaration, self).__init__(name_attrType, name_attrType.expr) class Ctes(ExpressionNode): def __init__(self, value, ctetype): self.value = value self.type = ctetype class Variable(ExpressionNode): def __init__(self, name): self.name = name
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive") _RCLONE_VERSION="v1.50.0" def _add_rclone_build(platform, architecture, sha256=None): rule_name = "rclone_{platform}_{arch}".format(platform=platform, arch=architecture) if not native.existing_rule(rule_name): package_name = "rclone-{version}-{platform}-{arch}".format(version=_RCLONE_VERSION, platform=platform, arch=architecture) http_archive( name = rule_name, strip_prefix = package_name, urls = ["https://downloads.rclone.org/{version}/{package}.zip".format(version=_RCLONE_VERSION, package=package_name)], build_file_content = """exports_files(glob(["**"]))""", sha256 = sha256, ) def rclone_binaries(): _add_rclone_build( platform = "linux", architecture = "amd64", sha256 = "3eb57540b5846f5812500243c37a34ef4bc90d608760e29f57cb82fef0a93f82", ) _add_rclone_build( platform = "linux", architecture = "386", sha256 = "ba48abc1cfa528da347d66bef9a490a0e398dcd1c77fca13368c3a106f481176", ) _add_rclone_build( platform = "osx", architecture = "amd64", sha256 = "15b399f923e7f16311263581cffdf9d49a1f1ff48ba8929637f2c555dc2541d3", ) _add_rclone_build( platform = "osx", architecture = "386", sha256 = "f84dfeeabfd32aac4e8cbe0d230cd50ed70c2e8770770e429ed43f6f78aa52c0", )
load('@bazel_tools//tools/build_defs/repo:http.bzl', 'http_archive') _rclone_version = 'v1.50.0' def _add_rclone_build(platform, architecture, sha256=None): rule_name = 'rclone_{platform}_{arch}'.format(platform=platform, arch=architecture) if not native.existing_rule(rule_name): package_name = 'rclone-{version}-{platform}-{arch}'.format(version=_RCLONE_VERSION, platform=platform, arch=architecture) http_archive(name=rule_name, strip_prefix=package_name, urls=['https://downloads.rclone.org/{version}/{package}.zip'.format(version=_RCLONE_VERSION, package=package_name)], build_file_content='exports_files(glob(["**"]))', sha256=sha256) def rclone_binaries(): _add_rclone_build(platform='linux', architecture='amd64', sha256='3eb57540b5846f5812500243c37a34ef4bc90d608760e29f57cb82fef0a93f82') _add_rclone_build(platform='linux', architecture='386', sha256='ba48abc1cfa528da347d66bef9a490a0e398dcd1c77fca13368c3a106f481176') _add_rclone_build(platform='osx', architecture='amd64', sha256='15b399f923e7f16311263581cffdf9d49a1f1ff48ba8929637f2c555dc2541d3') _add_rclone_build(platform='osx', architecture='386', sha256='f84dfeeabfd32aac4e8cbe0d230cd50ed70c2e8770770e429ed43f6f78aa52c0')
reddit = dict( client_id="", client_secret="", username="", password="", user_agent="Daltonism Helper Bot (created by /u/OffDutyHuman)") imgur = dict( client_id="", client_secret="", access_token="", refresh_token="")
reddit = dict(client_id='', client_secret='', username='', password='', user_agent='Daltonism Helper Bot (created by /u/OffDutyHuman)') imgur = dict(client_id='', client_secret='', access_token='', refresh_token='')
# -*- coding: utf-8 -*- """ Created on Wed Aug 10 14:55:16 2016 @author: Stuart """ version = "0.8.0"
""" Created on Wed Aug 10 14:55:16 2016 @author: Stuart """ version = '0.8.0'
class Solution(object): def isPalindrome(self, s): """ :type s: str :rtype: bool """ s = ''.join(ch.lower() for ch in s if ch.isalnum()) half = len(s) // 2 return not half or s[:half] == s[-half:][::-1]
class Solution(object): def is_palindrome(self, s): """ :type s: str :rtype: bool """ s = ''.join((ch.lower() for ch in s if ch.isalnum())) half = len(s) // 2 return not half or s[:half] == s[-half:][::-1]
"""Madoop Exception Types. Andrew DeOrio <awdeorio@umich.edu> """ class MadoopError(Exception): """Top level exception raised by Madoop functions."""
"""Madoop Exception Types. Andrew DeOrio <awdeorio@umich.edu> """ class Madooperror(Exception): """Top level exception raised by Madoop functions."""
class TestConfig: def test_config(self, config): pass
class Testconfig: def test_config(self, config): pass
COLOR_PALETTES = { "lisk": { "bg0": "#FEF1E2", "bg1": "#FEDBAB", "bg2": "#FEC478", "fg0": "#FE9923", "fg1": "#FE8821", "fg2": "#E5741A", "text0": "#827F85", "text1": "#57555C", "text2": "#3C3A41", "accent0": "#21D8FF", "accent1": "#185B66", "gray0": "#DCC09B", "gray1": "#9E8E7D", "warning": "#FF3D14", "error": "#FF0000", }, "solarized": { "bg0": "#FDF6E3", "bg1": "#EEE8D5", "bg2": "#DBD3BB", "fg0": "#C2BBA5", "fg1": "#A8A28F", "fg2": "#8F8979", "text0": "#586E75", "text1": "#073642", "text2": "#002B36", "accent0": "#268BD2", "accent1": "#2AA198", "gray0": "#93A1A1", "gray1": "#657B83", "warning": "#CB4B16", "error": "#DC322F", }, } COLOR_PALETTES["default"] = COLOR_PALETTES.get("lisk")
color_palettes = {'lisk': {'bg0': '#FEF1E2', 'bg1': '#FEDBAB', 'bg2': '#FEC478', 'fg0': '#FE9923', 'fg1': '#FE8821', 'fg2': '#E5741A', 'text0': '#827F85', 'text1': '#57555C', 'text2': '#3C3A41', 'accent0': '#21D8FF', 'accent1': '#185B66', 'gray0': '#DCC09B', 'gray1': '#9E8E7D', 'warning': '#FF3D14', 'error': '#FF0000'}, 'solarized': {'bg0': '#FDF6E3', 'bg1': '#EEE8D5', 'bg2': '#DBD3BB', 'fg0': '#C2BBA5', 'fg1': '#A8A28F', 'fg2': '#8F8979', 'text0': '#586E75', 'text1': '#073642', 'text2': '#002B36', 'accent0': '#268BD2', 'accent1': '#2AA198', 'gray0': '#93A1A1', 'gray1': '#657B83', 'warning': '#CB4B16', 'error': '#DC322F'}} COLOR_PALETTES['default'] = COLOR_PALETTES.get('lisk')
""" OneGov uses a very simple permissions model by default. There are no read/write permissions, just intents. That means a permission shows the intended audience. This is the default however, any application building on top of onegov.core may of course introduce its own byzantine permission system. """ class Public(object): """ The general public is allowed to do this. """ class Private(object): """ Trusted people are allowed to do this. """ class Personal(object): """ Registered members are allowed to do this. """ class Secret(object): """ Only Demi-Gods are allowed to do this. """
""" OneGov uses a very simple permissions model by default. There are no read/write permissions, just intents. That means a permission shows the intended audience. This is the default however, any application building on top of onegov.core may of course introduce its own byzantine permission system. """ class Public(object): """ The general public is allowed to do this. """ class Private(object): """ Trusted people are allowed to do this. """ class Personal(object): """ Registered members are allowed to do this. """ class Secret(object): """ Only Demi-Gods are allowed to do this. """
# author: Zhongyuan Sun # Storing the loop numbers will help improving performance from 0.63% to 93.93% class Solution(object): def isHappy(self, n): """ :type n: int :rtype: bool """ if n <= 0: return False x = self.cal(n) # loop_numbers = self.all_loop_numbers() loop_numbers = [2, 3, 4, 5, 6, 8, 9, 11, 12, 14, 15, 16, 17, 18, 20, 21, 22, 24, 25, 26, 27, 29, 30, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 45, 46, 47, 48, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 69, 71, 72, 73, 74, 75, 76, 77, 78, 80, 81, 83, 84, 85, 87, 88, 89, 90, 92, 93, 95, 96, 98, 99, 106, 113, 117, 128, 145, 162] while x != 1 and x not in loop_numbers: x = self.cal(x) return x == 1 def cal(self, n): res = 0 while n: res += (n % 10) ** 2 n /= 10 return res # return sum([int(c)**2 for c in str(n)]) def all_loop_numbers(self): res = [] for i in range(1, 100): tmp = [i] next = self.cal(i) while next not in res and next not in tmp and next != 1: tmp.append(next) next = self.cal(next) if next != 1: res += tmp res = list(set(res)) return res
class Solution(object): def is_happy(self, n): """ :type n: int :rtype: bool """ if n <= 0: return False x = self.cal(n) loop_numbers = [2, 3, 4, 5, 6, 8, 9, 11, 12, 14, 15, 16, 17, 18, 20, 21, 22, 24, 25, 26, 27, 29, 30, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 45, 46, 47, 48, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 69, 71, 72, 73, 74, 75, 76, 77, 78, 80, 81, 83, 84, 85, 87, 88, 89, 90, 92, 93, 95, 96, 98, 99, 106, 113, 117, 128, 145, 162] while x != 1 and x not in loop_numbers: x = self.cal(x) return x == 1 def cal(self, n): res = 0 while n: res += (n % 10) ** 2 n /= 10 return res def all_loop_numbers(self): res = [] for i in range(1, 100): tmp = [i] next = self.cal(i) while next not in res and next not in tmp and (next != 1): tmp.append(next) next = self.cal(next) if next != 1: res += tmp res = list(set(res)) return res
"""Tests package. Dummy file for allowing exclusion from mypy """
"""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
""" 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. """ 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] multiply_de_bruijn_bit_position = [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) * 125613361 >> 27 & 31] 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 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]) 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. """
""" 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)
(object_identifier, integer, octet_string) = mibBuilder.importSymbols('ASN1', 'ObjectIdentifier', 'Integer', 'OctetString') (named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues') (constraints_union, constraints_intersection, value_range_constraint, single_value_constraint, value_size_constraint) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'ConstraintsUnion', 'ConstraintsIntersection', 'ValueRangeConstraint', 'SingleValueConstraint', 'ValueSizeConstraint') (row_status, storage_type, counter32, gauge32, display_string, time_interval, unsigned32, row_pointer, integer32) = mibBuilder.importSymbols('Nortel-MsCarrier-MscPassport-StandardTextualConventionsMIB', 'RowStatus', 'StorageType', 'Counter32', 'Gauge32', 'DisplayString', 'TimeInterval', 'Unsigned32', 'RowPointer', 'Integer32') (passport_counter64, hex_string, wildcarded_digit_string, integer_sequence, unsigned64, ascii_string_index, dashed_hex_string, ascii_string, fixed_point1, digit_string, fixed_point3, fixed_point4, non_replicated, hex, gauge64, link, enterprise_date_and_time, extended_ascii_string, fixed_point2) = mibBuilder.importSymbols('Nortel-MsCarrier-MscPassport-TextualConventionsMIB', 'PassportCounter64', 'HexString', 'WildcardedDigitString', 'IntegerSequence', 'Unsigned64', 'AsciiStringIndex', 'DashedHexString', 'AsciiString', 'FixedPoint1', 'DigitString', 'FixedPoint3', 'FixedPoint4', 'NonReplicated', 'Hex', 'Gauge64', 'Link', 'EnterpriseDateAndTime', 'ExtendedAsciiString', 'FixedPoint2') (msc_components, msc_passport_mi_bs) = mibBuilder.importSymbols('Nortel-MsCarrier-MscPassport-UsefulDefinitionsMIB', 'mscComponents', 'mscPassportMIBs') (notification_group, module_compliance) = mibBuilder.importSymbols('SNMPv2-CONF', 'NotificationGroup', 'ModuleCompliance') (iso, object_identity, counter32, bits, time_ticks, gauge32, unsigned32, mib_scalar, mib_table, mib_table_row, mib_table_column, notification_type, counter64, ip_address, integer32, module_identity, mib_identifier) = mibBuilder.importSymbols('SNMPv2-SMI', 'iso', 'ObjectIdentity', 'Counter32', 'Bits', 'TimeTicks', 'Gauge32', 'Unsigned32', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn', 'NotificationType', 'Counter64', 'IpAddress', 'Integer32', 'ModuleIdentity', 'MibIdentifier') (textual_convention, display_string) = mibBuilder.importSymbols('SNMPv2-TC', 'TextualConvention', 'DisplayString') cas_test_mib = mib_identifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 2, 103)) msc_example = mib_identifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000)) msc_example_row_status_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1)) if mibBuilder.loadTexts: mscExampleRowStatusTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleRowStatusTable.setDescription('This entry controls the addition and deletion of mscExample components.') msc_example_row_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex')) if mibBuilder.loadTexts: mscExampleRowStatusEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleRowStatusEntry.setDescription('A single entry in the table represents a single mscExample component.') msc_example_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1, 1, 1), row_status()).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleRowStatus.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleRowStatus.setDescription('This variable is used as the basis for SNMP naming of mscExample components. These components can be added and deleted.') msc_example_component_name = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1, 1, 2), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscExampleComponentName.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleComponentName.setDescription("This variable provides the component's string name for use with the ASCII Console Interface") msc_example_storage_type = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1, 1, 4), storage_type()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscExampleStorageType.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleStorageType.setDescription('This variable represents the storage type value for the mscExample tables.') msc_example_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1, 1, 10), non_replicated()) if mibBuilder.loadTexts: mscExampleIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleIndex.setDescription('This variable represents the index for the mscExample tables.') msc_example_operational_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 100)) if mibBuilder.loadTexts: mscExampleOperationalTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleOperationalTable.setDescription('') msc_example_operational_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 100, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex')) if mibBuilder.loadTexts: mscExampleOperationalEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleOperationalEntry.setDescription('An entry in the mscExampleOperationalTable.') msc_example_oper_my_component_name = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 100, 1, 1), row_pointer()).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleOperMyComponentName.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleOperMyComponentName.setDescription('') msc_example_provisional_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 101)) if mibBuilder.loadTexts: mscExampleProvisionalTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleProvisionalTable.setDescription('') msc_example_provisional_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 101, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex')) if mibBuilder.loadTexts: mscExampleProvisionalEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleProvisionalEntry.setDescription('An entry in the mscExampleProvisionalTable.') msc_example_prov_my_component_name = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 101, 1, 1), row_pointer()).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleProvMyComponentName.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleProvMyComponentName.setDescription('') msc_example_oper_decimal_sub_created_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1002)) if mibBuilder.loadTexts: mscExampleOperDecimalSubCreatedTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleOperDecimalSubCreatedTable.setDescription('') msc_example_oper_decimal_sub_created_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1002, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleOperDecimalSubCreatedValue')) if mibBuilder.loadTexts: mscExampleOperDecimalSubCreatedEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleOperDecimalSubCreatedEntry.setDescription('An entry in the mscExampleOperDecimalSubCreatedTable.') msc_example_oper_decimal_sub_created_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1002, 1, 1), row_pointer()).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleOperDecimalSubCreatedValue.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleOperDecimalSubCreatedValue.setDescription('This variable represents both the value and the index for the mscExampleOperDecimalSubCreatedTable.') msc_example_oper_decimal_sub_created_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1002, 1, 2), row_status()).setMaxAccess('writeonly') if mibBuilder.loadTexts: mscExampleOperDecimalSubCreatedRowStatus.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleOperDecimalSubCreatedRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleOperDecimalSubCreatedTable.') msc_example_oper_fixed_pt_subcomponents_created_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1003)) if mibBuilder.loadTexts: mscExampleOperFixedPtSubcomponentsCreatedTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleOperFixedPtSubcomponentsCreatedTable.setDescription('') msc_example_oper_fixed_pt_subcomponents_created_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1003, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleOperFixedPtSubcomponentsCreatedValue')) if mibBuilder.loadTexts: mscExampleOperFixedPtSubcomponentsCreatedEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleOperFixedPtSubcomponentsCreatedEntry.setDescription('An entry in the mscExampleOperFixedPtSubcomponentsCreatedTable.') msc_example_oper_fixed_pt_subcomponents_created_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1003, 1, 1), row_pointer()).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleOperFixedPtSubcomponentsCreatedValue.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleOperFixedPtSubcomponentsCreatedValue.setDescription('This variable represents both the value and the index for the mscExampleOperFixedPtSubcomponentsCreatedTable.') msc_example_oper_fixed_pt_subcomponents_created_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1003, 1, 2), row_status()).setMaxAccess('writeonly') if mibBuilder.loadTexts: mscExampleOperFixedPtSubcomponentsCreatedRowStatus.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleOperFixedPtSubcomponentsCreatedRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleOperFixedPtSubcomponentsCreatedTable.') msc_example_oper_string_sub_created_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1004)) if mibBuilder.loadTexts: mscExampleOperStringSubCreatedTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleOperStringSubCreatedTable.setDescription('') msc_example_oper_string_sub_created_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1004, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleOperStringSubCreatedValue')) if mibBuilder.loadTexts: mscExampleOperStringSubCreatedEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleOperStringSubCreatedEntry.setDescription('An entry in the mscExampleOperStringSubCreatedTable.') msc_example_oper_string_sub_created_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1004, 1, 1), row_pointer()).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleOperStringSubCreatedValue.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleOperStringSubCreatedValue.setDescription('This variable represents both the value and the index for the mscExampleOperStringSubCreatedTable.') msc_example_oper_string_sub_created_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1004, 1, 2), row_status()).setMaxAccess('writeonly') if mibBuilder.loadTexts: mscExampleOperStringSubCreatedRowStatus.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleOperStringSubCreatedRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleOperStringSubCreatedTable.') msc_example_oper_enum_sub_created_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1005)) if mibBuilder.loadTexts: mscExampleOperEnumSubCreatedTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleOperEnumSubCreatedTable.setDescription('') msc_example_oper_enum_sub_created_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1005, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleOperEnumSubCreatedValue')) if mibBuilder.loadTexts: mscExampleOperEnumSubCreatedEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleOperEnumSubCreatedEntry.setDescription('An entry in the mscExampleOperEnumSubCreatedTable.') msc_example_oper_enum_sub_created_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1005, 1, 1), row_pointer()).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleOperEnumSubCreatedValue.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleOperEnumSubCreatedValue.setDescription('This variable represents both the value and the index for the mscExampleOperEnumSubCreatedTable.') msc_example_oper_enum_sub_created_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1005, 1, 2), row_status()).setMaxAccess('writeonly') if mibBuilder.loadTexts: mscExampleOperEnumSubCreatedRowStatus.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleOperEnumSubCreatedRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleOperEnumSubCreatedTable.') msc_example_oper_signed_sub_created_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1006)) if mibBuilder.loadTexts: mscExampleOperSignedSubCreatedTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleOperSignedSubCreatedTable.setDescription('') msc_example_oper_signed_sub_created_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1006, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleOperSignedSubCreatedValue')) if mibBuilder.loadTexts: mscExampleOperSignedSubCreatedEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleOperSignedSubCreatedEntry.setDescription('An entry in the mscExampleOperSignedSubCreatedTable.') msc_example_oper_signed_sub_created_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1006, 1, 1), row_pointer()).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleOperSignedSubCreatedValue.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleOperSignedSubCreatedValue.setDescription('This variable represents both the value and the index for the mscExampleOperSignedSubCreatedTable.') msc_example_oper_signed_sub_created_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1006, 1, 2), row_status()).setMaxAccess('writeonly') if mibBuilder.loadTexts: mscExampleOperSignedSubCreatedRowStatus.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleOperSignedSubCreatedRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleOperSignedSubCreatedTable.') msc_example_prov_decimal_sub_created_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1007)) if mibBuilder.loadTexts: mscExampleProvDecimalSubCreatedTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleProvDecimalSubCreatedTable.setDescription('') msc_example_prov_decimal_sub_created_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1007, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleProvDecimalSubCreatedValue')) if mibBuilder.loadTexts: mscExampleProvDecimalSubCreatedEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleProvDecimalSubCreatedEntry.setDescription('An entry in the mscExampleProvDecimalSubCreatedTable.') msc_example_prov_decimal_sub_created_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1007, 1, 1), link()).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleProvDecimalSubCreatedValue.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleProvDecimalSubCreatedValue.setDescription('This variable represents both the value and the index for the mscExampleProvDecimalSubCreatedTable.') msc_example_prov_decimal_sub_created_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1007, 1, 2), row_status()).setMaxAccess('writeonly') if mibBuilder.loadTexts: mscExampleProvDecimalSubCreatedRowStatus.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleProvDecimalSubCreatedRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleProvDecimalSubCreatedTable.') msc_example_prov_fixed_pt_sub_created_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1008)) if mibBuilder.loadTexts: mscExampleProvFixedPtSubCreatedTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleProvFixedPtSubCreatedTable.setDescription('') msc_example_prov_fixed_pt_sub_created_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1008, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleProvFixedPtSubCreatedValue')) if mibBuilder.loadTexts: mscExampleProvFixedPtSubCreatedEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleProvFixedPtSubCreatedEntry.setDescription('An entry in the mscExampleProvFixedPtSubCreatedTable.') msc_example_prov_fixed_pt_sub_created_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1008, 1, 1), link()).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleProvFixedPtSubCreatedValue.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleProvFixedPtSubCreatedValue.setDescription('This variable represents both the value and the index for the mscExampleProvFixedPtSubCreatedTable.') msc_example_prov_fixed_pt_sub_created_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1008, 1, 2), row_status()).setMaxAccess('writeonly') if mibBuilder.loadTexts: mscExampleProvFixedPtSubCreatedRowStatus.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleProvFixedPtSubCreatedRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleProvFixedPtSubCreatedTable.') msc_example_prov_signed_sub_created_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1009)) if mibBuilder.loadTexts: mscExampleProvSignedSubCreatedTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleProvSignedSubCreatedTable.setDescription('') msc_example_prov_signed_sub_created_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1009, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleProvSignedSubCreatedValue')) if mibBuilder.loadTexts: mscExampleProvSignedSubCreatedEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleProvSignedSubCreatedEntry.setDescription('An entry in the mscExampleProvSignedSubCreatedTable.') msc_example_prov_signed_sub_created_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1009, 1, 1), link()).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleProvSignedSubCreatedValue.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleProvSignedSubCreatedValue.setDescription('This variable represents both the value and the index for the mscExampleProvSignedSubCreatedTable.') msc_example_prov_signed_sub_created_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1009, 1, 2), row_status()).setMaxAccess('writeonly') if mibBuilder.loadTexts: mscExampleProvSignedSubCreatedRowStatus.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleProvSignedSubCreatedRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleProvSignedSubCreatedTable.') msc_example_prov_string_sub_created_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1010)) if mibBuilder.loadTexts: mscExampleProvStringSubCreatedTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleProvStringSubCreatedTable.setDescription('') msc_example_prov_string_sub_created_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1010, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleProvStringSubCreatedValue')) if mibBuilder.loadTexts: mscExampleProvStringSubCreatedEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleProvStringSubCreatedEntry.setDescription('An entry in the mscExampleProvStringSubCreatedTable.') msc_example_prov_string_sub_created_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1010, 1, 1), link()).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleProvStringSubCreatedValue.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleProvStringSubCreatedValue.setDescription('This variable represents both the value and the index for the mscExampleProvStringSubCreatedTable.') msc_example_prov_string_sub_created_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1010, 1, 2), row_status()).setMaxAccess('writeonly') if mibBuilder.loadTexts: mscExampleProvStringSubCreatedRowStatus.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleProvStringSubCreatedRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleProvStringSubCreatedTable.') msc_example_prov_enum_sub_created_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1011)) if mibBuilder.loadTexts: mscExampleProvEnumSubCreatedTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleProvEnumSubCreatedTable.setDescription('') msc_example_prov_enum_sub_created_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1011, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleProvEnumSubCreatedValue')) if mibBuilder.loadTexts: mscExampleProvEnumSubCreatedEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleProvEnumSubCreatedEntry.setDescription('An entry in the mscExampleProvEnumSubCreatedTable.') msc_example_prov_enum_sub_created_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1011, 1, 1), link()).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleProvEnumSubCreatedValue.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleProvEnumSubCreatedValue.setDescription('This variable represents both the value and the index for the mscExampleProvEnumSubCreatedTable.') msc_example_prov_enum_sub_created_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1011, 1, 2), row_status()).setMaxAccess('writeonly') if mibBuilder.loadTexts: mscExampleProvEnumSubCreatedRowStatus.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleProvEnumSubCreatedRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleProvEnumSubCreatedTable.') msc_example_decimal = mib_identifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2)) msc_example_decimal_row_status_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1)) if mibBuilder.loadTexts: mscExampleDecimalRowStatusTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDecimalRowStatusTable.setDescription('This entry controls the addition and deletion of mscExampleDecimal components.') msc_example_decimal_row_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDecimalIndex')) if mibBuilder.loadTexts: mscExampleDecimalRowStatusEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDecimalRowStatusEntry.setDescription('A single entry in the table represents a single mscExampleDecimal component.') msc_example_decimal_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1, 1, 1), row_status()).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleDecimalRowStatus.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDecimalRowStatus.setDescription('This variable is used as the basis for SNMP naming of mscExampleDecimal components. These components can be added and deleted.') msc_example_decimal_component_name = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1, 1, 2), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscExampleDecimalComponentName.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDecimalComponentName.setDescription("This variable provides the component's string name for use with the ASCII Console Interface") msc_example_decimal_storage_type = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1, 1, 4), storage_type()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscExampleDecimalStorageType.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDecimalStorageType.setDescription('This variable represents the storage type value for the mscExampleDecimal tables.') msc_example_decimal_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1, 1, 10), integer32().subtype(subtypeSpec=value_range_constraint(0, 1023))) if mibBuilder.loadTexts: mscExampleDecimalIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDecimalIndex.setDescription('This variable represents the index for the mscExampleDecimal tables.') msc_example_decimal_operational_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 10)) if mibBuilder.loadTexts: mscExampleDecimalOperationalTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDecimalOperationalTable.setDescription('') msc_example_decimal_operational_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 10, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDecimalIndex')) if mibBuilder.loadTexts: mscExampleDecimalOperationalEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDecimalOperationalEntry.setDescription('An entry in the mscExampleDecimalOperationalTable.') msc_example_decimal_oper_struct_integer = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 10, 1, 1), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 255))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleDecimalOperStructInteger.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDecimalOperStructInteger.setDescription('') msc_example_decimal_oper_struct_int_set = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 10, 1, 2), octet_string().subtype(subtypeSpec=value_size_constraint(2, 2)).setFixedLength(2)).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleDecimalOperStructIntSet.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDecimalOperStructIntSet.setDescription('Description of bits: n0(0) n1(1) n2(2) n3(3) n4(4) n5(5) n6(6) n7(7) n8(8) n9(9) n10(10) n11(11) n12(12) n13(13) n14(14) n15(15)') msc_example_decimal_oper_free_integer = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 10, 1, 3), unsigned32().subtype(subtypeSpec=constraints_union(value_range_constraint(0, 10), value_range_constraint(100, 200)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleDecimalOperFreeInteger.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDecimalOperFreeInteger.setDescription('') msc_example_decimal_oper_free_int_set = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 10, 1, 4), octet_string().subtype(subtypeSpec=value_size_constraint(1, 1)).setFixedLength(1)).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleDecimalOperFreeIntSet.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDecimalOperFreeIntSet.setDescription('Description of bits: n0(0) n1(1) n2(2) n3(3) n4(4) n5(5)') msc_example_decimal_oper_free_counter32 = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 10, 1, 5), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscExampleDecimalOperFreeCounter32.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDecimalOperFreeCounter32.setDescription('') msc_example_decimal_oper_free_gauge32 = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 10, 1, 6), gauge32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleDecimalOperFreeGauge32.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDecimalOperFreeGauge32.setDescription('') msc_example_decimal_oper_free_time_interval = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 10, 1, 7), time_interval().subtype(subtypeSpec=value_range_constraint(0, 2147483647))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleDecimalOperFreeTimeInterval.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDecimalOperFreeTimeInterval.setDescription('') msc_example_decimal_provisional_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 11)) if mibBuilder.loadTexts: mscExampleDecimalProvisionalTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDecimalProvisionalTable.setDescription('') msc_example_decimal_provisional_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 11, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDecimalIndex')) if mibBuilder.loadTexts: mscExampleDecimalProvisionalEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDecimalProvisionalEntry.setDescription('An entry in the mscExampleDecimalProvisionalTable.') msc_example_decimal_prov_decimal_sub = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 11, 1, 1), link()).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleDecimalProvDecimalSub.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDecimalProvDecimalSub.setDescription('') msc_example_decimal_prov_struct_integer = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 11, 1, 2), unsigned32().subtype(subtypeSpec=constraints_union(value_range_constraint(0, 252), value_range_constraint(253, 253), value_range_constraint(254, 254), value_range_constraint(255, 255))).clone(253)).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleDecimalProvStructInteger.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDecimalProvStructInteger.setDescription('VALUES ( 253 = infinity 254 = notApplicable 255 = notMeasured )') msc_example_decimal_prov_struct_int_set = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 11, 1, 3), octet_string().subtype(subtypeSpec=value_size_constraint(2, 2)).setFixedLength(2).clone(hexValue='aaaa')).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleDecimalProvStructIntSet.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDecimalProvStructIntSet.setDescription('Description of bits: n0(0) n1(1) n2(2) n3(3) n4(4) n5(5) n6(6) n7(7) n8(8) n9(9) n10(10) n11(11) n12(12) n13(13) n14(14) n15(15)') msc_example_decimal_prov_free_integer = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 11, 1, 4), unsigned32().subtype(subtypeSpec=constraints_union(value_range_constraint(0, 10), value_range_constraint(100, 200))).clone(101)).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleDecimalProvFreeInteger.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDecimalProvFreeInteger.setDescription('') msc_example_decimal_prov_free_integer1 = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 11, 1, 5), unsigned32().subtype(subtypeSpec=constraints_union(value_range_constraint(1, 10), value_range_constraint(100, 200))).clone(1)).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleDecimalProvFreeInteger1.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDecimalProvFreeInteger1.setDescription('') msc_example_decimal_prov_free_integer2 = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 11, 1, 6), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleDecimalProvFreeInteger2.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDecimalProvFreeInteger2.setDescription('') msc_example_decimal_prov_free_int_set = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 11, 1, 7), octet_string().subtype(subtypeSpec=value_size_constraint(2, 2)).setFixedLength(2).clone(hexValue='5555')).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleDecimalProvFreeIntSet.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDecimalProvFreeIntSet.setDescription('Description of bits: n0(0) n1(1) n2(2) n3(3) n4(4) n5(5) n6(6) n7(7) n8(8) n9(9) n10(10) n11(11) n12(12) n13(13) n14(14) n15(15)') msc_example_decimal_prov_free_int_set1 = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 11, 1, 8), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4).clone(hexValue='80000001')).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleDecimalProvFreeIntSet1.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDecimalProvFreeIntSet1.setDescription('Description of bits: n0(0) n1(1) n2(2) n3(3) n4(4) n5(5) n6(6) n7(7) n8(8) n9(9) n10(10) n11(11) n12(12) n13(13) n14(14) n15(15) n16(16) n17(17) n18(18) n19(19) n20(20) n21(21) n22(22) n23(23) n24(24) n25(25) n26(26) n27(27) n28(28) n29(29) n30(30) n31(31)') msc_example_decimal_os_int_vector_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1012)) if mibBuilder.loadTexts: mscExampleDecimalOsIntVectorTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDecimalOsIntVectorTable.setDescription('') msc_example_decimal_os_int_vector_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1012, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDecimalIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDecimalOsIntVectorIndex')) if mibBuilder.loadTexts: mscExampleDecimalOsIntVectorEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDecimalOsIntVectorEntry.setDescription('An entry in the mscExampleDecimalOsIntVectorTable.') msc_example_decimal_os_int_vector_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1012, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 9))) if mibBuilder.loadTexts: mscExampleDecimalOsIntVectorIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDecimalOsIntVectorIndex.setDescription('This variable represents the mscExampleDecimalOsIntVectorTable specific index for the mscExampleDecimalOsIntVectorTable.') msc_example_decimal_os_int_vector_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1012, 1, 2), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 100))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleDecimalOsIntVectorValue.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDecimalOsIntVectorValue.setDescription('This variable represents an individual value for the mscExampleDecimalOsIntVectorTable.') msc_example_decimal_os_int_array_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1013)) if mibBuilder.loadTexts: mscExampleDecimalOsIntArrayTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDecimalOsIntArrayTable.setDescription('') msc_example_decimal_os_int_array_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1013, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDecimalIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDecimalOsIntArrayRowIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDecimalOsIntArrayColumnIndex')) if mibBuilder.loadTexts: mscExampleDecimalOsIntArrayEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDecimalOsIntArrayEntry.setDescription('An entry in the mscExampleDecimalOsIntArrayTable.') msc_example_decimal_os_int_array_row_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1013, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 2))) if mibBuilder.loadTexts: mscExampleDecimalOsIntArrayRowIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDecimalOsIntArrayRowIndex.setDescription('This variable represents the next to last index for the mscExampleDecimalOsIntArrayTable.') msc_example_decimal_os_int_array_column_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1013, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 3))) if mibBuilder.loadTexts: mscExampleDecimalOsIntArrayColumnIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDecimalOsIntArrayColumnIndex.setDescription('This variable represents the final index for the mscExampleDecimalOsIntArrayTable.') msc_example_decimal_os_int_array_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1013, 1, 3), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 255))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleDecimalOsIntArrayValue.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDecimalOsIntArrayValue.setDescription('This variable represents an individual value for the mscExampleDecimalOsIntArrayTable.') msc_example_decimal_of_int_vector_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1014)) if mibBuilder.loadTexts: mscExampleDecimalOfIntVectorTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDecimalOfIntVectorTable.setDescription('') msc_example_decimal_of_int_vector_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1014, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDecimalIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDecimalOfIntVectorIndex')) if mibBuilder.loadTexts: mscExampleDecimalOfIntVectorEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDecimalOfIntVectorEntry.setDescription('An entry in the mscExampleDecimalOfIntVectorTable.') msc_example_decimal_of_int_vector_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1014, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 9))) if mibBuilder.loadTexts: mscExampleDecimalOfIntVectorIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDecimalOfIntVectorIndex.setDescription('This variable represents the mscExampleDecimalOfIntVectorTable specific index for the mscExampleDecimalOfIntVectorTable.') msc_example_decimal_of_int_vector_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1014, 1, 2), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 100))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleDecimalOfIntVectorValue.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDecimalOfIntVectorValue.setDescription('This variable represents an individual value for the mscExampleDecimalOfIntVectorTable.') msc_example_decimal_of_int_array_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1015)) if mibBuilder.loadTexts: mscExampleDecimalOfIntArrayTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDecimalOfIntArrayTable.setDescription('') msc_example_decimal_of_int_array_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1015, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDecimalIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDecimalOfIntArrayRowIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDecimalOfIntArrayColumnIndex')) if mibBuilder.loadTexts: mscExampleDecimalOfIntArrayEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDecimalOfIntArrayEntry.setDescription('An entry in the mscExampleDecimalOfIntArrayTable.') msc_example_decimal_of_int_array_row_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1015, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 2))) if mibBuilder.loadTexts: mscExampleDecimalOfIntArrayRowIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDecimalOfIntArrayRowIndex.setDescription('This variable represents the next to last index for the mscExampleDecimalOfIntArrayTable.') msc_example_decimal_of_int_array_column_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1015, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 3))) if mibBuilder.loadTexts: mscExampleDecimalOfIntArrayColumnIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDecimalOfIntArrayColumnIndex.setDescription('This variable represents the final index for the mscExampleDecimalOfIntArrayTable.') msc_example_decimal_of_int_array_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1015, 1, 3), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 255))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleDecimalOfIntArrayValue.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDecimalOfIntArrayValue.setDescription('This variable represents an individual value for the mscExampleDecimalOfIntArrayTable.') msc_example_decimal_of_int_replicated_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1016)) if mibBuilder.loadTexts: mscExampleDecimalOfIntReplicatedTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDecimalOfIntReplicatedTable.setDescription('') msc_example_decimal_of_int_replicated_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1016, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDecimalIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDecimalOfIntReplicatedIndex')) if mibBuilder.loadTexts: mscExampleDecimalOfIntReplicatedEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDecimalOfIntReplicatedEntry.setDescription('An entry in the mscExampleDecimalOfIntReplicatedTable.') msc_example_decimal_of_int_replicated_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1016, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 9))) if mibBuilder.loadTexts: mscExampleDecimalOfIntReplicatedIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDecimalOfIntReplicatedIndex.setDescription('This variable represents the index for the mscExampleDecimalOfIntReplicatedTable.') msc_example_decimal_of_int_replicated_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1016, 1, 2), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleDecimalOfIntReplicatedValue.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDecimalOfIntReplicatedValue.setDescription('This variable represents an individual value for the mscExampleDecimalOfIntReplicatedTable.') msc_example_decimal_of_int_replicated_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1016, 1, 3), row_status()).setMaxAccess('writeonly') if mibBuilder.loadTexts: mscExampleDecimalOfIntReplicatedRowStatus.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDecimalOfIntReplicatedRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleDecimalOfIntReplicatedTable.') msc_example_decimal_of_int_list_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1017)) if mibBuilder.loadTexts: mscExampleDecimalOfIntListTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDecimalOfIntListTable.setDescription('') msc_example_decimal_of_int_list_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1017, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDecimalIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDecimalOfIntListValue')) if mibBuilder.loadTexts: mscExampleDecimalOfIntListEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDecimalOfIntListEntry.setDescription('An entry in the mscExampleDecimalOfIntListTable.') msc_example_decimal_of_int_list_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1017, 1, 1), integer32().subtype(subtypeSpec=constraints_union(value_range_constraint(0, 10), value_range_constraint(1000, 2000)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleDecimalOfIntListValue.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDecimalOfIntListValue.setDescription('This variable represents both the value and the index for the mscExampleDecimalOfIntListTable.') msc_example_decimal_of_int_list_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1017, 1, 2), row_status()).setMaxAccess('writeonly') if mibBuilder.loadTexts: mscExampleDecimalOfIntListRowStatus.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDecimalOfIntListRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleDecimalOfIntListTable.') msc_example_decimal_ps_int_vector_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1018)) if mibBuilder.loadTexts: mscExampleDecimalPsIntVectorTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDecimalPsIntVectorTable.setDescription('') msc_example_decimal_ps_int_vector_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1018, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDecimalIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDecimalPsIntVectorIndex')) if mibBuilder.loadTexts: mscExampleDecimalPsIntVectorEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDecimalPsIntVectorEntry.setDescription('An entry in the mscExampleDecimalPsIntVectorTable.') msc_example_decimal_ps_int_vector_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1018, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 9))) if mibBuilder.loadTexts: mscExampleDecimalPsIntVectorIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDecimalPsIntVectorIndex.setDescription('This variable represents the mscExampleDecimalPsIntVectorTable specific index for the mscExampleDecimalPsIntVectorTable.') msc_example_decimal_ps_int_vector_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1018, 1, 2), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 100))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleDecimalPsIntVectorValue.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDecimalPsIntVectorValue.setDescription('This variable represents an individual value for the mscExampleDecimalPsIntVectorTable.') msc_example_decimal_ps_int_array_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1019)) if mibBuilder.loadTexts: mscExampleDecimalPsIntArrayTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDecimalPsIntArrayTable.setDescription('') msc_example_decimal_ps_int_array_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1019, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDecimalIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDecimalPsIntArrayRowIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDecimalPsIntArrayColumnIndex')) if mibBuilder.loadTexts: mscExampleDecimalPsIntArrayEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDecimalPsIntArrayEntry.setDescription('An entry in the mscExampleDecimalPsIntArrayTable.') msc_example_decimal_ps_int_array_row_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1019, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 2))) if mibBuilder.loadTexts: mscExampleDecimalPsIntArrayRowIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDecimalPsIntArrayRowIndex.setDescription('This variable represents the next to last index for the mscExampleDecimalPsIntArrayTable.') msc_example_decimal_ps_int_array_column_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1019, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 3))) if mibBuilder.loadTexts: mscExampleDecimalPsIntArrayColumnIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDecimalPsIntArrayColumnIndex.setDescription('This variable represents the final index for the mscExampleDecimalPsIntArrayTable.') msc_example_decimal_ps_int_array_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1019, 1, 3), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 255))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleDecimalPsIntArrayValue.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDecimalPsIntArrayValue.setDescription('This variable represents an individual value for the mscExampleDecimalPsIntArrayTable.') msc_example_decimal_pf_int_vector_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1020)) if mibBuilder.loadTexts: mscExampleDecimalPfIntVectorTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDecimalPfIntVectorTable.setDescription('') msc_example_decimal_pf_int_vector_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1020, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDecimalIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDecimalPfIntVectorIndex')) if mibBuilder.loadTexts: mscExampleDecimalPfIntVectorEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDecimalPfIntVectorEntry.setDescription('An entry in the mscExampleDecimalPfIntVectorTable.') msc_example_decimal_pf_int_vector_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1020, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 9))) if mibBuilder.loadTexts: mscExampleDecimalPfIntVectorIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDecimalPfIntVectorIndex.setDescription('This variable represents the mscExampleDecimalPfIntVectorTable specific index for the mscExampleDecimalPfIntVectorTable.') msc_example_decimal_pf_int_vector_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1020, 1, 2), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 100))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleDecimalPfIntVectorValue.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDecimalPfIntVectorValue.setDescription('This variable represents an individual value for the mscExampleDecimalPfIntVectorTable.') msc_example_decimal_pf_int_vector1_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1021)) if mibBuilder.loadTexts: mscExampleDecimalPfIntVector1Table.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDecimalPfIntVector1Table.setDescription('') msc_example_decimal_pf_int_vector1_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1021, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDecimalIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDecimalPfIntVector1Index')) if mibBuilder.loadTexts: mscExampleDecimalPfIntVector1Entry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDecimalPfIntVector1Entry.setDescription('An entry in the mscExampleDecimalPfIntVector1Table.') msc_example_decimal_pf_int_vector1_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1021, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 15))) if mibBuilder.loadTexts: mscExampleDecimalPfIntVector1Index.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDecimalPfIntVector1Index.setDescription('This variable represents the mscExampleDecimalPfIntVector1Table specific index for the mscExampleDecimalPfIntVector1Table.') msc_example_decimal_pf_int_vector1_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1021, 1, 2), unsigned32().subtype(subtypeSpec=constraints_union(value_range_constraint(0, 50), value_range_constraint(100, 150)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleDecimalPfIntVector1Value.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDecimalPfIntVector1Value.setDescription('This variable represents an individual value for the mscExampleDecimalPfIntVector1Table.') msc_example_decimal_pf_int_array_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1022)) if mibBuilder.loadTexts: mscExampleDecimalPfIntArrayTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDecimalPfIntArrayTable.setDescription('') msc_example_decimal_pf_int_array_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1022, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDecimalIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDecimalPfIntArrayRowIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDecimalPfIntArrayColumnIndex')) if mibBuilder.loadTexts: mscExampleDecimalPfIntArrayEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDecimalPfIntArrayEntry.setDescription('An entry in the mscExampleDecimalPfIntArrayTable.') msc_example_decimal_pf_int_array_row_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1022, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 2))) if mibBuilder.loadTexts: mscExampleDecimalPfIntArrayRowIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDecimalPfIntArrayRowIndex.setDescription('This variable represents the next to last index for the mscExampleDecimalPfIntArrayTable.') msc_example_decimal_pf_int_array_column_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1022, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 3))) if mibBuilder.loadTexts: mscExampleDecimalPfIntArrayColumnIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDecimalPfIntArrayColumnIndex.setDescription('This variable represents the final index for the mscExampleDecimalPfIntArrayTable.') msc_example_decimal_pf_int_array_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1022, 1, 3), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 255))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleDecimalPfIntArrayValue.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDecimalPfIntArrayValue.setDescription('This variable represents an individual value for the mscExampleDecimalPfIntArrayTable.') msc_example_decimal_pf_int_array1_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1023)) if mibBuilder.loadTexts: mscExampleDecimalPfIntArray1Table.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDecimalPfIntArray1Table.setDescription('') msc_example_decimal_pf_int_array1_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1023, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDecimalIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDecimalPfIntArray1RowIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDecimalPfIntArray1ColumnIndex')) if mibBuilder.loadTexts: mscExampleDecimalPfIntArray1Entry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDecimalPfIntArray1Entry.setDescription('An entry in the mscExampleDecimalPfIntArray1Table.') msc_example_decimal_pf_int_array1_row_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1023, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 2))) if mibBuilder.loadTexts: mscExampleDecimalPfIntArray1RowIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDecimalPfIntArray1RowIndex.setDescription('This variable represents the next to last index for the mscExampleDecimalPfIntArray1Table.') msc_example_decimal_pf_int_array1_column_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1023, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 3))) if mibBuilder.loadTexts: mscExampleDecimalPfIntArray1ColumnIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDecimalPfIntArray1ColumnIndex.setDescription('This variable represents the final index for the mscExampleDecimalPfIntArray1Table.') msc_example_decimal_pf_int_array1_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1023, 1, 3), unsigned32().subtype(subtypeSpec=constraints_union(value_range_constraint(0, 10), value_range_constraint(20, 200)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleDecimalPfIntArray1Value.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDecimalPfIntArray1Value.setDescription('This variable represents an individual value for the mscExampleDecimalPfIntArray1Table.') msc_example_decimal_pf_int_replicated_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1024)) if mibBuilder.loadTexts: mscExampleDecimalPfIntReplicatedTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDecimalPfIntReplicatedTable.setDescription('') msc_example_decimal_pf_int_replicated_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1024, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDecimalIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDecimalPfIntReplicatedIndex')) if mibBuilder.loadTexts: mscExampleDecimalPfIntReplicatedEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDecimalPfIntReplicatedEntry.setDescription('An entry in the mscExampleDecimalPfIntReplicatedTable.') msc_example_decimal_pf_int_replicated_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1024, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 9))) if mibBuilder.loadTexts: mscExampleDecimalPfIntReplicatedIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDecimalPfIntReplicatedIndex.setDescription('This variable represents the index for the mscExampleDecimalPfIntReplicatedTable.') msc_example_decimal_pf_int_replicated_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1024, 1, 2), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleDecimalPfIntReplicatedValue.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDecimalPfIntReplicatedValue.setDescription('This variable represents an individual value for the mscExampleDecimalPfIntReplicatedTable.') msc_example_decimal_pf_int_replicated_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1024, 1, 3), row_status()).setMaxAccess('writeonly') if mibBuilder.loadTexts: mscExampleDecimalPfIntReplicatedRowStatus.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDecimalPfIntReplicatedRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleDecimalPfIntReplicatedTable.') msc_example_decimal_pf_int_replicated1_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1025)) if mibBuilder.loadTexts: mscExampleDecimalPfIntReplicated1Table.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDecimalPfIntReplicated1Table.setDescription('') msc_example_decimal_pf_int_replicated1_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1025, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDecimalIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDecimalPfIntReplicated1Index')) if mibBuilder.loadTexts: mscExampleDecimalPfIntReplicated1Entry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDecimalPfIntReplicated1Entry.setDescription('An entry in the mscExampleDecimalPfIntReplicated1Table.') msc_example_decimal_pf_int_replicated1_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1025, 1, 1), integer32().subtype(subtypeSpec=constraints_union(value_range_constraint(0, 9), value_range_constraint(11, 19)))) if mibBuilder.loadTexts: mscExampleDecimalPfIntReplicated1Index.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDecimalPfIntReplicated1Index.setDescription('This variable represents the index for the mscExampleDecimalPfIntReplicated1Table.') msc_example_decimal_pf_int_replicated1_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1025, 1, 2), unsigned32().subtype(subtypeSpec=constraints_union(value_range_constraint(0, 3), value_range_constraint(30, 300)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleDecimalPfIntReplicated1Value.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDecimalPfIntReplicated1Value.setDescription('This variable represents an individual value for the mscExampleDecimalPfIntReplicated1Table.') msc_example_decimal_pf_int_replicated1_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1025, 1, 3), row_status()).setMaxAccess('writeonly') if mibBuilder.loadTexts: mscExampleDecimalPfIntReplicated1RowStatus.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDecimalPfIntReplicated1RowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleDecimalPfIntReplicated1Table.') msc_example_decimal_pf_int_list_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1026)) if mibBuilder.loadTexts: mscExampleDecimalPfIntListTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDecimalPfIntListTable.setDescription('') msc_example_decimal_pf_int_list_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1026, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDecimalIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDecimalPfIntListValue')) if mibBuilder.loadTexts: mscExampleDecimalPfIntListEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDecimalPfIntListEntry.setDescription('An entry in the mscExampleDecimalPfIntListTable.') msc_example_decimal_pf_int_list_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1026, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 1000))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleDecimalPfIntListValue.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDecimalPfIntListValue.setDescription('This variable represents both the value and the index for the mscExampleDecimalPfIntListTable.') msc_example_decimal_pf_int_list_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1026, 1, 2), row_status()).setMaxAccess('writeonly') if mibBuilder.loadTexts: mscExampleDecimalPfIntListRowStatus.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDecimalPfIntListRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleDecimalPfIntListTable.') msc_example_decimal_pf_int_list1_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1027)) if mibBuilder.loadTexts: mscExampleDecimalPfIntList1Table.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDecimalPfIntList1Table.setDescription('') msc_example_decimal_pf_int_list1_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1027, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDecimalIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDecimalPfIntList1Value')) if mibBuilder.loadTexts: mscExampleDecimalPfIntList1Entry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDecimalPfIntList1Entry.setDescription('An entry in the mscExampleDecimalPfIntList1Table.') msc_example_decimal_pf_int_list1_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1027, 1, 1), integer32().subtype(subtypeSpec=constraints_union(value_range_constraint(1, 10), value_range_constraint(15, 50)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleDecimalPfIntList1Value.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDecimalPfIntList1Value.setDescription('This variable represents both the value and the index for the mscExampleDecimalPfIntList1Table.') msc_example_decimal_pf_int_list1_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1027, 1, 2), row_status()).setMaxAccess('writeonly') if mibBuilder.loadTexts: mscExampleDecimalPfIntList1RowStatus.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDecimalPfIntList1RowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleDecimalPfIntList1Table.') msc_example_hex = mib_identifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3)) msc_example_hex_row_status_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1)) if mibBuilder.loadTexts: mscExampleHexRowStatusTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleHexRowStatusTable.setDescription('This entry controls the addition and deletion of mscExampleHex components.') msc_example_hex_row_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleHexIndex')) if mibBuilder.loadTexts: mscExampleHexRowStatusEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleHexRowStatusEntry.setDescription('A single entry in the table represents a single mscExampleHex component.') msc_example_hex_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1, 1, 1), row_status()).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleHexRowStatus.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleHexRowStatus.setDescription('This variable is used as the basis for SNMP naming of mscExampleHex components. These components can be added and deleted.') msc_example_hex_component_name = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1, 1, 2), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscExampleHexComponentName.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleHexComponentName.setDescription("This variable provides the component's string name for use with the ASCII Console Interface") msc_example_hex_storage_type = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1, 1, 4), storage_type()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscExampleHexStorageType.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleHexStorageType.setDescription('This variable represents the storage type value for the mscExampleHex tables.') msc_example_hex_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1, 1, 10), integer32().subtype(subtypeSpec=value_range_constraint(0, 255))) if mibBuilder.loadTexts: mscExampleHexIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleHexIndex.setDescription('This variable represents the index for the mscExampleHex tables.') msc_example_hex_operational_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 10)) if mibBuilder.loadTexts: mscExampleHexOperationalTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleHexOperationalTable.setDescription('') msc_example_hex_operational_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 10, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleHexIndex')) if mibBuilder.loadTexts: mscExampleHexOperationalEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleHexOperationalEntry.setDescription('An entry in the mscExampleHexOperationalTable.') msc_example_hex_oper_struct_hex = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 10, 1, 1), hex().subtype(subtypeSpec=value_range_constraint(0, 256))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleHexOperStructHex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleHexOperStructHex.setDescription('') msc_example_hex_oper_free_hex = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 10, 1, 2), hex().subtype(subtypeSpec=value_range_constraint(0, 256))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleHexOperFreeHex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleHexOperFreeHex.setDescription('') msc_example_hex_provisional_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 11)) if mibBuilder.loadTexts: mscExampleHexProvisionalTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleHexProvisionalTable.setDescription('') msc_example_hex_provisional_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 11, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleHexIndex')) if mibBuilder.loadTexts: mscExampleHexProvisionalEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleHexProvisionalEntry.setDescription('An entry in the mscExampleHexProvisionalTable.') msc_example_hex_prov_enum_sub = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 11, 1, 1), link()).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleHexProvEnumSub.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleHexProvEnumSub.setDescription('') msc_example_hex_prov_struct_hex = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 11, 1, 2), hex().subtype(subtypeSpec=constraints_union(value_range_constraint(0, 256), value_range_constraint(512, 512), value_range_constraint(513, 513), value_range_constraint(514, 514))).clone(512)).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleHexProvStructHex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleHexProvStructHex.setDescription('VALUES ( 512 = infinity 513 = notApplicable 514 = notMeasured )') msc_example_hex_prov_free_hex = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 11, 1, 3), hex().subtype(subtypeSpec=value_range_constraint(0, 256)).clone(18)).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleHexProvFreeHex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleHexProvFreeHex.setDescription('') msc_example_hex_prov_free_hex1 = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 11, 1, 4), hex().subtype(subtypeSpec=constraints_union(value_range_constraint(0, 16), value_range_constraint(256, 4096)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleHexProvFreeHex1.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleHexProvFreeHex1.setDescription('') msc_example_hex_os_hex_vector_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1040)) if mibBuilder.loadTexts: mscExampleHexOsHexVectorTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleHexOsHexVectorTable.setDescription('') msc_example_hex_os_hex_vector_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1040, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleHexIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleHexOsHexVectorIndex')) if mibBuilder.loadTexts: mscExampleHexOsHexVectorEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleHexOsHexVectorEntry.setDescription('An entry in the mscExampleHexOsHexVectorTable.') msc_example_hex_os_hex_vector_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1040, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 9))) if mibBuilder.loadTexts: mscExampleHexOsHexVectorIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleHexOsHexVectorIndex.setDescription('This variable represents the mscExampleHexOsHexVectorTable specific index for the mscExampleHexOsHexVectorTable.') msc_example_hex_os_hex_vector_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1040, 1, 2), hex().subtype(subtypeSpec=value_range_constraint(0, 255))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleHexOsHexVectorValue.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleHexOsHexVectorValue.setDescription('This variable represents an individual value for the mscExampleHexOsHexVectorTable.') msc_example_hex_os_hex_array_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1041)) if mibBuilder.loadTexts: mscExampleHexOsHexArrayTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleHexOsHexArrayTable.setDescription('') msc_example_hex_os_hex_array_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1041, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleHexIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleHexOsHexArrayRowIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleHexOsHexArrayColumnIndex')) if mibBuilder.loadTexts: mscExampleHexOsHexArrayEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleHexOsHexArrayEntry.setDescription('An entry in the mscExampleHexOsHexArrayTable.') msc_example_hex_os_hex_array_row_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1041, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 2))) if mibBuilder.loadTexts: mscExampleHexOsHexArrayRowIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleHexOsHexArrayRowIndex.setDescription('This variable represents the next to last index for the mscExampleHexOsHexArrayTable.') msc_example_hex_os_hex_array_column_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1041, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 3))) if mibBuilder.loadTexts: mscExampleHexOsHexArrayColumnIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleHexOsHexArrayColumnIndex.setDescription('This variable represents the final index for the mscExampleHexOsHexArrayTable.') msc_example_hex_os_hex_array_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1041, 1, 3), hex().subtype(subtypeSpec=value_range_constraint(0, 255))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleHexOsHexArrayValue.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleHexOsHexArrayValue.setDescription('This variable represents an individual value for the mscExampleHexOsHexArrayTable.') msc_example_hex_of_hex_vector_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1042)) if mibBuilder.loadTexts: mscExampleHexOfHexVectorTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleHexOfHexVectorTable.setDescription('') msc_example_hex_of_hex_vector_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1042, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleHexIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleHexOfHexVectorIndex')) if mibBuilder.loadTexts: mscExampleHexOfHexVectorEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleHexOfHexVectorEntry.setDescription('An entry in the mscExampleHexOfHexVectorTable.') msc_example_hex_of_hex_vector_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1042, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 9))) if mibBuilder.loadTexts: mscExampleHexOfHexVectorIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleHexOfHexVectorIndex.setDescription('This variable represents the mscExampleHexOfHexVectorTable specific index for the mscExampleHexOfHexVectorTable.') msc_example_hex_of_hex_vector_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1042, 1, 2), hex().subtype(subtypeSpec=value_range_constraint(0, 256))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleHexOfHexVectorValue.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleHexOfHexVectorValue.setDescription('This variable represents an individual value for the mscExampleHexOfHexVectorTable.') msc_example_hex_of_hex_array_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1043)) if mibBuilder.loadTexts: mscExampleHexOfHexArrayTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleHexOfHexArrayTable.setDescription('') msc_example_hex_of_hex_array_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1043, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleHexIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleHexOfHexArrayRowIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleHexOfHexArrayColumnIndex')) if mibBuilder.loadTexts: mscExampleHexOfHexArrayEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleHexOfHexArrayEntry.setDescription('An entry in the mscExampleHexOfHexArrayTable.') msc_example_hex_of_hex_array_row_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1043, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 2))) if mibBuilder.loadTexts: mscExampleHexOfHexArrayRowIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleHexOfHexArrayRowIndex.setDescription('This variable represents the next to last index for the mscExampleHexOfHexArrayTable.') msc_example_hex_of_hex_array_column_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1043, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 3))) if mibBuilder.loadTexts: mscExampleHexOfHexArrayColumnIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleHexOfHexArrayColumnIndex.setDescription('This variable represents the final index for the mscExampleHexOfHexArrayTable.') msc_example_hex_of_hex_array_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1043, 1, 3), hex().subtype(subtypeSpec=value_range_constraint(0, 255))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleHexOfHexArrayValue.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleHexOfHexArrayValue.setDescription('This variable represents an individual value for the mscExampleHexOfHexArrayTable.') msc_example_hex_of_hex_replicated_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1044)) if mibBuilder.loadTexts: mscExampleHexOfHexReplicatedTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleHexOfHexReplicatedTable.setDescription('') msc_example_hex_of_hex_replicated_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1044, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleHexIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleHexOfHexReplicatedIndex')) if mibBuilder.loadTexts: mscExampleHexOfHexReplicatedEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleHexOfHexReplicatedEntry.setDescription('An entry in the mscExampleHexOfHexReplicatedTable.') msc_example_hex_of_hex_replicated_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1044, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 9))) if mibBuilder.loadTexts: mscExampleHexOfHexReplicatedIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleHexOfHexReplicatedIndex.setDescription('This variable represents the index for the mscExampleHexOfHexReplicatedTable.') msc_example_hex_of_hex_replicated_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1044, 1, 2), hex().subtype(subtypeSpec=value_range_constraint(0, 256))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleHexOfHexReplicatedValue.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleHexOfHexReplicatedValue.setDescription('This variable represents an individual value for the mscExampleHexOfHexReplicatedTable.') msc_example_hex_of_hex_replicated_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1044, 1, 3), row_status()).setMaxAccess('writeonly') if mibBuilder.loadTexts: mscExampleHexOfHexReplicatedRowStatus.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleHexOfHexReplicatedRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleHexOfHexReplicatedTable.') msc_example_hex_of_hex_list_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1045)) if mibBuilder.loadTexts: mscExampleHexOfHexListTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleHexOfHexListTable.setDescription('') msc_example_hex_of_hex_list_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1045, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleHexIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleHexOfHexListValue')) if mibBuilder.loadTexts: mscExampleHexOfHexListEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleHexOfHexListEntry.setDescription('An entry in the mscExampleHexOfHexListTable.') msc_example_hex_of_hex_list_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1045, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 4096))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleHexOfHexListValue.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleHexOfHexListValue.setDescription('This variable represents both the value and the index for the mscExampleHexOfHexListTable.') msc_example_hex_of_hex_list_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1045, 1, 2), row_status()).setMaxAccess('writeonly') if mibBuilder.loadTexts: mscExampleHexOfHexListRowStatus.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleHexOfHexListRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleHexOfHexListTable.') msc_example_hex_prov_struct_hex_vector_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1046)) if mibBuilder.loadTexts: mscExampleHexProvStructHexVectorTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleHexProvStructHexVectorTable.setDescription('') msc_example_hex_prov_struct_hex_vector_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1046, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleHexIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleHexProvStructHexVectorIndex')) if mibBuilder.loadTexts: mscExampleHexProvStructHexVectorEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleHexProvStructHexVectorEntry.setDescription('An entry in the mscExampleHexProvStructHexVectorTable.') msc_example_hex_prov_struct_hex_vector_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1046, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 9))) if mibBuilder.loadTexts: mscExampleHexProvStructHexVectorIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleHexProvStructHexVectorIndex.setDescription('This variable represents the mscExampleHexProvStructHexVectorTable specific index for the mscExampleHexProvStructHexVectorTable.') msc_example_hex_prov_struct_hex_vector_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1046, 1, 2), hex().subtype(subtypeSpec=value_range_constraint(0, 255))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleHexProvStructHexVectorValue.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleHexProvStructHexVectorValue.setDescription('This variable represents an individual value for the mscExampleHexProvStructHexVectorTable.') msc_example_hex_prov_struct_hex_array_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1047)) if mibBuilder.loadTexts: mscExampleHexProvStructHexArrayTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleHexProvStructHexArrayTable.setDescription('') msc_example_hex_prov_struct_hex_array_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1047, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleHexIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleHexProvStructHexArrayRowIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleHexProvStructHexArrayColumnIndex')) if mibBuilder.loadTexts: mscExampleHexProvStructHexArrayEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleHexProvStructHexArrayEntry.setDescription('An entry in the mscExampleHexProvStructHexArrayTable.') msc_example_hex_prov_struct_hex_array_row_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1047, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 2))) if mibBuilder.loadTexts: mscExampleHexProvStructHexArrayRowIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleHexProvStructHexArrayRowIndex.setDescription('This variable represents the next to last index for the mscExampleHexProvStructHexArrayTable.') msc_example_hex_prov_struct_hex_array_column_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1047, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 3))) if mibBuilder.loadTexts: mscExampleHexProvStructHexArrayColumnIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleHexProvStructHexArrayColumnIndex.setDescription('This variable represents the final index for the mscExampleHexProvStructHexArrayTable.') msc_example_hex_prov_struct_hex_array_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1047, 1, 3), hex().subtype(subtypeSpec=value_range_constraint(0, 255))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleHexProvStructHexArrayValue.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleHexProvStructHexArrayValue.setDescription('This variable represents an individual value for the mscExampleHexProvStructHexArrayTable.') msc_example_hex_prov_free_hex_vector_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1048)) if mibBuilder.loadTexts: mscExampleHexProvFreeHexVectorTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleHexProvFreeHexVectorTable.setDescription('') msc_example_hex_prov_free_hex_vector_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1048, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleHexIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleHexProvFreeHexVectorIndex')) if mibBuilder.loadTexts: mscExampleHexProvFreeHexVectorEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleHexProvFreeHexVectorEntry.setDescription('An entry in the mscExampleHexProvFreeHexVectorTable.') msc_example_hex_prov_free_hex_vector_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1048, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 9))) if mibBuilder.loadTexts: mscExampleHexProvFreeHexVectorIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleHexProvFreeHexVectorIndex.setDescription('This variable represents the mscExampleHexProvFreeHexVectorTable specific index for the mscExampleHexProvFreeHexVectorTable.') msc_example_hex_prov_free_hex_vector_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1048, 1, 2), hex().subtype(subtypeSpec=value_range_constraint(0, 256))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleHexProvFreeHexVectorValue.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleHexProvFreeHexVectorValue.setDescription('This variable represents an individual value for the mscExampleHexProvFreeHexVectorTable.') msc_example_hex_prov_free_hex_vector1_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1049)) if mibBuilder.loadTexts: mscExampleHexProvFreeHexVector1Table.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleHexProvFreeHexVector1Table.setDescription('') msc_example_hex_prov_free_hex_vector1_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1049, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleHexIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleHexProvFreeHexVector1Index')) if mibBuilder.loadTexts: mscExampleHexProvFreeHexVector1Entry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleHexProvFreeHexVector1Entry.setDescription('An entry in the mscExampleHexProvFreeHexVector1Table.') msc_example_hex_prov_free_hex_vector1_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1049, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 9))) if mibBuilder.loadTexts: mscExampleHexProvFreeHexVector1Index.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleHexProvFreeHexVector1Index.setDescription('This variable represents the mscExampleHexProvFreeHexVector1Table specific index for the mscExampleHexProvFreeHexVector1Table.') msc_example_hex_prov_free_hex_vector1_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1049, 1, 2), hex().subtype(subtypeSpec=constraints_union(value_range_constraint(0, 16), value_range_constraint(256, 4096)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleHexProvFreeHexVector1Value.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleHexProvFreeHexVector1Value.setDescription('This variable represents an individual value for the mscExampleHexProvFreeHexVector1Table.') msc_example_hex_prov_free_hex_vector2_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1050)) if mibBuilder.loadTexts: mscExampleHexProvFreeHexVector2Table.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleHexProvFreeHexVector2Table.setDescription('') msc_example_hex_prov_free_hex_vector2_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1050, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleHexIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleHexProvFreeHexVector2Index')) if mibBuilder.loadTexts: mscExampleHexProvFreeHexVector2Entry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleHexProvFreeHexVector2Entry.setDescription('An entry in the mscExampleHexProvFreeHexVector2Table.') msc_example_hex_prov_free_hex_vector2_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1050, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 5))) if mibBuilder.loadTexts: mscExampleHexProvFreeHexVector2Index.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleHexProvFreeHexVector2Index.setDescription('This variable represents the mscExampleHexProvFreeHexVector2Table specific index for the mscExampleHexProvFreeHexVector2Table.') msc_example_hex_prov_free_hex_vector2_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1050, 1, 2), hex().subtype(subtypeSpec=constraints_union(value_range_constraint(0, 16), value_range_constraint(256, 4096)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleHexProvFreeHexVector2Value.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleHexProvFreeHexVector2Value.setDescription('This variable represents an individual value for the mscExampleHexProvFreeHexVector2Table.') msc_example_hex_prov_free_hex_array_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1051)) if mibBuilder.loadTexts: mscExampleHexProvFreeHexArrayTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleHexProvFreeHexArrayTable.setDescription('') msc_example_hex_prov_free_hex_array_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1051, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleHexIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleHexProvFreeHexArrayRowIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleHexProvFreeHexArrayColumnIndex')) if mibBuilder.loadTexts: mscExampleHexProvFreeHexArrayEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleHexProvFreeHexArrayEntry.setDescription('An entry in the mscExampleHexProvFreeHexArrayTable.') msc_example_hex_prov_free_hex_array_row_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1051, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 2))) if mibBuilder.loadTexts: mscExampleHexProvFreeHexArrayRowIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleHexProvFreeHexArrayRowIndex.setDescription('This variable represents the next to last index for the mscExampleHexProvFreeHexArrayTable.') msc_example_hex_prov_free_hex_array_column_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1051, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 3))) if mibBuilder.loadTexts: mscExampleHexProvFreeHexArrayColumnIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleHexProvFreeHexArrayColumnIndex.setDescription('This variable represents the final index for the mscExampleHexProvFreeHexArrayTable.') msc_example_hex_prov_free_hex_array_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1051, 1, 3), hex().subtype(subtypeSpec=value_range_constraint(0, 255))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleHexProvFreeHexArrayValue.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleHexProvFreeHexArrayValue.setDescription('This variable represents an individual value for the mscExampleHexProvFreeHexArrayTable.') msc_example_hex_prov_free_hex_array1_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1052)) if mibBuilder.loadTexts: mscExampleHexProvFreeHexArray1Table.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleHexProvFreeHexArray1Table.setDescription('') msc_example_hex_prov_free_hex_array1_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1052, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleHexIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleHexProvFreeHexArray1RowIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleHexProvFreeHexArray1ColumnIndex')) if mibBuilder.loadTexts: mscExampleHexProvFreeHexArray1Entry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleHexProvFreeHexArray1Entry.setDescription('An entry in the mscExampleHexProvFreeHexArray1Table.') msc_example_hex_prov_free_hex_array1_row_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1052, 1, 1), integer32().subtype(subtypeSpec=constraints_union(value_range_constraint(0, 1), value_range_constraint(3, 4)))) if mibBuilder.loadTexts: mscExampleHexProvFreeHexArray1RowIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleHexProvFreeHexArray1RowIndex.setDescription('This variable represents the next to last index for the mscExampleHexProvFreeHexArray1Table.') msc_example_hex_prov_free_hex_array1_column_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1052, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 3))) if mibBuilder.loadTexts: mscExampleHexProvFreeHexArray1ColumnIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleHexProvFreeHexArray1ColumnIndex.setDescription('This variable represents the final index for the mscExampleHexProvFreeHexArray1Table.') msc_example_hex_prov_free_hex_array1_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1052, 1, 3), hex().subtype(subtypeSpec=constraints_union(value_range_constraint(0, 16), value_range_constraint(80, 256)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleHexProvFreeHexArray1Value.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleHexProvFreeHexArray1Value.setDescription('This variable represents an individual value for the mscExampleHexProvFreeHexArray1Table.') msc_example_hex_prov_free_hex_array2_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1053)) if mibBuilder.loadTexts: mscExampleHexProvFreeHexArray2Table.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleHexProvFreeHexArray2Table.setDescription('') msc_example_hex_prov_free_hex_array2_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1053, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleHexIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleHexProvFreeHexArray2RowIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleHexProvFreeHexArray2ColumnIndex')) if mibBuilder.loadTexts: mscExampleHexProvFreeHexArray2Entry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleHexProvFreeHexArray2Entry.setDescription('An entry in the mscExampleHexProvFreeHexArray2Table.') msc_example_hex_prov_free_hex_array2_row_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1053, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 3))) if mibBuilder.loadTexts: mscExampleHexProvFreeHexArray2RowIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleHexProvFreeHexArray2RowIndex.setDescription('This variable represents the next to last index for the mscExampleHexProvFreeHexArray2Table.') msc_example_hex_prov_free_hex_array2_column_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1053, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 3))) if mibBuilder.loadTexts: mscExampleHexProvFreeHexArray2ColumnIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleHexProvFreeHexArray2ColumnIndex.setDescription('This variable represents the final index for the mscExampleHexProvFreeHexArray2Table.') msc_example_hex_prov_free_hex_array2_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1053, 1, 3), hex().subtype(subtypeSpec=constraints_union(value_range_constraint(0, 16), value_range_constraint(80, 256)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleHexProvFreeHexArray2Value.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleHexProvFreeHexArray2Value.setDescription('This variable represents an individual value for the mscExampleHexProvFreeHexArray2Table.') msc_example_hex_prov_free_hex_replicated_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1054)) if mibBuilder.loadTexts: mscExampleHexProvFreeHexReplicatedTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleHexProvFreeHexReplicatedTable.setDescription('') msc_example_hex_prov_free_hex_replicated_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1054, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleHexIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleHexProvFreeHexReplicatedIndex')) if mibBuilder.loadTexts: mscExampleHexProvFreeHexReplicatedEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleHexProvFreeHexReplicatedEntry.setDescription('An entry in the mscExampleHexProvFreeHexReplicatedTable.') msc_example_hex_prov_free_hex_replicated_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1054, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 9))) if mibBuilder.loadTexts: mscExampleHexProvFreeHexReplicatedIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleHexProvFreeHexReplicatedIndex.setDescription('This variable represents the index for the mscExampleHexProvFreeHexReplicatedTable.') msc_example_hex_prov_free_hex_replicated_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1054, 1, 2), hex().subtype(subtypeSpec=value_range_constraint(0, 256))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleHexProvFreeHexReplicatedValue.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleHexProvFreeHexReplicatedValue.setDescription('This variable represents an individual value for the mscExampleHexProvFreeHexReplicatedTable.') msc_example_hex_prov_free_hex_replicated_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1054, 1, 3), row_status()).setMaxAccess('writeonly') if mibBuilder.loadTexts: mscExampleHexProvFreeHexReplicatedRowStatus.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleHexProvFreeHexReplicatedRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleHexProvFreeHexReplicatedTable.') msc_example_hex_prov_free_hex_replicated1_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1055)) if mibBuilder.loadTexts: mscExampleHexProvFreeHexReplicated1Table.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleHexProvFreeHexReplicated1Table.setDescription('') msc_example_hex_prov_free_hex_replicated1_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1055, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleHexIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleHexProvFreeHexReplicated1Index')) if mibBuilder.loadTexts: mscExampleHexProvFreeHexReplicated1Entry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleHexProvFreeHexReplicated1Entry.setDescription('An entry in the mscExampleHexProvFreeHexReplicated1Table.') msc_example_hex_prov_free_hex_replicated1_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1055, 1, 1), integer32().subtype(subtypeSpec=constraints_union(value_range_constraint(0, 3), value_range_constraint(5, 9)))) if mibBuilder.loadTexts: mscExampleHexProvFreeHexReplicated1Index.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleHexProvFreeHexReplicated1Index.setDescription('This variable represents the index for the mscExampleHexProvFreeHexReplicated1Table.') msc_example_hex_prov_free_hex_replicated1_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1055, 1, 2), hex().subtype(subtypeSpec=constraints_union(value_range_constraint(0, 32), value_range_constraint(80, 256)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleHexProvFreeHexReplicated1Value.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleHexProvFreeHexReplicated1Value.setDescription('This variable represents an individual value for the mscExampleHexProvFreeHexReplicated1Table.') msc_example_hex_prov_free_hex_replicated1_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1055, 1, 3), row_status()).setMaxAccess('writeonly') if mibBuilder.loadTexts: mscExampleHexProvFreeHexReplicated1RowStatus.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleHexProvFreeHexReplicated1RowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleHexProvFreeHexReplicated1Table.') msc_example_hex_prov_free_hex_list_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1056)) if mibBuilder.loadTexts: mscExampleHexProvFreeHexListTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleHexProvFreeHexListTable.setDescription('') msc_example_hex_prov_free_hex_list_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1056, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleHexIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleHexProvFreeHexListValue')) if mibBuilder.loadTexts: mscExampleHexProvFreeHexListEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleHexProvFreeHexListEntry.setDescription('An entry in the mscExampleHexProvFreeHexListTable.') msc_example_hex_prov_free_hex_list_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1056, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 4096))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleHexProvFreeHexListValue.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleHexProvFreeHexListValue.setDescription('This variable represents both the value and the index for the mscExampleHexProvFreeHexListTable.') msc_example_hex_prov_free_hex_list_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1056, 1, 2), row_status()).setMaxAccess('writeonly') if mibBuilder.loadTexts: mscExampleHexProvFreeHexListRowStatus.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleHexProvFreeHexListRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleHexProvFreeHexListTable.') msc_example_hex_prov_free_hex_list1_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1057)) if mibBuilder.loadTexts: mscExampleHexProvFreeHexList1Table.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleHexProvFreeHexList1Table.setDescription('') msc_example_hex_prov_free_hex_list1_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1057, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleHexIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleHexProvFreeHexList1Value')) if mibBuilder.loadTexts: mscExampleHexProvFreeHexList1Entry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleHexProvFreeHexList1Entry.setDescription('An entry in the mscExampleHexProvFreeHexList1Table.') msc_example_hex_prov_free_hex_list1_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1057, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 4096))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleHexProvFreeHexList1Value.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleHexProvFreeHexList1Value.setDescription('This variable represents both the value and the index for the mscExampleHexProvFreeHexList1Table.') msc_example_hex_prov_free_hex_list1_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1057, 1, 2), row_status()).setMaxAccess('writeonly') if mibBuilder.loadTexts: mscExampleHexProvFreeHexList1RowStatus.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleHexProvFreeHexList1RowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleHexProvFreeHexList1Table.') msc_example_ip_address = mib_identifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4)) msc_example_ip_address_row_status_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1)) if mibBuilder.loadTexts: mscExampleIpAddressRowStatusTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleIpAddressRowStatusTable.setDescription('This entry controls the addition and deletion of mscExampleIpAddress components.') msc_example_ip_address_row_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIpAddressIndex')) if mibBuilder.loadTexts: mscExampleIpAddressRowStatusEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleIpAddressRowStatusEntry.setDescription('A single entry in the table represents a single mscExampleIpAddress component.') msc_example_ip_address_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1, 1, 1), row_status()).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleIpAddressRowStatus.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleIpAddressRowStatus.setDescription('This variable is used as the basis for SNMP naming of mscExampleIpAddress components. These components can be added and deleted.') msc_example_ip_address_component_name = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1, 1, 2), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscExampleIpAddressComponentName.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleIpAddressComponentName.setDescription("This variable provides the component's string name for use with the ASCII Console Interface") msc_example_ip_address_storage_type = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1, 1, 4), storage_type()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscExampleIpAddressStorageType.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleIpAddressStorageType.setDescription('This variable represents the storage type value for the mscExampleIpAddress tables.') msc_example_ip_address_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1, 1, 10), ip_address()) if mibBuilder.loadTexts: mscExampleIpAddressIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleIpAddressIndex.setDescription('This variable represents the index for the mscExampleIpAddress tables.') msc_example_ip_address_operational_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 10)) if mibBuilder.loadTexts: mscExampleIpAddressOperationalTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleIpAddressOperationalTable.setDescription('') msc_example_ip_address_operational_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 10, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIpAddressIndex')) if mibBuilder.loadTexts: mscExampleIpAddressOperationalEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleIpAddressOperationalEntry.setDescription('An entry in the mscExampleIpAddressOperationalTable.') msc_example_ip_address_oper_struct_ip_address = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 10, 1, 1), ip_address()).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleIpAddressOperStructIpAddress.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleIpAddressOperStructIpAddress.setDescription('') msc_example_ip_address_oper_free_ip_address = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 10, 1, 2), ip_address()).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleIpAddressOperFreeIpAddress.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleIpAddressOperFreeIpAddress.setDescription('') msc_example_ip_address_provisional_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 11)) if mibBuilder.loadTexts: mscExampleIpAddressProvisionalTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleIpAddressProvisionalTable.setDescription('') msc_example_ip_address_provisional_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 11, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIpAddressIndex')) if mibBuilder.loadTexts: mscExampleIpAddressProvisionalEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleIpAddressProvisionalEntry.setDescription('An entry in the mscExampleIpAddressProvisionalTable.') msc_example_ip_address_prov_enum_sub = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 11, 1, 1), link()).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleIpAddressProvEnumSub.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleIpAddressProvEnumSub.setDescription('') msc_example_ip_address_prov_struct_ip_address = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 11, 1, 2), ip_address().clone(hexValue='7f000100')).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleIpAddressProvStructIpAddress.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleIpAddressProvStructIpAddress.setDescription('') msc_example_ip_address_prov_free_ip_address = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 11, 1, 3), ip_address().clone(hexValue='7f7f7f7f')).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddress.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddress.setDescription('') msc_example_ip_address_prov_free_ip_address1 = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 11, 1, 4), ip_address()).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddress1.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddress1.setDescription('') msc_example_ip_address_oper_struct_ip_address_vector_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1058)) if mibBuilder.loadTexts: mscExampleIpAddressOperStructIpAddressVectorTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleIpAddressOperStructIpAddressVectorTable.setDescription('') msc_example_ip_address_oper_struct_ip_address_vector_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1058, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIpAddressIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIpAddressOperStructIpAddressVectorIndex')) if mibBuilder.loadTexts: mscExampleIpAddressOperStructIpAddressVectorEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleIpAddressOperStructIpAddressVectorEntry.setDescription('An entry in the mscExampleIpAddressOperStructIpAddressVectorTable.') msc_example_ip_address_oper_struct_ip_address_vector_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1058, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 9))) if mibBuilder.loadTexts: mscExampleIpAddressOperStructIpAddressVectorIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleIpAddressOperStructIpAddressVectorIndex.setDescription('This variable represents the mscExampleIpAddressOperStructIpAddressVectorTable specific index for the mscExampleIpAddressOperStructIpAddressVectorTable.') msc_example_ip_address_oper_struct_ip_address_vector_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1058, 1, 2), ip_address()).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleIpAddressOperStructIpAddressVectorValue.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleIpAddressOperStructIpAddressVectorValue.setDescription('This variable represents an individual value for the mscExampleIpAddressOperStructIpAddressVectorTable.') msc_example_ip_address_oper_struct_ip_address_array_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1059)) if mibBuilder.loadTexts: mscExampleIpAddressOperStructIpAddressArrayTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleIpAddressOperStructIpAddressArrayTable.setDescription('') msc_example_ip_address_oper_struct_ip_address_array_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1059, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIpAddressIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIpAddressOperStructIpAddressArrayRowIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIpAddressOperStructIpAddressArrayColumnIndex')) if mibBuilder.loadTexts: mscExampleIpAddressOperStructIpAddressArrayEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleIpAddressOperStructIpAddressArrayEntry.setDescription('An entry in the mscExampleIpAddressOperStructIpAddressArrayTable.') msc_example_ip_address_oper_struct_ip_address_array_row_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1059, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 2))) if mibBuilder.loadTexts: mscExampleIpAddressOperStructIpAddressArrayRowIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleIpAddressOperStructIpAddressArrayRowIndex.setDescription('This variable represents the next to last index for the mscExampleIpAddressOperStructIpAddressArrayTable.') msc_example_ip_address_oper_struct_ip_address_array_column_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1059, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 3))) if mibBuilder.loadTexts: mscExampleIpAddressOperStructIpAddressArrayColumnIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleIpAddressOperStructIpAddressArrayColumnIndex.setDescription('This variable represents the final index for the mscExampleIpAddressOperStructIpAddressArrayTable.') msc_example_ip_address_oper_struct_ip_address_array_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1059, 1, 3), ip_address()).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleIpAddressOperStructIpAddressArrayValue.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleIpAddressOperStructIpAddressArrayValue.setDescription('This variable represents an individual value for the mscExampleIpAddressOperStructIpAddressArrayTable.') msc_example_ip_address_oper_free_ip_address_vector_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1060)) if mibBuilder.loadTexts: mscExampleIpAddressOperFreeIpAddressVectorTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleIpAddressOperFreeIpAddressVectorTable.setDescription('') msc_example_ip_address_oper_free_ip_address_vector_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1060, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIpAddressIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIpAddressOperFreeIpAddressVectorIndex')) if mibBuilder.loadTexts: mscExampleIpAddressOperFreeIpAddressVectorEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleIpAddressOperFreeIpAddressVectorEntry.setDescription('An entry in the mscExampleIpAddressOperFreeIpAddressVectorTable.') msc_example_ip_address_oper_free_ip_address_vector_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1060, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 9))) if mibBuilder.loadTexts: mscExampleIpAddressOperFreeIpAddressVectorIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleIpAddressOperFreeIpAddressVectorIndex.setDescription('This variable represents the mscExampleIpAddressOperFreeIpAddressVectorTable specific index for the mscExampleIpAddressOperFreeIpAddressVectorTable.') msc_example_ip_address_oper_free_ip_address_vector_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1060, 1, 2), ip_address()).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleIpAddressOperFreeIpAddressVectorValue.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleIpAddressOperFreeIpAddressVectorValue.setDescription('This variable represents an individual value for the mscExampleIpAddressOperFreeIpAddressVectorTable.') msc_example_ip_address_oper_free_ip_address_array_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1061)) if mibBuilder.loadTexts: mscExampleIpAddressOperFreeIpAddressArrayTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleIpAddressOperFreeIpAddressArrayTable.setDescription('') msc_example_ip_address_oper_free_ip_address_array_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1061, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIpAddressIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIpAddressOperFreeIpAddressArrayRowIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIpAddressOperFreeIpAddressArrayColumnIndex')) if mibBuilder.loadTexts: mscExampleIpAddressOperFreeIpAddressArrayEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleIpAddressOperFreeIpAddressArrayEntry.setDescription('An entry in the mscExampleIpAddressOperFreeIpAddressArrayTable.') msc_example_ip_address_oper_free_ip_address_array_row_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1061, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 2))) if mibBuilder.loadTexts: mscExampleIpAddressOperFreeIpAddressArrayRowIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleIpAddressOperFreeIpAddressArrayRowIndex.setDescription('This variable represents the next to last index for the mscExampleIpAddressOperFreeIpAddressArrayTable.') msc_example_ip_address_oper_free_ip_address_array_column_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1061, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 3))) if mibBuilder.loadTexts: mscExampleIpAddressOperFreeIpAddressArrayColumnIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleIpAddressOperFreeIpAddressArrayColumnIndex.setDescription('This variable represents the final index for the mscExampleIpAddressOperFreeIpAddressArrayTable.') msc_example_ip_address_oper_free_ip_address_array_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1061, 1, 3), ip_address()).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleIpAddressOperFreeIpAddressArrayValue.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleIpAddressOperFreeIpAddressArrayValue.setDescription('This variable represents an individual value for the mscExampleIpAddressOperFreeIpAddressArrayTable.') msc_example_ip_address_oper_free_ip_address_replicated_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1062)) if mibBuilder.loadTexts: mscExampleIpAddressOperFreeIpAddressReplicatedTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleIpAddressOperFreeIpAddressReplicatedTable.setDescription('') msc_example_ip_address_oper_free_ip_address_replicated_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1062, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIpAddressIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIpAddressOperFreeIpAddressReplicatedIndex')) if mibBuilder.loadTexts: mscExampleIpAddressOperFreeIpAddressReplicatedEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleIpAddressOperFreeIpAddressReplicatedEntry.setDescription('An entry in the mscExampleIpAddressOperFreeIpAddressReplicatedTable.') msc_example_ip_address_oper_free_ip_address_replicated_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1062, 1, 1), ip_address()) if mibBuilder.loadTexts: mscExampleIpAddressOperFreeIpAddressReplicatedIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleIpAddressOperFreeIpAddressReplicatedIndex.setDescription('This variable represents the index for the mscExampleIpAddressOperFreeIpAddressReplicatedTable.') msc_example_ip_address_oper_free_ip_address_replicated_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1062, 1, 2), ip_address()).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleIpAddressOperFreeIpAddressReplicatedValue.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleIpAddressOperFreeIpAddressReplicatedValue.setDescription('This variable represents an individual value for the mscExampleIpAddressOperFreeIpAddressReplicatedTable.') msc_example_ip_address_oper_free_ip_address_replicated_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1062, 1, 3), row_status()).setMaxAccess('writeonly') if mibBuilder.loadTexts: mscExampleIpAddressOperFreeIpAddressReplicatedRowStatus.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleIpAddressOperFreeIpAddressReplicatedRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleIpAddressOperFreeIpAddressReplicatedTable.') msc_example_ip_address_oper_free_ip_address_list_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1063)) if mibBuilder.loadTexts: mscExampleIpAddressOperFreeIpAddressListTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleIpAddressOperFreeIpAddressListTable.setDescription('') msc_example_ip_address_oper_free_ip_address_list_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1063, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIpAddressIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIpAddressOperFreeIpAddressListValue')) if mibBuilder.loadTexts: mscExampleIpAddressOperFreeIpAddressListEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleIpAddressOperFreeIpAddressListEntry.setDescription('An entry in the mscExampleIpAddressOperFreeIpAddressListTable.') msc_example_ip_address_oper_free_ip_address_list_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1063, 1, 1), ip_address()).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleIpAddressOperFreeIpAddressListValue.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleIpAddressOperFreeIpAddressListValue.setDescription('This variable represents both the value and the index for the mscExampleIpAddressOperFreeIpAddressListTable.') msc_example_ip_address_oper_free_ip_address_list_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1063, 1, 2), row_status()).setMaxAccess('writeonly') if mibBuilder.loadTexts: mscExampleIpAddressOperFreeIpAddressListRowStatus.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleIpAddressOperFreeIpAddressListRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleIpAddressOperFreeIpAddressListTable.') msc_example_ip_address_prov_struct_ip_address_vector_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1064)) if mibBuilder.loadTexts: mscExampleIpAddressProvStructIpAddressVectorTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleIpAddressProvStructIpAddressVectorTable.setDescription('') msc_example_ip_address_prov_struct_ip_address_vector_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1064, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIpAddressIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIpAddressProvStructIpAddressVectorIndex')) if mibBuilder.loadTexts: mscExampleIpAddressProvStructIpAddressVectorEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleIpAddressProvStructIpAddressVectorEntry.setDescription('An entry in the mscExampleIpAddressProvStructIpAddressVectorTable.') msc_example_ip_address_prov_struct_ip_address_vector_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1064, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 9))) if mibBuilder.loadTexts: mscExampleIpAddressProvStructIpAddressVectorIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleIpAddressProvStructIpAddressVectorIndex.setDescription('This variable represents the mscExampleIpAddressProvStructIpAddressVectorTable specific index for the mscExampleIpAddressProvStructIpAddressVectorTable.') msc_example_ip_address_prov_struct_ip_address_vector_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1064, 1, 2), ip_address()).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleIpAddressProvStructIpAddressVectorValue.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleIpAddressProvStructIpAddressVectorValue.setDescription('This variable represents an individual value for the mscExampleIpAddressProvStructIpAddressVectorTable.') msc_example_ip_address_prov_struct_ip_address_array_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1065)) if mibBuilder.loadTexts: mscExampleIpAddressProvStructIpAddressArrayTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleIpAddressProvStructIpAddressArrayTable.setDescription('') msc_example_ip_address_prov_struct_ip_address_array_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1065, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIpAddressIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIpAddressProvStructIpAddressArrayRowIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIpAddressProvStructIpAddressArrayColumnIndex')) if mibBuilder.loadTexts: mscExampleIpAddressProvStructIpAddressArrayEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleIpAddressProvStructIpAddressArrayEntry.setDescription('An entry in the mscExampleIpAddressProvStructIpAddressArrayTable.') msc_example_ip_address_prov_struct_ip_address_array_row_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1065, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 2))) if mibBuilder.loadTexts: mscExampleIpAddressProvStructIpAddressArrayRowIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleIpAddressProvStructIpAddressArrayRowIndex.setDescription('This variable represents the next to last index for the mscExampleIpAddressProvStructIpAddressArrayTable.') msc_example_ip_address_prov_struct_ip_address_array_column_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1065, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 3))) if mibBuilder.loadTexts: mscExampleIpAddressProvStructIpAddressArrayColumnIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleIpAddressProvStructIpAddressArrayColumnIndex.setDescription('This variable represents the final index for the mscExampleIpAddressProvStructIpAddressArrayTable.') msc_example_ip_address_prov_struct_ip_address_array_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1065, 1, 3), ip_address()).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleIpAddressProvStructIpAddressArrayValue.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleIpAddressProvStructIpAddressArrayValue.setDescription('This variable represents an individual value for the mscExampleIpAddressProvStructIpAddressArrayTable.') msc_example_ip_address_prov_free_ip_address_vector_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1066)) if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressVectorTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressVectorTable.setDescription('') msc_example_ip_address_prov_free_ip_address_vector_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1066, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIpAddressIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIpAddressProvFreeIpAddressVectorIndex')) if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressVectorEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressVectorEntry.setDescription('An entry in the mscExampleIpAddressProvFreeIpAddressVectorTable.') msc_example_ip_address_prov_free_ip_address_vector_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1066, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 9))) if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressVectorIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressVectorIndex.setDescription('This variable represents the mscExampleIpAddressProvFreeIpAddressVectorTable specific index for the mscExampleIpAddressProvFreeIpAddressVectorTable.') msc_example_ip_address_prov_free_ip_address_vector_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1066, 1, 2), ip_address()).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressVectorValue.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressVectorValue.setDescription('This variable represents an individual value for the mscExampleIpAddressProvFreeIpAddressVectorTable.') msc_example_ip_address_prov_free_ip_address_vector1_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1067)) if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressVector1Table.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressVector1Table.setDescription('') msc_example_ip_address_prov_free_ip_address_vector1_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1067, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIpAddressIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIpAddressProvFreeIpAddressVector1Index')) if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressVector1Entry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressVector1Entry.setDescription('An entry in the mscExampleIpAddressProvFreeIpAddressVector1Table.') msc_example_ip_address_prov_free_ip_address_vector1_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1067, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 3))) if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressVector1Index.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressVector1Index.setDescription('This variable represents the mscExampleIpAddressProvFreeIpAddressVector1Table specific index for the mscExampleIpAddressProvFreeIpAddressVector1Table.') msc_example_ip_address_prov_free_ip_address_vector1_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1067, 1, 2), ip_address()).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressVector1Value.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressVector1Value.setDescription('This variable represents an individual value for the mscExampleIpAddressProvFreeIpAddressVector1Table.') msc_example_ip_address_prov_free_ip_address_array_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1068)) if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressArrayTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressArrayTable.setDescription('') msc_example_ip_address_prov_free_ip_address_array_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1068, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIpAddressIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIpAddressProvFreeIpAddressArrayRowIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIpAddressProvFreeIpAddressArrayColumnIndex')) if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressArrayEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressArrayEntry.setDescription('An entry in the mscExampleIpAddressProvFreeIpAddressArrayTable.') msc_example_ip_address_prov_free_ip_address_array_row_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1068, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 2))) if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressArrayRowIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressArrayRowIndex.setDescription('This variable represents the next to last index for the mscExampleIpAddressProvFreeIpAddressArrayTable.') msc_example_ip_address_prov_free_ip_address_array_column_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1068, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 3))) if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressArrayColumnIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressArrayColumnIndex.setDescription('This variable represents the final index for the mscExampleIpAddressProvFreeIpAddressArrayTable.') msc_example_ip_address_prov_free_ip_address_array_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1068, 1, 3), ip_address()).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressArrayValue.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressArrayValue.setDescription('This variable represents an individual value for the mscExampleIpAddressProvFreeIpAddressArrayTable.') msc_example_ip_address_prov_free_ip_address_array1_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1069)) if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressArray1Table.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressArray1Table.setDescription('') msc_example_ip_address_prov_free_ip_address_array1_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1069, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIpAddressIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIpAddressProvFreeIpAddressArray1RowIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIpAddressProvFreeIpAddressArray1ColumnIndex')) if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressArray1Entry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressArray1Entry.setDescription('An entry in the mscExampleIpAddressProvFreeIpAddressArray1Table.') msc_example_ip_address_prov_free_ip_address_array1_row_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1069, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 3))) if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressArray1RowIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressArray1RowIndex.setDescription('This variable represents the next to last index for the mscExampleIpAddressProvFreeIpAddressArray1Table.') msc_example_ip_address_prov_free_ip_address_array1_column_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1069, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 3))) if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressArray1ColumnIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressArray1ColumnIndex.setDescription('This variable represents the final index for the mscExampleIpAddressProvFreeIpAddressArray1Table.') msc_example_ip_address_prov_free_ip_address_array1_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1069, 1, 3), ip_address()).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressArray1Value.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressArray1Value.setDescription('This variable represents an individual value for the mscExampleIpAddressProvFreeIpAddressArray1Table.') msc_example_ip_address_prov_free_ip_address_replicated_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1070)) if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressReplicatedTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressReplicatedTable.setDescription('') msc_example_ip_address_prov_free_ip_address_replicated_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1070, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIpAddressIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIpAddressProvFreeIpAddressReplicatedIndex')) if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressReplicatedEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressReplicatedEntry.setDescription('An entry in the mscExampleIpAddressProvFreeIpAddressReplicatedTable.') msc_example_ip_address_prov_free_ip_address_replicated_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1070, 1, 1), ip_address()) if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressReplicatedIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressReplicatedIndex.setDescription('This variable represents the index for the mscExampleIpAddressProvFreeIpAddressReplicatedTable.') msc_example_ip_address_prov_free_ip_address_replicated_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1070, 1, 2), ip_address()).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressReplicatedValue.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressReplicatedValue.setDescription('This variable represents an individual value for the mscExampleIpAddressProvFreeIpAddressReplicatedTable.') msc_example_ip_address_prov_free_ip_address_replicated_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1070, 1, 3), row_status()).setMaxAccess('writeonly') if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressReplicatedRowStatus.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressReplicatedRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleIpAddressProvFreeIpAddressReplicatedTable.') msc_example_ip_address_prov_free_ip_address_list_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1071)) if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressListTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressListTable.setDescription('') msc_example_ip_address_prov_free_ip_address_list_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1071, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIpAddressIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIpAddressProvFreeIpAddressListValue')) if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressListEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressListEntry.setDescription('An entry in the mscExampleIpAddressProvFreeIpAddressListTable.') msc_example_ip_address_prov_free_ip_address_list_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1071, 1, 1), ip_address()).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressListValue.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressListValue.setDescription('This variable represents both the value and the index for the mscExampleIpAddressProvFreeIpAddressListTable.') msc_example_ip_address_prov_free_ip_address_list_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1071, 1, 2), row_status()).setMaxAccess('writeonly') if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressListRowStatus.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressListRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleIpAddressProvFreeIpAddressListTable.') msc_example_ip_address_prov_free_ip_address_list1_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1072)) if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressList1Table.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressList1Table.setDescription('') msc_example_ip_address_prov_free_ip_address_list1_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1072, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIpAddressIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIpAddressProvFreeIpAddressList1Value')) if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressList1Entry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressList1Entry.setDescription('An entry in the mscExampleIpAddressProvFreeIpAddressList1Table.') msc_example_ip_address_prov_free_ip_address_list1_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1072, 1, 1), ip_address()).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressList1Value.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressList1Value.setDescription('This variable represents both the value and the index for the mscExampleIpAddressProvFreeIpAddressList1Table.') msc_example_ip_address_prov_free_ip_address_list1_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1072, 1, 2), row_status()).setMaxAccess('writeonly') if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressList1RowStatus.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressList1RowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleIpAddressProvFreeIpAddressList1Table.') msc_example_string = mib_identifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5)) msc_example_string_row_status_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1)) if mibBuilder.loadTexts: mscExampleStringRowStatusTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleStringRowStatusTable.setDescription('This entry controls the addition and deletion of mscExampleString components.') msc_example_string_row_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleStringIndex')) if mibBuilder.loadTexts: mscExampleStringRowStatusEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleStringRowStatusEntry.setDescription('A single entry in the table represents a single mscExampleString component.') msc_example_string_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1, 1, 1), row_status()).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleStringRowStatus.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleStringRowStatus.setDescription('This variable is used as the basis for SNMP naming of mscExampleString components. These components can be added and deleted.') msc_example_string_component_name = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1, 1, 2), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscExampleStringComponentName.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleStringComponentName.setDescription("This variable provides the component's string name for use with the ASCII Console Interface") msc_example_string_storage_type = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1, 1, 4), storage_type()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscExampleStringStorageType.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleStringStorageType.setDescription('This variable represents the storage type value for the mscExampleString tables.') msc_example_string_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1, 1, 10), ascii_string_index().subtype(subtypeSpec=value_size_constraint(1, 10))) if mibBuilder.loadTexts: mscExampleStringIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleStringIndex.setDescription('This variable represents the index for the mscExampleString tables.') msc_example_string_operational_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 10)) if mibBuilder.loadTexts: mscExampleStringOperationalTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleStringOperationalTable.setDescription('') msc_example_string_operational_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 10, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleStringIndex')) if mibBuilder.loadTexts: mscExampleStringOperationalEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleStringOperationalEntry.setDescription('An entry in the mscExampleStringOperationalTable.') msc_example_string_oper_struct_ascii_only = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 10, 1, 1), ascii_string().subtype(subtypeSpec=value_size_constraint(0, 5))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleStringOperStructAsciiOnly.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleStringOperStructAsciiOnly.setDescription('') msc_example_string_oper_struct_hex_only = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 10, 1, 2), hex_string().subtype(subtypeSpec=value_size_constraint(1, 10))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleStringOperStructHexOnly.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleStringOperStructHexOnly.setDescription('') msc_example_string_oper_free_ascii_only = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 10, 1, 3), ascii_string().subtype(subtypeSpec=value_size_constraint(0, 5))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleStringOperFreeAsciiOnly.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleStringOperFreeAsciiOnly.setDescription('') msc_example_string_oper_free_hex_only = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 10, 1, 4), hex_string().subtype(subtypeSpec=value_size_constraint(1, 10))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleStringOperFreeHexOnly.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleStringOperFreeHexOnly.setDescription('') msc_example_string_provisional_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 11)) if mibBuilder.loadTexts: mscExampleStringProvisionalTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleStringProvisionalTable.setDescription('') msc_example_string_provisional_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 11, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleStringIndex')) if mibBuilder.loadTexts: mscExampleStringProvisionalEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleStringProvisionalEntry.setDescription('An entry in the mscExampleStringProvisionalTable.') msc_example_string_prov_string_sub = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 11, 1, 1), link()).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleStringProvStringSub.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleStringProvStringSub.setDescription('') msc_example_string_prov_struct_ascii_only = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 11, 1, 2), ascii_string().subtype(subtypeSpec=value_size_constraint(2, 4)).clone(hexValue='596f2e')).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleStringProvStructAsciiOnly.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleStringProvStructAsciiOnly.setDescription('') msc_example_string_prov_struct_hex_only = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 11, 1, 3), hex_string().subtype(subtypeSpec=value_size_constraint(1, 10))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleStringProvStructHexOnly.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleStringProvStructHexOnly.setDescription('') msc_example_string_prov_free_ascii_only = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 11, 1, 4), ascii_string().subtype(subtypeSpec=value_size_constraint(0, 59)).clone(hexValue='46726565205374616e64696e6720537472696e6720212121')).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleStringProvFreeAsciiOnly.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleStringProvFreeAsciiOnly.setDescription('') msc_example_string_prov_free_ascii_only1 = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 11, 1, 5), ascii_string().subtype(subtypeSpec=value_size_constraint(0, 5))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleStringProvFreeAsciiOnly1.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleStringProvFreeAsciiOnly1.setDescription('') msc_example_string_prov_free_hex_only = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 11, 1, 6), hex_string().subtype(subtypeSpec=value_size_constraint(1, 10)).clone(hexValue='0102030405060708090A')).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleStringProvFreeHexOnly.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleStringProvFreeHexOnly.setDescription('') msc_example_string_prov_free_hex_only1 = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 11, 1, 7), hex_string().subtype(subtypeSpec=value_size_constraint(0, 10))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleStringProvFreeHexOnly1.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleStringProvFreeHexOnly1.setDescription('') msc_example_string_oper_struct_str_vector_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1073)) if mibBuilder.loadTexts: mscExampleStringOperStructStrVectorTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleStringOperStructStrVectorTable.setDescription('') msc_example_string_oper_struct_str_vector_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1073, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleStringIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleStringOperStructStrVectorIndex')) if mibBuilder.loadTexts: mscExampleStringOperStructStrVectorEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleStringOperStructStrVectorEntry.setDescription('An entry in the mscExampleStringOperStructStrVectorTable.') msc_example_string_oper_struct_str_vector_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1073, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 9))) if mibBuilder.loadTexts: mscExampleStringOperStructStrVectorIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleStringOperStructStrVectorIndex.setDescription('This variable represents the mscExampleStringOperStructStrVectorTable specific index for the mscExampleStringOperStructStrVectorTable.') msc_example_string_oper_struct_str_vector_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1073, 1, 2), ascii_string().subtype(subtypeSpec=value_size_constraint(0, 5))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleStringOperStructStrVectorValue.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleStringOperStructStrVectorValue.setDescription('This variable represents an individual value for the mscExampleStringOperStructStrVectorTable.') msc_example_string_oper_struct_str_array_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1074)) if mibBuilder.loadTexts: mscExampleStringOperStructStrArrayTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleStringOperStructStrArrayTable.setDescription('') msc_example_string_oper_struct_str_array_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1074, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleStringIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleStringOperStructStrArrayRowIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleStringOperStructStrArrayColumnIndex')) if mibBuilder.loadTexts: mscExampleStringOperStructStrArrayEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleStringOperStructStrArrayEntry.setDescription('An entry in the mscExampleStringOperStructStrArrayTable.') msc_example_string_oper_struct_str_array_row_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1074, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 2))) if mibBuilder.loadTexts: mscExampleStringOperStructStrArrayRowIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleStringOperStructStrArrayRowIndex.setDescription('This variable represents the next to last index for the mscExampleStringOperStructStrArrayTable.') msc_example_string_oper_struct_str_array_column_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1074, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 3))) if mibBuilder.loadTexts: mscExampleStringOperStructStrArrayColumnIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleStringOperStructStrArrayColumnIndex.setDescription('This variable represents the final index for the mscExampleStringOperStructStrArrayTable.') msc_example_string_oper_struct_str_array_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1074, 1, 3), ascii_string().subtype(subtypeSpec=value_size_constraint(0, 5))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleStringOperStructStrArrayValue.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleStringOperStructStrArrayValue.setDescription('This variable represents an individual value for the mscExampleStringOperStructStrArrayTable.') msc_example_string_oper_free_str_vector_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1075)) if mibBuilder.loadTexts: mscExampleStringOperFreeStrVectorTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleStringOperFreeStrVectorTable.setDescription('') msc_example_string_oper_free_str_vector_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1075, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleStringIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleStringOperFreeStrVectorIndex')) if mibBuilder.loadTexts: mscExampleStringOperFreeStrVectorEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleStringOperFreeStrVectorEntry.setDescription('An entry in the mscExampleStringOperFreeStrVectorTable.') msc_example_string_oper_free_str_vector_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1075, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 9))) if mibBuilder.loadTexts: mscExampleStringOperFreeStrVectorIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleStringOperFreeStrVectorIndex.setDescription('This variable represents the mscExampleStringOperFreeStrVectorTable specific index for the mscExampleStringOperFreeStrVectorTable.') msc_example_string_oper_free_str_vector_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1075, 1, 2), ascii_string().subtype(subtypeSpec=value_size_constraint(0, 5))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleStringOperFreeStrVectorValue.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleStringOperFreeStrVectorValue.setDescription('This variable represents an individual value for the mscExampleStringOperFreeStrVectorTable.') msc_example_string_oper_free_str_array_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1076)) if mibBuilder.loadTexts: mscExampleStringOperFreeStrArrayTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleStringOperFreeStrArrayTable.setDescription('') msc_example_string_oper_free_str_array_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1076, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleStringIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleStringOperFreeStrArrayRowIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleStringOperFreeStrArrayColumnIndex')) if mibBuilder.loadTexts: mscExampleStringOperFreeStrArrayEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleStringOperFreeStrArrayEntry.setDescription('An entry in the mscExampleStringOperFreeStrArrayTable.') msc_example_string_oper_free_str_array_row_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1076, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 2))) if mibBuilder.loadTexts: mscExampleStringOperFreeStrArrayRowIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleStringOperFreeStrArrayRowIndex.setDescription('This variable represents the next to last index for the mscExampleStringOperFreeStrArrayTable.') msc_example_string_oper_free_str_array_column_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1076, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 3))) if mibBuilder.loadTexts: mscExampleStringOperFreeStrArrayColumnIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleStringOperFreeStrArrayColumnIndex.setDescription('This variable represents the final index for the mscExampleStringOperFreeStrArrayTable.') msc_example_string_oper_free_str_array_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1076, 1, 3), ascii_string().subtype(subtypeSpec=value_size_constraint(0, 5))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleStringOperFreeStrArrayValue.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleStringOperFreeStrArrayValue.setDescription('This variable represents an individual value for the mscExampleStringOperFreeStrArrayTable.') msc_example_string_oper_free_str_replicated_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1077)) if mibBuilder.loadTexts: mscExampleStringOperFreeStrReplicatedTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleStringOperFreeStrReplicatedTable.setDescription('') msc_example_string_oper_free_str_replicated_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1077, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleStringIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleStringOperFreeStrReplicatedIndex')) if mibBuilder.loadTexts: mscExampleStringOperFreeStrReplicatedEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleStringOperFreeStrReplicatedEntry.setDescription('An entry in the mscExampleStringOperFreeStrReplicatedTable.') msc_example_string_oper_free_str_replicated_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1077, 1, 1), ascii_string().subtype(subtypeSpec=value_size_constraint(0, 5))) if mibBuilder.loadTexts: mscExampleStringOperFreeStrReplicatedIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleStringOperFreeStrReplicatedIndex.setDescription('This variable represents the index for the mscExampleStringOperFreeStrReplicatedTable.') msc_example_string_oper_free_str_replicated_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1077, 1, 2), ascii_string().subtype(subtypeSpec=value_size_constraint(0, 5))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleStringOperFreeStrReplicatedValue.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleStringOperFreeStrReplicatedValue.setDescription('This variable represents an individual value for the mscExampleStringOperFreeStrReplicatedTable.') msc_example_string_oper_free_str_replicated_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1077, 1, 3), row_status()).setMaxAccess('writeonly') if mibBuilder.loadTexts: mscExampleStringOperFreeStrReplicatedRowStatus.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleStringOperFreeStrReplicatedRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleStringOperFreeStrReplicatedTable.') msc_example_string_oper_free_str_list_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1078)) if mibBuilder.loadTexts: mscExampleStringOperFreeStrListTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleStringOperFreeStrListTable.setDescription('') msc_example_string_oper_free_str_list_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1078, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleStringIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleStringOperFreeStrListValue')) if mibBuilder.loadTexts: mscExampleStringOperFreeStrListEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleStringOperFreeStrListEntry.setDescription('An entry in the mscExampleStringOperFreeStrListTable.') msc_example_string_oper_free_str_list_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1078, 1, 1), ascii_string().subtype(subtypeSpec=value_size_constraint(0, 10))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleStringOperFreeStrListValue.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleStringOperFreeStrListValue.setDescription('This variable represents both the value and the index for the mscExampleStringOperFreeStrListTable.') msc_example_string_oper_free_str_list_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1078, 1, 2), row_status()).setMaxAccess('writeonly') if mibBuilder.loadTexts: mscExampleStringOperFreeStrListRowStatus.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleStringOperFreeStrListRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleStringOperFreeStrListTable.') msc_example_string_prov_struct_str_vector_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1079)) if mibBuilder.loadTexts: mscExampleStringProvStructStrVectorTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleStringProvStructStrVectorTable.setDescription('') msc_example_string_prov_struct_str_vector_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1079, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleStringIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleStringProvStructStrVectorIndex')) if mibBuilder.loadTexts: mscExampleStringProvStructStrVectorEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleStringProvStructStrVectorEntry.setDescription('An entry in the mscExampleStringProvStructStrVectorTable.') msc_example_string_prov_struct_str_vector_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1079, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 9))) if mibBuilder.loadTexts: mscExampleStringProvStructStrVectorIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleStringProvStructStrVectorIndex.setDescription('This variable represents the mscExampleStringProvStructStrVectorTable specific index for the mscExampleStringProvStructStrVectorTable.') msc_example_string_prov_struct_str_vector_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1079, 1, 2), ascii_string().subtype(subtypeSpec=value_size_constraint(0, 5))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleStringProvStructStrVectorValue.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleStringProvStructStrVectorValue.setDescription('This variable represents an individual value for the mscExampleStringProvStructStrVectorTable.') msc_example_string_prov_struct_str_array_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1080)) if mibBuilder.loadTexts: mscExampleStringProvStructStrArrayTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleStringProvStructStrArrayTable.setDescription('') msc_example_string_prov_struct_str_array_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1080, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleStringIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleStringProvStructStrArrayRowIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleStringProvStructStrArrayColumnIndex')) if mibBuilder.loadTexts: mscExampleStringProvStructStrArrayEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleStringProvStructStrArrayEntry.setDescription('An entry in the mscExampleStringProvStructStrArrayTable.') msc_example_string_prov_struct_str_array_row_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1080, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 2))) if mibBuilder.loadTexts: mscExampleStringProvStructStrArrayRowIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleStringProvStructStrArrayRowIndex.setDescription('This variable represents the next to last index for the mscExampleStringProvStructStrArrayTable.') msc_example_string_prov_struct_str_array_column_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1080, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 3))) if mibBuilder.loadTexts: mscExampleStringProvStructStrArrayColumnIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleStringProvStructStrArrayColumnIndex.setDescription('This variable represents the final index for the mscExampleStringProvStructStrArrayTable.') msc_example_string_prov_struct_str_array_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1080, 1, 3), ascii_string().subtype(subtypeSpec=value_size_constraint(0, 5))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleStringProvStructStrArrayValue.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleStringProvStructStrArrayValue.setDescription('This variable represents an individual value for the mscExampleStringProvStructStrArrayTable.') msc_example_string_prov_free_str_vector_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1081)) if mibBuilder.loadTexts: mscExampleStringProvFreeStrVectorTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleStringProvFreeStrVectorTable.setDescription('') msc_example_string_prov_free_str_vector_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1081, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleStringIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleStringProvFreeStrVectorIndex')) if mibBuilder.loadTexts: mscExampleStringProvFreeStrVectorEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleStringProvFreeStrVectorEntry.setDescription('An entry in the mscExampleStringProvFreeStrVectorTable.') msc_example_string_prov_free_str_vector_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1081, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 9))) if mibBuilder.loadTexts: mscExampleStringProvFreeStrVectorIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleStringProvFreeStrVectorIndex.setDescription('This variable represents the mscExampleStringProvFreeStrVectorTable specific index for the mscExampleStringProvFreeStrVectorTable.') msc_example_string_prov_free_str_vector_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1081, 1, 2), ascii_string().subtype(subtypeSpec=value_size_constraint(0, 5))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleStringProvFreeStrVectorValue.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleStringProvFreeStrVectorValue.setDescription('This variable represents an individual value for the mscExampleStringProvFreeStrVectorTable.') msc_example_string_prov_free_str_vector1_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1082)) if mibBuilder.loadTexts: mscExampleStringProvFreeStrVector1Table.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleStringProvFreeStrVector1Table.setDescription('') msc_example_string_prov_free_str_vector1_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1082, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleStringIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleStringProvFreeStrVector1Index')) if mibBuilder.loadTexts: mscExampleStringProvFreeStrVector1Entry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleStringProvFreeStrVector1Entry.setDescription('An entry in the mscExampleStringProvFreeStrVector1Table.') msc_example_string_prov_free_str_vector1_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1082, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 5))) if mibBuilder.loadTexts: mscExampleStringProvFreeStrVector1Index.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleStringProvFreeStrVector1Index.setDescription('This variable represents the mscExampleStringProvFreeStrVector1Table specific index for the mscExampleStringProvFreeStrVector1Table.') msc_example_string_prov_free_str_vector1_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1082, 1, 2), ascii_string().subtype(subtypeSpec=value_size_constraint(0, 5))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleStringProvFreeStrVector1Value.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleStringProvFreeStrVector1Value.setDescription('This variable represents an individual value for the mscExampleStringProvFreeStrVector1Table.') msc_example_string_prov_free_str_array_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1083)) if mibBuilder.loadTexts: mscExampleStringProvFreeStrArrayTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleStringProvFreeStrArrayTable.setDescription('') msc_example_string_prov_free_str_array_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1083, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleStringIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleStringProvFreeStrArrayRowIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleStringProvFreeStrArrayColumnIndex')) if mibBuilder.loadTexts: mscExampleStringProvFreeStrArrayEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleStringProvFreeStrArrayEntry.setDescription('An entry in the mscExampleStringProvFreeStrArrayTable.') msc_example_string_prov_free_str_array_row_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1083, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 2))) if mibBuilder.loadTexts: mscExampleStringProvFreeStrArrayRowIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleStringProvFreeStrArrayRowIndex.setDescription('This variable represents the next to last index for the mscExampleStringProvFreeStrArrayTable.') msc_example_string_prov_free_str_array_column_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1083, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 3))) if mibBuilder.loadTexts: mscExampleStringProvFreeStrArrayColumnIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleStringProvFreeStrArrayColumnIndex.setDescription('This variable represents the final index for the mscExampleStringProvFreeStrArrayTable.') msc_example_string_prov_free_str_array_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1083, 1, 3), ascii_string().subtype(subtypeSpec=value_size_constraint(0, 5))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleStringProvFreeStrArrayValue.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleStringProvFreeStrArrayValue.setDescription('This variable represents an individual value for the mscExampleStringProvFreeStrArrayTable.') msc_example_string_prov_free_str_array1_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1084)) if mibBuilder.loadTexts: mscExampleStringProvFreeStrArray1Table.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleStringProvFreeStrArray1Table.setDescription('') msc_example_string_prov_free_str_array1_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1084, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleStringIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleStringProvFreeStrArray1RowIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleStringProvFreeStrArray1ColumnIndex')) if mibBuilder.loadTexts: mscExampleStringProvFreeStrArray1Entry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleStringProvFreeStrArray1Entry.setDescription('An entry in the mscExampleStringProvFreeStrArray1Table.') msc_example_string_prov_free_str_array1_row_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1084, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 4))) if mibBuilder.loadTexts: mscExampleStringProvFreeStrArray1RowIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleStringProvFreeStrArray1RowIndex.setDescription('This variable represents the next to last index for the mscExampleStringProvFreeStrArray1Table.') msc_example_string_prov_free_str_array1_column_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1084, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 3))) if mibBuilder.loadTexts: mscExampleStringProvFreeStrArray1ColumnIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleStringProvFreeStrArray1ColumnIndex.setDescription('This variable represents the final index for the mscExampleStringProvFreeStrArray1Table.') msc_example_string_prov_free_str_array1_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1084, 1, 3), ascii_string().subtype(subtypeSpec=value_size_constraint(0, 5))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleStringProvFreeStrArray1Value.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleStringProvFreeStrArray1Value.setDescription('This variable represents an individual value for the mscExampleStringProvFreeStrArray1Table.') msc_example_string_prov_free_str_replicated_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1085)) if mibBuilder.loadTexts: mscExampleStringProvFreeStrReplicatedTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleStringProvFreeStrReplicatedTable.setDescription('') msc_example_string_prov_free_str_replicated_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1085, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleStringIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleStringProvFreeStrReplicatedIndex')) if mibBuilder.loadTexts: mscExampleStringProvFreeStrReplicatedEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleStringProvFreeStrReplicatedEntry.setDescription('An entry in the mscExampleStringProvFreeStrReplicatedTable.') msc_example_string_prov_free_str_replicated_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1085, 1, 1), ascii_string().subtype(subtypeSpec=value_size_constraint(0, 5))) if mibBuilder.loadTexts: mscExampleStringProvFreeStrReplicatedIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleStringProvFreeStrReplicatedIndex.setDescription('This variable represents the index for the mscExampleStringProvFreeStrReplicatedTable.') msc_example_string_prov_free_str_replicated_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1085, 1, 2), ascii_string().subtype(subtypeSpec=value_size_constraint(0, 5))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleStringProvFreeStrReplicatedValue.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleStringProvFreeStrReplicatedValue.setDescription('This variable represents an individual value for the mscExampleStringProvFreeStrReplicatedTable.') msc_example_string_prov_free_str_replicated_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1085, 1, 3), row_status()).setMaxAccess('writeonly') if mibBuilder.loadTexts: mscExampleStringProvFreeStrReplicatedRowStatus.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleStringProvFreeStrReplicatedRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleStringProvFreeStrReplicatedTable.') msc_example_string_prov_free_str_list_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1086)) if mibBuilder.loadTexts: mscExampleStringProvFreeStrListTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleStringProvFreeStrListTable.setDescription('') msc_example_string_prov_free_str_list_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1086, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleStringIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleStringProvFreeStrListValue')) if mibBuilder.loadTexts: mscExampleStringProvFreeStrListEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleStringProvFreeStrListEntry.setDescription('An entry in the mscExampleStringProvFreeStrListTable.') msc_example_string_prov_free_str_list_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1086, 1, 1), ascii_string().subtype(subtypeSpec=value_size_constraint(0, 10))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleStringProvFreeStrListValue.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleStringProvFreeStrListValue.setDescription('This variable represents both the value and the index for the mscExampleStringProvFreeStrListTable.') msc_example_string_prov_free_str_list_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1086, 1, 2), row_status()).setMaxAccess('writeonly') if mibBuilder.loadTexts: mscExampleStringProvFreeStrListRowStatus.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleStringProvFreeStrListRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleStringProvFreeStrListTable.') msc_example_string_prov_free_str_list1_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1087)) if mibBuilder.loadTexts: mscExampleStringProvFreeStrList1Table.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleStringProvFreeStrList1Table.setDescription('') msc_example_string_prov_free_str_list1_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1087, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleStringIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleStringProvFreeStrList1Value')) if mibBuilder.loadTexts: mscExampleStringProvFreeStrList1Entry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleStringProvFreeStrList1Entry.setDescription('An entry in the mscExampleStringProvFreeStrList1Table.') msc_example_string_prov_free_str_list1_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1087, 1, 1), ascii_string().subtype(subtypeSpec=value_size_constraint(0, 10))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleStringProvFreeStrList1Value.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleStringProvFreeStrList1Value.setDescription('This variable represents both the value and the index for the mscExampleStringProvFreeStrList1Table.') msc_example_string_prov_free_str_list1_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1087, 1, 2), row_status()).setMaxAccess('writeonly') if mibBuilder.loadTexts: mscExampleStringProvFreeStrList1RowStatus.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleStringProvFreeStrList1RowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleStringProvFreeStrList1Table.') msc_example_fixed_pt = mib_identifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6)) msc_example_fixed_pt_row_status_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1)) if mibBuilder.loadTexts: mscExampleFixedPtRowStatusTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleFixedPtRowStatusTable.setDescription('This entry controls the addition and deletion of mscExampleFixedPt components.') msc_example_fixed_pt_row_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleFixedPtIndex')) if mibBuilder.loadTexts: mscExampleFixedPtRowStatusEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleFixedPtRowStatusEntry.setDescription('A single entry in the table represents a single mscExampleFixedPt component.') msc_example_fixed_pt_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1, 1, 1), row_status()).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleFixedPtRowStatus.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleFixedPtRowStatus.setDescription('This variable is used as the basis for SNMP naming of mscExampleFixedPt components. These components can be added and deleted.') msc_example_fixed_pt_component_name = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1, 1, 2), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscExampleFixedPtComponentName.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleFixedPtComponentName.setDescription("This variable provides the component's string name for use with the ASCII Console Interface") msc_example_fixed_pt_storage_type = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1, 1, 4), storage_type()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscExampleFixedPtStorageType.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleFixedPtStorageType.setDescription('This variable represents the storage type value for the mscExampleFixedPt tables.') msc_example_fixed_pt_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1, 1, 10), non_replicated()) if mibBuilder.loadTexts: mscExampleFixedPtIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleFixedPtIndex.setDescription('This variable represents the index for the mscExampleFixedPt tables.') msc_example_fixed_pt_operational_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 10)) if mibBuilder.loadTexts: mscExampleFixedPtOperationalTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleFixedPtOperationalTable.setDescription('') msc_example_fixed_pt_operational_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 10, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleFixedPtIndex')) if mibBuilder.loadTexts: mscExampleFixedPtOperationalEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleFixedPtOperationalEntry.setDescription('An entry in the mscExampleFixedPtOperationalTable.') msc_example_fixed_pt_oper_struct_fixed_pt = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 10, 1, 1), fixed_point4().subtype(subtypeSpec=value_range_constraint(100, 2553300))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleFixedPtOperStructFixedPt.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleFixedPtOperStructFixedPt.setDescription('') msc_example_fixed_pt_oper_free_fixed_pt = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 10, 1, 2), fixed_point2().subtype(subtypeSpec=constraints_union(value_range_constraint(0, 1099), value_range_constraint(10001, 20000)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleFixedPtOperFreeFixedPt.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleFixedPtOperFreeFixedPt.setDescription('') msc_example_fixed_pt_oper_free_fixed_pt_set = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 10, 1, 3), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleFixedPtOperFreeFixedPtSet.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleFixedPtOperFreeFixedPtSet.setDescription('Description of bits: n0(0) n1(1) n2(2) n3(3) n4(4) n5(5) n6(6) n7(7) n8(8) n9(9) n10(10) n11(11) n12(12) n13(13) n14(14) n15(15) n16(16) n17(17) n18(18) n19(19) n20(20) n21(21) n22(22) n23(23) n24(24) n25(25) n26(26) n27(27) n28(28) n29(29) n30(30)') msc_example_fixed_pt_provisional_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 11)) if mibBuilder.loadTexts: mscExampleFixedPtProvisionalTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleFixedPtProvisionalTable.setDescription('') msc_example_fixed_pt_provisional_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 11, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleFixedPtIndex')) if mibBuilder.loadTexts: mscExampleFixedPtProvisionalEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleFixedPtProvisionalEntry.setDescription('An entry in the mscExampleFixedPtProvisionalTable.') msc_example_fixed_pt_prov_fixed_pt_subcomponent = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 11, 1, 1), link()).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleFixedPtProvFixedPtSubcomponent.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleFixedPtProvFixedPtSubcomponent.setDescription('') msc_example_fixed_pt_prov_struct_fixed_pt = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 11, 1, 2), fixed_point3().subtype(subtypeSpec=constraints_union(value_range_constraint(0, 252000), value_range_constraint(253000, 253000), value_range_constraint(254000, 254000), value_range_constraint(255000, 255000))).clone(253000)).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleFixedPtProvStructFixedPt.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleFixedPtProvStructFixedPt.setDescription('VALUES ( 253000 = infinity 254000 = notApplicable 255000 = notMeasured )') msc_example_fixed_pt_prov_struct_fixed_pt_set = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 11, 1, 3), octet_string().subtype(subtypeSpec=value_size_constraint(1, 1)).setFixedLength(1).clone(hexValue='c8')).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleFixedPtProvStructFixedPtSet.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleFixedPtProvStructFixedPtSet.setDescription('Description of bits: n0(0) n1(1) n2(2) n3(3) n4(4) n5(5)') msc_example_fixed_pt_prov_free_fixed_pt = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 11, 1, 4), fixed_point2().subtype(subtypeSpec=constraints_union(value_range_constraint(0, 1099), value_range_constraint(10001, 20099))).clone(10101)).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleFixedPtProvFreeFixedPt.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleFixedPtProvFreeFixedPt.setDescription('') msc_example_fixed_pt_prov_free_fixed_pt_set = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 11, 1, 5), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4).clone(hexValue='05500002')).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleFixedPtProvFreeFixedPtSet.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleFixedPtProvFreeFixedPtSet.setDescription('Description of bits: n0(0) n1(1) n2(2) n3(3) n4(4) n5(5) n6(6) n7(7) n8(8) n9(9) n10(10) n11(11) n12(12) n13(13) n14(14) n15(15) n16(16) n17(17) n18(18) n19(19) n20(20) n21(21) n22(22) n23(23) n24(24) n25(25) n26(26) n27(27) n28(28) n29(29) n30(30)') msc_example_fixed_pt_oper_struct_fixed_pt_vector_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1028)) if mibBuilder.loadTexts: mscExampleFixedPtOperStructFixedPtVectorTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleFixedPtOperStructFixedPtVectorTable.setDescription('') msc_example_fixed_pt_oper_struct_fixed_pt_vector_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1028, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleFixedPtIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleFixedPtOperStructFixedPtVectorIndex')) if mibBuilder.loadTexts: mscExampleFixedPtOperStructFixedPtVectorEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleFixedPtOperStructFixedPtVectorEntry.setDescription('An entry in the mscExampleFixedPtOperStructFixedPtVectorTable.') msc_example_fixed_pt_oper_struct_fixed_pt_vector_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1028, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 9))) if mibBuilder.loadTexts: mscExampleFixedPtOperStructFixedPtVectorIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleFixedPtOperStructFixedPtVectorIndex.setDescription('This variable represents the mscExampleFixedPtOperStructFixedPtVectorTable specific index for the mscExampleFixedPtOperStructFixedPtVectorTable.') msc_example_fixed_pt_oper_struct_fixed_pt_vector_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1028, 1, 2), fixed_point3().subtype(subtypeSpec=value_range_constraint(0, 100100))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleFixedPtOperStructFixedPtVectorValue.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleFixedPtOperStructFixedPtVectorValue.setDescription('This variable represents an individual value for the mscExampleFixedPtOperStructFixedPtVectorTable.') msc_example_fixed_pt_oper_struct_fixed_pt_array_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1029)) if mibBuilder.loadTexts: mscExampleFixedPtOperStructFixedPtArrayTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleFixedPtOperStructFixedPtArrayTable.setDescription('') msc_example_fixed_pt_oper_struct_fixed_pt_array_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1029, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleFixedPtIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleFixedPtOperStructFixedPtArrayRowIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleFixedPtOperStructFixedPtArrayColumnIndex')) if mibBuilder.loadTexts: mscExampleFixedPtOperStructFixedPtArrayEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleFixedPtOperStructFixedPtArrayEntry.setDescription('An entry in the mscExampleFixedPtOperStructFixedPtArrayTable.') msc_example_fixed_pt_oper_struct_fixed_pt_array_row_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1029, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 2))) if mibBuilder.loadTexts: mscExampleFixedPtOperStructFixedPtArrayRowIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleFixedPtOperStructFixedPtArrayRowIndex.setDescription('This variable represents the next to last index for the mscExampleFixedPtOperStructFixedPtArrayTable.') msc_example_fixed_pt_oper_struct_fixed_pt_array_column_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1029, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 3))) if mibBuilder.loadTexts: mscExampleFixedPtOperStructFixedPtArrayColumnIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleFixedPtOperStructFixedPtArrayColumnIndex.setDescription('This variable represents the final index for the mscExampleFixedPtOperStructFixedPtArrayTable.') msc_example_fixed_pt_oper_struct_fixed_pt_array_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1029, 1, 3), fixed_point3().subtype(subtypeSpec=value_range_constraint(80, 255880))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleFixedPtOperStructFixedPtArrayValue.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleFixedPtOperStructFixedPtArrayValue.setDescription('This variable represents an individual value for the mscExampleFixedPtOperStructFixedPtArrayTable.') msc_example_fixed_pt_oper_free_fixed_pt_vector_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1030)) if mibBuilder.loadTexts: mscExampleFixedPtOperFreeFixedPtVectorTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleFixedPtOperFreeFixedPtVectorTable.setDescription('') msc_example_fixed_pt_oper_free_fixed_pt_vector_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1030, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleFixedPtIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleFixedPtOperFreeFixedPtVectorIndex')) if mibBuilder.loadTexts: mscExampleFixedPtOperFreeFixedPtVectorEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleFixedPtOperFreeFixedPtVectorEntry.setDescription('An entry in the mscExampleFixedPtOperFreeFixedPtVectorTable.') msc_example_fixed_pt_oper_free_fixed_pt_vector_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1030, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 9))) if mibBuilder.loadTexts: mscExampleFixedPtOperFreeFixedPtVectorIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleFixedPtOperFreeFixedPtVectorIndex.setDescription('This variable represents the mscExampleFixedPtOperFreeFixedPtVectorTable specific index for the mscExampleFixedPtOperFreeFixedPtVectorTable.') msc_example_fixed_pt_oper_free_fixed_pt_vector_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1030, 1, 2), fixed_point2().subtype(subtypeSpec=value_range_constraint(0, 10000))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleFixedPtOperFreeFixedPtVectorValue.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleFixedPtOperFreeFixedPtVectorValue.setDescription('This variable represents an individual value for the mscExampleFixedPtOperFreeFixedPtVectorTable.') msc_example_fixed_pt_oper_free_fixed_pt_array_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1031)) if mibBuilder.loadTexts: mscExampleFixedPtOperFreeFixedPtArrayTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleFixedPtOperFreeFixedPtArrayTable.setDescription('') msc_example_fixed_pt_oper_free_fixed_pt_array_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1031, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleFixedPtIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleFixedPtOperFreeFixedPtArrayRowIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleFixedPtOperFreeFixedPtArrayColumnIndex')) if mibBuilder.loadTexts: mscExampleFixedPtOperFreeFixedPtArrayEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleFixedPtOperFreeFixedPtArrayEntry.setDescription('An entry in the mscExampleFixedPtOperFreeFixedPtArrayTable.') msc_example_fixed_pt_oper_free_fixed_pt_array_row_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1031, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 2))) if mibBuilder.loadTexts: mscExampleFixedPtOperFreeFixedPtArrayRowIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleFixedPtOperFreeFixedPtArrayRowIndex.setDescription('This variable represents the next to last index for the mscExampleFixedPtOperFreeFixedPtArrayTable.') msc_example_fixed_pt_oper_free_fixed_pt_array_column_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1031, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 3))) if mibBuilder.loadTexts: mscExampleFixedPtOperFreeFixedPtArrayColumnIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleFixedPtOperFreeFixedPtArrayColumnIndex.setDescription('This variable represents the final index for the mscExampleFixedPtOperFreeFixedPtArrayTable.') msc_example_fixed_pt_oper_free_fixed_pt_array_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1031, 1, 3), fixed_point3().subtype(subtypeSpec=value_range_constraint(255, 255))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleFixedPtOperFreeFixedPtArrayValue.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleFixedPtOperFreeFixedPtArrayValue.setDescription('This variable represents an individual value for the mscExampleFixedPtOperFreeFixedPtArrayTable.') msc_example_fixed_pt_oper_free_fixed_pt_replicated_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1032)) if mibBuilder.loadTexts: mscExampleFixedPtOperFreeFixedPtReplicatedTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleFixedPtOperFreeFixedPtReplicatedTable.setDescription('') msc_example_fixed_pt_oper_free_fixed_pt_replicated_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1032, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleFixedPtIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleFixedPtOperFreeFixedPtReplicatedIndex')) if mibBuilder.loadTexts: mscExampleFixedPtOperFreeFixedPtReplicatedEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleFixedPtOperFreeFixedPtReplicatedEntry.setDescription('An entry in the mscExampleFixedPtOperFreeFixedPtReplicatedTable.') msc_example_fixed_pt_oper_free_fixed_pt_replicated_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1032, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 9))) if mibBuilder.loadTexts: mscExampleFixedPtOperFreeFixedPtReplicatedIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleFixedPtOperFreeFixedPtReplicatedIndex.setDescription('This variable represents the index for the mscExampleFixedPtOperFreeFixedPtReplicatedTable.') msc_example_fixed_pt_oper_free_fixed_pt_replicated_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1032, 1, 2), fixed_point1().subtype(subtypeSpec=value_range_constraint(0, 655350))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleFixedPtOperFreeFixedPtReplicatedValue.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleFixedPtOperFreeFixedPtReplicatedValue.setDescription('This variable represents an individual value for the mscExampleFixedPtOperFreeFixedPtReplicatedTable.') msc_example_fixed_pt_oper_free_fixed_pt_replicated_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1032, 1, 3), row_status()).setMaxAccess('writeonly') if mibBuilder.loadTexts: mscExampleFixedPtOperFreeFixedPtReplicatedRowStatus.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleFixedPtOperFreeFixedPtReplicatedRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleFixedPtOperFreeFixedPtReplicatedTable.') msc_example_fixed_pt_oper_free_fixed_pt_list_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1033)) if mibBuilder.loadTexts: mscExampleFixedPtOperFreeFixedPtListTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleFixedPtOperFreeFixedPtListTable.setDescription('') msc_example_fixed_pt_oper_free_fixed_pt_list_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1033, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleFixedPtIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleFixedPtOperFreeFixedPtListValue')) if mibBuilder.loadTexts: mscExampleFixedPtOperFreeFixedPtListEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleFixedPtOperFreeFixedPtListEntry.setDescription('An entry in the mscExampleFixedPtOperFreeFixedPtListTable.') msc_example_fixed_pt_oper_free_fixed_pt_list_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1033, 1, 1), integer32().subtype(subtypeSpec=constraints_union(value_range_constraint(0, 100), value_range_constraint(10000, 20000)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleFixedPtOperFreeFixedPtListValue.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleFixedPtOperFreeFixedPtListValue.setDescription('This variable represents both the value and the index for the mscExampleFixedPtOperFreeFixedPtListTable.') msc_example_fixed_pt_oper_free_fixed_pt_list_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1033, 1, 2), row_status()).setMaxAccess('writeonly') if mibBuilder.loadTexts: mscExampleFixedPtOperFreeFixedPtListRowStatus.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleFixedPtOperFreeFixedPtListRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleFixedPtOperFreeFixedPtListTable.') msc_example_fixed_pt_prov_struct_fixed_pt_vector_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1034)) if mibBuilder.loadTexts: mscExampleFixedPtProvStructFixedPtVectorTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleFixedPtProvStructFixedPtVectorTable.setDescription('') msc_example_fixed_pt_prov_struct_fixed_pt_vector_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1034, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleFixedPtIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleFixedPtProvStructFixedPtVectorIndex')) if mibBuilder.loadTexts: mscExampleFixedPtProvStructFixedPtVectorEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleFixedPtProvStructFixedPtVectorEntry.setDescription('An entry in the mscExampleFixedPtProvStructFixedPtVectorTable.') msc_example_fixed_pt_prov_struct_fixed_pt_vector_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1034, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 9))) if mibBuilder.loadTexts: mscExampleFixedPtProvStructFixedPtVectorIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleFixedPtProvStructFixedPtVectorIndex.setDescription('This variable represents the mscExampleFixedPtProvStructFixedPtVectorTable specific index for the mscExampleFixedPtProvStructFixedPtVectorTable.') msc_example_fixed_pt_prov_struct_fixed_pt_vector_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1034, 1, 2), fixed_point3().subtype(subtypeSpec=value_range_constraint(0, 100100))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleFixedPtProvStructFixedPtVectorValue.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleFixedPtProvStructFixedPtVectorValue.setDescription('This variable represents an individual value for the mscExampleFixedPtProvStructFixedPtVectorTable.') msc_example_fixed_pt_prov_struct_fixed_pt_array_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1035)) if mibBuilder.loadTexts: mscExampleFixedPtProvStructFixedPtArrayTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleFixedPtProvStructFixedPtArrayTable.setDescription('') msc_example_fixed_pt_prov_struct_fixed_pt_array_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1035, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleFixedPtIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleFixedPtProvStructFixedPtArrayRowIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleFixedPtProvStructFixedPtArrayColumnIndex')) if mibBuilder.loadTexts: mscExampleFixedPtProvStructFixedPtArrayEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleFixedPtProvStructFixedPtArrayEntry.setDescription('An entry in the mscExampleFixedPtProvStructFixedPtArrayTable.') msc_example_fixed_pt_prov_struct_fixed_pt_array_row_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1035, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 2))) if mibBuilder.loadTexts: mscExampleFixedPtProvStructFixedPtArrayRowIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleFixedPtProvStructFixedPtArrayRowIndex.setDescription('This variable represents the next to last index for the mscExampleFixedPtProvStructFixedPtArrayTable.') msc_example_fixed_pt_prov_struct_fixed_pt_array_column_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1035, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 3))) if mibBuilder.loadTexts: mscExampleFixedPtProvStructFixedPtArrayColumnIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleFixedPtProvStructFixedPtArrayColumnIndex.setDescription('This variable represents the final index for the mscExampleFixedPtProvStructFixedPtArrayTable.') msc_example_fixed_pt_prov_struct_fixed_pt_array_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1035, 1, 3), fixed_point1().subtype(subtypeSpec=value_range_constraint(255, 300))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleFixedPtProvStructFixedPtArrayValue.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleFixedPtProvStructFixedPtArrayValue.setDescription('This variable represents an individual value for the mscExampleFixedPtProvStructFixedPtArrayTable.') msc_example_fixed_pt_prov_free_fixed_pt_vector_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1036)) if mibBuilder.loadTexts: mscExampleFixedPtProvFreeFixedPtVectorTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleFixedPtProvFreeFixedPtVectorTable.setDescription('') msc_example_fixed_pt_prov_free_fixed_pt_vector_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1036, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleFixedPtIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleFixedPtProvFreeFixedPtVectorIndex')) if mibBuilder.loadTexts: mscExampleFixedPtProvFreeFixedPtVectorEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleFixedPtProvFreeFixedPtVectorEntry.setDescription('An entry in the mscExampleFixedPtProvFreeFixedPtVectorTable.') msc_example_fixed_pt_prov_free_fixed_pt_vector_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1036, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 9))) if mibBuilder.loadTexts: mscExampleFixedPtProvFreeFixedPtVectorIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleFixedPtProvFreeFixedPtVectorIndex.setDescription('This variable represents the mscExampleFixedPtProvFreeFixedPtVectorTable specific index for the mscExampleFixedPtProvFreeFixedPtVectorTable.') msc_example_fixed_pt_prov_free_fixed_pt_vector_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1036, 1, 2), fixed_point1().subtype(subtypeSpec=value_range_constraint(0, 1000))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleFixedPtProvFreeFixedPtVectorValue.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleFixedPtProvFreeFixedPtVectorValue.setDescription('This variable represents an individual value for the mscExampleFixedPtProvFreeFixedPtVectorTable.') msc_example_fixed_pt_prov_free_fixed_pt_array_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1037)) if mibBuilder.loadTexts: mscExampleFixedPtProvFreeFixedPtArrayTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleFixedPtProvFreeFixedPtArrayTable.setDescription('') msc_example_fixed_pt_prov_free_fixed_pt_array_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1037, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleFixedPtIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleFixedPtProvFreeFixedPtArrayRowIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleFixedPtProvFreeFixedPtArrayColumnIndex')) if mibBuilder.loadTexts: mscExampleFixedPtProvFreeFixedPtArrayEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleFixedPtProvFreeFixedPtArrayEntry.setDescription('An entry in the mscExampleFixedPtProvFreeFixedPtArrayTable.') msc_example_fixed_pt_prov_free_fixed_pt_array_row_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1037, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 2))) if mibBuilder.loadTexts: mscExampleFixedPtProvFreeFixedPtArrayRowIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleFixedPtProvFreeFixedPtArrayRowIndex.setDescription('This variable represents the next to last index for the mscExampleFixedPtProvFreeFixedPtArrayTable.') msc_example_fixed_pt_prov_free_fixed_pt_array_column_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1037, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 3))) if mibBuilder.loadTexts: mscExampleFixedPtProvFreeFixedPtArrayColumnIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleFixedPtProvFreeFixedPtArrayColumnIndex.setDescription('This variable represents the final index for the mscExampleFixedPtProvFreeFixedPtArrayTable.') msc_example_fixed_pt_prov_free_fixed_pt_array_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1037, 1, 3), fixed_point2().subtype(subtypeSpec=value_range_constraint(0, 25555))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleFixedPtProvFreeFixedPtArrayValue.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleFixedPtProvFreeFixedPtArrayValue.setDescription('This variable represents an individual value for the mscExampleFixedPtProvFreeFixedPtArrayTable.') msc_example_fixed_pt_prov_free_fixed_pt_replicated_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1038)) if mibBuilder.loadTexts: mscExampleFixedPtProvFreeFixedPtReplicatedTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleFixedPtProvFreeFixedPtReplicatedTable.setDescription('') msc_example_fixed_pt_prov_free_fixed_pt_replicated_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1038, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleFixedPtIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleFixedPtProvFreeFixedPtReplicatedIndex')) if mibBuilder.loadTexts: mscExampleFixedPtProvFreeFixedPtReplicatedEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleFixedPtProvFreeFixedPtReplicatedEntry.setDescription('An entry in the mscExampleFixedPtProvFreeFixedPtReplicatedTable.') msc_example_fixed_pt_prov_free_fixed_pt_replicated_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1038, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 9))) if mibBuilder.loadTexts: mscExampleFixedPtProvFreeFixedPtReplicatedIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleFixedPtProvFreeFixedPtReplicatedIndex.setDescription('This variable represents the index for the mscExampleFixedPtProvFreeFixedPtReplicatedTable.') msc_example_fixed_pt_prov_free_fixed_pt_replicated_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1038, 1, 2), fixed_point2().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleFixedPtProvFreeFixedPtReplicatedValue.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleFixedPtProvFreeFixedPtReplicatedValue.setDescription('This variable represents an individual value for the mscExampleFixedPtProvFreeFixedPtReplicatedTable.') msc_example_fixed_pt_prov_free_fixed_pt_replicated_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1038, 1, 3), row_status()).setMaxAccess('writeonly') if mibBuilder.loadTexts: mscExampleFixedPtProvFreeFixedPtReplicatedRowStatus.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleFixedPtProvFreeFixedPtReplicatedRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleFixedPtProvFreeFixedPtReplicatedTable.') msc_example_fixed_pt_prov_free_fixed_pt_list_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1039)) if mibBuilder.loadTexts: mscExampleFixedPtProvFreeFixedPtListTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleFixedPtProvFreeFixedPtListTable.setDescription('') msc_example_fixed_pt_prov_free_fixed_pt_list_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1039, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleFixedPtIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleFixedPtProvFreeFixedPtListValue')) if mibBuilder.loadTexts: mscExampleFixedPtProvFreeFixedPtListEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleFixedPtProvFreeFixedPtListEntry.setDescription('An entry in the mscExampleFixedPtProvFreeFixedPtListTable.') msc_example_fixed_pt_prov_free_fixed_pt_list_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1039, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(100, 100000))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleFixedPtProvFreeFixedPtListValue.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleFixedPtProvFreeFixedPtListValue.setDescription('This variable represents both the value and the index for the mscExampleFixedPtProvFreeFixedPtListTable.') msc_example_fixed_pt_prov_free_fixed_pt_list_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1039, 1, 2), row_status()).setMaxAccess('writeonly') if mibBuilder.loadTexts: mscExampleFixedPtProvFreeFixedPtListRowStatus.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleFixedPtProvFreeFixedPtListRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleFixedPtProvFreeFixedPtListTable.') msc_example_dashed = mib_identifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7)) msc_example_dashed_row_status_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1)) if mibBuilder.loadTexts: mscExampleDashedRowStatusTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDashedRowStatusTable.setDescription('This entry controls the addition and deletion of mscExampleDashed components.') msc_example_dashed_row_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDashedIndex')) if mibBuilder.loadTexts: mscExampleDashedRowStatusEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDashedRowStatusEntry.setDescription('A single entry in the table represents a single mscExampleDashed component.') msc_example_dashed_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1, 1, 1), row_status()).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleDashedRowStatus.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDashedRowStatus.setDescription('This variable is used as the basis for SNMP naming of mscExampleDashed components. These components can be added and deleted.') msc_example_dashed_component_name = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1, 1, 2), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscExampleDashedComponentName.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDashedComponentName.setDescription("This variable provides the component's string name for use with the ASCII Console Interface") msc_example_dashed_storage_type = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1, 1, 4), storage_type()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscExampleDashedStorageType.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDashedStorageType.setDescription('This variable represents the storage type value for the mscExampleDashed tables.') msc_example_dashed_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1, 1, 10), dashed_hex_string().subtype(subtypeSpec=value_size_constraint(1, 10))) if mibBuilder.loadTexts: mscExampleDashedIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDashedIndex.setDescription('This variable represents the index for the mscExampleDashed tables.') msc_example_dashed_operational_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 10)) if mibBuilder.loadTexts: mscExampleDashedOperationalTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDashedOperationalTable.setDescription('') msc_example_dashed_operational_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 10, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDashedIndex')) if mibBuilder.loadTexts: mscExampleDashedOperationalEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDashedOperationalEntry.setDescription('An entry in the mscExampleDashedOperationalTable.') msc_example_dashed_oper_struct_dashed = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 10, 1, 1), dashed_hex_string().subtype(subtypeSpec=value_size_constraint(1, 10))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleDashedOperStructDashed.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDashedOperStructDashed.setDescription('') msc_example_dashed_oper_free_dashed = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 10, 1, 2), dashed_hex_string().subtype(subtypeSpec=value_size_constraint(1, 10)).clone(hexValue='123456')).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleDashedOperFreeDashed.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDashedOperFreeDashed.setDescription('') msc_example_dashed_provisional_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 11)) if mibBuilder.loadTexts: mscExampleDashedProvisionalTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDashedProvisionalTable.setDescription('') msc_example_dashed_provisional_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 11, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDashedIndex')) if mibBuilder.loadTexts: mscExampleDashedProvisionalEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDashedProvisionalEntry.setDescription('An entry in the mscExampleDashedProvisionalTable.') msc_example_dashed_prov_struct_dashed = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 11, 1, 1), dashed_hex_string().subtype(subtypeSpec=value_size_constraint(1, 10))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleDashedProvStructDashed.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDashedProvStructDashed.setDescription('') msc_example_dashed_prov_free_dashed = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 11, 1, 2), dashed_hex_string().subtype(subtypeSpec=value_size_constraint(1, 10)).clone(hexValue='123456')).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleDashedProvFreeDashed.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDashedProvFreeDashed.setDescription('') msc_example_dashed_os_dashed_array_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1088)) if mibBuilder.loadTexts: mscExampleDashedOsDashedArrayTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDashedOsDashedArrayTable.setDescription('') msc_example_dashed_os_dashed_array_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1088, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDashedIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDashedOsDashedArrayRowIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDashedOsDashedArrayColumnIndex')) if mibBuilder.loadTexts: mscExampleDashedOsDashedArrayEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDashedOsDashedArrayEntry.setDescription('An entry in the mscExampleDashedOsDashedArrayTable.') msc_example_dashed_os_dashed_array_row_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1088, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 2))) if mibBuilder.loadTexts: mscExampleDashedOsDashedArrayRowIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDashedOsDashedArrayRowIndex.setDescription('This variable represents the next to last index for the mscExampleDashedOsDashedArrayTable.') msc_example_dashed_os_dashed_array_column_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1088, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 3))) if mibBuilder.loadTexts: mscExampleDashedOsDashedArrayColumnIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDashedOsDashedArrayColumnIndex.setDescription('This variable represents the final index for the mscExampleDashedOsDashedArrayTable.') msc_example_dashed_os_dashed_array_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1088, 1, 3), dashed_hex_string().subtype(subtypeSpec=value_size_constraint(1, 5))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleDashedOsDashedArrayValue.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDashedOsDashedArrayValue.setDescription('This variable represents an individual value for the mscExampleDashedOsDashedArrayTable.') msc_example_dashed_os_dashed_vector_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1089)) if mibBuilder.loadTexts: mscExampleDashedOsDashedVectorTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDashedOsDashedVectorTable.setDescription('') msc_example_dashed_os_dashed_vector_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1089, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDashedIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDashedOsDashedVectorIndex')) if mibBuilder.loadTexts: mscExampleDashedOsDashedVectorEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDashedOsDashedVectorEntry.setDescription('An entry in the mscExampleDashedOsDashedVectorTable.') msc_example_dashed_os_dashed_vector_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1089, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 9))) if mibBuilder.loadTexts: mscExampleDashedOsDashedVectorIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDashedOsDashedVectorIndex.setDescription('This variable represents the mscExampleDashedOsDashedVectorTable specific index for the mscExampleDashedOsDashedVectorTable.') msc_example_dashed_os_dashed_vector_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1089, 1, 2), dashed_hex_string().subtype(subtypeSpec=value_size_constraint(1, 5))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleDashedOsDashedVectorValue.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDashedOsDashedVectorValue.setDescription('This variable represents an individual value for the mscExampleDashedOsDashedVectorTable.') msc_example_dashed_of_dashed_list_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1090)) if mibBuilder.loadTexts: mscExampleDashedOfDashedListTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDashedOfDashedListTable.setDescription('') msc_example_dashed_of_dashed_list_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1090, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDashedIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDashedOfDashedListValue')) if mibBuilder.loadTexts: mscExampleDashedOfDashedListEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDashedOfDashedListEntry.setDescription('An entry in the mscExampleDashedOfDashedListTable.') msc_example_dashed_of_dashed_list_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1090, 1, 1), dashed_hex_string().subtype(subtypeSpec=value_size_constraint(1, 5))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleDashedOfDashedListValue.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDashedOfDashedListValue.setDescription('This variable represents both the value and the index for the mscExampleDashedOfDashedListTable.') msc_example_dashed_of_dashed_list_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1090, 1, 2), row_status()).setMaxAccess('writeonly') if mibBuilder.loadTexts: mscExampleDashedOfDashedListRowStatus.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDashedOfDashedListRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleDashedOfDashedListTable.') msc_example_dashed_of_dashed_replicated_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1091)) if mibBuilder.loadTexts: mscExampleDashedOfDashedReplicatedTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDashedOfDashedReplicatedTable.setDescription('') msc_example_dashed_of_dashed_replicated_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1091, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDashedIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDashedOfDashedReplicatedIndex')) if mibBuilder.loadTexts: mscExampleDashedOfDashedReplicatedEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDashedOfDashedReplicatedEntry.setDescription('An entry in the mscExampleDashedOfDashedReplicatedTable.') msc_example_dashed_of_dashed_replicated_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1091, 1, 1), dashed_hex_string().subtype(subtypeSpec=value_size_constraint(1, 5))) if mibBuilder.loadTexts: mscExampleDashedOfDashedReplicatedIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDashedOfDashedReplicatedIndex.setDescription('This variable represents the index for the mscExampleDashedOfDashedReplicatedTable.') msc_example_dashed_of_dashed_replicated_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1091, 1, 2), dashed_hex_string().subtype(subtypeSpec=value_size_constraint(1, 10))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleDashedOfDashedReplicatedValue.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDashedOfDashedReplicatedValue.setDescription('This variable represents an individual value for the mscExampleDashedOfDashedReplicatedTable.') msc_example_dashed_of_dashed_replicated_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1091, 1, 3), row_status()).setMaxAccess('writeonly') if mibBuilder.loadTexts: mscExampleDashedOfDashedReplicatedRowStatus.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDashedOfDashedReplicatedRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleDashedOfDashedReplicatedTable.') msc_example_dashed_of_dashed_array_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1092)) if mibBuilder.loadTexts: mscExampleDashedOfDashedArrayTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDashedOfDashedArrayTable.setDescription('') msc_example_dashed_of_dashed_array_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1092, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDashedIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDashedOfDashedArrayRowIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDashedOfDashedArrayColumnIndex')) if mibBuilder.loadTexts: mscExampleDashedOfDashedArrayEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDashedOfDashedArrayEntry.setDescription('An entry in the mscExampleDashedOfDashedArrayTable.') msc_example_dashed_of_dashed_array_row_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1092, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 2))) if mibBuilder.loadTexts: mscExampleDashedOfDashedArrayRowIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDashedOfDashedArrayRowIndex.setDescription('This variable represents the next to last index for the mscExampleDashedOfDashedArrayTable.') msc_example_dashed_of_dashed_array_column_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1092, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 3))) if mibBuilder.loadTexts: mscExampleDashedOfDashedArrayColumnIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDashedOfDashedArrayColumnIndex.setDescription('This variable represents the final index for the mscExampleDashedOfDashedArrayTable.') msc_example_dashed_of_dashed_array_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1092, 1, 3), dashed_hex_string().subtype(subtypeSpec=value_size_constraint(1, 5))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleDashedOfDashedArrayValue.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDashedOfDashedArrayValue.setDescription('This variable represents an individual value for the mscExampleDashedOfDashedArrayTable.') msc_example_dashed_of_dashed_vector_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1093)) if mibBuilder.loadTexts: mscExampleDashedOfDashedVectorTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDashedOfDashedVectorTable.setDescription('') msc_example_dashed_of_dashed_vector_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1093, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDashedIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDashedOfDashedVectorIndex')) if mibBuilder.loadTexts: mscExampleDashedOfDashedVectorEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDashedOfDashedVectorEntry.setDescription('An entry in the mscExampleDashedOfDashedVectorTable.') msc_example_dashed_of_dashed_vector_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1093, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 9))) if mibBuilder.loadTexts: mscExampleDashedOfDashedVectorIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDashedOfDashedVectorIndex.setDescription('This variable represents the mscExampleDashedOfDashedVectorTable specific index for the mscExampleDashedOfDashedVectorTable.') msc_example_dashed_of_dashed_vector_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1093, 1, 2), dashed_hex_string().subtype(subtypeSpec=value_size_constraint(1, 5))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleDashedOfDashedVectorValue.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDashedOfDashedVectorValue.setDescription('This variable represents an individual value for the mscExampleDashedOfDashedVectorTable.') msc_example_dashed_prov_struct_dashed_array_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1094)) if mibBuilder.loadTexts: mscExampleDashedProvStructDashedArrayTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDashedProvStructDashedArrayTable.setDescription('') msc_example_dashed_prov_struct_dashed_array_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1094, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDashedIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDashedProvStructDashedArrayRowIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDashedProvStructDashedArrayColumnIndex')) if mibBuilder.loadTexts: mscExampleDashedProvStructDashedArrayEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDashedProvStructDashedArrayEntry.setDescription('An entry in the mscExampleDashedProvStructDashedArrayTable.') msc_example_dashed_prov_struct_dashed_array_row_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1094, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 2))) if mibBuilder.loadTexts: mscExampleDashedProvStructDashedArrayRowIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDashedProvStructDashedArrayRowIndex.setDescription('This variable represents the next to last index for the mscExampleDashedProvStructDashedArrayTable.') msc_example_dashed_prov_struct_dashed_array_column_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1094, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 3))) if mibBuilder.loadTexts: mscExampleDashedProvStructDashedArrayColumnIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDashedProvStructDashedArrayColumnIndex.setDescription('This variable represents the final index for the mscExampleDashedProvStructDashedArrayTable.') msc_example_dashed_prov_struct_dashed_array_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1094, 1, 3), dashed_hex_string().subtype(subtypeSpec=value_size_constraint(0, 5))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleDashedProvStructDashedArrayValue.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDashedProvStructDashedArrayValue.setDescription('This variable represents an individual value for the mscExampleDashedProvStructDashedArrayTable.') msc_example_dashed_prov_struct_dashed_vector_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1095)) if mibBuilder.loadTexts: mscExampleDashedProvStructDashedVectorTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDashedProvStructDashedVectorTable.setDescription('') msc_example_dashed_prov_struct_dashed_vector_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1095, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDashedIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDashedProvStructDashedVectorIndex')) if mibBuilder.loadTexts: mscExampleDashedProvStructDashedVectorEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDashedProvStructDashedVectorEntry.setDescription('An entry in the mscExampleDashedProvStructDashedVectorTable.') msc_example_dashed_prov_struct_dashed_vector_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1095, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 9))) if mibBuilder.loadTexts: mscExampleDashedProvStructDashedVectorIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDashedProvStructDashedVectorIndex.setDescription('This variable represents the mscExampleDashedProvStructDashedVectorTable specific index for the mscExampleDashedProvStructDashedVectorTable.') msc_example_dashed_prov_struct_dashed_vector_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1095, 1, 2), dashed_hex_string().subtype(subtypeSpec=value_size_constraint(0, 5))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleDashedProvStructDashedVectorValue.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDashedProvStructDashedVectorValue.setDescription('This variable represents an individual value for the mscExampleDashedProvStructDashedVectorTable.') msc_example_dashed_prov_free_dashed_list_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1096)) if mibBuilder.loadTexts: mscExampleDashedProvFreeDashedListTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDashedProvFreeDashedListTable.setDescription('') msc_example_dashed_prov_free_dashed_list_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1096, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDashedIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDashedProvFreeDashedListValue')) if mibBuilder.loadTexts: mscExampleDashedProvFreeDashedListEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDashedProvFreeDashedListEntry.setDescription('An entry in the mscExampleDashedProvFreeDashedListTable.') msc_example_dashed_prov_free_dashed_list_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1096, 1, 1), dashed_hex_string().subtype(subtypeSpec=value_size_constraint(1, 5))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleDashedProvFreeDashedListValue.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDashedProvFreeDashedListValue.setDescription('This variable represents both the value and the index for the mscExampleDashedProvFreeDashedListTable.') msc_example_dashed_prov_free_dashed_list_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1096, 1, 2), row_status()).setMaxAccess('writeonly') if mibBuilder.loadTexts: mscExampleDashedProvFreeDashedListRowStatus.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDashedProvFreeDashedListRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleDashedProvFreeDashedListTable.') msc_example_dashed_prov_free_dashed_replicated_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1097)) if mibBuilder.loadTexts: mscExampleDashedProvFreeDashedReplicatedTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDashedProvFreeDashedReplicatedTable.setDescription('') msc_example_dashed_prov_free_dashed_replicated_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1097, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDashedIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDashedProvFreeDashedReplicatedIndex')) if mibBuilder.loadTexts: mscExampleDashedProvFreeDashedReplicatedEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDashedProvFreeDashedReplicatedEntry.setDescription('An entry in the mscExampleDashedProvFreeDashedReplicatedTable.') msc_example_dashed_prov_free_dashed_replicated_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1097, 1, 1), dashed_hex_string().subtype(subtypeSpec=value_size_constraint(1, 5))) if mibBuilder.loadTexts: mscExampleDashedProvFreeDashedReplicatedIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDashedProvFreeDashedReplicatedIndex.setDescription('This variable represents the index for the mscExampleDashedProvFreeDashedReplicatedTable.') msc_example_dashed_prov_free_dashed_replicated_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1097, 1, 2), dashed_hex_string().subtype(subtypeSpec=value_size_constraint(1, 10))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleDashedProvFreeDashedReplicatedValue.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDashedProvFreeDashedReplicatedValue.setDescription('This variable represents an individual value for the mscExampleDashedProvFreeDashedReplicatedTable.') msc_example_dashed_prov_free_dashed_replicated_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1097, 1, 3), row_status()).setMaxAccess('writeonly') if mibBuilder.loadTexts: mscExampleDashedProvFreeDashedReplicatedRowStatus.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDashedProvFreeDashedReplicatedRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleDashedProvFreeDashedReplicatedTable.') msc_example_dashed_prov_free_dashed_array_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1098)) if mibBuilder.loadTexts: mscExampleDashedProvFreeDashedArrayTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDashedProvFreeDashedArrayTable.setDescription('') msc_example_dashed_prov_free_dashed_array_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1098, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDashedIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDashedProvFreeDashedArrayRowIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDashedProvFreeDashedArrayColumnIndex')) if mibBuilder.loadTexts: mscExampleDashedProvFreeDashedArrayEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDashedProvFreeDashedArrayEntry.setDescription('An entry in the mscExampleDashedProvFreeDashedArrayTable.') msc_example_dashed_prov_free_dashed_array_row_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1098, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 2))) if mibBuilder.loadTexts: mscExampleDashedProvFreeDashedArrayRowIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDashedProvFreeDashedArrayRowIndex.setDescription('This variable represents the next to last index for the mscExampleDashedProvFreeDashedArrayTable.') msc_example_dashed_prov_free_dashed_array_column_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1098, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 3))) if mibBuilder.loadTexts: mscExampleDashedProvFreeDashedArrayColumnIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDashedProvFreeDashedArrayColumnIndex.setDescription('This variable represents the final index for the mscExampleDashedProvFreeDashedArrayTable.') msc_example_dashed_prov_free_dashed_array_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1098, 1, 3), dashed_hex_string().subtype(subtypeSpec=value_size_constraint(0, 5))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleDashedProvFreeDashedArrayValue.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDashedProvFreeDashedArrayValue.setDescription('This variable represents an individual value for the mscExampleDashedProvFreeDashedArrayTable.') msc_example_dashed_prov_free_dashed_vector_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1099)) if mibBuilder.loadTexts: mscExampleDashedProvFreeDashedVectorTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDashedProvFreeDashedVectorTable.setDescription('') msc_example_dashed_prov_free_dashed_vector_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1099, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDashedIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDashedProvFreeDashedVectorIndex')) if mibBuilder.loadTexts: mscExampleDashedProvFreeDashedVectorEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDashedProvFreeDashedVectorEntry.setDescription('An entry in the mscExampleDashedProvFreeDashedVectorTable.') msc_example_dashed_prov_free_dashed_vector_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1099, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 9))) if mibBuilder.loadTexts: mscExampleDashedProvFreeDashedVectorIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDashedProvFreeDashedVectorIndex.setDescription('This variable represents the mscExampleDashedProvFreeDashedVectorTable specific index for the mscExampleDashedProvFreeDashedVectorTable.') msc_example_dashed_prov_free_dashed_vector_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1099, 1, 2), dashed_hex_string().subtype(subtypeSpec=value_size_constraint(0, 5))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleDashedProvFreeDashedVectorValue.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDashedProvFreeDashedVectorValue.setDescription('This variable represents an individual value for the mscExampleDashedProvFreeDashedVectorTable.') msc_example_extended = mib_identifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8)) msc_example_extended_row_status_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1)) if mibBuilder.loadTexts: mscExampleExtendedRowStatusTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleExtendedRowStatusTable.setDescription('This entry controls the addition and deletion of mscExampleExtended components.') msc_example_extended_row_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleExtendedIndex')) if mibBuilder.loadTexts: mscExampleExtendedRowStatusEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleExtendedRowStatusEntry.setDescription('A single entry in the table represents a single mscExampleExtended component.') msc_example_extended_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1, 1, 1), row_status()).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleExtendedRowStatus.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleExtendedRowStatus.setDescription('This variable is used as the basis for SNMP naming of mscExampleExtended components. These components can be added and deleted.') msc_example_extended_component_name = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1, 1, 2), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscExampleExtendedComponentName.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleExtendedComponentName.setDescription("This variable provides the component's string name for use with the ASCII Console Interface") msc_example_extended_storage_type = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1, 1, 4), storage_type()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscExampleExtendedStorageType.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleExtendedStorageType.setDescription('This variable represents the storage type value for the mscExampleExtended tables.') msc_example_extended_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1, 1, 10), non_replicated()) if mibBuilder.loadTexts: mscExampleExtendedIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleExtendedIndex.setDescription('This variable represents the index for the mscExampleExtended tables.') msc_example_extended_operational_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 10)) if mibBuilder.loadTexts: mscExampleExtendedOperationalTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleExtendedOperationalTable.setDescription('') msc_example_extended_operational_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 10, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleExtendedIndex')) if mibBuilder.loadTexts: mscExampleExtendedOperationalEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleExtendedOperationalEntry.setDescription('An entry in the mscExampleExtendedOperationalTable.') msc_example_extended_oper_struct_extended = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 10, 1, 1), extended_ascii_string().subtype(subtypeSpec=value_size_constraint(1, 10))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleExtendedOperStructExtended.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleExtendedOperStructExtended.setDescription('') msc_example_extended_oper_free_extended = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 10, 1, 2), extended_ascii_string().subtype(subtypeSpec=value_size_constraint(1, 10)).clone(hexValue='68656c6c6f5c6162')).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleExtendedOperFreeExtended.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleExtendedOperFreeExtended.setDescription('') msc_example_extended_provisional_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 11)) if mibBuilder.loadTexts: mscExampleExtendedProvisionalTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleExtendedProvisionalTable.setDescription('') msc_example_extended_provisional_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 11, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleExtendedIndex')) if mibBuilder.loadTexts: mscExampleExtendedProvisionalEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleExtendedProvisionalEntry.setDescription('An entry in the mscExampleExtendedProvisionalTable.') msc_example_extended_prov_enum_sub = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 11, 1, 1), link()).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleExtendedProvEnumSub.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleExtendedProvEnumSub.setDescription('') msc_example_extended_prov_struct_extended = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 11, 1, 2), extended_ascii_string().subtype(subtypeSpec=value_size_constraint(1, 10))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleExtendedProvStructExtended.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleExtendedProvStructExtended.setDescription('') msc_example_extended_prov_free_extended = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 11, 1, 3), extended_ascii_string().subtype(subtypeSpec=value_size_constraint(1, 10)).clone(hexValue='48656c6c6f5c61626364')).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleExtendedProvFreeExtended.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleExtendedProvFreeExtended.setDescription('') msc_example_extended_oper_struct_extended_array_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1100)) if mibBuilder.loadTexts: mscExampleExtendedOperStructExtendedArrayTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleExtendedOperStructExtendedArrayTable.setDescription('') msc_example_extended_oper_struct_extended_array_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1100, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleExtendedIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleExtendedOperStructExtendedArrayRowIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleExtendedOperStructExtendedArrayColumnIndex')) if mibBuilder.loadTexts: mscExampleExtendedOperStructExtendedArrayEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleExtendedOperStructExtendedArrayEntry.setDescription('An entry in the mscExampleExtendedOperStructExtendedArrayTable.') msc_example_extended_oper_struct_extended_array_row_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1100, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 2))) if mibBuilder.loadTexts: mscExampleExtendedOperStructExtendedArrayRowIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleExtendedOperStructExtendedArrayRowIndex.setDescription('This variable represents the next to last index for the mscExampleExtendedOperStructExtendedArrayTable.') msc_example_extended_oper_struct_extended_array_column_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1100, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 3))) if mibBuilder.loadTexts: mscExampleExtendedOperStructExtendedArrayColumnIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleExtendedOperStructExtendedArrayColumnIndex.setDescription('This variable represents the final index for the mscExampleExtendedOperStructExtendedArrayTable.') msc_example_extended_oper_struct_extended_array_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1100, 1, 3), extended_ascii_string().subtype(subtypeSpec=value_size_constraint(1, 5))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleExtendedOperStructExtendedArrayValue.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleExtendedOperStructExtendedArrayValue.setDescription('This variable represents an individual value for the mscExampleExtendedOperStructExtendedArrayTable.') msc_example_extended_oper_struct_extended_vector_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1101)) if mibBuilder.loadTexts: mscExampleExtendedOperStructExtendedVectorTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleExtendedOperStructExtendedVectorTable.setDescription('') msc_example_extended_oper_struct_extended_vector_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1101, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleExtendedIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleExtendedOperStructExtendedVectorIndex')) if mibBuilder.loadTexts: mscExampleExtendedOperStructExtendedVectorEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleExtendedOperStructExtendedVectorEntry.setDescription('An entry in the mscExampleExtendedOperStructExtendedVectorTable.') msc_example_extended_oper_struct_extended_vector_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1101, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 9))) if mibBuilder.loadTexts: mscExampleExtendedOperStructExtendedVectorIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleExtendedOperStructExtendedVectorIndex.setDescription('This variable represents the mscExampleExtendedOperStructExtendedVectorTable specific index for the mscExampleExtendedOperStructExtendedVectorTable.') msc_example_extended_oper_struct_extended_vector_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1101, 1, 2), extended_ascii_string().subtype(subtypeSpec=value_size_constraint(1, 5))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleExtendedOperStructExtendedVectorValue.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleExtendedOperStructExtendedVectorValue.setDescription('This variable represents an individual value for the mscExampleExtendedOperStructExtendedVectorTable.') msc_example_extended_oper_free_extended_list_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1102)) if mibBuilder.loadTexts: mscExampleExtendedOperFreeExtendedListTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleExtendedOperFreeExtendedListTable.setDescription('') msc_example_extended_oper_free_extended_list_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1102, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleExtendedIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleExtendedOperFreeExtendedListValue')) if mibBuilder.loadTexts: mscExampleExtendedOperFreeExtendedListEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleExtendedOperFreeExtendedListEntry.setDescription('An entry in the mscExampleExtendedOperFreeExtendedListTable.') msc_example_extended_oper_free_extended_list_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1102, 1, 1), extended_ascii_string().subtype(subtypeSpec=value_size_constraint(1, 5))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleExtendedOperFreeExtendedListValue.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleExtendedOperFreeExtendedListValue.setDescription('This variable represents both the value and the index for the mscExampleExtendedOperFreeExtendedListTable.') msc_example_extended_oper_free_extended_list_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1102, 1, 2), row_status()).setMaxAccess('writeonly') if mibBuilder.loadTexts: mscExampleExtendedOperFreeExtendedListRowStatus.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleExtendedOperFreeExtendedListRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleExtendedOperFreeExtendedListTable.') msc_example_extended_oper_free_extended_replicated_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1103)) if mibBuilder.loadTexts: mscExampleExtendedOperFreeExtendedReplicatedTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleExtendedOperFreeExtendedReplicatedTable.setDescription('') msc_example_extended_oper_free_extended_replicated_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1103, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleExtendedIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleExtendedOperFreeExtendedReplicatedIndex')) if mibBuilder.loadTexts: mscExampleExtendedOperFreeExtendedReplicatedEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleExtendedOperFreeExtendedReplicatedEntry.setDescription('An entry in the mscExampleExtendedOperFreeExtendedReplicatedTable.') msc_example_extended_oper_free_extended_replicated_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1103, 1, 1), extended_ascii_string().subtype(subtypeSpec=value_size_constraint(1, 5))) if mibBuilder.loadTexts: mscExampleExtendedOperFreeExtendedReplicatedIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleExtendedOperFreeExtendedReplicatedIndex.setDescription('This variable represents the index for the mscExampleExtendedOperFreeExtendedReplicatedTable.') msc_example_extended_oper_free_extended_replicated_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1103, 1, 2), extended_ascii_string().subtype(subtypeSpec=value_size_constraint(1, 10))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleExtendedOperFreeExtendedReplicatedValue.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleExtendedOperFreeExtendedReplicatedValue.setDescription('This variable represents an individual value for the mscExampleExtendedOperFreeExtendedReplicatedTable.') msc_example_extended_oper_free_extended_replicated_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1103, 1, 3), row_status()).setMaxAccess('writeonly') if mibBuilder.loadTexts: mscExampleExtendedOperFreeExtendedReplicatedRowStatus.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleExtendedOperFreeExtendedReplicatedRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleExtendedOperFreeExtendedReplicatedTable.') msc_example_extended_oper_free_extended_array_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1104)) if mibBuilder.loadTexts: mscExampleExtendedOperFreeExtendedArrayTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleExtendedOperFreeExtendedArrayTable.setDescription('') msc_example_extended_oper_free_extended_array_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1104, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleExtendedIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleExtendedOperFreeExtendedArrayRowIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleExtendedOperFreeExtendedArrayColumnIndex')) if mibBuilder.loadTexts: mscExampleExtendedOperFreeExtendedArrayEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleExtendedOperFreeExtendedArrayEntry.setDescription('An entry in the mscExampleExtendedOperFreeExtendedArrayTable.') msc_example_extended_oper_free_extended_array_row_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1104, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 2))) if mibBuilder.loadTexts: mscExampleExtendedOperFreeExtendedArrayRowIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleExtendedOperFreeExtendedArrayRowIndex.setDescription('This variable represents the next to last index for the mscExampleExtendedOperFreeExtendedArrayTable.') msc_example_extended_oper_free_extended_array_column_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1104, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 3))) if mibBuilder.loadTexts: mscExampleExtendedOperFreeExtendedArrayColumnIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleExtendedOperFreeExtendedArrayColumnIndex.setDescription('This variable represents the final index for the mscExampleExtendedOperFreeExtendedArrayTable.') msc_example_extended_oper_free_extended_array_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1104, 1, 3), extended_ascii_string().subtype(subtypeSpec=value_size_constraint(1, 5))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleExtendedOperFreeExtendedArrayValue.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleExtendedOperFreeExtendedArrayValue.setDescription('This variable represents an individual value for the mscExampleExtendedOperFreeExtendedArrayTable.') msc_example_extended_oper_free_extended_vector_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1105)) if mibBuilder.loadTexts: mscExampleExtendedOperFreeExtendedVectorTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleExtendedOperFreeExtendedVectorTable.setDescription('') msc_example_extended_oper_free_extended_vector_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1105, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleExtendedIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleExtendedOperFreeExtendedVectorIndex')) if mibBuilder.loadTexts: mscExampleExtendedOperFreeExtendedVectorEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleExtendedOperFreeExtendedVectorEntry.setDescription('An entry in the mscExampleExtendedOperFreeExtendedVectorTable.') msc_example_extended_oper_free_extended_vector_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1105, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 9))) if mibBuilder.loadTexts: mscExampleExtendedOperFreeExtendedVectorIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleExtendedOperFreeExtendedVectorIndex.setDescription('This variable represents the mscExampleExtendedOperFreeExtendedVectorTable specific index for the mscExampleExtendedOperFreeExtendedVectorTable.') msc_example_extended_oper_free_extended_vector_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1105, 1, 2), extended_ascii_string().subtype(subtypeSpec=value_size_constraint(1, 5))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleExtendedOperFreeExtendedVectorValue.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleExtendedOperFreeExtendedVectorValue.setDescription('This variable represents an individual value for the mscExampleExtendedOperFreeExtendedVectorTable.') msc_example_extended_prov_struct_extended_array_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1106)) if mibBuilder.loadTexts: mscExampleExtendedProvStructExtendedArrayTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleExtendedProvStructExtendedArrayTable.setDescription('') msc_example_extended_prov_struct_extended_array_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1106, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleExtendedIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleExtendedProvStructExtendedArrayRowIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleExtendedProvStructExtendedArrayColumnIndex')) if mibBuilder.loadTexts: mscExampleExtendedProvStructExtendedArrayEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleExtendedProvStructExtendedArrayEntry.setDescription('An entry in the mscExampleExtendedProvStructExtendedArrayTable.') msc_example_extended_prov_struct_extended_array_row_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1106, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 2))) if mibBuilder.loadTexts: mscExampleExtendedProvStructExtendedArrayRowIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleExtendedProvStructExtendedArrayRowIndex.setDescription('This variable represents the next to last index for the mscExampleExtendedProvStructExtendedArrayTable.') msc_example_extended_prov_struct_extended_array_column_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1106, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 3))) if mibBuilder.loadTexts: mscExampleExtendedProvStructExtendedArrayColumnIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleExtendedProvStructExtendedArrayColumnIndex.setDescription('This variable represents the final index for the mscExampleExtendedProvStructExtendedArrayTable.') msc_example_extended_prov_struct_extended_array_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1106, 1, 3), extended_ascii_string().subtype(subtypeSpec=value_size_constraint(0, 5))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleExtendedProvStructExtendedArrayValue.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleExtendedProvStructExtendedArrayValue.setDescription('This variable represents an individual value for the mscExampleExtendedProvStructExtendedArrayTable.') msc_example_extended_prov_struct_extended_vector_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1107)) if mibBuilder.loadTexts: mscExampleExtendedProvStructExtendedVectorTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleExtendedProvStructExtendedVectorTable.setDescription('') msc_example_extended_prov_struct_extended_vector_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1107, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleExtendedIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleExtendedProvStructExtendedVectorIndex')) if mibBuilder.loadTexts: mscExampleExtendedProvStructExtendedVectorEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleExtendedProvStructExtendedVectorEntry.setDescription('An entry in the mscExampleExtendedProvStructExtendedVectorTable.') msc_example_extended_prov_struct_extended_vector_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1107, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 9))) if mibBuilder.loadTexts: mscExampleExtendedProvStructExtendedVectorIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleExtendedProvStructExtendedVectorIndex.setDescription('This variable represents the mscExampleExtendedProvStructExtendedVectorTable specific index for the mscExampleExtendedProvStructExtendedVectorTable.') msc_example_extended_prov_struct_extended_vector_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1107, 1, 2), extended_ascii_string().subtype(subtypeSpec=value_size_constraint(0, 5))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleExtendedProvStructExtendedVectorValue.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleExtendedProvStructExtendedVectorValue.setDescription('This variable represents an individual value for the mscExampleExtendedProvStructExtendedVectorTable.') msc_example_extended_prov_free_extended_list_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1108)) if mibBuilder.loadTexts: mscExampleExtendedProvFreeExtendedListTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleExtendedProvFreeExtendedListTable.setDescription('') msc_example_extended_prov_free_extended_list_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1108, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleExtendedIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleExtendedProvFreeExtendedListValue')) if mibBuilder.loadTexts: mscExampleExtendedProvFreeExtendedListEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleExtendedProvFreeExtendedListEntry.setDescription('An entry in the mscExampleExtendedProvFreeExtendedListTable.') msc_example_extended_prov_free_extended_list_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1108, 1, 1), extended_ascii_string().subtype(subtypeSpec=value_size_constraint(1, 5))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleExtendedProvFreeExtendedListValue.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleExtendedProvFreeExtendedListValue.setDescription('This variable represents both the value and the index for the mscExampleExtendedProvFreeExtendedListTable.') msc_example_extended_prov_free_extended_list_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1108, 1, 2), row_status()).setMaxAccess('writeonly') if mibBuilder.loadTexts: mscExampleExtendedProvFreeExtendedListRowStatus.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleExtendedProvFreeExtendedListRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleExtendedProvFreeExtendedListTable.') msc_example_extended_prov_free_extended_replicated_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1109)) if mibBuilder.loadTexts: mscExampleExtendedProvFreeExtendedReplicatedTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleExtendedProvFreeExtendedReplicatedTable.setDescription('') msc_example_extended_prov_free_extended_replicated_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1109, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleExtendedIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleExtendedProvFreeExtendedReplicatedIndex')) if mibBuilder.loadTexts: mscExampleExtendedProvFreeExtendedReplicatedEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleExtendedProvFreeExtendedReplicatedEntry.setDescription('An entry in the mscExampleExtendedProvFreeExtendedReplicatedTable.') msc_example_extended_prov_free_extended_replicated_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1109, 1, 1), extended_ascii_string().subtype(subtypeSpec=value_size_constraint(1, 5))) if mibBuilder.loadTexts: mscExampleExtendedProvFreeExtendedReplicatedIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleExtendedProvFreeExtendedReplicatedIndex.setDescription('This variable represents the index for the mscExampleExtendedProvFreeExtendedReplicatedTable.') msc_example_extended_prov_free_extended_replicated_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1109, 1, 2), extended_ascii_string().subtype(subtypeSpec=value_size_constraint(1, 10))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleExtendedProvFreeExtendedReplicatedValue.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleExtendedProvFreeExtendedReplicatedValue.setDescription('This variable represents an individual value for the mscExampleExtendedProvFreeExtendedReplicatedTable.') msc_example_extended_prov_free_extended_replicated_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1109, 1, 3), row_status()).setMaxAccess('writeonly') if mibBuilder.loadTexts: mscExampleExtendedProvFreeExtendedReplicatedRowStatus.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleExtendedProvFreeExtendedReplicatedRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleExtendedProvFreeExtendedReplicatedTable.') msc_example_extended_prov_free_extended_array_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1110)) if mibBuilder.loadTexts: mscExampleExtendedProvFreeExtendedArrayTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleExtendedProvFreeExtendedArrayTable.setDescription('') msc_example_extended_prov_free_extended_array_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1110, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleExtendedIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleExtendedProvFreeExtendedArrayRowIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleExtendedProvFreeExtendedArrayColumnIndex')) if mibBuilder.loadTexts: mscExampleExtendedProvFreeExtendedArrayEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleExtendedProvFreeExtendedArrayEntry.setDescription('An entry in the mscExampleExtendedProvFreeExtendedArrayTable.') msc_example_extended_prov_free_extended_array_row_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1110, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 2))) if mibBuilder.loadTexts: mscExampleExtendedProvFreeExtendedArrayRowIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleExtendedProvFreeExtendedArrayRowIndex.setDescription('This variable represents the next to last index for the mscExampleExtendedProvFreeExtendedArrayTable.') msc_example_extended_prov_free_extended_array_column_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1110, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 3))) if mibBuilder.loadTexts: mscExampleExtendedProvFreeExtendedArrayColumnIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleExtendedProvFreeExtendedArrayColumnIndex.setDescription('This variable represents the final index for the mscExampleExtendedProvFreeExtendedArrayTable.') msc_example_extended_prov_free_extended_array_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1110, 1, 3), extended_ascii_string().subtype(subtypeSpec=value_size_constraint(0, 5))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleExtendedProvFreeExtendedArrayValue.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleExtendedProvFreeExtendedArrayValue.setDescription('This variable represents an individual value for the mscExampleExtendedProvFreeExtendedArrayTable.') msc_example_extended_prov_free_extended_vector_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1111)) if mibBuilder.loadTexts: mscExampleExtendedProvFreeExtendedVectorTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleExtendedProvFreeExtendedVectorTable.setDescription('') msc_example_extended_prov_free_extended_vector_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1111, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleExtendedIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleExtendedProvFreeExtendedVectorIndex')) if mibBuilder.loadTexts: mscExampleExtendedProvFreeExtendedVectorEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleExtendedProvFreeExtendedVectorEntry.setDescription('An entry in the mscExampleExtendedProvFreeExtendedVectorTable.') msc_example_extended_prov_free_extended_vector_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1111, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 9))) if mibBuilder.loadTexts: mscExampleExtendedProvFreeExtendedVectorIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleExtendedProvFreeExtendedVectorIndex.setDescription('This variable represents the mscExampleExtendedProvFreeExtendedVectorTable specific index for the mscExampleExtendedProvFreeExtendedVectorTable.') msc_example_extended_prov_free_extended_vector_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1111, 1, 2), extended_ascii_string().subtype(subtypeSpec=value_size_constraint(0, 5))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleExtendedProvFreeExtendedVectorValue.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleExtendedProvFreeExtendedVectorValue.setDescription('This variable represents an individual value for the mscExampleExtendedProvFreeExtendedVectorTable.') msc_example_bcd = mib_identifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9)) msc_example_bcd_row_status_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1)) if mibBuilder.loadTexts: mscExampleBcdRowStatusTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleBcdRowStatusTable.setDescription('This entry controls the addition and deletion of mscExampleBcd components.') msc_example_bcd_row_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleBcdIndex')) if mibBuilder.loadTexts: mscExampleBcdRowStatusEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleBcdRowStatusEntry.setDescription('A single entry in the table represents a single mscExampleBcd component.') msc_example_bcd_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1, 1, 1), row_status()).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleBcdRowStatus.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleBcdRowStatus.setDescription('This variable is used as the basis for SNMP naming of mscExampleBcd components. These components can be added and deleted.') msc_example_bcd_component_name = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1, 1, 2), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscExampleBcdComponentName.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleBcdComponentName.setDescription("This variable provides the component's string name for use with the ASCII Console Interface") msc_example_bcd_storage_type = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1, 1, 4), storage_type()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscExampleBcdStorageType.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleBcdStorageType.setDescription('This variable represents the storage type value for the mscExampleBcd tables.') msc_example_bcd_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1, 1, 10), digit_string().subtype(subtypeSpec=value_size_constraint(1, 10))) if mibBuilder.loadTexts: mscExampleBcdIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleBcdIndex.setDescription('This variable represents the index for the mscExampleBcd tables.') msc_example_bcd_operational_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 10)) if mibBuilder.loadTexts: mscExampleBcdOperationalTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleBcdOperationalTable.setDescription('') msc_example_bcd_operational_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 10, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleBcdIndex')) if mibBuilder.loadTexts: mscExampleBcdOperationalEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleBcdOperationalEntry.setDescription('An entry in the mscExampleBcdOperationalTable.') msc_example_bcd_oper_struct_bcd = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 10, 1, 1), digit_string().subtype(subtypeSpec=value_size_constraint(0, 16))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleBcdOperStructBcd.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleBcdOperStructBcd.setDescription('') msc_example_bcd_oper_free_bcd = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 10, 1, 2), digit_string().subtype(subtypeSpec=value_size_constraint(0, 16))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleBcdOperFreeBcd.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleBcdOperFreeBcd.setDescription('') msc_example_bcd_provisional_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 11)) if mibBuilder.loadTexts: mscExampleBcdProvisionalTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleBcdProvisionalTable.setDescription('') msc_example_bcd_provisional_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 11, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleBcdIndex')) if mibBuilder.loadTexts: mscExampleBcdProvisionalEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleBcdProvisionalEntry.setDescription('An entry in the mscExampleBcdProvisionalTable.') msc_example_bcd_prov_enum_sub = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 11, 1, 1), link()).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleBcdProvEnumSub.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleBcdProvEnumSub.setDescription('') msc_example_bcd_prov_struct_bcd = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 11, 1, 2), digit_string().subtype(subtypeSpec=value_size_constraint(0, 16)).clone(hexValue='30313233343536373839')).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleBcdProvStructBcd.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleBcdProvStructBcd.setDescription('') msc_example_bcd_prov_free_bcd = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 11, 1, 3), digit_string().subtype(subtypeSpec=value_size_constraint(4, 16)).clone(hexValue='31323334353637383930')).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleBcdProvFreeBcd.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleBcdProvFreeBcd.setDescription('') msc_example_bcd_prov_free_bcd1 = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 11, 1, 4), digit_string().subtype(subtypeSpec=value_size_constraint(4, 8))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleBcdProvFreeBcd1.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleBcdProvFreeBcd1.setDescription('') msc_example_bcd_oper_struct_bcd_vector_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1120)) if mibBuilder.loadTexts: mscExampleBcdOperStructBcdVectorTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleBcdOperStructBcdVectorTable.setDescription('') msc_example_bcd_oper_struct_bcd_vector_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1120, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleBcdIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleBcdOperStructBcdVectorIndex')) if mibBuilder.loadTexts: mscExampleBcdOperStructBcdVectorEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleBcdOperStructBcdVectorEntry.setDescription('An entry in the mscExampleBcdOperStructBcdVectorTable.') msc_example_bcd_oper_struct_bcd_vector_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1120, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 9))) if mibBuilder.loadTexts: mscExampleBcdOperStructBcdVectorIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleBcdOperStructBcdVectorIndex.setDescription('This variable represents the mscExampleBcdOperStructBcdVectorTable specific index for the mscExampleBcdOperStructBcdVectorTable.') msc_example_bcd_oper_struct_bcd_vector_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1120, 1, 2), digit_string().subtype(subtypeSpec=value_size_constraint(0, 5))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleBcdOperStructBcdVectorValue.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleBcdOperStructBcdVectorValue.setDescription('This variable represents an individual value for the mscExampleBcdOperStructBcdVectorTable.') msc_example_bcd_oper_struct_bcd_array_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1121)) if mibBuilder.loadTexts: mscExampleBcdOperStructBcdArrayTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleBcdOperStructBcdArrayTable.setDescription('') msc_example_bcd_oper_struct_bcd_array_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1121, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleBcdIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleBcdOperStructBcdArrayRowIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleBcdOperStructBcdArrayColumnIndex')) if mibBuilder.loadTexts: mscExampleBcdOperStructBcdArrayEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleBcdOperStructBcdArrayEntry.setDescription('An entry in the mscExampleBcdOperStructBcdArrayTable.') msc_example_bcd_oper_struct_bcd_array_row_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1121, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 2))) if mibBuilder.loadTexts: mscExampleBcdOperStructBcdArrayRowIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleBcdOperStructBcdArrayRowIndex.setDescription('This variable represents the next to last index for the mscExampleBcdOperStructBcdArrayTable.') msc_example_bcd_oper_struct_bcd_array_column_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1121, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 3))) if mibBuilder.loadTexts: mscExampleBcdOperStructBcdArrayColumnIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleBcdOperStructBcdArrayColumnIndex.setDescription('This variable represents the final index for the mscExampleBcdOperStructBcdArrayTable.') msc_example_bcd_oper_struct_bcd_array_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1121, 1, 3), digit_string().subtype(subtypeSpec=value_size_constraint(0, 5))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleBcdOperStructBcdArrayValue.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleBcdOperStructBcdArrayValue.setDescription('This variable represents an individual value for the mscExampleBcdOperStructBcdArrayTable.') msc_example_bcd_oper_free_bcd_vector_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1122)) if mibBuilder.loadTexts: mscExampleBcdOperFreeBcdVectorTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleBcdOperFreeBcdVectorTable.setDescription('') msc_example_bcd_oper_free_bcd_vector_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1122, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleBcdIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleBcdOperFreeBcdVectorIndex')) if mibBuilder.loadTexts: mscExampleBcdOperFreeBcdVectorEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleBcdOperFreeBcdVectorEntry.setDescription('An entry in the mscExampleBcdOperFreeBcdVectorTable.') msc_example_bcd_oper_free_bcd_vector_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1122, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 9))) if mibBuilder.loadTexts: mscExampleBcdOperFreeBcdVectorIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleBcdOperFreeBcdVectorIndex.setDescription('This variable represents the mscExampleBcdOperFreeBcdVectorTable specific index for the mscExampleBcdOperFreeBcdVectorTable.') msc_example_bcd_oper_free_bcd_vector_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1122, 1, 2), digit_string().subtype(subtypeSpec=value_size_constraint(0, 5))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleBcdOperFreeBcdVectorValue.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleBcdOperFreeBcdVectorValue.setDescription('This variable represents an individual value for the mscExampleBcdOperFreeBcdVectorTable.') msc_example_bcd_oper_free_bcd_array_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1123)) if mibBuilder.loadTexts: mscExampleBcdOperFreeBcdArrayTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleBcdOperFreeBcdArrayTable.setDescription('') msc_example_bcd_oper_free_bcd_array_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1123, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleBcdIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleBcdOperFreeBcdArrayRowIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleBcdOperFreeBcdArrayColumnIndex')) if mibBuilder.loadTexts: mscExampleBcdOperFreeBcdArrayEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleBcdOperFreeBcdArrayEntry.setDescription('An entry in the mscExampleBcdOperFreeBcdArrayTable.') msc_example_bcd_oper_free_bcd_array_row_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1123, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 2))) if mibBuilder.loadTexts: mscExampleBcdOperFreeBcdArrayRowIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleBcdOperFreeBcdArrayRowIndex.setDescription('This variable represents the next to last index for the mscExampleBcdOperFreeBcdArrayTable.') msc_example_bcd_oper_free_bcd_array_column_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1123, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 3))) if mibBuilder.loadTexts: mscExampleBcdOperFreeBcdArrayColumnIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleBcdOperFreeBcdArrayColumnIndex.setDescription('This variable represents the final index for the mscExampleBcdOperFreeBcdArrayTable.') msc_example_bcd_oper_free_bcd_array_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1123, 1, 3), digit_string().subtype(subtypeSpec=value_size_constraint(0, 5))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleBcdOperFreeBcdArrayValue.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleBcdOperFreeBcdArrayValue.setDescription('This variable represents an individual value for the mscExampleBcdOperFreeBcdArrayTable.') msc_example_bcd_oper_free_bcd_replicated_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1124)) if mibBuilder.loadTexts: mscExampleBcdOperFreeBcdReplicatedTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleBcdOperFreeBcdReplicatedTable.setDescription('') msc_example_bcd_oper_free_bcd_replicated_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1124, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleBcdIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleBcdOperFreeBcdReplicatedIndex')) if mibBuilder.loadTexts: mscExampleBcdOperFreeBcdReplicatedEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleBcdOperFreeBcdReplicatedEntry.setDescription('An entry in the mscExampleBcdOperFreeBcdReplicatedTable.') msc_example_bcd_oper_free_bcd_replicated_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1124, 1, 1), digit_string().subtype(subtypeSpec=value_size_constraint(0, 5))) if mibBuilder.loadTexts: mscExampleBcdOperFreeBcdReplicatedIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleBcdOperFreeBcdReplicatedIndex.setDescription('This variable represents the index for the mscExampleBcdOperFreeBcdReplicatedTable.') msc_example_bcd_oper_free_bcd_replicated_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1124, 1, 2), digit_string().subtype(subtypeSpec=value_size_constraint(0, 16))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleBcdOperFreeBcdReplicatedValue.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleBcdOperFreeBcdReplicatedValue.setDescription('This variable represents an individual value for the mscExampleBcdOperFreeBcdReplicatedTable.') msc_example_bcd_oper_free_bcd_replicated_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1124, 1, 3), row_status()).setMaxAccess('writeonly') if mibBuilder.loadTexts: mscExampleBcdOperFreeBcdReplicatedRowStatus.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleBcdOperFreeBcdReplicatedRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleBcdOperFreeBcdReplicatedTable.') msc_example_bcd_oper_free_bcd_list_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1125)) if mibBuilder.loadTexts: mscExampleBcdOperFreeBcdListTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleBcdOperFreeBcdListTable.setDescription('') msc_example_bcd_oper_free_bcd_list_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1125, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleBcdIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleBcdOperFreeBcdListValue')) if mibBuilder.loadTexts: mscExampleBcdOperFreeBcdListEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleBcdOperFreeBcdListEntry.setDescription('An entry in the mscExampleBcdOperFreeBcdListTable.') msc_example_bcd_oper_free_bcd_list_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1125, 1, 1), digit_string().subtype(subtypeSpec=value_size_constraint(0, 16))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleBcdOperFreeBcdListValue.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleBcdOperFreeBcdListValue.setDescription('This variable represents both the value and the index for the mscExampleBcdOperFreeBcdListTable.') msc_example_bcd_oper_free_bcd_list_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1125, 1, 2), row_status()).setMaxAccess('writeonly') if mibBuilder.loadTexts: mscExampleBcdOperFreeBcdListRowStatus.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleBcdOperFreeBcdListRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleBcdOperFreeBcdListTable.') msc_example_bcd_prov_struct_bcd_vector_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1126)) if mibBuilder.loadTexts: mscExampleBcdProvStructBcdVectorTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleBcdProvStructBcdVectorTable.setDescription('') msc_example_bcd_prov_struct_bcd_vector_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1126, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleBcdIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleBcdProvStructBcdVectorIndex')) if mibBuilder.loadTexts: mscExampleBcdProvStructBcdVectorEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleBcdProvStructBcdVectorEntry.setDescription('An entry in the mscExampleBcdProvStructBcdVectorTable.') msc_example_bcd_prov_struct_bcd_vector_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1126, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 9))) if mibBuilder.loadTexts: mscExampleBcdProvStructBcdVectorIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleBcdProvStructBcdVectorIndex.setDescription('This variable represents the mscExampleBcdProvStructBcdVectorTable specific index for the mscExampleBcdProvStructBcdVectorTable.') msc_example_bcd_prov_struct_bcd_vector_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1126, 1, 2), digit_string().subtype(subtypeSpec=value_size_constraint(0, 5))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleBcdProvStructBcdVectorValue.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleBcdProvStructBcdVectorValue.setDescription('This variable represents an individual value for the mscExampleBcdProvStructBcdVectorTable.') msc_example_bcd_prov_struct_bcd_array_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1127)) if mibBuilder.loadTexts: mscExampleBcdProvStructBcdArrayTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleBcdProvStructBcdArrayTable.setDescription('') msc_example_bcd_prov_struct_bcd_array_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1127, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleBcdIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleBcdProvStructBcdArrayRowIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleBcdProvStructBcdArrayColumnIndex')) if mibBuilder.loadTexts: mscExampleBcdProvStructBcdArrayEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleBcdProvStructBcdArrayEntry.setDescription('An entry in the mscExampleBcdProvStructBcdArrayTable.') msc_example_bcd_prov_struct_bcd_array_row_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1127, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 2))) if mibBuilder.loadTexts: mscExampleBcdProvStructBcdArrayRowIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleBcdProvStructBcdArrayRowIndex.setDescription('This variable represents the next to last index for the mscExampleBcdProvStructBcdArrayTable.') msc_example_bcd_prov_struct_bcd_array_column_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1127, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 3))) if mibBuilder.loadTexts: mscExampleBcdProvStructBcdArrayColumnIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleBcdProvStructBcdArrayColumnIndex.setDescription('This variable represents the final index for the mscExampleBcdProvStructBcdArrayTable.') msc_example_bcd_prov_struct_bcd_array_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1127, 1, 3), digit_string().subtype(subtypeSpec=value_size_constraint(0, 5))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleBcdProvStructBcdArrayValue.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleBcdProvStructBcdArrayValue.setDescription('This variable represents an individual value for the mscExampleBcdProvStructBcdArrayTable.') msc_example_bcd_prov_free_bcd_vector_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1128)) if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdVectorTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdVectorTable.setDescription('') msc_example_bcd_prov_free_bcd_vector_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1128, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleBcdIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleBcdProvFreeBcdVectorIndex')) if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdVectorEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdVectorEntry.setDescription('An entry in the mscExampleBcdProvFreeBcdVectorTable.') msc_example_bcd_prov_free_bcd_vector_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1128, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 9))) if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdVectorIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdVectorIndex.setDescription('This variable represents the mscExampleBcdProvFreeBcdVectorTable specific index for the mscExampleBcdProvFreeBcdVectorTable.') msc_example_bcd_prov_free_bcd_vector_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1128, 1, 2), digit_string().subtype(subtypeSpec=value_size_constraint(0, 5))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdVectorValue.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdVectorValue.setDescription('This variable represents an individual value for the mscExampleBcdProvFreeBcdVectorTable.') msc_example_bcd_prov_free_bcd_vector1_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1129)) if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdVector1Table.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdVector1Table.setDescription('') msc_example_bcd_prov_free_bcd_vector1_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1129, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleBcdIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleBcdProvFreeBcdVector1Index')) if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdVector1Entry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdVector1Entry.setDescription('An entry in the mscExampleBcdProvFreeBcdVector1Table.') msc_example_bcd_prov_free_bcd_vector1_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1129, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 15))) if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdVector1Index.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdVector1Index.setDescription('This variable represents the mscExampleBcdProvFreeBcdVector1Table specific index for the mscExampleBcdProvFreeBcdVector1Table.') msc_example_bcd_prov_free_bcd_vector1_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1129, 1, 2), digit_string().subtype(subtypeSpec=value_size_constraint(0, 5))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdVector1Value.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdVector1Value.setDescription('This variable represents an individual value for the mscExampleBcdProvFreeBcdVector1Table.') msc_example_bcd_prov_free_bcd_array_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1130)) if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdArrayTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdArrayTable.setDescription('') msc_example_bcd_prov_free_bcd_array_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1130, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleBcdIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleBcdProvFreeBcdArrayRowIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleBcdProvFreeBcdArrayColumnIndex')) if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdArrayEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdArrayEntry.setDescription('An entry in the mscExampleBcdProvFreeBcdArrayTable.') msc_example_bcd_prov_free_bcd_array_row_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1130, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 2))) if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdArrayRowIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdArrayRowIndex.setDescription('This variable represents the next to last index for the mscExampleBcdProvFreeBcdArrayTable.') msc_example_bcd_prov_free_bcd_array_column_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1130, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 3))) if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdArrayColumnIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdArrayColumnIndex.setDescription('This variable represents the final index for the mscExampleBcdProvFreeBcdArrayTable.') msc_example_bcd_prov_free_bcd_array_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1130, 1, 3), digit_string().subtype(subtypeSpec=value_size_constraint(0, 5))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdArrayValue.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdArrayValue.setDescription('This variable represents an individual value for the mscExampleBcdProvFreeBcdArrayTable.') msc_example_bcd_prov_free_bcd_array1_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1131)) if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdArray1Table.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdArray1Table.setDescription('') msc_example_bcd_prov_free_bcd_array1_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1131, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleBcdIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleBcdProvFreeBcdArray1RowIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleBcdProvFreeBcdArray1ColumnIndex')) if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdArray1Entry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdArray1Entry.setDescription('An entry in the mscExampleBcdProvFreeBcdArray1Table.') msc_example_bcd_prov_free_bcd_array1_row_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1131, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 3))) if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdArray1RowIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdArray1RowIndex.setDescription('This variable represents the next to last index for the mscExampleBcdProvFreeBcdArray1Table.') msc_example_bcd_prov_free_bcd_array1_column_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1131, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 3))) if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdArray1ColumnIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdArray1ColumnIndex.setDescription('This variable represents the final index for the mscExampleBcdProvFreeBcdArray1Table.') msc_example_bcd_prov_free_bcd_array1_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1131, 1, 3), digit_string().subtype(subtypeSpec=value_size_constraint(0, 5))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdArray1Value.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdArray1Value.setDescription('This variable represents an individual value for the mscExampleBcdProvFreeBcdArray1Table.') msc_example_bcd_prov_free_bcd_replicated_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1132)) if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdReplicatedTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdReplicatedTable.setDescription('') msc_example_bcd_prov_free_bcd_replicated_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1132, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleBcdIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleBcdProvFreeBcdReplicatedIndex')) if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdReplicatedEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdReplicatedEntry.setDescription('An entry in the mscExampleBcdProvFreeBcdReplicatedTable.') msc_example_bcd_prov_free_bcd_replicated_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1132, 1, 1), digit_string().subtype(subtypeSpec=value_size_constraint(0, 5))) if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdReplicatedIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdReplicatedIndex.setDescription('This variable represents the index for the mscExampleBcdProvFreeBcdReplicatedTable.') msc_example_bcd_prov_free_bcd_replicated_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1132, 1, 2), digit_string().subtype(subtypeSpec=value_size_constraint(0, 16))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdReplicatedValue.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdReplicatedValue.setDescription('This variable represents an individual value for the mscExampleBcdProvFreeBcdReplicatedTable.') msc_example_bcd_prov_free_bcd_replicated_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1132, 1, 3), row_status()).setMaxAccess('writeonly') if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdReplicatedRowStatus.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdReplicatedRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleBcdProvFreeBcdReplicatedTable.') msc_example_bcd_prov_free_bcd_replicated1_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1133)) if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdReplicated1Table.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdReplicated1Table.setDescription('') msc_example_bcd_prov_free_bcd_replicated1_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1133, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleBcdIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleBcdProvFreeBcdReplicated1Index')) if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdReplicated1Entry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdReplicated1Entry.setDescription('An entry in the mscExampleBcdProvFreeBcdReplicated1Table.') msc_example_bcd_prov_free_bcd_replicated1_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1133, 1, 1), digit_string().subtype(subtypeSpec=value_size_constraint(1, 7))) if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdReplicated1Index.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdReplicated1Index.setDescription('This variable represents the index for the mscExampleBcdProvFreeBcdReplicated1Table.') msc_example_bcd_prov_free_bcd_replicated1_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1133, 1, 2), digit_string().subtype(subtypeSpec=value_size_constraint(0, 5))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdReplicated1Value.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdReplicated1Value.setDescription('This variable represents an individual value for the mscExampleBcdProvFreeBcdReplicated1Table.') msc_example_bcd_prov_free_bcd_replicated1_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1133, 1, 3), row_status()).setMaxAccess('writeonly') if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdReplicated1RowStatus.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdReplicated1RowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleBcdProvFreeBcdReplicated1Table.') msc_example_bcd_prov_free_bcd_list_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1134)) if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdListTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdListTable.setDescription('') msc_example_bcd_prov_free_bcd_list_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1134, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleBcdIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleBcdProvFreeBcdListValue')) if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdListEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdListEntry.setDescription('An entry in the mscExampleBcdProvFreeBcdListTable.') msc_example_bcd_prov_free_bcd_list_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1134, 1, 1), digit_string().subtype(subtypeSpec=value_size_constraint(0, 16))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdListValue.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdListValue.setDescription('This variable represents both the value and the index for the mscExampleBcdProvFreeBcdListTable.') msc_example_bcd_prov_free_bcd_list_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1134, 1, 2), row_status()).setMaxAccess('writeonly') if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdListRowStatus.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdListRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleBcdProvFreeBcdListTable.') msc_example_bcd_prov_free_bcd_list1_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1135)) if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdList1Table.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdList1Table.setDescription('') msc_example_bcd_prov_free_bcd_list1_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1135, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleBcdIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleBcdProvFreeBcdList1Value')) if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdList1Entry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdList1Entry.setDescription('An entry in the mscExampleBcdProvFreeBcdList1Table.') msc_example_bcd_prov_free_bcd_list1_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1135, 1, 1), digit_string().subtype(subtypeSpec=value_size_constraint(0, 16))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdList1Value.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdList1Value.setDescription('This variable represents both the value and the index for the mscExampleBcdProvFreeBcdList1Table.') msc_example_bcd_prov_free_bcd_list1_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1135, 1, 2), row_status()).setMaxAccess('writeonly') if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdList1RowStatus.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdList1RowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleBcdProvFreeBcdList1Table.') msc_example_wild_bcd = mib_identifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10)) msc_example_wild_bcd_row_status_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1)) if mibBuilder.loadTexts: mscExampleWildBcdRowStatusTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleWildBcdRowStatusTable.setDescription('This entry controls the addition and deletion of mscExampleWildBcd components.') msc_example_wild_bcd_row_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleWildBcdIndex')) if mibBuilder.loadTexts: mscExampleWildBcdRowStatusEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleWildBcdRowStatusEntry.setDescription('A single entry in the table represents a single mscExampleWildBcd component.') msc_example_wild_bcd_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1, 1, 1), row_status()).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleWildBcdRowStatus.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleWildBcdRowStatus.setDescription('This variable is used as the basis for SNMP naming of mscExampleWildBcd components. These components can be added and deleted.') msc_example_wild_bcd_component_name = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1, 1, 2), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscExampleWildBcdComponentName.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleWildBcdComponentName.setDescription("This variable provides the component's string name for use with the ASCII Console Interface") msc_example_wild_bcd_storage_type = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1, 1, 4), storage_type()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscExampleWildBcdStorageType.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleWildBcdStorageType.setDescription('This variable represents the storage type value for the mscExampleWildBcd tables.') msc_example_wild_bcd_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1, 1, 10), wildcarded_digit_string().subtype(subtypeSpec=value_size_constraint(1, 10))) if mibBuilder.loadTexts: mscExampleWildBcdIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleWildBcdIndex.setDescription('This variable represents the index for the mscExampleWildBcd tables.') msc_example_wild_bcd_operational_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 10)) if mibBuilder.loadTexts: mscExampleWildBcdOperationalTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleWildBcdOperationalTable.setDescription('') msc_example_wild_bcd_operational_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 10, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleWildBcdIndex')) if mibBuilder.loadTexts: mscExampleWildBcdOperationalEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleWildBcdOperationalEntry.setDescription('An entry in the mscExampleWildBcdOperationalTable.') msc_example_wild_bcd_oper_struct_wild_bcd = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 10, 1, 1), wildcarded_digit_string().subtype(subtypeSpec=value_size_constraint(0, 16))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleWildBcdOperStructWildBcd.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleWildBcdOperStructWildBcd.setDescription('') msc_example_wild_bcd_oper_free_wild_bcd = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 10, 1, 2), wildcarded_digit_string().subtype(subtypeSpec=value_size_constraint(0, 16))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleWildBcdOperFreeWildBcd.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleWildBcdOperFreeWildBcd.setDescription('') msc_example_wild_bcd_provisional_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 11)) if mibBuilder.loadTexts: mscExampleWildBcdProvisionalTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleWildBcdProvisionalTable.setDescription('') msc_example_wild_bcd_provisional_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 11, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleWildBcdIndex')) if mibBuilder.loadTexts: mscExampleWildBcdProvisionalEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleWildBcdProvisionalEntry.setDescription('An entry in the mscExampleWildBcdProvisionalTable.') msc_example_wild_bcd_prov_struct_wild_bcd = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 11, 1, 1), wildcarded_digit_string().subtype(subtypeSpec=value_size_constraint(0, 16)).clone(hexValue='30313233343536373839')).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleWildBcdProvStructWildBcd.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleWildBcdProvStructWildBcd.setDescription('') msc_example_wild_bcd_prov_free_wild_bcd = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 11, 1, 2), wildcarded_digit_string().subtype(subtypeSpec=value_size_constraint(4, 16)).clone(hexValue='31323334353637383930')).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleWildBcdProvFreeWildBcd.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleWildBcdProvFreeWildBcd.setDescription('') msc_example_wild_bcd_oper_struct_wild_bcd_vector_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1136)) if mibBuilder.loadTexts: mscExampleWildBcdOperStructWildBcdVectorTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleWildBcdOperStructWildBcdVectorTable.setDescription('') msc_example_wild_bcd_oper_struct_wild_bcd_vector_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1136, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleWildBcdIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleWildBcdOperStructWildBcdVectorIndex')) if mibBuilder.loadTexts: mscExampleWildBcdOperStructWildBcdVectorEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleWildBcdOperStructWildBcdVectorEntry.setDescription('An entry in the mscExampleWildBcdOperStructWildBcdVectorTable.') msc_example_wild_bcd_oper_struct_wild_bcd_vector_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1136, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 9))) if mibBuilder.loadTexts: mscExampleWildBcdOperStructWildBcdVectorIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleWildBcdOperStructWildBcdVectorIndex.setDescription('This variable represents the mscExampleWildBcdOperStructWildBcdVectorTable specific index for the mscExampleWildBcdOperStructWildBcdVectorTable.') msc_example_wild_bcd_oper_struct_wild_bcd_vector_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1136, 1, 2), wildcarded_digit_string().subtype(subtypeSpec=value_size_constraint(0, 5))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleWildBcdOperStructWildBcdVectorValue.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleWildBcdOperStructWildBcdVectorValue.setDescription('This variable represents an individual value for the mscExampleWildBcdOperStructWildBcdVectorTable.') msc_example_wild_bcd_oper_struct_wild_bcd_array_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1137)) if mibBuilder.loadTexts: mscExampleWildBcdOperStructWildBcdArrayTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleWildBcdOperStructWildBcdArrayTable.setDescription('') msc_example_wild_bcd_oper_struct_wild_bcd_array_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1137, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleWildBcdIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleWildBcdOperStructWildBcdArrayRowIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleWildBcdOperStructWildBcdArrayColumnIndex')) if mibBuilder.loadTexts: mscExampleWildBcdOperStructWildBcdArrayEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleWildBcdOperStructWildBcdArrayEntry.setDescription('An entry in the mscExampleWildBcdOperStructWildBcdArrayTable.') msc_example_wild_bcd_oper_struct_wild_bcd_array_row_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1137, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 2))) if mibBuilder.loadTexts: mscExampleWildBcdOperStructWildBcdArrayRowIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleWildBcdOperStructWildBcdArrayRowIndex.setDescription('This variable represents the next to last index for the mscExampleWildBcdOperStructWildBcdArrayTable.') msc_example_wild_bcd_oper_struct_wild_bcd_array_column_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1137, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 3))) if mibBuilder.loadTexts: mscExampleWildBcdOperStructWildBcdArrayColumnIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleWildBcdOperStructWildBcdArrayColumnIndex.setDescription('This variable represents the final index for the mscExampleWildBcdOperStructWildBcdArrayTable.') msc_example_wild_bcd_oper_struct_wild_bcd_array_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1137, 1, 3), wildcarded_digit_string().subtype(subtypeSpec=value_size_constraint(0, 5))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleWildBcdOperStructWildBcdArrayValue.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleWildBcdOperStructWildBcdArrayValue.setDescription('This variable represents an individual value for the mscExampleWildBcdOperStructWildBcdArrayTable.') msc_example_wild_bcd_oper_free_wild_bcd_vector_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1138)) if mibBuilder.loadTexts: mscExampleWildBcdOperFreeWildBcdVectorTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleWildBcdOperFreeWildBcdVectorTable.setDescription('') msc_example_wild_bcd_oper_free_wild_bcd_vector_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1138, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleWildBcdIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleWildBcdOperFreeWildBcdVectorIndex')) if mibBuilder.loadTexts: mscExampleWildBcdOperFreeWildBcdVectorEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleWildBcdOperFreeWildBcdVectorEntry.setDescription('An entry in the mscExampleWildBcdOperFreeWildBcdVectorTable.') msc_example_wild_bcd_oper_free_wild_bcd_vector_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1138, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 9))) if mibBuilder.loadTexts: mscExampleWildBcdOperFreeWildBcdVectorIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleWildBcdOperFreeWildBcdVectorIndex.setDescription('This variable represents the mscExampleWildBcdOperFreeWildBcdVectorTable specific index for the mscExampleWildBcdOperFreeWildBcdVectorTable.') msc_example_wild_bcd_oper_free_wild_bcd_vector_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1138, 1, 2), wildcarded_digit_string().subtype(subtypeSpec=value_size_constraint(0, 5))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleWildBcdOperFreeWildBcdVectorValue.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleWildBcdOperFreeWildBcdVectorValue.setDescription('This variable represents an individual value for the mscExampleWildBcdOperFreeWildBcdVectorTable.') msc_example_wild_bcd_oper_free_wild_bcd_array_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1139)) if mibBuilder.loadTexts: mscExampleWildBcdOperFreeWildBcdArrayTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleWildBcdOperFreeWildBcdArrayTable.setDescription('') msc_example_wild_bcd_oper_free_wild_bcd_array_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1139, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleWildBcdIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleWildBcdOperFreeWildBcdArrayRowIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleWildBcdOperFreeWildBcdArrayColumnIndex')) if mibBuilder.loadTexts: mscExampleWildBcdOperFreeWildBcdArrayEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleWildBcdOperFreeWildBcdArrayEntry.setDescription('An entry in the mscExampleWildBcdOperFreeWildBcdArrayTable.') msc_example_wild_bcd_oper_free_wild_bcd_array_row_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1139, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 2))) if mibBuilder.loadTexts: mscExampleWildBcdOperFreeWildBcdArrayRowIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleWildBcdOperFreeWildBcdArrayRowIndex.setDescription('This variable represents the next to last index for the mscExampleWildBcdOperFreeWildBcdArrayTable.') msc_example_wild_bcd_oper_free_wild_bcd_array_column_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1139, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 3))) if mibBuilder.loadTexts: mscExampleWildBcdOperFreeWildBcdArrayColumnIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleWildBcdOperFreeWildBcdArrayColumnIndex.setDescription('This variable represents the final index for the mscExampleWildBcdOperFreeWildBcdArrayTable.') msc_example_wild_bcd_oper_free_wild_bcd_array_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1139, 1, 3), wildcarded_digit_string().subtype(subtypeSpec=value_size_constraint(0, 5))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleWildBcdOperFreeWildBcdArrayValue.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleWildBcdOperFreeWildBcdArrayValue.setDescription('This variable represents an individual value for the mscExampleWildBcdOperFreeWildBcdArrayTable.') msc_example_wild_bcd_oper_free_wild_bcd_replicated_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1140)) if mibBuilder.loadTexts: mscExampleWildBcdOperFreeWildBcdReplicatedTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleWildBcdOperFreeWildBcdReplicatedTable.setDescription('') msc_example_wild_bcd_oper_free_wild_bcd_replicated_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1140, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleWildBcdIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleWildBcdOperFreeWildBcdReplicatedIndex')) if mibBuilder.loadTexts: mscExampleWildBcdOperFreeWildBcdReplicatedEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleWildBcdOperFreeWildBcdReplicatedEntry.setDescription('An entry in the mscExampleWildBcdOperFreeWildBcdReplicatedTable.') msc_example_wild_bcd_oper_free_wild_bcd_replicated_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1140, 1, 1), wildcarded_digit_string().subtype(subtypeSpec=value_size_constraint(0, 5))) if mibBuilder.loadTexts: mscExampleWildBcdOperFreeWildBcdReplicatedIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleWildBcdOperFreeWildBcdReplicatedIndex.setDescription('This variable represents the index for the mscExampleWildBcdOperFreeWildBcdReplicatedTable.') msc_example_wild_bcd_oper_free_wild_bcd_replicated_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1140, 1, 2), wildcarded_digit_string().subtype(subtypeSpec=value_size_constraint(0, 16))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleWildBcdOperFreeWildBcdReplicatedValue.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleWildBcdOperFreeWildBcdReplicatedValue.setDescription('This variable represents an individual value for the mscExampleWildBcdOperFreeWildBcdReplicatedTable.') msc_example_wild_bcd_oper_free_wild_bcd_replicated_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1140, 1, 3), row_status()).setMaxAccess('writeonly') if mibBuilder.loadTexts: mscExampleWildBcdOperFreeWildBcdReplicatedRowStatus.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleWildBcdOperFreeWildBcdReplicatedRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleWildBcdOperFreeWildBcdReplicatedTable.') msc_example_wild_bcd_oper_free_wild_bcd_list_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1141)) if mibBuilder.loadTexts: mscExampleWildBcdOperFreeWildBcdListTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleWildBcdOperFreeWildBcdListTable.setDescription('') msc_example_wild_bcd_oper_free_wild_bcd_list_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1141, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleWildBcdIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleWildBcdOperFreeWildBcdListValue')) if mibBuilder.loadTexts: mscExampleWildBcdOperFreeWildBcdListEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleWildBcdOperFreeWildBcdListEntry.setDescription('An entry in the mscExampleWildBcdOperFreeWildBcdListTable.') msc_example_wild_bcd_oper_free_wild_bcd_list_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1141, 1, 1), wildcarded_digit_string().subtype(subtypeSpec=value_size_constraint(0, 16))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleWildBcdOperFreeWildBcdListValue.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleWildBcdOperFreeWildBcdListValue.setDescription('This variable represents both the value and the index for the mscExampleWildBcdOperFreeWildBcdListTable.') msc_example_wild_bcd_oper_free_wild_bcd_list_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1141, 1, 2), row_status()).setMaxAccess('writeonly') if mibBuilder.loadTexts: mscExampleWildBcdOperFreeWildBcdListRowStatus.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleWildBcdOperFreeWildBcdListRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleWildBcdOperFreeWildBcdListTable.') msc_example_wild_bcd_prov_struct_wild_bcd_vector_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1142)) if mibBuilder.loadTexts: mscExampleWildBcdProvStructWildBcdVectorTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleWildBcdProvStructWildBcdVectorTable.setDescription('') msc_example_wild_bcd_prov_struct_wild_bcd_vector_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1142, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleWildBcdIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleWildBcdProvStructWildBcdVectorIndex')) if mibBuilder.loadTexts: mscExampleWildBcdProvStructWildBcdVectorEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleWildBcdProvStructWildBcdVectorEntry.setDescription('An entry in the mscExampleWildBcdProvStructWildBcdVectorTable.') msc_example_wild_bcd_prov_struct_wild_bcd_vector_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1142, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 9))) if mibBuilder.loadTexts: mscExampleWildBcdProvStructWildBcdVectorIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleWildBcdProvStructWildBcdVectorIndex.setDescription('This variable represents the mscExampleWildBcdProvStructWildBcdVectorTable specific index for the mscExampleWildBcdProvStructWildBcdVectorTable.') msc_example_wild_bcd_prov_struct_wild_bcd_vector_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1142, 1, 2), wildcarded_digit_string().subtype(subtypeSpec=value_size_constraint(0, 5))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleWildBcdProvStructWildBcdVectorValue.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleWildBcdProvStructWildBcdVectorValue.setDescription('This variable represents an individual value for the mscExampleWildBcdProvStructWildBcdVectorTable.') msc_example_wild_bcd_prov_struct_wild_bcd_array_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1143)) if mibBuilder.loadTexts: mscExampleWildBcdProvStructWildBcdArrayTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleWildBcdProvStructWildBcdArrayTable.setDescription('') msc_example_wild_bcd_prov_struct_wild_bcd_array_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1143, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleWildBcdIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleWildBcdProvStructWildBcdArrayRowIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleWildBcdProvStructWildBcdArrayColumnIndex')) if mibBuilder.loadTexts: mscExampleWildBcdProvStructWildBcdArrayEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleWildBcdProvStructWildBcdArrayEntry.setDescription('An entry in the mscExampleWildBcdProvStructWildBcdArrayTable.') msc_example_wild_bcd_prov_struct_wild_bcd_array_row_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1143, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 2))) if mibBuilder.loadTexts: mscExampleWildBcdProvStructWildBcdArrayRowIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleWildBcdProvStructWildBcdArrayRowIndex.setDescription('This variable represents the next to last index for the mscExampleWildBcdProvStructWildBcdArrayTable.') msc_example_wild_bcd_prov_struct_wild_bcd_array_column_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1143, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 3))) if mibBuilder.loadTexts: mscExampleWildBcdProvStructWildBcdArrayColumnIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleWildBcdProvStructWildBcdArrayColumnIndex.setDescription('This variable represents the final index for the mscExampleWildBcdProvStructWildBcdArrayTable.') msc_example_wild_bcd_prov_struct_wild_bcd_array_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1143, 1, 3), wildcarded_digit_string().subtype(subtypeSpec=value_size_constraint(0, 5))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleWildBcdProvStructWildBcdArrayValue.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleWildBcdProvStructWildBcdArrayValue.setDescription('This variable represents an individual value for the mscExampleWildBcdProvStructWildBcdArrayTable.') msc_example_wild_bcd_prov_free_wild_bcd_vector_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1144)) if mibBuilder.loadTexts: mscExampleWildBcdProvFreeWildBcdVectorTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleWildBcdProvFreeWildBcdVectorTable.setDescription('') msc_example_wild_bcd_prov_free_wild_bcd_vector_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1144, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleWildBcdIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleWildBcdProvFreeWildBcdVectorIndex')) if mibBuilder.loadTexts: mscExampleWildBcdProvFreeWildBcdVectorEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleWildBcdProvFreeWildBcdVectorEntry.setDescription('An entry in the mscExampleWildBcdProvFreeWildBcdVectorTable.') msc_example_wild_bcd_prov_free_wild_bcd_vector_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1144, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 9))) if mibBuilder.loadTexts: mscExampleWildBcdProvFreeWildBcdVectorIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleWildBcdProvFreeWildBcdVectorIndex.setDescription('This variable represents the mscExampleWildBcdProvFreeWildBcdVectorTable specific index for the mscExampleWildBcdProvFreeWildBcdVectorTable.') msc_example_wild_bcd_prov_free_wild_bcd_vector_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1144, 1, 2), wildcarded_digit_string().subtype(subtypeSpec=value_size_constraint(0, 5))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleWildBcdProvFreeWildBcdVectorValue.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleWildBcdProvFreeWildBcdVectorValue.setDescription('This variable represents an individual value for the mscExampleWildBcdProvFreeWildBcdVectorTable.') msc_example_wild_bcd_prov_free_wild_bcd_array_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1145)) if mibBuilder.loadTexts: mscExampleWildBcdProvFreeWildBcdArrayTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleWildBcdProvFreeWildBcdArrayTable.setDescription('') msc_example_wild_bcd_prov_free_wild_bcd_array_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1145, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleWildBcdIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleWildBcdProvFreeWildBcdArrayRowIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleWildBcdProvFreeWildBcdArrayColumnIndex')) if mibBuilder.loadTexts: mscExampleWildBcdProvFreeWildBcdArrayEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleWildBcdProvFreeWildBcdArrayEntry.setDescription('An entry in the mscExampleWildBcdProvFreeWildBcdArrayTable.') msc_example_wild_bcd_prov_free_wild_bcd_array_row_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1145, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 2))) if mibBuilder.loadTexts: mscExampleWildBcdProvFreeWildBcdArrayRowIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleWildBcdProvFreeWildBcdArrayRowIndex.setDescription('This variable represents the next to last index for the mscExampleWildBcdProvFreeWildBcdArrayTable.') msc_example_wild_bcd_prov_free_wild_bcd_array_column_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1145, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 3))) if mibBuilder.loadTexts: mscExampleWildBcdProvFreeWildBcdArrayColumnIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleWildBcdProvFreeWildBcdArrayColumnIndex.setDescription('This variable represents the final index for the mscExampleWildBcdProvFreeWildBcdArrayTable.') msc_example_wild_bcd_prov_free_wild_bcd_array_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1145, 1, 3), wildcarded_digit_string().subtype(subtypeSpec=value_size_constraint(0, 5))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleWildBcdProvFreeWildBcdArrayValue.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleWildBcdProvFreeWildBcdArrayValue.setDescription('This variable represents an individual value for the mscExampleWildBcdProvFreeWildBcdArrayTable.') msc_example_wild_bcd_prov_free_wild_bcd_replicated_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1146)) if mibBuilder.loadTexts: mscExampleWildBcdProvFreeWildBcdReplicatedTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleWildBcdProvFreeWildBcdReplicatedTable.setDescription('') msc_example_wild_bcd_prov_free_wild_bcd_replicated_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1146, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleWildBcdIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleWildBcdProvFreeWildBcdReplicatedIndex')) if mibBuilder.loadTexts: mscExampleWildBcdProvFreeWildBcdReplicatedEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleWildBcdProvFreeWildBcdReplicatedEntry.setDescription('An entry in the mscExampleWildBcdProvFreeWildBcdReplicatedTable.') msc_example_wild_bcd_prov_free_wild_bcd_replicated_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1146, 1, 1), wildcarded_digit_string().subtype(subtypeSpec=value_size_constraint(0, 5))) if mibBuilder.loadTexts: mscExampleWildBcdProvFreeWildBcdReplicatedIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleWildBcdProvFreeWildBcdReplicatedIndex.setDescription('This variable represents the index for the mscExampleWildBcdProvFreeWildBcdReplicatedTable.') msc_example_wild_bcd_prov_free_wild_bcd_replicated_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1146, 1, 2), wildcarded_digit_string().subtype(subtypeSpec=value_size_constraint(0, 16))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleWildBcdProvFreeWildBcdReplicatedValue.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleWildBcdProvFreeWildBcdReplicatedValue.setDescription('This variable represents an individual value for the mscExampleWildBcdProvFreeWildBcdReplicatedTable.') msc_example_wild_bcd_prov_free_wild_bcd_replicated_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1146, 1, 3), row_status()).setMaxAccess('writeonly') if mibBuilder.loadTexts: mscExampleWildBcdProvFreeWildBcdReplicatedRowStatus.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleWildBcdProvFreeWildBcdReplicatedRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleWildBcdProvFreeWildBcdReplicatedTable.') msc_example_wild_bcd_prov_free_wild_bcd_list_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1147)) if mibBuilder.loadTexts: mscExampleWildBcdProvFreeWildBcdListTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleWildBcdProvFreeWildBcdListTable.setDescription('') msc_example_wild_bcd_prov_free_wild_bcd_list_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1147, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleWildBcdIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleWildBcdProvFreeWildBcdListValue')) if mibBuilder.loadTexts: mscExampleWildBcdProvFreeWildBcdListEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleWildBcdProvFreeWildBcdListEntry.setDescription('An entry in the mscExampleWildBcdProvFreeWildBcdListTable.') msc_example_wild_bcd_prov_free_wild_bcd_list_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1147, 1, 1), wildcarded_digit_string().subtype(subtypeSpec=value_size_constraint(0, 16))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleWildBcdProvFreeWildBcdListValue.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleWildBcdProvFreeWildBcdListValue.setDescription('This variable represents both the value and the index for the mscExampleWildBcdProvFreeWildBcdListTable.') msc_example_wild_bcd_prov_free_wild_bcd_list_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1147, 1, 2), row_status()).setMaxAccess('writeonly') if mibBuilder.loadTexts: mscExampleWildBcdProvFreeWildBcdListRowStatus.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleWildBcdProvFreeWildBcdListRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleWildBcdProvFreeWildBcdListTable.') msc_example_enum = mib_identifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11)) msc_example_enum_row_status_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1)) if mibBuilder.loadTexts: mscExampleEnumRowStatusTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleEnumRowStatusTable.setDescription('This entry controls the addition and deletion of mscExampleEnum components.') msc_example_enum_row_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleEnumIndex')) if mibBuilder.loadTexts: mscExampleEnumRowStatusEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleEnumRowStatusEntry.setDescription('A single entry in the table represents a single mscExampleEnum component.') msc_example_enum_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1, 1, 1), row_status()).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleEnumRowStatus.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleEnumRowStatus.setDescription('This variable is used as the basis for SNMP naming of mscExampleEnum components. These components can be added and deleted.') msc_example_enum_component_name = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1, 1, 2), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscExampleEnumComponentName.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleEnumComponentName.setDescription("This variable provides the component's string name for use with the ASCII Console Interface") msc_example_enum_storage_type = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1, 1, 4), storage_type()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscExampleEnumStorageType.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleEnumStorageType.setDescription('This variable represents the storage type value for the mscExampleEnum tables.') msc_example_enum_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1, 1, 10), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('first', 1), ('second', 2), ('third', 3)))) if mibBuilder.loadTexts: mscExampleEnumIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleEnumIndex.setDescription('This variable represents the index for the mscExampleEnum tables.') msc_example_enum_operational_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 10)) if mibBuilder.loadTexts: mscExampleEnumOperationalTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleEnumOperationalTable.setDescription('') msc_example_enum_operational_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 10, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleEnumIndex')) if mibBuilder.loadTexts: mscExampleEnumOperationalEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleEnumOperationalEntry.setDescription('An entry in the mscExampleEnumOperationalTable.') msc_example_enum_oper_struct_enum = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 10, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4))).clone(namedValues=named_values(('monday', 0), ('tuesday', 1), ('wednesday', 2), ('thursday', 3), ('friday', 4)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleEnumOperStructEnum.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleEnumOperStructEnum.setDescription('') msc_example_enum_oper_struct_enum_set = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 10, 1, 2), octet_string().subtype(subtypeSpec=value_size_constraint(1, 1)).setFixedLength(1)).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleEnumOperStructEnumSet.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleEnumOperStructEnumSet.setDescription('Description of bits: monday(0) tuesday(1) wednesday(2) thursday(3) friday(4) saturday(5) sunday(6)') msc_example_enum_oper_free_enum = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 10, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5))).clone(namedValues=named_values(('january', 0), ('february', 1), ('march', 2), ('april', 3), ('may', 4), ('june', 5)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleEnumOperFreeEnum.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleEnumOperFreeEnum.setDescription('') msc_example_enum_oper_free_enum_set = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 10, 1, 4), octet_string().subtype(subtypeSpec=value_size_constraint(2, 2)).setFixedLength(2)).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleEnumOperFreeEnumSet.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleEnumOperFreeEnumSet.setDescription('Description of bits: notused0(0) notused1(1) notused2(2) notused3(3) notused4(4) notused5(5) july(6) august(7) september(8) october(9) november(10) december(11)') msc_example_enum_provisional_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 11)) if mibBuilder.loadTexts: mscExampleEnumProvisionalTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleEnumProvisionalTable.setDescription('') msc_example_enum_provisional_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 11, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleEnumIndex')) if mibBuilder.loadTexts: mscExampleEnumProvisionalEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleEnumProvisionalEntry.setDescription('An entry in the mscExampleEnumProvisionalTable.') msc_example_enum_prov_enum_sub = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 11, 1, 1), link()).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleEnumProvEnumSub.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleEnumProvEnumSub.setDescription('') msc_example_enum_prov_struct_enum = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 11, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4))).clone(namedValues=named_values(('monday', 0), ('tuesday', 1), ('wednesday', 2), ('thursday', 3), ('friday', 4))).clone('friday')).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleEnumProvStructEnum.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleEnumProvStructEnum.setDescription('') msc_example_enum_prov_struct_enum_set = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 11, 1, 3), octet_string().subtype(subtypeSpec=value_size_constraint(1, 1)).setFixedLength(1).clone(hexValue='aa')).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleEnumProvStructEnumSet.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleEnumProvStructEnumSet.setDescription('Description of bits: monday(0) tuesday(1) wednesday(2) thursday(3) friday(4) saturday(5) sunday(6)') msc_example_enum_prov_free_enum = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 11, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5))).clone(namedValues=named_values(('january', 0), ('february', 1), ('march', 2), ('april', 3), ('may', 4), ('june', 5))).clone('may')).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleEnumProvFreeEnum.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleEnumProvFreeEnum.setDescription('') msc_example_enum_prov_free_enum1 = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 11, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 11, 12, 13, 14))).clone(namedValues=named_values(('apple', 1), ('orange', 2), ('banana', 3), ('pear', 11), ('grapes', 12), ('pineapple', 13), ('watermelon', 14)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleEnumProvFreeEnum1.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleEnumProvFreeEnum1.setDescription('') msc_example_enum_prov_free_enum_set = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 11, 1, 6), octet_string().subtype(subtypeSpec=value_size_constraint(2, 2)).setFixedLength(2).clone(hexValue='0070')).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumSet.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumSet.setDescription('Description of bits: notused0(0) notused1(1) notused2(2) notused3(3) notused4(4) notused5(5) july(6) august(7) september(8) october(9) november(10) december(11)') msc_example_enum_prov_free_enum_set1 = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 11, 1, 7), octet_string().subtype(subtypeSpec=value_size_constraint(2, 2)).setFixedLength(2)).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumSet1.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumSet1.setDescription('Description of bits: notused0(0) apple(1) orange(2) banana(3) notused4(4) notused5(5) notused6(6) notused7(7) notused8(8) notused9(9) notused10(10) pear(11) grapes(12) pineapple(13) watermelon(14)') msc_example_enum_oper_struct_enum_vector_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1162)) if mibBuilder.loadTexts: mscExampleEnumOperStructEnumVectorTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleEnumOperStructEnumVectorTable.setDescription('') msc_example_enum_oper_struct_enum_vector_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1162, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleEnumIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleEnumOperStructEnumVectorIndex')) if mibBuilder.loadTexts: mscExampleEnumOperStructEnumVectorEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleEnumOperStructEnumVectorEntry.setDescription('An entry in the mscExampleEnumOperStructEnumVectorTable.') msc_example_enum_oper_struct_enum_vector_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1162, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5, 6))).clone(namedValues=named_values(('monday', 0), ('tuesday', 1), ('wednesday', 2), ('thursday', 3), ('friday', 4), ('saturday', 5), ('sunday', 6)))) if mibBuilder.loadTexts: mscExampleEnumOperStructEnumVectorIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleEnumOperStructEnumVectorIndex.setDescription('This variable represents the mscExampleEnumOperStructEnumVectorTable specific index for the mscExampleEnumOperStructEnumVectorTable.') msc_example_enum_oper_struct_enum_vector_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1162, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5, 6))).clone(namedValues=named_values(('monday', 0), ('tuesday', 1), ('wednesday', 2), ('thursday', 3), ('friday', 4), ('saturday', 5), ('sunday', 6)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleEnumOperStructEnumVectorValue.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleEnumOperStructEnumVectorValue.setDescription('This variable represents an individual value for the mscExampleEnumOperStructEnumVectorTable.') msc_example_enum_oper_struct_enum_array_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1163)) if mibBuilder.loadTexts: mscExampleEnumOperStructEnumArrayTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleEnumOperStructEnumArrayTable.setDescription('') msc_example_enum_oper_struct_enum_array_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1163, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleEnumIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleEnumOperStructEnumArrayMonthIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleEnumOperStructEnumArrayDayIndex')) if mibBuilder.loadTexts: mscExampleEnumOperStructEnumArrayEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleEnumOperStructEnumArrayEntry.setDescription('An entry in the mscExampleEnumOperStructEnumArrayTable.') msc_example_enum_oper_struct_enum_array_month_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1163, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11))).clone(namedValues=named_values(('january', 0), ('february', 1), ('march', 2), ('april', 3), ('may', 4), ('june', 5), ('july', 6), ('august', 7), ('september', 8), ('october', 9), ('november', 10), ('december', 11)))) if mibBuilder.loadTexts: mscExampleEnumOperStructEnumArrayMonthIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleEnumOperStructEnumArrayMonthIndex.setDescription('This variable represents the next to last index for the mscExampleEnumOperStructEnumArrayTable.') msc_example_enum_oper_struct_enum_array_day_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1163, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5, 6))).clone(namedValues=named_values(('mondayaaaa', 0), ('tuesdayaaaa', 1), ('wednesdayaaaa', 2), ('thursdayaaaa', 3), ('fridayaaaa', 4), ('saturdayaaaa', 5), ('sundayaaaa', 6)))) if mibBuilder.loadTexts: mscExampleEnumOperStructEnumArrayDayIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleEnumOperStructEnumArrayDayIndex.setDescription('This variable represents the final index for the mscExampleEnumOperStructEnumArrayTable.') msc_example_enum_oper_struct_enum_array_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1163, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11))).clone(namedValues=named_values(('january', 0), ('february', 1), ('march', 2), ('april', 3), ('may', 4), ('june', 5), ('july', 6), ('august', 7), ('september', 8), ('october', 9), ('november', 10), ('december', 11)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleEnumOperStructEnumArrayValue.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleEnumOperStructEnumArrayValue.setDescription('This variable represents an individual value for the mscExampleEnumOperStructEnumArrayTable.') msc_example_enum_oper_free_enum_vector_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1164)) if mibBuilder.loadTexts: mscExampleEnumOperFreeEnumVectorTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleEnumOperFreeEnumVectorTable.setDescription('') msc_example_enum_oper_free_enum_vector_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1164, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleEnumIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleEnumOperFreeEnumVectorIndex')) if mibBuilder.loadTexts: mscExampleEnumOperFreeEnumVectorEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleEnumOperFreeEnumVectorEntry.setDescription('An entry in the mscExampleEnumOperFreeEnumVectorTable.') msc_example_enum_oper_free_enum_vector_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1164, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5, 6))).clone(namedValues=named_values(('monday', 0), ('tuesday', 1), ('wednesday', 2), ('thursday', 3), ('friday', 4), ('saturday', 5), ('sunday', 6)))) if mibBuilder.loadTexts: mscExampleEnumOperFreeEnumVectorIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleEnumOperFreeEnumVectorIndex.setDescription('This variable represents the mscExampleEnumOperFreeEnumVectorTable specific index for the mscExampleEnumOperFreeEnumVectorTable.') msc_example_enum_oper_free_enum_vector_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1164, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4))).clone(namedValues=named_values(('monday', 0), ('tuesday', 1), ('wednesday', 2), ('thursday', 3), ('friday', 4)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleEnumOperFreeEnumVectorValue.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleEnumOperFreeEnumVectorValue.setDescription('This variable represents an individual value for the mscExampleEnumOperFreeEnumVectorTable.') msc_example_enum_oper_free_enum_array_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1165)) if mibBuilder.loadTexts: mscExampleEnumOperFreeEnumArrayTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleEnumOperFreeEnumArrayTable.setDescription('') msc_example_enum_oper_free_enum_array_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1165, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleEnumIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleEnumOperFreeEnumArrayMonthIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleEnumOperFreeEnumArrayDayIndex')) if mibBuilder.loadTexts: mscExampleEnumOperFreeEnumArrayEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleEnumOperFreeEnumArrayEntry.setDescription('An entry in the mscExampleEnumOperFreeEnumArrayTable.') msc_example_enum_oper_free_enum_array_month_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1165, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11))).clone(namedValues=named_values(('january', 0), ('february', 1), ('march', 2), ('april', 3), ('may', 4), ('june', 5), ('july', 6), ('august', 7), ('september', 8), ('october', 9), ('november', 10), ('december', 11)))) if mibBuilder.loadTexts: mscExampleEnumOperFreeEnumArrayMonthIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleEnumOperFreeEnumArrayMonthIndex.setDescription('This variable represents the next to last index for the mscExampleEnumOperFreeEnumArrayTable.') msc_example_enum_oper_free_enum_array_day_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1165, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5, 6))).clone(namedValues=named_values(('monday', 0), ('tuesday', 1), ('wednesday', 2), ('thursday', 3), ('friday', 4), ('saturday', 5), ('sunday', 6)))) if mibBuilder.loadTexts: mscExampleEnumOperFreeEnumArrayDayIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleEnumOperFreeEnumArrayDayIndex.setDescription('This variable represents the final index for the mscExampleEnumOperFreeEnumArrayTable.') msc_example_enum_oper_free_enum_array_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1165, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11))).clone(namedValues=named_values(('january', 0), ('february', 1), ('march', 2), ('april', 3), ('may', 4), ('june', 5), ('july', 6), ('august', 7), ('september', 8), ('october', 9), ('november', 10), ('december', 11)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleEnumOperFreeEnumArrayValue.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleEnumOperFreeEnumArrayValue.setDescription('This variable represents an individual value for the mscExampleEnumOperFreeEnumArrayTable.') msc_example_enum_oper_free_enum_replicated_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1166)) if mibBuilder.loadTexts: mscExampleEnumOperFreeEnumReplicatedTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleEnumOperFreeEnumReplicatedTable.setDescription('') msc_example_enum_oper_free_enum_replicated_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1166, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleEnumIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleEnumOperFreeEnumReplicatedIndex')) if mibBuilder.loadTexts: mscExampleEnumOperFreeEnumReplicatedEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleEnumOperFreeEnumReplicatedEntry.setDescription('An entry in the mscExampleEnumOperFreeEnumReplicatedTable.') msc_example_enum_oper_free_enum_replicated_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1166, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5, 6))).clone(namedValues=named_values(('monday', 0), ('tuesday', 1), ('wednesday', 2), ('thursday', 3), ('friday', 4), ('saturday', 5), ('sunday', 6)))) if mibBuilder.loadTexts: mscExampleEnumOperFreeEnumReplicatedIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleEnumOperFreeEnumReplicatedIndex.setDescription('This variable represents the index for the mscExampleEnumOperFreeEnumReplicatedTable.') msc_example_enum_oper_free_enum_replicated_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1166, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11))).clone(namedValues=named_values(('january', 0), ('february', 1), ('march', 2), ('april', 3), ('may', 4), ('june', 5), ('july', 6), ('august', 7), ('september', 8), ('october', 9), ('november', 10), ('december', 11)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleEnumOperFreeEnumReplicatedValue.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleEnumOperFreeEnumReplicatedValue.setDescription('This variable represents an individual value for the mscExampleEnumOperFreeEnumReplicatedTable.') msc_example_enum_oper_free_enum_replicated_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1166, 1, 3), row_status()).setMaxAccess('writeonly') if mibBuilder.loadTexts: mscExampleEnumOperFreeEnumReplicatedRowStatus.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleEnumOperFreeEnumReplicatedRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleEnumOperFreeEnumReplicatedTable.') msc_example_enum_oper_free_enum_list_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1167)) if mibBuilder.loadTexts: mscExampleEnumOperFreeEnumListTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleEnumOperFreeEnumListTable.setDescription('') msc_example_enum_oper_free_enum_list_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1167, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleEnumIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleEnumOperFreeEnumListValue')) if mibBuilder.loadTexts: mscExampleEnumOperFreeEnumListEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleEnumOperFreeEnumListEntry.setDescription('An entry in the mscExampleEnumOperFreeEnumListTable.') msc_example_enum_oper_free_enum_list_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1167, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11))).clone(namedValues=named_values(('january', 0), ('february', 1), ('march', 2), ('april', 3), ('may', 4), ('june', 5), ('july', 6), ('august', 7), ('september', 8), ('october', 9), ('november', 10), ('december', 11)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleEnumOperFreeEnumListValue.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleEnumOperFreeEnumListValue.setDescription('This variable represents both the value and the index for the mscExampleEnumOperFreeEnumListTable.') msc_example_enum_oper_free_enum_list_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1167, 1, 2), row_status()).setMaxAccess('writeonly') if mibBuilder.loadTexts: mscExampleEnumOperFreeEnumListRowStatus.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleEnumOperFreeEnumListRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleEnumOperFreeEnumListTable.') msc_example_enum_prov_struct_enum_vector_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1168)) if mibBuilder.loadTexts: mscExampleEnumProvStructEnumVectorTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleEnumProvStructEnumVectorTable.setDescription('') msc_example_enum_prov_struct_enum_vector_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1168, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleEnumIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleEnumProvStructEnumVectorIndex')) if mibBuilder.loadTexts: mscExampleEnumProvStructEnumVectorEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleEnumProvStructEnumVectorEntry.setDescription('An entry in the mscExampleEnumProvStructEnumVectorTable.') msc_example_enum_prov_struct_enum_vector_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1168, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5, 6))).clone(namedValues=named_values(('monday', 0), ('tuesday', 1), ('wednesday', 2), ('thursday', 3), ('friday', 4), ('saturday', 5), ('sunday', 6)))) if mibBuilder.loadTexts: mscExampleEnumProvStructEnumVectorIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleEnumProvStructEnumVectorIndex.setDescription('This variable represents the mscExampleEnumProvStructEnumVectorTable specific index for the mscExampleEnumProvStructEnumVectorTable.') msc_example_enum_prov_struct_enum_vector_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1168, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4))).clone(namedValues=named_values(('monday', 0), ('tuesday', 1), ('wednesday', 2), ('thursday', 3), ('friday', 4)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleEnumProvStructEnumVectorValue.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleEnumProvStructEnumVectorValue.setDescription('This variable represents an individual value for the mscExampleEnumProvStructEnumVectorTable.') msc_example_enum_prov_struct_enum_array_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1169)) if mibBuilder.loadTexts: mscExampleEnumProvStructEnumArrayTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleEnumProvStructEnumArrayTable.setDescription('') msc_example_enum_prov_struct_enum_array_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1169, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleEnumIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleEnumProvStructEnumArrayMonthIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleEnumProvStructEnumArrayDayIndex')) if mibBuilder.loadTexts: mscExampleEnumProvStructEnumArrayEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleEnumProvStructEnumArrayEntry.setDescription('An entry in the mscExampleEnumProvStructEnumArrayTable.') msc_example_enum_prov_struct_enum_array_month_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1169, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11))).clone(namedValues=named_values(('january', 0), ('february', 1), ('march', 2), ('april', 3), ('may', 4), ('june', 5), ('july', 6), ('august', 7), ('september', 8), ('october', 9), ('november', 10), ('december', 11)))) if mibBuilder.loadTexts: mscExampleEnumProvStructEnumArrayMonthIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleEnumProvStructEnumArrayMonthIndex.setDescription('This variable represents the next to last index for the mscExampleEnumProvStructEnumArrayTable.') msc_example_enum_prov_struct_enum_array_day_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1169, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5, 6))).clone(namedValues=named_values(('monday', 0), ('tuesday', 1), ('wednesday', 2), ('thursday', 3), ('friday', 4), ('saturday', 5), ('sunday', 6)))) if mibBuilder.loadTexts: mscExampleEnumProvStructEnumArrayDayIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleEnumProvStructEnumArrayDayIndex.setDescription('This variable represents the final index for the mscExampleEnumProvStructEnumArrayTable.') msc_example_enum_prov_struct_enum_array_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1169, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11))).clone(namedValues=named_values(('january', 0), ('february', 1), ('march', 2), ('april', 3), ('may', 4), ('june', 5), ('july', 6), ('august', 7), ('september', 8), ('october', 9), ('november', 10), ('december', 11)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleEnumProvStructEnumArrayValue.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleEnumProvStructEnumArrayValue.setDescription('This variable represents an individual value for the mscExampleEnumProvStructEnumArrayTable.') msc_example_enum_prov_free_enum_vector_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1170)) if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumVectorTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumVectorTable.setDescription('') msc_example_enum_prov_free_enum_vector_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1170, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleEnumIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleEnumProvFreeEnumVectorIndex')) if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumVectorEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumVectorEntry.setDescription('An entry in the mscExampleEnumProvFreeEnumVectorTable.') msc_example_enum_prov_free_enum_vector_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1170, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5, 6))).clone(namedValues=named_values(('monday', 0), ('tuesday', 1), ('wednesday', 2), ('thursday', 3), ('friday', 4), ('saturday', 5), ('sunday', 6)))) if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumVectorIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumVectorIndex.setDescription('This variable represents the mscExampleEnumProvFreeEnumVectorTable specific index for the mscExampleEnumProvFreeEnumVectorTable.') msc_example_enum_prov_free_enum_vector_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1170, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4))).clone(namedValues=named_values(('monday', 0), ('tuesday', 1), ('wednesday', 2), ('thursday', 3), ('friday', 4)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumVectorValue.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumVectorValue.setDescription('This variable represents an individual value for the mscExampleEnumProvFreeEnumVectorTable.') msc_example_enum_prov_free_enum_vector1_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1171)) if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumVector1Table.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumVector1Table.setDescription('') msc_example_enum_prov_free_enum_vector1_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1171, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleEnumIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleEnumProvFreeEnumVector1Index')) if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumVector1Entry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumVector1Entry.setDescription('An entry in the mscExampleEnumProvFreeEnumVector1Table.') msc_example_enum_prov_free_enum_vector1_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1171, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5, 6))).clone(namedValues=named_values(('monday', 0), ('tuesday', 1), ('wednesday', 2), ('thursday', 3), ('friday', 4), ('saturday', 5), ('sunday', 6)))) if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumVector1Index.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumVector1Index.setDescription('This variable represents the mscExampleEnumProvFreeEnumVector1Table specific index for the mscExampleEnumProvFreeEnumVector1Table.') msc_example_enum_prov_free_enum_vector1_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1171, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4))).clone(namedValues=named_values(('january', 0), ('february', 1), ('march', 2), ('april', 3), ('may', 4)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumVector1Value.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumVector1Value.setDescription('This variable represents an individual value for the mscExampleEnumProvFreeEnumVector1Table.') msc_example_enum_prov_free_enum_array_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1172)) if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumArrayTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumArrayTable.setDescription('') msc_example_enum_prov_free_enum_array_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1172, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleEnumIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleEnumProvFreeEnumArrayMonthIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleEnumProvFreeEnumArrayDayIndex')) if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumArrayEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumArrayEntry.setDescription('An entry in the mscExampleEnumProvFreeEnumArrayTable.') msc_example_enum_prov_free_enum_array_month_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1172, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11))).clone(namedValues=named_values(('january', 0), ('february', 1), ('march', 2), ('april', 3), ('may', 4), ('june', 5), ('july', 6), ('august', 7), ('september', 8), ('october', 9), ('november', 10), ('december', 11)))) if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumArrayMonthIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumArrayMonthIndex.setDescription('This variable represents the next to last index for the mscExampleEnumProvFreeEnumArrayTable.') msc_example_enum_prov_free_enum_array_day_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1172, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5, 6))).clone(namedValues=named_values(('monday', 0), ('tuesday', 1), ('wednesday', 2), ('thursday', 3), ('friday', 4), ('saturday', 5), ('sunday', 6)))) if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumArrayDayIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumArrayDayIndex.setDescription('This variable represents the final index for the mscExampleEnumProvFreeEnumArrayTable.') msc_example_enum_prov_free_enum_array_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1172, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11))).clone(namedValues=named_values(('january', 0), ('february', 1), ('march', 2), ('april', 3), ('may', 4), ('june', 5), ('july', 6), ('august', 7), ('september', 8), ('october', 9), ('november', 10), ('december', 11)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumArrayValue.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumArrayValue.setDescription('This variable represents an individual value for the mscExampleEnumProvFreeEnumArrayTable.') msc_example_enum_prov_free_enum_array1_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1173)) if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumArray1Table.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumArray1Table.setDescription('') msc_example_enum_prov_free_enum_array1_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1173, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleEnumIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleEnumProvFreeEnumArray1MonthIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleEnumProvFreeEnumArray1DayIndex')) if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumArray1Entry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumArray1Entry.setDescription('An entry in the mscExampleEnumProvFreeEnumArray1Table.') msc_example_enum_prov_free_enum_array1_month_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1173, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11))).clone(namedValues=named_values(('january', 0), ('february', 1), ('march', 2), ('april', 3), ('may', 4), ('june', 5), ('july', 6), ('august', 7), ('september', 8), ('october', 9), ('november', 10), ('december', 11)))) if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumArray1MonthIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumArray1MonthIndex.setDescription('This variable represents the next to last index for the mscExampleEnumProvFreeEnumArray1Table.') msc_example_enum_prov_free_enum_array1_day_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1173, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5, 6))).clone(namedValues=named_values(('monday', 0), ('tuesday', 1), ('wednesday', 2), ('thursday', 3), ('friday', 4), ('saturday', 5), ('sunday', 6)))) if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumArray1DayIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumArray1DayIndex.setDescription('This variable represents the final index for the mscExampleEnumProvFreeEnumArray1Table.') msc_example_enum_prov_free_enum_array1_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1173, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 11, 12, 13, 14))).clone(namedValues=named_values(('apple', 1), ('orange', 2), ('banana', 3), ('pear', 11), ('grapes', 12), ('pineapple', 13), ('watermelon', 14)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumArray1Value.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumArray1Value.setDescription('This variable represents an individual value for the mscExampleEnumProvFreeEnumArray1Table.') msc_example_enum_prov_free_enum_replicated_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1174)) if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumReplicatedTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumReplicatedTable.setDescription('') msc_example_enum_prov_free_enum_replicated_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1174, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleEnumIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleEnumProvFreeEnumReplicatedIndex')) if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumReplicatedEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumReplicatedEntry.setDescription('An entry in the mscExampleEnumProvFreeEnumReplicatedTable.') msc_example_enum_prov_free_enum_replicated_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1174, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5, 6))).clone(namedValues=named_values(('monday', 0), ('tuesday', 1), ('wednesday', 2), ('thursday', 3), ('friday', 4), ('saturday', 5), ('sunday', 6)))) if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumReplicatedIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumReplicatedIndex.setDescription('This variable represents the index for the mscExampleEnumProvFreeEnumReplicatedTable.') msc_example_enum_prov_free_enum_replicated_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1174, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11))).clone(namedValues=named_values(('january', 0), ('february', 1), ('march', 2), ('april', 3), ('may', 4), ('june', 5), ('july', 6), ('august', 7), ('september', 8), ('october', 9), ('november', 10), ('december', 11)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumReplicatedValue.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumReplicatedValue.setDescription('This variable represents an individual value for the mscExampleEnumProvFreeEnumReplicatedTable.') msc_example_enum_prov_free_enum_replicated_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1174, 1, 3), row_status()).setMaxAccess('writeonly') if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumReplicatedRowStatus.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumReplicatedRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleEnumProvFreeEnumReplicatedTable.') msc_example_enum_prov_free_enum_list_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1175)) if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumListTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumListTable.setDescription('') msc_example_enum_prov_free_enum_list_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1175, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleEnumIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleEnumProvFreeEnumListValue')) if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumListEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumListEntry.setDescription('An entry in the mscExampleEnumProvFreeEnumListTable.') msc_example_enum_prov_free_enum_list_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1175, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11))).clone(namedValues=named_values(('january', 0), ('february', 1), ('march', 2), ('april', 3), ('may', 4), ('june', 5), ('july', 6), ('august', 7), ('september', 8), ('october', 9), ('november', 10), ('december', 11)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumListValue.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumListValue.setDescription('This variable represents both the value and the index for the mscExampleEnumProvFreeEnumListTable.') msc_example_enum_prov_free_enum_list_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1175, 1, 2), row_status()).setMaxAccess('writeonly') if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumListRowStatus.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumListRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleEnumProvFreeEnumListTable.') msc_example_enum_prov_free_enum_list1_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1176)) if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumList1Table.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumList1Table.setDescription('') msc_example_enum_prov_free_enum_list1_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1176, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleEnumIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleEnumProvFreeEnumList1Value')) if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumList1Entry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumList1Entry.setDescription('An entry in the mscExampleEnumProvFreeEnumList1Table.') msc_example_enum_prov_free_enum_list1_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1176, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11))).clone(namedValues=named_values(('january', 0), ('february', 1), ('march', 2), ('april', 3), ('may', 4), ('june', 5), ('july', 6), ('august', 7), ('september', 8), ('october', 9), ('november', 10), ('december', 11)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumList1Value.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumList1Value.setDescription('This variable represents both the value and the index for the mscExampleEnumProvFreeEnumList1Table.') msc_example_enum_prov_free_enum_list1_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1176, 1, 2), row_status()).setMaxAccess('writeonly') if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumList1RowStatus.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumList1RowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleEnumProvFreeEnumList1Table.') msc_example_object_id = mib_identifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 12)) msc_example_object_id_row_status_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 12, 1)) if mibBuilder.loadTexts: mscExampleObjectIdRowStatusTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleObjectIdRowStatusTable.setDescription('This entry controls the addition and deletion of mscExampleObjectId components.') msc_example_object_id_row_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 12, 1, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleObjectIdIndex')) if mibBuilder.loadTexts: mscExampleObjectIdRowStatusEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleObjectIdRowStatusEntry.setDescription('A single entry in the table represents a single mscExampleObjectId component.') msc_example_object_id_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 12, 1, 1, 1), row_status()).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleObjectIdRowStatus.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleObjectIdRowStatus.setDescription('This variable is used as the basis for SNMP naming of mscExampleObjectId components. These components can be added and deleted.') msc_example_object_id_component_name = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 12, 1, 1, 2), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscExampleObjectIdComponentName.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleObjectIdComponentName.setDescription("This variable provides the component's string name for use with the ASCII Console Interface") msc_example_object_id_storage_type = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 12, 1, 1, 4), storage_type()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscExampleObjectIdStorageType.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleObjectIdStorageType.setDescription('This variable represents the storage type value for the mscExampleObjectId tables.') msc_example_object_id_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 12, 1, 1, 10), object_identifier()) if mibBuilder.loadTexts: mscExampleObjectIdIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleObjectIdIndex.setDescription('This variable represents the index for the mscExampleObjectId tables.') msc_example_object_id_operational_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 12, 10)) if mibBuilder.loadTexts: mscExampleObjectIdOperationalTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleObjectIdOperationalTable.setDescription('') msc_example_object_id_operational_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 12, 10, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleObjectIdIndex')) if mibBuilder.loadTexts: mscExampleObjectIdOperationalEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleObjectIdOperationalEntry.setDescription('An entry in the mscExampleObjectIdOperationalTable.') msc_example_object_id_oper_free_obj_id = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 12, 10, 1, 1), object_identifier()).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleObjectIdOperFreeObjId.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleObjectIdOperFreeObjId.setDescription('') msc_example_object_id_provisional_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 12, 11)) if mibBuilder.loadTexts: mscExampleObjectIdProvisionalTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleObjectIdProvisionalTable.setDescription('') msc_example_object_id_provisional_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 12, 11, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleObjectIdIndex')) if mibBuilder.loadTexts: mscExampleObjectIdProvisionalEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleObjectIdProvisionalEntry.setDescription('An entry in the mscExampleObjectIdProvisionalTable.') msc_example_object_id_prov_enum_sub = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 12, 11, 1, 1), link()).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleObjectIdProvEnumSub.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleObjectIdProvEnumSub.setDescription('') msc_example_object_id_prov_free_obj_id = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 12, 11, 1, 2), object_identifier()).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleObjectIdProvFreeObjId.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleObjectIdProvFreeObjId.setDescription('') msc_example_object_id_oper_free_obj_id_replicated_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 12, 1116)) if mibBuilder.loadTexts: mscExampleObjectIdOperFreeObjIdReplicatedTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleObjectIdOperFreeObjIdReplicatedTable.setDescription('') msc_example_object_id_oper_free_obj_id_replicated_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 12, 1116, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleObjectIdIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleObjectIdOperFreeObjIdReplicatedIndex')) if mibBuilder.loadTexts: mscExampleObjectIdOperFreeObjIdReplicatedEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleObjectIdOperFreeObjIdReplicatedEntry.setDescription('An entry in the mscExampleObjectIdOperFreeObjIdReplicatedTable.') msc_example_object_id_oper_free_obj_id_replicated_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 12, 1116, 1, 1), object_identifier()) if mibBuilder.loadTexts: mscExampleObjectIdOperFreeObjIdReplicatedIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleObjectIdOperFreeObjIdReplicatedIndex.setDescription('This variable represents the index for the mscExampleObjectIdOperFreeObjIdReplicatedTable.') msc_example_object_id_oper_free_obj_id_replicated_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 12, 1116, 1, 2), object_identifier()).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleObjectIdOperFreeObjIdReplicatedValue.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleObjectIdOperFreeObjIdReplicatedValue.setDescription('This variable represents an individual value for the mscExampleObjectIdOperFreeObjIdReplicatedTable.') msc_example_object_id_oper_free_obj_id_replicated_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 12, 1116, 1, 3), row_status()).setMaxAccess('writeonly') if mibBuilder.loadTexts: mscExampleObjectIdOperFreeObjIdReplicatedRowStatus.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleObjectIdOperFreeObjIdReplicatedRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleObjectIdOperFreeObjIdReplicatedTable.') msc_example_object_id_oper_free_obj_id_list_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 12, 1117)) if mibBuilder.loadTexts: mscExampleObjectIdOperFreeObjIdListTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleObjectIdOperFreeObjIdListTable.setDescription('') msc_example_object_id_oper_free_obj_id_list_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 12, 1117, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleObjectIdIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleObjectIdOperFreeObjIdListValue')) if mibBuilder.loadTexts: mscExampleObjectIdOperFreeObjIdListEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleObjectIdOperFreeObjIdListEntry.setDescription('An entry in the mscExampleObjectIdOperFreeObjIdListTable.') msc_example_object_id_oper_free_obj_id_list_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 12, 1117, 1, 1), integer_sequence()).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleObjectIdOperFreeObjIdListValue.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleObjectIdOperFreeObjIdListValue.setDescription('This variable represents both the value and the index for the mscExampleObjectIdOperFreeObjIdListTable.') msc_example_object_id_oper_free_obj_id_list_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 12, 1117, 1, 2), row_status()).setMaxAccess('writeonly') if mibBuilder.loadTexts: mscExampleObjectIdOperFreeObjIdListRowStatus.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleObjectIdOperFreeObjIdListRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleObjectIdOperFreeObjIdListTable.') msc_example_object_id_prov_free_obj_id_replicated_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 12, 1118)) if mibBuilder.loadTexts: mscExampleObjectIdProvFreeObjIdReplicatedTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleObjectIdProvFreeObjIdReplicatedTable.setDescription('') msc_example_object_id_prov_free_obj_id_replicated_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 12, 1118, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleObjectIdIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleObjectIdProvFreeObjIdReplicatedIndex')) if mibBuilder.loadTexts: mscExampleObjectIdProvFreeObjIdReplicatedEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleObjectIdProvFreeObjIdReplicatedEntry.setDescription('An entry in the mscExampleObjectIdProvFreeObjIdReplicatedTable.') msc_example_object_id_prov_free_obj_id_replicated_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 12, 1118, 1, 1), object_identifier()) if mibBuilder.loadTexts: mscExampleObjectIdProvFreeObjIdReplicatedIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleObjectIdProvFreeObjIdReplicatedIndex.setDescription('This variable represents the index for the mscExampleObjectIdProvFreeObjIdReplicatedTable.') msc_example_object_id_prov_free_obj_id_replicated_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 12, 1118, 1, 2), object_identifier()).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleObjectIdProvFreeObjIdReplicatedValue.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleObjectIdProvFreeObjIdReplicatedValue.setDescription('This variable represents an individual value for the mscExampleObjectIdProvFreeObjIdReplicatedTable.') msc_example_object_id_prov_free_obj_id_replicated_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 12, 1118, 1, 3), row_status()).setMaxAccess('writeonly') if mibBuilder.loadTexts: mscExampleObjectIdProvFreeObjIdReplicatedRowStatus.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleObjectIdProvFreeObjIdReplicatedRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleObjectIdProvFreeObjIdReplicatedTable.') msc_example_object_id_prov_free_obj_id_list_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 12, 1119)) if mibBuilder.loadTexts: mscExampleObjectIdProvFreeObjIdListTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleObjectIdProvFreeObjIdListTable.setDescription('') msc_example_object_id_prov_free_obj_id_list_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 12, 1119, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleObjectIdIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleObjectIdProvFreeObjIdListValue')) if mibBuilder.loadTexts: mscExampleObjectIdProvFreeObjIdListEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleObjectIdProvFreeObjIdListEntry.setDescription('An entry in the mscExampleObjectIdProvFreeObjIdListTable.') msc_example_object_id_prov_free_obj_id_list_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 12, 1119, 1, 1), integer_sequence()).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleObjectIdProvFreeObjIdListValue.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleObjectIdProvFreeObjIdListValue.setDescription('This variable represents both the value and the index for the mscExampleObjectIdProvFreeObjIdListTable.') msc_example_object_id_prov_free_obj_id_list_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 12, 1119, 1, 2), row_status()).setMaxAccess('writeonly') if mibBuilder.loadTexts: mscExampleObjectIdProvFreeObjIdListRowStatus.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleObjectIdProvFreeObjIdListRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleObjectIdProvFreeObjIdListTable.') msc_example_sequence = mib_identifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 13)) msc_example_sequence_row_status_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 13, 1)) if mibBuilder.loadTexts: mscExampleSequenceRowStatusTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleSequenceRowStatusTable.setDescription('This entry controls the addition and deletion of mscExampleSequence components.') msc_example_sequence_row_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 13, 1, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleSequenceIndex')) if mibBuilder.loadTexts: mscExampleSequenceRowStatusEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleSequenceRowStatusEntry.setDescription('A single entry in the table represents a single mscExampleSequence component.') msc_example_sequence_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 13, 1, 1, 1), row_status()).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleSequenceRowStatus.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleSequenceRowStatus.setDescription('This variable is used as the basis for SNMP naming of mscExampleSequence components. These components can be added and deleted.') msc_example_sequence_component_name = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 13, 1, 1, 2), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscExampleSequenceComponentName.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleSequenceComponentName.setDescription("This variable provides the component's string name for use with the ASCII Console Interface") msc_example_sequence_storage_type = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 13, 1, 1, 4), storage_type()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscExampleSequenceStorageType.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleSequenceStorageType.setDescription('This variable represents the storage type value for the mscExampleSequence tables.') msc_example_sequence_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 13, 1, 1, 10), object_identifier()) if mibBuilder.loadTexts: mscExampleSequenceIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleSequenceIndex.setDescription('This variable represents the index for the mscExampleSequence tables.') msc_example_sequence_operational_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 13, 10)) if mibBuilder.loadTexts: mscExampleSequenceOperationalTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleSequenceOperationalTable.setDescription('') msc_example_sequence_operational_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 13, 10, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleSequenceIndex')) if mibBuilder.loadTexts: mscExampleSequenceOperationalEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleSequenceOperationalEntry.setDescription('An entry in the mscExampleSequenceOperationalTable.') msc_example_sequence_oper_struct_sequence = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 13, 10, 1, 1), integer_sequence().subtype(subtypeSpec=value_size_constraint(7, 9))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleSequenceOperStructSequence.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleSequenceOperStructSequence.setDescription('') msc_example_sequence_oper_free_sequence = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 13, 10, 1, 2), integer_sequence().subtype(subtypeSpec=value_size_constraint(7, 9))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleSequenceOperFreeSequence.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleSequenceOperFreeSequence.setDescription('') msc_example_sequence_provisional_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 13, 11)) if mibBuilder.loadTexts: mscExampleSequenceProvisionalTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleSequenceProvisionalTable.setDescription('') msc_example_sequence_provisional_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 13, 11, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleSequenceIndex')) if mibBuilder.loadTexts: mscExampleSequenceProvisionalEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleSequenceProvisionalEntry.setDescription('An entry in the mscExampleSequenceProvisionalTable.') msc_example_sequence_prov_struct_sequence = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 13, 11, 1, 1), integer_sequence().subtype(subtypeSpec=value_size_constraint(7, 9))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleSequenceProvStructSequence.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleSequenceProvStructSequence.setDescription('') msc_example_sequence_prov_free_sequence = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 13, 11, 1, 2), integer_sequence().subtype(subtypeSpec=value_size_constraint(1, 1)).setFixedLength(1)).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleSequenceProvFreeSequence.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleSequenceProvFreeSequence.setDescription('') msc_example_sequence_oper_free_sequence_replicated_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 13, 1112)) if mibBuilder.loadTexts: mscExampleSequenceOperFreeSequenceReplicatedTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleSequenceOperFreeSequenceReplicatedTable.setDescription('') msc_example_sequence_oper_free_sequence_replicated_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 13, 1112, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleSequenceIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleSequenceOperFreeSequenceReplicatedIndex')) if mibBuilder.loadTexts: mscExampleSequenceOperFreeSequenceReplicatedEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleSequenceOperFreeSequenceReplicatedEntry.setDescription('An entry in the mscExampleSequenceOperFreeSequenceReplicatedTable.') msc_example_sequence_oper_free_sequence_replicated_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 13, 1112, 1, 1), object_identifier()) if mibBuilder.loadTexts: mscExampleSequenceOperFreeSequenceReplicatedIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleSequenceOperFreeSequenceReplicatedIndex.setDescription('This variable represents the index for the mscExampleSequenceOperFreeSequenceReplicatedTable.') msc_example_sequence_oper_free_sequence_replicated_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 13, 1112, 1, 2), integer_sequence().subtype(subtypeSpec=value_size_constraint(7, 9))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleSequenceOperFreeSequenceReplicatedValue.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleSequenceOperFreeSequenceReplicatedValue.setDescription('This variable represents an individual value for the mscExampleSequenceOperFreeSequenceReplicatedTable.') msc_example_sequence_oper_free_sequence_replicated_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 13, 1112, 1, 3), row_status()).setMaxAccess('writeonly') if mibBuilder.loadTexts: mscExampleSequenceOperFreeSequenceReplicatedRowStatus.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleSequenceOperFreeSequenceReplicatedRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleSequenceOperFreeSequenceReplicatedTable.') msc_example_sequence_oper_free_sequence_list_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 13, 1113)) if mibBuilder.loadTexts: mscExampleSequenceOperFreeSequenceListTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleSequenceOperFreeSequenceListTable.setDescription('') msc_example_sequence_oper_free_sequence_list_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 13, 1113, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleSequenceIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleSequenceOperFreeSequenceListValue')) if mibBuilder.loadTexts: mscExampleSequenceOperFreeSequenceListEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleSequenceOperFreeSequenceListEntry.setDescription('An entry in the mscExampleSequenceOperFreeSequenceListTable.') msc_example_sequence_oper_free_sequence_list_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 13, 1113, 1, 1), integer_sequence().subtype(subtypeSpec=value_size_constraint(7, 9))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleSequenceOperFreeSequenceListValue.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleSequenceOperFreeSequenceListValue.setDescription('This variable represents both the value and the index for the mscExampleSequenceOperFreeSequenceListTable.') msc_example_sequence_oper_free_sequence_list_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 13, 1113, 1, 2), row_status()).setMaxAccess('writeonly') if mibBuilder.loadTexts: mscExampleSequenceOperFreeSequenceListRowStatus.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleSequenceOperFreeSequenceListRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleSequenceOperFreeSequenceListTable.') msc_example_sequence_prov_free_sequence_replicated_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 13, 1114)) if mibBuilder.loadTexts: mscExampleSequenceProvFreeSequenceReplicatedTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleSequenceProvFreeSequenceReplicatedTable.setDescription('') msc_example_sequence_prov_free_sequence_replicated_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 13, 1114, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleSequenceIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleSequenceProvFreeSequenceReplicatedIndex')) if mibBuilder.loadTexts: mscExampleSequenceProvFreeSequenceReplicatedEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleSequenceProvFreeSequenceReplicatedEntry.setDescription('An entry in the mscExampleSequenceProvFreeSequenceReplicatedTable.') msc_example_sequence_prov_free_sequence_replicated_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 13, 1114, 1, 1), object_identifier()) if mibBuilder.loadTexts: mscExampleSequenceProvFreeSequenceReplicatedIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleSequenceProvFreeSequenceReplicatedIndex.setDescription('This variable represents the index for the mscExampleSequenceProvFreeSequenceReplicatedTable.') msc_example_sequence_prov_free_sequence_replicated_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 13, 1114, 1, 2), integer_sequence().subtype(subtypeSpec=value_size_constraint(7, 7)).setFixedLength(7)).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleSequenceProvFreeSequenceReplicatedValue.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleSequenceProvFreeSequenceReplicatedValue.setDescription('This variable represents an individual value for the mscExampleSequenceProvFreeSequenceReplicatedTable.') msc_example_sequence_prov_free_sequence_replicated_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 13, 1114, 1, 3), row_status()).setMaxAccess('writeonly') if mibBuilder.loadTexts: mscExampleSequenceProvFreeSequenceReplicatedRowStatus.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleSequenceProvFreeSequenceReplicatedRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleSequenceProvFreeSequenceReplicatedTable.') msc_example_sequence_prov_free_sequence_list_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 13, 1115)) if mibBuilder.loadTexts: mscExampleSequenceProvFreeSequenceListTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleSequenceProvFreeSequenceListTable.setDescription('') msc_example_sequence_prov_free_sequence_list_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 13, 1115, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleSequenceIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleSequenceProvFreeSequenceListValue')) if mibBuilder.loadTexts: mscExampleSequenceProvFreeSequenceListEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleSequenceProvFreeSequenceListEntry.setDescription('An entry in the mscExampleSequenceProvFreeSequenceListTable.') msc_example_sequence_prov_free_sequence_list_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 13, 1115, 1, 1), integer_sequence().subtype(subtypeSpec=value_size_constraint(7, 9))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleSequenceProvFreeSequenceListValue.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleSequenceProvFreeSequenceListValue.setDescription('This variable represents both the value and the index for the mscExampleSequenceProvFreeSequenceListTable.') msc_example_sequence_prov_free_sequence_list_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 13, 1115, 1, 2), row_status()).setMaxAccess('writeonly') if mibBuilder.loadTexts: mscExampleSequenceProvFreeSequenceListRowStatus.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleSequenceProvFreeSequenceListRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleSequenceProvFreeSequenceListTable.') msc_example_signed = mib_identifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14)) msc_example_signed_row_status_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1)) if mibBuilder.loadTexts: mscExampleSignedRowStatusTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleSignedRowStatusTable.setDescription('This entry controls the addition and deletion of mscExampleSigned components.') msc_example_signed_row_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleSignedIndex')) if mibBuilder.loadTexts: mscExampleSignedRowStatusEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleSignedRowStatusEntry.setDescription('A single entry in the table represents a single mscExampleSigned component.') msc_example_signed_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1, 1, 1), row_status()).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleSignedRowStatus.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleSignedRowStatus.setDescription('This variable is used as the basis for SNMP naming of mscExampleSigned components. These components can be added and deleted.') msc_example_signed_component_name = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1, 1, 2), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscExampleSignedComponentName.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleSignedComponentName.setDescription("This variable provides the component's string name for use with the ASCII Console Interface") msc_example_signed_storage_type = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1, 1, 4), storage_type()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscExampleSignedStorageType.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleSignedStorageType.setDescription('This variable represents the storage type value for the mscExampleSigned tables.') msc_example_signed_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1, 1, 10), non_replicated()) if mibBuilder.loadTexts: mscExampleSignedIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleSignedIndex.setDescription('This variable represents the index for the mscExampleSigned tables.') msc_example_signed_operational_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 10)) if mibBuilder.loadTexts: mscExampleSignedOperationalTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleSignedOperationalTable.setDescription('') msc_example_signed_operational_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 10, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleSignedIndex')) if mibBuilder.loadTexts: mscExampleSignedOperationalEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleSignedOperationalEntry.setDescription('An entry in the mscExampleSignedOperationalTable.') msc_example_signed_oper_struct_signed = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 10, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(-16, 16))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleSignedOperStructSigned.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleSignedOperStructSigned.setDescription('') msc_example_signed_oper_free_signed = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 10, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(-16, 16))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleSignedOperFreeSigned.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleSignedOperFreeSigned.setDescription('') msc_example_signed_provisional_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 11)) if mibBuilder.loadTexts: mscExampleSignedProvisionalTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleSignedProvisionalTable.setDescription('') msc_example_signed_provisional_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 11, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleSignedIndex')) if mibBuilder.loadTexts: mscExampleSignedProvisionalEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleSignedProvisionalEntry.setDescription('An entry in the mscExampleSignedProvisionalTable.') msc_example_signed_prov_signed_sub = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 11, 1, 1), link()).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleSignedProvSignedSub.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleSignedProvSignedSub.setDescription('') msc_example_signed_prov_struct_signed = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 11, 1, 2), integer32().subtype(subtypeSpec=constraints_union(value_range_constraint(-17, -17), value_range_constraint(-16, 16), value_range_constraint(17, 17), value_range_constraint(18, 18))).clone(-17)).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleSignedProvStructSigned.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleSignedProvStructSigned.setDescription('VALUES ( -17 = infinity 17 = notApplicable 18 = notMeasured )') msc_example_signed_prov_free_signed = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 11, 1, 3), integer32().subtype(subtypeSpec=value_range_constraint(-4, 8)).clone(-2)).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleSignedProvFreeSigned.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleSignedProvFreeSigned.setDescription('') msc_example_signed_prov_free_signed1 = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 11, 1, 4), integer32().subtype(subtypeSpec=value_range_constraint(-4, 8))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleSignedProvFreeSigned1.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleSignedProvFreeSigned1.setDescription('') msc_example_signed_oper_struct_signed_vector_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1148)) if mibBuilder.loadTexts: mscExampleSignedOperStructSignedVectorTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleSignedOperStructSignedVectorTable.setDescription('') msc_example_signed_oper_struct_signed_vector_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1148, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleSignedIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleSignedOperStructSignedVectorIndex')) if mibBuilder.loadTexts: mscExampleSignedOperStructSignedVectorEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleSignedOperStructSignedVectorEntry.setDescription('An entry in the mscExampleSignedOperStructSignedVectorTable.') msc_example_signed_oper_struct_signed_vector_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1148, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 9))) if mibBuilder.loadTexts: mscExampleSignedOperStructSignedVectorIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleSignedOperStructSignedVectorIndex.setDescription('This variable represents the mscExampleSignedOperStructSignedVectorTable specific index for the mscExampleSignedOperStructSignedVectorTable.') msc_example_signed_oper_struct_signed_vector_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1148, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(-5, 5))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleSignedOperStructSignedVectorValue.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleSignedOperStructSignedVectorValue.setDescription('This variable represents an individual value for the mscExampleSignedOperStructSignedVectorTable.') msc_example_signed_oper_struct_signed_array_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1149)) if mibBuilder.loadTexts: mscExampleSignedOperStructSignedArrayTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleSignedOperStructSignedArrayTable.setDescription('') msc_example_signed_oper_struct_signed_array_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1149, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleSignedIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleSignedOperStructSignedArrayRowIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleSignedOperStructSignedArrayColumnIndex')) if mibBuilder.loadTexts: mscExampleSignedOperStructSignedArrayEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleSignedOperStructSignedArrayEntry.setDescription('An entry in the mscExampleSignedOperStructSignedArrayTable.') msc_example_signed_oper_struct_signed_array_row_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1149, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 2))) if mibBuilder.loadTexts: mscExampleSignedOperStructSignedArrayRowIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleSignedOperStructSignedArrayRowIndex.setDescription('This variable represents the next to last index for the mscExampleSignedOperStructSignedArrayTable.') msc_example_signed_oper_struct_signed_array_column_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1149, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 3))) if mibBuilder.loadTexts: mscExampleSignedOperStructSignedArrayColumnIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleSignedOperStructSignedArrayColumnIndex.setDescription('This variable represents the final index for the mscExampleSignedOperStructSignedArrayTable.') msc_example_signed_oper_struct_signed_array_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1149, 1, 3), integer32().subtype(subtypeSpec=value_range_constraint(-5, 5))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleSignedOperStructSignedArrayValue.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleSignedOperStructSignedArrayValue.setDescription('This variable represents an individual value for the mscExampleSignedOperStructSignedArrayTable.') msc_example_signed_oper_free_signed_vector_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1150)) if mibBuilder.loadTexts: mscExampleSignedOperFreeSignedVectorTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleSignedOperFreeSignedVectorTable.setDescription('') msc_example_signed_oper_free_signed_vector_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1150, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleSignedIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleSignedOperFreeSignedVectorIndex')) if mibBuilder.loadTexts: mscExampleSignedOperFreeSignedVectorEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleSignedOperFreeSignedVectorEntry.setDescription('An entry in the mscExampleSignedOperFreeSignedVectorTable.') msc_example_signed_oper_free_signed_vector_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1150, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 3))) if mibBuilder.loadTexts: mscExampleSignedOperFreeSignedVectorIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleSignedOperFreeSignedVectorIndex.setDescription('This variable represents the mscExampleSignedOperFreeSignedVectorTable specific index for the mscExampleSignedOperFreeSignedVectorTable.') msc_example_signed_oper_free_signed_vector_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1150, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(-5, 5))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleSignedOperFreeSignedVectorValue.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleSignedOperFreeSignedVectorValue.setDescription('This variable represents an individual value for the mscExampleSignedOperFreeSignedVectorTable.') msc_example_signed_oper_free_signed_array_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1151)) if mibBuilder.loadTexts: mscExampleSignedOperFreeSignedArrayTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleSignedOperFreeSignedArrayTable.setDescription('') msc_example_signed_oper_free_signed_array_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1151, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleSignedIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleSignedOperFreeSignedArrayRowIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleSignedOperFreeSignedArrayColumnIndex')) if mibBuilder.loadTexts: mscExampleSignedOperFreeSignedArrayEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleSignedOperFreeSignedArrayEntry.setDescription('An entry in the mscExampleSignedOperFreeSignedArrayTable.') msc_example_signed_oper_free_signed_array_row_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1151, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 2))) if mibBuilder.loadTexts: mscExampleSignedOperFreeSignedArrayRowIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleSignedOperFreeSignedArrayRowIndex.setDescription('This variable represents the next to last index for the mscExampleSignedOperFreeSignedArrayTable.') msc_example_signed_oper_free_signed_array_column_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1151, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 3))) if mibBuilder.loadTexts: mscExampleSignedOperFreeSignedArrayColumnIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleSignedOperFreeSignedArrayColumnIndex.setDescription('This variable represents the final index for the mscExampleSignedOperFreeSignedArrayTable.') msc_example_signed_oper_free_signed_array_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1151, 1, 3), integer32().subtype(subtypeSpec=value_range_constraint(-5, 5))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleSignedOperFreeSignedArrayValue.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleSignedOperFreeSignedArrayValue.setDescription('This variable represents an individual value for the mscExampleSignedOperFreeSignedArrayTable.') msc_example_signed_oper_free_signed_replicated_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1152)) if mibBuilder.loadTexts: mscExampleSignedOperFreeSignedReplicatedTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleSignedOperFreeSignedReplicatedTable.setDescription('') msc_example_signed_oper_free_signed_replicated_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1152, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleSignedIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleSignedOperFreeSignedReplicatedIndex')) if mibBuilder.loadTexts: mscExampleSignedOperFreeSignedReplicatedEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleSignedOperFreeSignedReplicatedEntry.setDescription('An entry in the mscExampleSignedOperFreeSignedReplicatedTable.') msc_example_signed_oper_free_signed_replicated_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1152, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(-5, 5))) if mibBuilder.loadTexts: mscExampleSignedOperFreeSignedReplicatedIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleSignedOperFreeSignedReplicatedIndex.setDescription('This variable represents the index for the mscExampleSignedOperFreeSignedReplicatedTable.') msc_example_signed_oper_free_signed_replicated_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1152, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(-16, 16))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleSignedOperFreeSignedReplicatedValue.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleSignedOperFreeSignedReplicatedValue.setDescription('This variable represents an individual value for the mscExampleSignedOperFreeSignedReplicatedTable.') msc_example_signed_oper_free_signed_replicated_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1152, 1, 3), row_status()).setMaxAccess('writeonly') if mibBuilder.loadTexts: mscExampleSignedOperFreeSignedReplicatedRowStatus.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleSignedOperFreeSignedReplicatedRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleSignedOperFreeSignedReplicatedTable.') msc_example_signed_oper_free_signed_list_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1153)) if mibBuilder.loadTexts: mscExampleSignedOperFreeSignedListTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleSignedOperFreeSignedListTable.setDescription('') msc_example_signed_oper_free_signed_list_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1153, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleSignedIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleSignedOperFreeSignedListValue')) if mibBuilder.loadTexts: mscExampleSignedOperFreeSignedListEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleSignedOperFreeSignedListEntry.setDescription('An entry in the mscExampleSignedOperFreeSignedListTable.') msc_example_signed_oper_free_signed_list_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1153, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(-16, 16))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleSignedOperFreeSignedListValue.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleSignedOperFreeSignedListValue.setDescription('This variable represents both the value and the index for the mscExampleSignedOperFreeSignedListTable.') msc_example_signed_oper_free_signed_list_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1153, 1, 2), row_status()).setMaxAccess('writeonly') if mibBuilder.loadTexts: mscExampleSignedOperFreeSignedListRowStatus.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleSignedOperFreeSignedListRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleSignedOperFreeSignedListTable.') msc_example_signed_prov_struct_signed_vector_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1154)) if mibBuilder.loadTexts: mscExampleSignedProvStructSignedVectorTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleSignedProvStructSignedVectorTable.setDescription('') msc_example_signed_prov_struct_signed_vector_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1154, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleSignedIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleSignedProvStructSignedVectorIndex')) if mibBuilder.loadTexts: mscExampleSignedProvStructSignedVectorEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleSignedProvStructSignedVectorEntry.setDescription('An entry in the mscExampleSignedProvStructSignedVectorTable.') msc_example_signed_prov_struct_signed_vector_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1154, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 9))) if mibBuilder.loadTexts: mscExampleSignedProvStructSignedVectorIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleSignedProvStructSignedVectorIndex.setDescription('This variable represents the mscExampleSignedProvStructSignedVectorTable specific index for the mscExampleSignedProvStructSignedVectorTable.') msc_example_signed_prov_struct_signed_vector_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1154, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(-5, 5))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleSignedProvStructSignedVectorValue.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleSignedProvStructSignedVectorValue.setDescription('This variable represents an individual value for the mscExampleSignedProvStructSignedVectorTable.') msc_example_signed_prov_struct_signed_array_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1155)) if mibBuilder.loadTexts: mscExampleSignedProvStructSignedArrayTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleSignedProvStructSignedArrayTable.setDescription('') msc_example_signed_prov_struct_signed_array_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1155, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleSignedIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleSignedProvStructSignedArrayRowIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleSignedProvStructSignedArrayColumnIndex')) if mibBuilder.loadTexts: mscExampleSignedProvStructSignedArrayEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleSignedProvStructSignedArrayEntry.setDescription('An entry in the mscExampleSignedProvStructSignedArrayTable.') msc_example_signed_prov_struct_signed_array_row_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1155, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 2))) if mibBuilder.loadTexts: mscExampleSignedProvStructSignedArrayRowIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleSignedProvStructSignedArrayRowIndex.setDescription('This variable represents the next to last index for the mscExampleSignedProvStructSignedArrayTable.') msc_example_signed_prov_struct_signed_array_column_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1155, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 3))) if mibBuilder.loadTexts: mscExampleSignedProvStructSignedArrayColumnIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleSignedProvStructSignedArrayColumnIndex.setDescription('This variable represents the final index for the mscExampleSignedProvStructSignedArrayTable.') msc_example_signed_prov_struct_signed_array_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1155, 1, 3), integer32().subtype(subtypeSpec=value_range_constraint(-5, 5))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleSignedProvStructSignedArrayValue.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleSignedProvStructSignedArrayValue.setDescription('This variable represents an individual value for the mscExampleSignedProvStructSignedArrayTable.') msc_example_signed_prov_free_signed_vector_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1156)) if mibBuilder.loadTexts: mscExampleSignedProvFreeSignedVectorTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleSignedProvFreeSignedVectorTable.setDescription('') msc_example_signed_prov_free_signed_vector_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1156, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleSignedIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleSignedProvFreeSignedVectorIndex')) if mibBuilder.loadTexts: mscExampleSignedProvFreeSignedVectorEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleSignedProvFreeSignedVectorEntry.setDescription('An entry in the mscExampleSignedProvFreeSignedVectorTable.') msc_example_signed_prov_free_signed_vector_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1156, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 9))) if mibBuilder.loadTexts: mscExampleSignedProvFreeSignedVectorIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleSignedProvFreeSignedVectorIndex.setDescription('This variable represents the mscExampleSignedProvFreeSignedVectorTable specific index for the mscExampleSignedProvFreeSignedVectorTable.') msc_example_signed_prov_free_signed_vector_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1156, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(-5, 5))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleSignedProvFreeSignedVectorValue.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleSignedProvFreeSignedVectorValue.setDescription('This variable represents an individual value for the mscExampleSignedProvFreeSignedVectorTable.') msc_example_signed_prov_free_signed_vector1_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1157)) if mibBuilder.loadTexts: mscExampleSignedProvFreeSignedVector1Table.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleSignedProvFreeSignedVector1Table.setDescription('') msc_example_signed_prov_free_signed_vector1_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1157, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleSignedIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleSignedProvFreeSignedVector1Index')) if mibBuilder.loadTexts: mscExampleSignedProvFreeSignedVector1Entry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleSignedProvFreeSignedVector1Entry.setDescription('An entry in the mscExampleSignedProvFreeSignedVector1Table.') msc_example_signed_prov_free_signed_vector1_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1157, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 9))) if mibBuilder.loadTexts: mscExampleSignedProvFreeSignedVector1Index.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleSignedProvFreeSignedVector1Index.setDescription('This variable represents the mscExampleSignedProvFreeSignedVector1Table specific index for the mscExampleSignedProvFreeSignedVector1Table.') msc_example_signed_prov_free_signed_vector1_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1157, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(-5, 5))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleSignedProvFreeSignedVector1Value.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleSignedProvFreeSignedVector1Value.setDescription('This variable represents an individual value for the mscExampleSignedProvFreeSignedVector1Table.') msc_example_signed_prov_free_signed_array_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1158)) if mibBuilder.loadTexts: mscExampleSignedProvFreeSignedArrayTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleSignedProvFreeSignedArrayTable.setDescription('') msc_example_signed_prov_free_signed_array_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1158, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleSignedIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleSignedProvFreeSignedArrayRowIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleSignedProvFreeSignedArrayColumnIndex')) if mibBuilder.loadTexts: mscExampleSignedProvFreeSignedArrayEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleSignedProvFreeSignedArrayEntry.setDescription('An entry in the mscExampleSignedProvFreeSignedArrayTable.') msc_example_signed_prov_free_signed_array_row_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1158, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 2))) if mibBuilder.loadTexts: mscExampleSignedProvFreeSignedArrayRowIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleSignedProvFreeSignedArrayRowIndex.setDescription('This variable represents the next to last index for the mscExampleSignedProvFreeSignedArrayTable.') msc_example_signed_prov_free_signed_array_column_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1158, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 3))) if mibBuilder.loadTexts: mscExampleSignedProvFreeSignedArrayColumnIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleSignedProvFreeSignedArrayColumnIndex.setDescription('This variable represents the final index for the mscExampleSignedProvFreeSignedArrayTable.') msc_example_signed_prov_free_signed_array_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1158, 1, 3), integer32().subtype(subtypeSpec=value_range_constraint(-1000, 4000))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleSignedProvFreeSignedArrayValue.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleSignedProvFreeSignedArrayValue.setDescription('This variable represents an individual value for the mscExampleSignedProvFreeSignedArrayTable.') msc_example_signed_prov_free_signed_array1_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1159)) if mibBuilder.loadTexts: mscExampleSignedProvFreeSignedArray1Table.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleSignedProvFreeSignedArray1Table.setDescription('') msc_example_signed_prov_free_signed_array1_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1159, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleSignedIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleSignedProvFreeSignedArray1RowIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleSignedProvFreeSignedArray1ColumnIndex')) if mibBuilder.loadTexts: mscExampleSignedProvFreeSignedArray1Entry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleSignedProvFreeSignedArray1Entry.setDescription('An entry in the mscExampleSignedProvFreeSignedArray1Table.') msc_example_signed_prov_free_signed_array1_row_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1159, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 2))) if mibBuilder.loadTexts: mscExampleSignedProvFreeSignedArray1RowIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleSignedProvFreeSignedArray1RowIndex.setDescription('This variable represents the next to last index for the mscExampleSignedProvFreeSignedArray1Table.') msc_example_signed_prov_free_signed_array1_column_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1159, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 3))) if mibBuilder.loadTexts: mscExampleSignedProvFreeSignedArray1ColumnIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleSignedProvFreeSignedArray1ColumnIndex.setDescription('This variable represents the final index for the mscExampleSignedProvFreeSignedArray1Table.') msc_example_signed_prov_free_signed_array1_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1159, 1, 3), integer32().subtype(subtypeSpec=value_range_constraint(-1000, 4000))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleSignedProvFreeSignedArray1Value.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleSignedProvFreeSignedArray1Value.setDescription('This variable represents an individual value for the mscExampleSignedProvFreeSignedArray1Table.') msc_example_signed_prov_free_signed_replicated_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1160)) if mibBuilder.loadTexts: mscExampleSignedProvFreeSignedReplicatedTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleSignedProvFreeSignedReplicatedTable.setDescription('') msc_example_signed_prov_free_signed_replicated_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1160, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleSignedIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleSignedProvFreeSignedReplicatedIndex')) if mibBuilder.loadTexts: mscExampleSignedProvFreeSignedReplicatedEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleSignedProvFreeSignedReplicatedEntry.setDescription('An entry in the mscExampleSignedProvFreeSignedReplicatedTable.') msc_example_signed_prov_free_signed_replicated_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1160, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 5))) if mibBuilder.loadTexts: mscExampleSignedProvFreeSignedReplicatedIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleSignedProvFreeSignedReplicatedIndex.setDescription('This variable represents the index for the mscExampleSignedProvFreeSignedReplicatedTable.') msc_example_signed_prov_free_signed_replicated_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1160, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(-1, 13))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleSignedProvFreeSignedReplicatedValue.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleSignedProvFreeSignedReplicatedValue.setDescription('This variable represents an individual value for the mscExampleSignedProvFreeSignedReplicatedTable.') msc_example_signed_prov_free_signed_replicated_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1160, 1, 3), row_status()).setMaxAccess('writeonly') if mibBuilder.loadTexts: mscExampleSignedProvFreeSignedReplicatedRowStatus.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleSignedProvFreeSignedReplicatedRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleSignedProvFreeSignedReplicatedTable.') msc_example_signed_prov_free_signed_list_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1161)) if mibBuilder.loadTexts: mscExampleSignedProvFreeSignedListTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleSignedProvFreeSignedListTable.setDescription('') msc_example_signed_prov_free_signed_list_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1161, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleSignedIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleSignedProvFreeSignedListValue')) if mibBuilder.loadTexts: mscExampleSignedProvFreeSignedListEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleSignedProvFreeSignedListEntry.setDescription('An entry in the mscExampleSignedProvFreeSignedListTable.') msc_example_signed_prov_free_signed_list_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1161, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(-3000, 160))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleSignedProvFreeSignedListValue.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleSignedProvFreeSignedListValue.setDescription('This variable represents both the value and the index for the mscExampleSignedProvFreeSignedListTable.') msc_example_signed_prov_free_signed_list_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1161, 1, 2), row_status()).setMaxAccess('writeonly') if mibBuilder.loadTexts: mscExampleSignedProvFreeSignedListRowStatus.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleSignedProvFreeSignedListRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleSignedProvFreeSignedListTable.') msc_example_miscellaneous = mib_identifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15)) msc_example_miscellaneous_row_status_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1)) if mibBuilder.loadTexts: mscExampleMiscellaneousRowStatusTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleMiscellaneousRowStatusTable.setDescription('This entry controls the addition and deletion of mscExampleMiscellaneous components.') msc_example_miscellaneous_row_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleMiscellaneousIndex')) if mibBuilder.loadTexts: mscExampleMiscellaneousRowStatusEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleMiscellaneousRowStatusEntry.setDescription('A single entry in the table represents a single mscExampleMiscellaneous component.') msc_example_miscellaneous_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1, 1, 1), row_status()).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleMiscellaneousRowStatus.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleMiscellaneousRowStatus.setDescription('This variable is used as the basis for SNMP naming of mscExampleMiscellaneous components. These components can be added and deleted.') msc_example_miscellaneous_component_name = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1, 1, 2), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscExampleMiscellaneousComponentName.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleMiscellaneousComponentName.setDescription("This variable provides the component's string name for use with the ASCII Console Interface") msc_example_miscellaneous_storage_type = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1, 1, 4), storage_type()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscExampleMiscellaneousStorageType.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleMiscellaneousStorageType.setDescription('This variable represents the storage type value for the mscExampleMiscellaneous tables.') msc_example_miscellaneous_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1, 1, 10), non_replicated()) if mibBuilder.loadTexts: mscExampleMiscellaneousIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleMiscellaneousIndex.setDescription('This variable represents the index for the mscExampleMiscellaneous tables.') msc_example_miscellaneous_operational_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 10)) if mibBuilder.loadTexts: mscExampleMiscellaneousOperationalTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleMiscellaneousOperationalTable.setDescription('') msc_example_miscellaneous_operational_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 10, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleMiscellaneousIndex')) if mibBuilder.loadTexts: mscExampleMiscellaneousOperationalEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleMiscellaneousOperationalEntry.setDescription('An entry in the mscExampleMiscellaneousOperationalTable.') msc_example_miscellaneous_oper_struct_long = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 10, 1, 1), unsigned64().subtype(subtypeSpec=value_size_constraint(8, 8)).setFixedLength(8)).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleMiscellaneousOperStructLong.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleMiscellaneousOperStructLong.setDescription('') msc_example_miscellaneous_oper_free_long = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 10, 1, 2), unsigned64().subtype(subtypeSpec=value_size_constraint(8, 8)).setFixedLength(8)).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleMiscellaneousOperFreeLong.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleMiscellaneousOperFreeLong.setDescription('') msc_example_miscellaneous_oper_free_time = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 10, 1, 3), enterprise_date_and_time().subtype(subtypeSpec=constraints_union(value_size_constraint(0, 0), value_size_constraint(19, 19)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleMiscellaneousOperFreeTime.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleMiscellaneousOperFreeTime.setDescription('') msc_example_miscellaneous_oper_free_time_date_only = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 10, 1, 4), enterprise_date_and_time().subtype(subtypeSpec=constraints_union(value_size_constraint(0, 0), value_size_constraint(10, 10)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleMiscellaneousOperFreeTimeDateOnly.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleMiscellaneousOperFreeTimeDateOnly.setDescription('') msc_example_miscellaneous_oper_free_time_time_only = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 10, 1, 5), enterprise_date_and_time().subtype(subtypeSpec=constraints_union(value_size_constraint(0, 0), value_size_constraint(5, 5)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleMiscellaneousOperFreeTimeTimeOnly.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleMiscellaneousOperFreeTimeTimeOnly.setDescription('') msc_example_miscellaneous_oper_free_time_date_time_minute = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 10, 1, 6), enterprise_date_and_time().subtype(subtypeSpec=constraints_union(value_size_constraint(0, 0), value_size_constraint(16, 16)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleMiscellaneousOperFreeTimeDateTimeMinute.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleMiscellaneousOperFreeTimeDateTimeMinute.setDescription('') msc_example_miscellaneous_oper_free_counter64 = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 10, 1, 7), passport_counter64()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscExampleMiscellaneousOperFreeCounter64.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleMiscellaneousOperFreeCounter64.setDescription('') msc_example_miscellaneous_oper_free_gauge64 = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 10, 1, 8), gauge64().subtype(subtypeSpec=value_size_constraint(8, 8)).setFixedLength(8)).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleMiscellaneousOperFreeGauge64.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleMiscellaneousOperFreeGauge64.setDescription('') msc_example_miscellaneous_oper_struct_counter64 = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 10, 1, 9), passport_counter64()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscExampleMiscellaneousOperStructCounter64.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleMiscellaneousOperStructCounter64.setDescription('') msc_example_miscellaneous_provisional_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 11)) if mibBuilder.loadTexts: mscExampleMiscellaneousProvisionalTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleMiscellaneousProvisionalTable.setDescription('') msc_example_miscellaneous_provisional_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 11, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleMiscellaneousIndex')) if mibBuilder.loadTexts: mscExampleMiscellaneousProvisionalEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleMiscellaneousProvisionalEntry.setDescription('An entry in the mscExampleMiscellaneousProvisionalTable.') msc_example_miscellaneous_prov_enum_sub = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 11, 1, 1), link()).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleMiscellaneousProvEnumSub.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleMiscellaneousProvEnumSub.setDescription('') msc_example_miscellaneous_prov_struct_long = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 11, 1, 2), unsigned64().subtype(subtypeSpec=value_size_constraint(8, 8)).setFixedLength(8)).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleMiscellaneousProvStructLong.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleMiscellaneousProvStructLong.setDescription('') msc_example_miscellaneous_prov_free_long = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 11, 1, 3), unsigned64().subtype(subtypeSpec=value_size_constraint(8, 8)).setFixedLength(8)).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeLong.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeLong.setDescription('') msc_example_miscellaneous_prov_free_time = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 11, 1, 4), enterprise_date_and_time().subtype(subtypeSpec=constraints_union(value_size_constraint(0, 0), value_size_constraint(19, 19))).clone(hexValue='313939322d31302d31352031303a33393a3030')).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeTime.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeTime.setDescription('') msc_example_miscellaneous_prov_free_time_date_only = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 11, 1, 5), enterprise_date_and_time().subtype(subtypeSpec=constraints_union(value_size_constraint(0, 0), value_size_constraint(10, 10))).clone(hexValue='313939322d31302d3135')).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeTimeDateOnly.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeTimeDateOnly.setDescription('') msc_example_miscellaneous_prov_free_time_time_only = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 11, 1, 6), enterprise_date_and_time().subtype(subtypeSpec=constraints_union(value_size_constraint(0, 0), value_size_constraint(5, 5))).clone(hexValue='31303a3339')).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeTimeTimeOnly.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeTimeTimeOnly.setDescription('') msc_example_miscellaneous_prov_free_time_date_time_minute = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 11, 1, 7), enterprise_date_and_time().subtype(subtypeSpec=constraints_union(value_size_constraint(0, 0), value_size_constraint(16, 16))).clone(hexValue='313939322d31302d31352031303a3330')).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeTimeDateTimeMinute.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeTimeDateTimeMinute.setDescription('') msc_example_miscellaneous_prov_free_time1 = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 11, 1, 8), enterprise_date_and_time().subtype(subtypeSpec=constraints_union(value_size_constraint(0, 0), value_size_constraint(19, 19)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeTime1.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeTime1.setDescription('') msc_example_miscellaneous_prov_free_time_date_only1 = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 11, 1, 9), enterprise_date_and_time().subtype(subtypeSpec=constraints_union(value_size_constraint(0, 0), value_size_constraint(10, 10)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeTimeDateOnly1.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeTimeDateOnly1.setDescription('') msc_example_miscellaneous_prov_free_time_time_only1 = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 11, 1, 10), enterprise_date_and_time().subtype(subtypeSpec=constraints_union(value_size_constraint(0, 0), value_size_constraint(8, 8)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeTimeTimeOnly1.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeTimeTimeOnly1.setDescription('') msc_example_miscellaneous_prov_free_time_date_time_minute1 = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 11, 1, 11), enterprise_date_and_time().subtype(subtypeSpec=constraints_union(value_size_constraint(0, 0), value_size_constraint(16, 16)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeTimeDateTimeMinute1.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeTimeDateTimeMinute1.setDescription('') msc_example_miscellaneous_oper_free_long_replicated_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1177)) if mibBuilder.loadTexts: mscExampleMiscellaneousOperFreeLongReplicatedTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleMiscellaneousOperFreeLongReplicatedTable.setDescription('') msc_example_miscellaneous_oper_free_long_replicated_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1177, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleMiscellaneousIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleMiscellaneousOperFreeLongReplicatedIndex')) if mibBuilder.loadTexts: mscExampleMiscellaneousOperFreeLongReplicatedEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleMiscellaneousOperFreeLongReplicatedEntry.setDescription('An entry in the mscExampleMiscellaneousOperFreeLongReplicatedTable.') msc_example_miscellaneous_oper_free_long_replicated_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1177, 1, 1), unsigned64()) if mibBuilder.loadTexts: mscExampleMiscellaneousOperFreeLongReplicatedIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleMiscellaneousOperFreeLongReplicatedIndex.setDescription('This variable represents the index for the mscExampleMiscellaneousOperFreeLongReplicatedTable.') msc_example_miscellaneous_oper_free_long_replicated_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1177, 1, 2), unsigned64().subtype(subtypeSpec=value_size_constraint(8, 8)).setFixedLength(8)).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleMiscellaneousOperFreeLongReplicatedValue.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleMiscellaneousOperFreeLongReplicatedValue.setDescription('This variable represents an individual value for the mscExampleMiscellaneousOperFreeLongReplicatedTable.') msc_example_miscellaneous_oper_free_long_replicated_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1177, 1, 3), row_status()).setMaxAccess('writeonly') if mibBuilder.loadTexts: mscExampleMiscellaneousOperFreeLongReplicatedRowStatus.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleMiscellaneousOperFreeLongReplicatedRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleMiscellaneousOperFreeLongReplicatedTable.') msc_example_miscellaneous_oper_free_long_list_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1178)) if mibBuilder.loadTexts: mscExampleMiscellaneousOperFreeLongListTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleMiscellaneousOperFreeLongListTable.setDescription('') msc_example_miscellaneous_oper_free_long_list_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1178, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleMiscellaneousIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleMiscellaneousOperFreeLongListValue')) if mibBuilder.loadTexts: mscExampleMiscellaneousOperFreeLongListEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleMiscellaneousOperFreeLongListEntry.setDescription('An entry in the mscExampleMiscellaneousOperFreeLongListTable.') msc_example_miscellaneous_oper_free_long_list_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1178, 1, 1), unsigned64().subtype(subtypeSpec=value_size_constraint(8, 8)).setFixedLength(8)).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleMiscellaneousOperFreeLongListValue.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleMiscellaneousOperFreeLongListValue.setDescription('This variable represents both the value and the index for the mscExampleMiscellaneousOperFreeLongListTable.') msc_example_miscellaneous_oper_free_long_list_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1178, 1, 2), row_status()).setMaxAccess('writeonly') if mibBuilder.loadTexts: mscExampleMiscellaneousOperFreeLongListRowStatus.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleMiscellaneousOperFreeLongListRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleMiscellaneousOperFreeLongListTable.') msc_example_miscellaneous_oper_free_time_list_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1179)) if mibBuilder.loadTexts: mscExampleMiscellaneousOperFreeTimeListTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleMiscellaneousOperFreeTimeListTable.setDescription('') msc_example_miscellaneous_oper_free_time_list_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1179, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleMiscellaneousIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleMiscellaneousOperFreeTimeListValue')) if mibBuilder.loadTexts: mscExampleMiscellaneousOperFreeTimeListEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleMiscellaneousOperFreeTimeListEntry.setDescription('An entry in the mscExampleMiscellaneousOperFreeTimeListTable.') msc_example_miscellaneous_oper_free_time_list_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1179, 1, 1), enterprise_date_and_time().subtype(subtypeSpec=value_size_constraint(16, 16)).setFixedLength(16)).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleMiscellaneousOperFreeTimeListValue.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleMiscellaneousOperFreeTimeListValue.setDescription('This variable represents both the value and the index for the mscExampleMiscellaneousOperFreeTimeListTable.') msc_example_miscellaneous_oper_free_time_list_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1179, 1, 2), row_status()).setMaxAccess('writeonly') if mibBuilder.loadTexts: mscExampleMiscellaneousOperFreeTimeListRowStatus.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleMiscellaneousOperFreeTimeListRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleMiscellaneousOperFreeTimeListTable.') msc_example_miscellaneous_prov_free_long_replicated_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1180)) if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeLongReplicatedTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeLongReplicatedTable.setDescription('') msc_example_miscellaneous_prov_free_long_replicated_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1180, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleMiscellaneousIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleMiscellaneousProvFreeLongReplicatedIndex')) if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeLongReplicatedEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeLongReplicatedEntry.setDescription('An entry in the mscExampleMiscellaneousProvFreeLongReplicatedTable.') msc_example_miscellaneous_prov_free_long_replicated_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1180, 1, 1), unsigned64()) if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeLongReplicatedIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeLongReplicatedIndex.setDescription('This variable represents the index for the mscExampleMiscellaneousProvFreeLongReplicatedTable.') msc_example_miscellaneous_prov_free_long_replicated_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1180, 1, 2), unsigned64().subtype(subtypeSpec=value_size_constraint(8, 8)).setFixedLength(8)).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeLongReplicatedValue.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeLongReplicatedValue.setDescription('This variable represents an individual value for the mscExampleMiscellaneousProvFreeLongReplicatedTable.') msc_example_miscellaneous_prov_free_long_replicated_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1180, 1, 3), row_status()).setMaxAccess('writeonly') if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeLongReplicatedRowStatus.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeLongReplicatedRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleMiscellaneousProvFreeLongReplicatedTable.') msc_example_miscellaneous_prov_free_long_list_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1181)) if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeLongListTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeLongListTable.setDescription('') msc_example_miscellaneous_prov_free_long_list_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1181, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleMiscellaneousIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleMiscellaneousProvFreeLongListValue')) if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeLongListEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeLongListEntry.setDescription('An entry in the mscExampleMiscellaneousProvFreeLongListTable.') msc_example_miscellaneous_prov_free_long_list_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1181, 1, 1), unsigned64().subtype(subtypeSpec=value_size_constraint(8, 8)).setFixedLength(8)).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeLongListValue.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeLongListValue.setDescription('This variable represents both the value and the index for the mscExampleMiscellaneousProvFreeLongListTable.') msc_example_miscellaneous_prov_free_long_list_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1181, 1, 2), row_status()).setMaxAccess('writeonly') if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeLongListRowStatus.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeLongListRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleMiscellaneousProvFreeLongListTable.') msc_example_miscellaneous_prov_free_time_replicated_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1182)) if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeTimeReplicatedTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeTimeReplicatedTable.setDescription('') msc_example_miscellaneous_prov_free_time_replicated_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1182, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleMiscellaneousIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleMiscellaneousProvFreeTimeReplicatedIndex')) if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeTimeReplicatedEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeTimeReplicatedEntry.setDescription('An entry in the mscExampleMiscellaneousProvFreeTimeReplicatedTable.') msc_example_miscellaneous_prov_free_time_replicated_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1182, 1, 1), enterprise_date_and_time().subtype(subtypeSpec=value_size_constraint(10, 10)).setFixedLength(10)) if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeTimeReplicatedIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeTimeReplicatedIndex.setDescription('This variable represents the index for the mscExampleMiscellaneousProvFreeTimeReplicatedTable.') msc_example_miscellaneous_prov_free_time_replicated_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1182, 1, 2), enterprise_date_and_time().subtype(subtypeSpec=constraints_union(value_size_constraint(0, 0), value_size_constraint(8, 8)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeTimeReplicatedValue.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeTimeReplicatedValue.setDescription('This variable represents an individual value for the mscExampleMiscellaneousProvFreeTimeReplicatedTable.') msc_example_miscellaneous_prov_free_time_replicated_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1182, 1, 3), row_status()).setMaxAccess('writeonly') if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeTimeReplicatedRowStatus.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeTimeReplicatedRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleMiscellaneousProvFreeTimeReplicatedTable.') msc_example_miscellaneous_prov_free_time_list_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1183)) if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeTimeListTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeTimeListTable.setDescription('') msc_example_miscellaneous_prov_free_time_list_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1183, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleMiscellaneousIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleMiscellaneousProvFreeTimeListValue')) if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeTimeListEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeTimeListEntry.setDescription('An entry in the mscExampleMiscellaneousProvFreeTimeListTable.') msc_example_miscellaneous_prov_free_time_list_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1183, 1, 1), enterprise_date_and_time().subtype(subtypeSpec=value_size_constraint(19, 19)).setFixedLength(19)).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeTimeListValue.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeTimeListValue.setDescription('This variable represents both the value and the index for the mscExampleMiscellaneousProvFreeTimeListTable.') msc_example_miscellaneous_prov_free_time_list_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1183, 1, 2), row_status()).setMaxAccess('writeonly') if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeTimeListRowStatus.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeTimeListRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleMiscellaneousProvFreeTimeListTable.') msc_example_miscellaneous_prov_free_time_list1_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1184)) if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeTimeList1Table.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeTimeList1Table.setDescription('') msc_example_miscellaneous_prov_free_time_list1_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1184, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleMiscellaneousIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleMiscellaneousProvFreeTimeList1Value')) if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeTimeList1Entry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeTimeList1Entry.setDescription('An entry in the mscExampleMiscellaneousProvFreeTimeList1Table.') msc_example_miscellaneous_prov_free_time_list1_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1184, 1, 1), enterprise_date_and_time().subtype(subtypeSpec=value_size_constraint(10, 10)).setFixedLength(10)).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeTimeList1Value.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeTimeList1Value.setDescription('This variable represents both the value and the index for the mscExampleMiscellaneousProvFreeTimeList1Table.') msc_example_miscellaneous_prov_free_time_list1_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1184, 1, 2), row_status()).setMaxAccess('writeonly') if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeTimeList1RowStatus.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeTimeList1RowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleMiscellaneousProvFreeTimeList1Table.') msc_example_miscellaneous_prov_free_time_list2_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1185)) if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeTimeList2Table.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeTimeList2Table.setDescription('') msc_example_miscellaneous_prov_free_time_list2_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1185, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleMiscellaneousIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleMiscellaneousProvFreeTimeList2Value')) if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeTimeList2Entry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeTimeList2Entry.setDescription('An entry in the mscExampleMiscellaneousProvFreeTimeList2Table.') msc_example_miscellaneous_prov_free_time_list2_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1185, 1, 1), enterprise_date_and_time().subtype(subtypeSpec=value_size_constraint(8, 8)).setFixedLength(8)).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeTimeList2Value.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeTimeList2Value.setDescription('This variable represents both the value and the index for the mscExampleMiscellaneousProvFreeTimeList2Table.') msc_example_miscellaneous_prov_free_time_list2_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1185, 1, 2), row_status()).setMaxAccess('writeonly') if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeTimeList2RowStatus.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeTimeList2RowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleMiscellaneousProvFreeTimeList2Table.') msc_example_miscellaneous_prov_free_time_list3_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1186)) if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeTimeList3Table.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeTimeList3Table.setDescription('') msc_example_miscellaneous_prov_free_time_list3_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1186, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleMiscellaneousIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleMiscellaneousProvFreeTimeList3Value')) if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeTimeList3Entry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeTimeList3Entry.setDescription('An entry in the mscExampleMiscellaneousProvFreeTimeList3Table.') msc_example_miscellaneous_prov_free_time_list3_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1186, 1, 1), enterprise_date_and_time().subtype(subtypeSpec=value_size_constraint(16, 16)).setFixedLength(16)).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeTimeList3Value.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeTimeList3Value.setDescription('This variable represents both the value and the index for the mscExampleMiscellaneousProvFreeTimeList3Table.') msc_example_miscellaneous_prov_free_time_list3_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1186, 1, 2), row_status()).setMaxAccess('writeonly') if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeTimeList3RowStatus.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeTimeList3RowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscExampleMiscellaneousProvFreeTimeList3Table.') msc_example_one_index = mib_identifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 16)) msc_example_one_index_row_status_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 16, 1)) if mibBuilder.loadTexts: mscExampleOneIndexRowStatusTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleOneIndexRowStatusTable.setDescription('This entry controls the addition and deletion of mscExampleOneIndex components.') msc_example_one_index_row_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 16, 1, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleOneIndexOneIndex')) if mibBuilder.loadTexts: mscExampleOneIndexRowStatusEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleOneIndexRowStatusEntry.setDescription('A single entry in the table represents a single mscExampleOneIndex component.') msc_example_one_index_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 16, 1, 1, 1), row_status()).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleOneIndexRowStatus.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleOneIndexRowStatus.setDescription('This variable is used as the basis for SNMP naming of mscExampleOneIndex components. These components can be added and deleted.') msc_example_one_index_component_name = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 16, 1, 1, 2), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscExampleOneIndexComponentName.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleOneIndexComponentName.setDescription("This variable provides the component's string name for use with the ASCII Console Interface") msc_example_one_index_storage_type = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 16, 1, 1, 4), storage_type()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscExampleOneIndexStorageType.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleOneIndexStorageType.setDescription('This variable represents the storage type value for the mscExampleOneIndex tables.') msc_example_one_index_one_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 16, 1, 1, 10), integer32().subtype(subtypeSpec=value_range_constraint(0, 268435455))) if mibBuilder.loadTexts: mscExampleOneIndexOneIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleOneIndexOneIndex.setDescription('This variable represents the index for the mscExampleOneIndex tables.') msc_example_one_index_provisioned_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 16, 10)) if mibBuilder.loadTexts: mscExampleOneIndexProvisionedTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleOneIndexProvisionedTable.setDescription('') msc_example_one_index_provisioned_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 16, 10, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleOneIndexOneIndex')) if mibBuilder.loadTexts: mscExampleOneIndexProvisionedEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleOneIndexProvisionedEntry.setDescription('An entry in the mscExampleOneIndexProvisionedTable.') msc_example_one_index_prov_attribute = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 16, 10, 1, 1), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 255)).clone(1)).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleOneIndexProvAttribute.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleOneIndexProvAttribute.setDescription('') msc_example_two_indices = mib_identifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 17)) msc_example_two_indices_row_status_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 17, 1)) if mibBuilder.loadTexts: mscExampleTwoIndicesRowStatusTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleTwoIndicesRowStatusTable.setDescription('This entry controls the addition and deletion of mscExampleTwoIndices components.') msc_example_two_indices_row_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 17, 1, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleTwoIndicesOneIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleTwoIndicesTwoIndex')) if mibBuilder.loadTexts: mscExampleTwoIndicesRowStatusEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleTwoIndicesRowStatusEntry.setDescription('A single entry in the table represents a single mscExampleTwoIndices component.') msc_example_two_indices_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 17, 1, 1, 1), row_status()).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleTwoIndicesRowStatus.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleTwoIndicesRowStatus.setDescription('This variable is used as the basis for SNMP naming of mscExampleTwoIndices components. These components can be added and deleted.') msc_example_two_indices_component_name = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 17, 1, 1, 2), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscExampleTwoIndicesComponentName.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleTwoIndicesComponentName.setDescription("This variable provides the component's string name for use with the ASCII Console Interface") msc_example_two_indices_storage_type = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 17, 1, 1, 4), storage_type()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscExampleTwoIndicesStorageType.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleTwoIndicesStorageType.setDescription('This variable represents the storage type value for the mscExampleTwoIndices tables.') msc_example_two_indices_one_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 17, 1, 1, 10), integer32().subtype(subtypeSpec=value_range_constraint(0, 268435455))) if mibBuilder.loadTexts: mscExampleTwoIndicesOneIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleTwoIndicesOneIndex.setDescription('This variable represents an index for the mscExampleTwoIndices tables.') msc_example_two_indices_two_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 17, 1, 1, 11), integer32().subtype(subtypeSpec=value_range_constraint(0, 268435455))) if mibBuilder.loadTexts: mscExampleTwoIndicesTwoIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleTwoIndicesTwoIndex.setDescription('This variable represents an index for the mscExampleTwoIndices tables.') msc_example_two_indices_provisioned_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 17, 10)) if mibBuilder.loadTexts: mscExampleTwoIndicesProvisionedTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleTwoIndicesProvisionedTable.setDescription('') msc_example_two_indices_provisioned_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 17, 10, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleTwoIndicesOneIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleTwoIndicesTwoIndex')) if mibBuilder.loadTexts: mscExampleTwoIndicesProvisionedEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleTwoIndicesProvisionedEntry.setDescription('An entry in the mscExampleTwoIndicesProvisionedTable.') msc_example_two_indices_prov_attribute = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 17, 10, 1, 1), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 255)).clone(1)).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleTwoIndicesProvAttribute.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleTwoIndicesProvAttribute.setDescription('') msc_example_three_indices = mib_identifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 18)) msc_example_three_indices_row_status_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 18, 1)) if mibBuilder.loadTexts: mscExampleThreeIndicesRowStatusTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleThreeIndicesRowStatusTable.setDescription('This entry controls the addition and deletion of mscExampleThreeIndices components.') msc_example_three_indices_row_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 18, 1, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleThreeIndicesOneIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleThreeIndicesTwoIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleThreeIndicesThreeIndex')) if mibBuilder.loadTexts: mscExampleThreeIndicesRowStatusEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleThreeIndicesRowStatusEntry.setDescription('A single entry in the table represents a single mscExampleThreeIndices component.') msc_example_three_indices_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 18, 1, 1, 1), row_status()).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleThreeIndicesRowStatus.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleThreeIndicesRowStatus.setDescription('This variable is used as the basis for SNMP naming of mscExampleThreeIndices components. These components can be added and deleted.') msc_example_three_indices_component_name = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 18, 1, 1, 2), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscExampleThreeIndicesComponentName.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleThreeIndicesComponentName.setDescription("This variable provides the component's string name for use with the ASCII Console Interface") msc_example_three_indices_storage_type = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 18, 1, 1, 4), storage_type()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscExampleThreeIndicesStorageType.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleThreeIndicesStorageType.setDescription('This variable represents the storage type value for the mscExampleThreeIndices tables.') msc_example_three_indices_one_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 18, 1, 1, 10), integer32().subtype(subtypeSpec=value_range_constraint(0, 268435455))) if mibBuilder.loadTexts: mscExampleThreeIndicesOneIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleThreeIndicesOneIndex.setDescription('This variable represents an index for the mscExampleThreeIndices tables.') msc_example_three_indices_two_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 18, 1, 1, 11), integer32().subtype(subtypeSpec=value_range_constraint(0, 268435455))) if mibBuilder.loadTexts: mscExampleThreeIndicesTwoIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleThreeIndicesTwoIndex.setDescription('This variable represents an index for the mscExampleThreeIndices tables.') msc_example_three_indices_three_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 18, 1, 1, 12), integer32().subtype(subtypeSpec=value_range_constraint(0, 268435455))) if mibBuilder.loadTexts: mscExampleThreeIndicesThreeIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleThreeIndicesThreeIndex.setDescription('This variable represents an index for the mscExampleThreeIndices tables.') msc_example_three_indices_provisioned_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 18, 10)) if mibBuilder.loadTexts: mscExampleThreeIndicesProvisionedTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleThreeIndicesProvisionedTable.setDescription('') msc_example_three_indices_provisioned_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 18, 10, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleThreeIndicesOneIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleThreeIndicesTwoIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleThreeIndicesThreeIndex')) if mibBuilder.loadTexts: mscExampleThreeIndicesProvisionedEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleThreeIndicesProvisionedEntry.setDescription('An entry in the mscExampleThreeIndicesProvisionedTable.') msc_example_three_indices_prov_attribute = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 18, 10, 1, 1), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 255)).clone(1)).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleThreeIndicesProvAttribute.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleThreeIndicesProvAttribute.setDescription('') msc_example_four_indices = mib_identifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 19)) msc_example_four_indices_row_status_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 19, 1)) if mibBuilder.loadTexts: mscExampleFourIndicesRowStatusTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleFourIndicesRowStatusTable.setDescription('This entry controls the addition and deletion of mscExampleFourIndices components.') msc_example_four_indices_row_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 19, 1, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleFourIndicesOneIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleFourIndicesTwoIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleFourIndicesThreeIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleFourIndicesFourIndex')) if mibBuilder.loadTexts: mscExampleFourIndicesRowStatusEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleFourIndicesRowStatusEntry.setDescription('A single entry in the table represents a single mscExampleFourIndices component.') msc_example_four_indices_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 19, 1, 1, 1), row_status()).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleFourIndicesRowStatus.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleFourIndicesRowStatus.setDescription('This variable is used as the basis for SNMP naming of mscExampleFourIndices components. These components can be added and deleted.') msc_example_four_indices_component_name = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 19, 1, 1, 2), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscExampleFourIndicesComponentName.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleFourIndicesComponentName.setDescription("This variable provides the component's string name for use with the ASCII Console Interface") msc_example_four_indices_storage_type = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 19, 1, 1, 4), storage_type()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscExampleFourIndicesStorageType.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleFourIndicesStorageType.setDescription('This variable represents the storage type value for the mscExampleFourIndices tables.') msc_example_four_indices_one_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 19, 1, 1, 10), integer32().subtype(subtypeSpec=value_range_constraint(0, 268435455))) if mibBuilder.loadTexts: mscExampleFourIndicesOneIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleFourIndicesOneIndex.setDescription('This variable represents an index for the mscExampleFourIndices tables.') msc_example_four_indices_two_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 19, 1, 1, 11), integer32().subtype(subtypeSpec=value_range_constraint(0, 268435455))) if mibBuilder.loadTexts: mscExampleFourIndicesTwoIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleFourIndicesTwoIndex.setDescription('This variable represents an index for the mscExampleFourIndices tables.') msc_example_four_indices_three_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 19, 1, 1, 12), integer32().subtype(subtypeSpec=value_range_constraint(0, 268435455))) if mibBuilder.loadTexts: mscExampleFourIndicesThreeIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleFourIndicesThreeIndex.setDescription('This variable represents an index for the mscExampleFourIndices tables.') msc_example_four_indices_four_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 19, 1, 1, 13), integer32().subtype(subtypeSpec=value_range_constraint(0, 268435455))) if mibBuilder.loadTexts: mscExampleFourIndicesFourIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleFourIndicesFourIndex.setDescription('This variable represents an index for the mscExampleFourIndices tables.') msc_example_four_indices_provisioned_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 19, 10)) if mibBuilder.loadTexts: mscExampleFourIndicesProvisionedTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleFourIndicesProvisionedTable.setDescription('') msc_example_four_indices_provisioned_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 19, 10, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleFourIndicesOneIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleFourIndicesTwoIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleFourIndicesThreeIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleFourIndicesFourIndex')) if mibBuilder.loadTexts: mscExampleFourIndicesProvisionedEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleFourIndicesProvisionedEntry.setDescription('An entry in the mscExampleFourIndicesProvisionedTable.') msc_example_four_indices_prov_attribute = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 19, 10, 1, 1), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 255)).clone(1)).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleFourIndicesProvAttribute.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleFourIndicesProvAttribute.setDescription('') msc_example_decimal_indices = mib_identifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 20)) msc_example_decimal_indices_row_status_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 20, 1)) if mibBuilder.loadTexts: mscExampleDecimalIndicesRowStatusTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDecimalIndicesRowStatusTable.setDescription('This entry controls the addition and deletion of mscExampleDecimalIndices components.') msc_example_decimal_indices_row_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 20, 1, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDecimalIndicesOneIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDecimalIndicesTwoIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDecimalIndicesThreeIndex')) if mibBuilder.loadTexts: mscExampleDecimalIndicesRowStatusEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDecimalIndicesRowStatusEntry.setDescription('A single entry in the table represents a single mscExampleDecimalIndices component.') msc_example_decimal_indices_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 20, 1, 1, 1), row_status()).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleDecimalIndicesRowStatus.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDecimalIndicesRowStatus.setDescription('This variable is used as the basis for SNMP naming of mscExampleDecimalIndices components. These components can be added and deleted.') msc_example_decimal_indices_component_name = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 20, 1, 1, 2), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscExampleDecimalIndicesComponentName.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDecimalIndicesComponentName.setDescription("This variable provides the component's string name for use with the ASCII Console Interface") msc_example_decimal_indices_storage_type = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 20, 1, 1, 4), storage_type()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscExampleDecimalIndicesStorageType.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDecimalIndicesStorageType.setDescription('This variable represents the storage type value for the mscExampleDecimalIndices tables.') msc_example_decimal_indices_one_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 20, 1, 1, 10), integer32().subtype(subtypeSpec=constraints_union(value_range_constraint(1, 10), value_range_constraint(100, 100)))) if mibBuilder.loadTexts: mscExampleDecimalIndicesOneIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDecimalIndicesOneIndex.setDescription('This variable represents an index for the mscExampleDecimalIndices tables.') msc_example_decimal_indices_two_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 20, 1, 1, 11), integer32().subtype(subtypeSpec=constraints_union(value_range_constraint(1, 10), value_range_constraint(100, 100)))) if mibBuilder.loadTexts: mscExampleDecimalIndicesTwoIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDecimalIndicesTwoIndex.setDescription('This variable represents an index for the mscExampleDecimalIndices tables.') msc_example_decimal_indices_three_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 20, 1, 1, 12), integer32().subtype(subtypeSpec=constraints_union(value_range_constraint(1, 10), value_range_constraint(100, 100)))) if mibBuilder.loadTexts: mscExampleDecimalIndicesThreeIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDecimalIndicesThreeIndex.setDescription('This variable represents an index for the mscExampleDecimalIndices tables.') msc_example_decimal_indices_provisioned_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 20, 10)) if mibBuilder.loadTexts: mscExampleDecimalIndicesProvisionedTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDecimalIndicesProvisionedTable.setDescription('') msc_example_decimal_indices_provisioned_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 20, 10, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDecimalIndicesOneIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDecimalIndicesTwoIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDecimalIndicesThreeIndex')) if mibBuilder.loadTexts: mscExampleDecimalIndicesProvisionedEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDecimalIndicesProvisionedEntry.setDescription('An entry in the mscExampleDecimalIndicesProvisionedTable.') msc_example_decimal_indices_prov_attribute = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 20, 10, 1, 1), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 255)).clone(1)).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleDecimalIndicesProvAttribute.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDecimalIndicesProvAttribute.setDescription('') msc_example_hex_indices = mib_identifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 21)) msc_example_hex_indices_row_status_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 21, 1)) if mibBuilder.loadTexts: mscExampleHexIndicesRowStatusTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleHexIndicesRowStatusTable.setDescription('This entry controls the addition and deletion of mscExampleHexIndices components.') msc_example_hex_indices_row_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 21, 1, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleHexIndicesOneIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleHexIndicesTwoIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleHexIndicesThreeIndex')) if mibBuilder.loadTexts: mscExampleHexIndicesRowStatusEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleHexIndicesRowStatusEntry.setDescription('A single entry in the table represents a single mscExampleHexIndices component.') msc_example_hex_indices_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 21, 1, 1, 1), row_status()).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleHexIndicesRowStatus.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleHexIndicesRowStatus.setDescription('This variable is used as the basis for SNMP naming of mscExampleHexIndices components. These components can be added and deleted.') msc_example_hex_indices_component_name = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 21, 1, 1, 2), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscExampleHexIndicesComponentName.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleHexIndicesComponentName.setDescription("This variable provides the component's string name for use with the ASCII Console Interface") msc_example_hex_indices_storage_type = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 21, 1, 1, 4), storage_type()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscExampleHexIndicesStorageType.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleHexIndicesStorageType.setDescription('This variable represents the storage type value for the mscExampleHexIndices tables.') msc_example_hex_indices_one_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 21, 1, 1, 10), integer32().subtype(subtypeSpec=constraints_union(value_range_constraint(1, 16), value_range_constraint(256, 256)))) if mibBuilder.loadTexts: mscExampleHexIndicesOneIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleHexIndicesOneIndex.setDescription('This variable represents an index for the mscExampleHexIndices tables.') msc_example_hex_indices_two_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 21, 1, 1, 11), integer32().subtype(subtypeSpec=constraints_union(value_range_constraint(1, 16), value_range_constraint(256, 256)))) if mibBuilder.loadTexts: mscExampleHexIndicesTwoIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleHexIndicesTwoIndex.setDescription('This variable represents an index for the mscExampleHexIndices tables.') msc_example_hex_indices_three_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 21, 1, 1, 12), integer32().subtype(subtypeSpec=constraints_union(value_range_constraint(1, 16), value_range_constraint(256, 256)))) if mibBuilder.loadTexts: mscExampleHexIndicesThreeIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleHexIndicesThreeIndex.setDescription('This variable represents an index for the mscExampleHexIndices tables.') msc_example_hex_indices_provisioned_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 21, 10)) if mibBuilder.loadTexts: mscExampleHexIndicesProvisionedTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleHexIndicesProvisionedTable.setDescription('') msc_example_hex_indices_provisioned_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 21, 10, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleHexIndicesOneIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleHexIndicesTwoIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleHexIndicesThreeIndex')) if mibBuilder.loadTexts: mscExampleHexIndicesProvisionedEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleHexIndicesProvisionedEntry.setDescription('An entry in the mscExampleHexIndicesProvisionedTable.') msc_example_hex_indices_prov_attribute = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 21, 10, 1, 1), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 255)).clone(1)).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleHexIndicesProvAttribute.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleHexIndicesProvAttribute.setDescription('') msc_example_ip_addr_indices = mib_identifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 22)) msc_example_ip_addr_indices_row_status_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 22, 1)) if mibBuilder.loadTexts: mscExampleIpAddrIndicesRowStatusTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleIpAddrIndicesRowStatusTable.setDescription('This entry controls the addition and deletion of mscExampleIpAddrIndices components.') msc_example_ip_addr_indices_row_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 22, 1, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIpAddrIndicesOneIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIpAddrIndicesTwoIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIpAddrIndicesThreeIndex')) if mibBuilder.loadTexts: mscExampleIpAddrIndicesRowStatusEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleIpAddrIndicesRowStatusEntry.setDescription('A single entry in the table represents a single mscExampleIpAddrIndices component.') msc_example_ip_addr_indices_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 22, 1, 1, 1), row_status()).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleIpAddrIndicesRowStatus.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleIpAddrIndicesRowStatus.setDescription('This variable is used as the basis for SNMP naming of mscExampleIpAddrIndices components. These components can be added and deleted.') msc_example_ip_addr_indices_component_name = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 22, 1, 1, 2), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscExampleIpAddrIndicesComponentName.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleIpAddrIndicesComponentName.setDescription("This variable provides the component's string name for use with the ASCII Console Interface") msc_example_ip_addr_indices_storage_type = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 22, 1, 1, 4), storage_type()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscExampleIpAddrIndicesStorageType.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleIpAddrIndicesStorageType.setDescription('This variable represents the storage type value for the mscExampleIpAddrIndices tables.') msc_example_ip_addr_indices_one_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 22, 1, 1, 10), ip_address()) if mibBuilder.loadTexts: mscExampleIpAddrIndicesOneIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleIpAddrIndicesOneIndex.setDescription('This variable represents an index for the mscExampleIpAddrIndices tables.') msc_example_ip_addr_indices_two_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 22, 1, 1, 11), ip_address()) if mibBuilder.loadTexts: mscExampleIpAddrIndicesTwoIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleIpAddrIndicesTwoIndex.setDescription('This variable represents an index for the mscExampleIpAddrIndices tables.') msc_example_ip_addr_indices_three_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 22, 1, 1, 12), ip_address()) if mibBuilder.loadTexts: mscExampleIpAddrIndicesThreeIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleIpAddrIndicesThreeIndex.setDescription('This variable represents an index for the mscExampleIpAddrIndices tables.') msc_example_ip_addr_indices_provisioned_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 22, 10)) if mibBuilder.loadTexts: mscExampleIpAddrIndicesProvisionedTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleIpAddrIndicesProvisionedTable.setDescription('') msc_example_ip_addr_indices_provisioned_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 22, 10, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIpAddrIndicesOneIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIpAddrIndicesTwoIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIpAddrIndicesThreeIndex')) if mibBuilder.loadTexts: mscExampleIpAddrIndicesProvisionedEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleIpAddrIndicesProvisionedEntry.setDescription('An entry in the mscExampleIpAddrIndicesProvisionedTable.') msc_example_ip_addr_indices_prov_attribute = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 22, 10, 1, 1), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 255)).clone(1)).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleIpAddrIndicesProvAttribute.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleIpAddrIndicesProvAttribute.setDescription('') msc_example_ascii_indices = mib_identifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 23)) msc_example_ascii_indices_row_status_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 23, 1)) if mibBuilder.loadTexts: mscExampleAsciiIndicesRowStatusTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleAsciiIndicesRowStatusTable.setDescription('This entry controls the addition and deletion of mscExampleAsciiIndices components.') msc_example_ascii_indices_row_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 23, 1, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleAsciiIndicesOneIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleAsciiIndicesTwoIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleAsciiIndicesThreeIndex')) if mibBuilder.loadTexts: mscExampleAsciiIndicesRowStatusEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleAsciiIndicesRowStatusEntry.setDescription('A single entry in the table represents a single mscExampleAsciiIndices component.') msc_example_ascii_indices_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 23, 1, 1, 1), row_status()).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleAsciiIndicesRowStatus.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleAsciiIndicesRowStatus.setDescription('This variable is used as the basis for SNMP naming of mscExampleAsciiIndices components. These components can be added and deleted.') msc_example_ascii_indices_component_name = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 23, 1, 1, 2), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscExampleAsciiIndicesComponentName.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleAsciiIndicesComponentName.setDescription("This variable provides the component's string name for use with the ASCII Console Interface") msc_example_ascii_indices_storage_type = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 23, 1, 1, 4), storage_type()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscExampleAsciiIndicesStorageType.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleAsciiIndicesStorageType.setDescription('This variable represents the storage type value for the mscExampleAsciiIndices tables.') msc_example_ascii_indices_one_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 23, 1, 1, 10), ascii_string_index().subtype(subtypeSpec=value_size_constraint(1, 10))) if mibBuilder.loadTexts: mscExampleAsciiIndicesOneIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleAsciiIndicesOneIndex.setDescription('This variable represents an index for the mscExampleAsciiIndices tables.') msc_example_ascii_indices_two_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 23, 1, 1, 11), ascii_string_index().subtype(subtypeSpec=value_size_constraint(1, 10))) if mibBuilder.loadTexts: mscExampleAsciiIndicesTwoIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleAsciiIndicesTwoIndex.setDescription('This variable represents an index for the mscExampleAsciiIndices tables.') msc_example_ascii_indices_three_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 23, 1, 1, 12), ascii_string_index().subtype(subtypeSpec=value_size_constraint(1, 10))) if mibBuilder.loadTexts: mscExampleAsciiIndicesThreeIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleAsciiIndicesThreeIndex.setDescription('This variable represents an index for the mscExampleAsciiIndices tables.') msc_example_ascii_indices_provisioned_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 23, 10)) if mibBuilder.loadTexts: mscExampleAsciiIndicesProvisionedTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleAsciiIndicesProvisionedTable.setDescription('') msc_example_ascii_indices_provisioned_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 23, 10, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleAsciiIndicesOneIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleAsciiIndicesTwoIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleAsciiIndicesThreeIndex')) if mibBuilder.loadTexts: mscExampleAsciiIndicesProvisionedEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleAsciiIndicesProvisionedEntry.setDescription('An entry in the mscExampleAsciiIndicesProvisionedTable.') msc_example_ascii_indices_prov_attribute = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 23, 10, 1, 1), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 255)).clone(1)).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleAsciiIndicesProvAttribute.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleAsciiIndicesProvAttribute.setDescription('') msc_example_hex_str_indices = mib_identifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 24)) msc_example_hex_str_indices_row_status_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 24, 1)) if mibBuilder.loadTexts: mscExampleHexStrIndicesRowStatusTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleHexStrIndicesRowStatusTable.setDescription('This entry controls the addition and deletion of mscExampleHexStrIndices components.') msc_example_hex_str_indices_row_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 24, 1, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleHexStrIndicesOneIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleHexStrIndicesTwoIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleHexStrIndicesThreeIndex')) if mibBuilder.loadTexts: mscExampleHexStrIndicesRowStatusEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleHexStrIndicesRowStatusEntry.setDescription('A single entry in the table represents a single mscExampleHexStrIndices component.') msc_example_hex_str_indices_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 24, 1, 1, 1), row_status()).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleHexStrIndicesRowStatus.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleHexStrIndicesRowStatus.setDescription('This variable is used as the basis for SNMP naming of mscExampleHexStrIndices components. These components can be added and deleted.') msc_example_hex_str_indices_component_name = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 24, 1, 1, 2), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscExampleHexStrIndicesComponentName.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleHexStrIndicesComponentName.setDescription("This variable provides the component's string name for use with the ASCII Console Interface") msc_example_hex_str_indices_storage_type = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 24, 1, 1, 4), storage_type()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscExampleHexStrIndicesStorageType.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleHexStrIndicesStorageType.setDescription('This variable represents the storage type value for the mscExampleHexStrIndices tables.') msc_example_hex_str_indices_one_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 24, 1, 1, 10), hex_string().subtype(subtypeSpec=value_size_constraint(1, 10))) if mibBuilder.loadTexts: mscExampleHexStrIndicesOneIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleHexStrIndicesOneIndex.setDescription('This variable represents an index for the mscExampleHexStrIndices tables.') msc_example_hex_str_indices_two_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 24, 1, 1, 11), hex_string().subtype(subtypeSpec=value_size_constraint(1, 10))) if mibBuilder.loadTexts: mscExampleHexStrIndicesTwoIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleHexStrIndicesTwoIndex.setDescription('This variable represents an index for the mscExampleHexStrIndices tables.') msc_example_hex_str_indices_three_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 24, 1, 1, 12), hex_string().subtype(subtypeSpec=value_size_constraint(1, 10))) if mibBuilder.loadTexts: mscExampleHexStrIndicesThreeIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleHexStrIndicesThreeIndex.setDescription('This variable represents an index for the mscExampleHexStrIndices tables.') msc_example_hex_str_indices_provisioned_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 24, 10)) if mibBuilder.loadTexts: mscExampleHexStrIndicesProvisionedTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleHexStrIndicesProvisionedTable.setDescription('') msc_example_hex_str_indices_provisioned_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 24, 10, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleHexStrIndicesOneIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleHexStrIndicesTwoIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleHexStrIndicesThreeIndex')) if mibBuilder.loadTexts: mscExampleHexStrIndicesProvisionedEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleHexStrIndicesProvisionedEntry.setDescription('An entry in the mscExampleHexStrIndicesProvisionedTable.') msc_example_hex_str_indices_prov_attribute = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 24, 10, 1, 1), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 255)).clone(1)).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleHexStrIndicesProvAttribute.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleHexStrIndicesProvAttribute.setDescription('') msc_example_bcd_indices = mib_identifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 25)) msc_example_bcd_indices_row_status_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 25, 1)) if mibBuilder.loadTexts: mscExampleBcdIndicesRowStatusTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleBcdIndicesRowStatusTable.setDescription('This entry controls the addition and deletion of mscExampleBcdIndices components.') msc_example_bcd_indices_row_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 25, 1, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleBcdIndicesOneIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleBcdIndicesTwoIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleBcdIndicesThreeIndex')) if mibBuilder.loadTexts: mscExampleBcdIndicesRowStatusEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleBcdIndicesRowStatusEntry.setDescription('A single entry in the table represents a single mscExampleBcdIndices component.') msc_example_bcd_indices_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 25, 1, 1, 1), row_status()).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleBcdIndicesRowStatus.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleBcdIndicesRowStatus.setDescription('This variable is used as the basis for SNMP naming of mscExampleBcdIndices components. These components can be added and deleted.') msc_example_bcd_indices_component_name = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 25, 1, 1, 2), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscExampleBcdIndicesComponentName.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleBcdIndicesComponentName.setDescription("This variable provides the component's string name for use with the ASCII Console Interface") msc_example_bcd_indices_storage_type = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 25, 1, 1, 4), storage_type()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscExampleBcdIndicesStorageType.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleBcdIndicesStorageType.setDescription('This variable represents the storage type value for the mscExampleBcdIndices tables.') msc_example_bcd_indices_one_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 25, 1, 1, 10), digit_string().subtype(subtypeSpec=value_size_constraint(1, 10))) if mibBuilder.loadTexts: mscExampleBcdIndicesOneIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleBcdIndicesOneIndex.setDescription('This variable represents an index for the mscExampleBcdIndices tables.') msc_example_bcd_indices_two_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 25, 1, 1, 11), digit_string().subtype(subtypeSpec=value_size_constraint(1, 10))) if mibBuilder.loadTexts: mscExampleBcdIndicesTwoIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleBcdIndicesTwoIndex.setDescription('This variable represents an index for the mscExampleBcdIndices tables.') msc_example_bcd_indices_three_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 25, 1, 1, 12), digit_string().subtype(subtypeSpec=value_size_constraint(1, 10))) if mibBuilder.loadTexts: mscExampleBcdIndicesThreeIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleBcdIndicesThreeIndex.setDescription('This variable represents an index for the mscExampleBcdIndices tables.') msc_example_bcd_indices_provisioned_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 25, 10)) if mibBuilder.loadTexts: mscExampleBcdIndicesProvisionedTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleBcdIndicesProvisionedTable.setDescription('') msc_example_bcd_indices_provisioned_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 25, 10, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleBcdIndicesOneIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleBcdIndicesTwoIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleBcdIndicesThreeIndex')) if mibBuilder.loadTexts: mscExampleBcdIndicesProvisionedEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleBcdIndicesProvisionedEntry.setDescription('An entry in the mscExampleBcdIndicesProvisionedTable.') msc_example_bcd_indices_prov_attribute = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 25, 10, 1, 1), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 255)).clone(1)).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleBcdIndicesProvAttribute.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleBcdIndicesProvAttribute.setDescription('') msc_example_enum_indices = mib_identifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 26)) msc_example_enum_indices_row_status_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 26, 1)) if mibBuilder.loadTexts: mscExampleEnumIndicesRowStatusTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleEnumIndicesRowStatusTable.setDescription('This entry controls the addition and deletion of mscExampleEnumIndices components.') msc_example_enum_indices_row_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 26, 1, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleEnumIndicesOneIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleEnumIndicesTwoIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleEnumIndicesThreeIndex')) if mibBuilder.loadTexts: mscExampleEnumIndicesRowStatusEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleEnumIndicesRowStatusEntry.setDescription('A single entry in the table represents a single mscExampleEnumIndices component.') msc_example_enum_indices_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 26, 1, 1, 1), row_status()).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleEnumIndicesRowStatus.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleEnumIndicesRowStatus.setDescription('This variable is used as the basis for SNMP naming of mscExampleEnumIndices components. These components can be added and deleted.') msc_example_enum_indices_component_name = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 26, 1, 1, 2), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscExampleEnumIndicesComponentName.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleEnumIndicesComponentName.setDescription("This variable provides the component's string name for use with the ASCII Console Interface") msc_example_enum_indices_storage_type = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 26, 1, 1, 4), storage_type()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscExampleEnumIndicesStorageType.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleEnumIndicesStorageType.setDescription('This variable represents the storage type value for the mscExampleEnumIndices tables.') msc_example_enum_indices_one_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 26, 1, 1, 10), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('first', 1), ('second', 2), ('third', 3)))) if mibBuilder.loadTexts: mscExampleEnumIndicesOneIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleEnumIndicesOneIndex.setDescription('This variable represents an index for the mscExampleEnumIndices tables.') msc_example_enum_indices_two_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 26, 1, 1, 11), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('first', 1), ('second', 2), ('third', 3)))) if mibBuilder.loadTexts: mscExampleEnumIndicesTwoIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleEnumIndicesTwoIndex.setDescription('This variable represents an index for the mscExampleEnumIndices tables.') msc_example_enum_indices_three_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 26, 1, 1, 12), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('first', 1), ('second', 2), ('third', 3)))) if mibBuilder.loadTexts: mscExampleEnumIndicesThreeIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleEnumIndicesThreeIndex.setDescription('This variable represents an index for the mscExampleEnumIndices tables.') msc_example_enum_indices_provisioned_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 26, 10)) if mibBuilder.loadTexts: mscExampleEnumIndicesProvisionedTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleEnumIndicesProvisionedTable.setDescription('') msc_example_enum_indices_provisioned_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 26, 10, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleEnumIndicesOneIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleEnumIndicesTwoIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleEnumIndicesThreeIndex')) if mibBuilder.loadTexts: mscExampleEnumIndicesProvisionedEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleEnumIndicesProvisionedEntry.setDescription('An entry in the mscExampleEnumIndicesProvisionedTable.') msc_example_enum_indices_prov_attribute = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 26, 10, 1, 1), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 255)).clone(1)).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleEnumIndicesProvAttribute.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleEnumIndicesProvAttribute.setDescription('') msc_example_sequence_indices = mib_identifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 27)) msc_example_sequence_indices_row_status_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 27, 1)) if mibBuilder.loadTexts: mscExampleSequenceIndicesRowStatusTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleSequenceIndicesRowStatusTable.setDescription('This entry controls the addition and deletion of mscExampleSequenceIndices components.') msc_example_sequence_indices_row_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 27, 1, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleSequenceIndicesOneIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleSequenceIndicesTwoIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleSequenceIndicesThreeIndex')) if mibBuilder.loadTexts: mscExampleSequenceIndicesRowStatusEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleSequenceIndicesRowStatusEntry.setDescription('A single entry in the table represents a single mscExampleSequenceIndices component.') msc_example_sequence_indices_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 27, 1, 1, 1), row_status()).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleSequenceIndicesRowStatus.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleSequenceIndicesRowStatus.setDescription('This variable is used as the basis for SNMP naming of mscExampleSequenceIndices components. These components can be added and deleted.') msc_example_sequence_indices_component_name = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 27, 1, 1, 2), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscExampleSequenceIndicesComponentName.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleSequenceIndicesComponentName.setDescription("This variable provides the component's string name for use with the ASCII Console Interface") msc_example_sequence_indices_storage_type = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 27, 1, 1, 4), storage_type()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscExampleSequenceIndicesStorageType.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleSequenceIndicesStorageType.setDescription('This variable represents the storage type value for the mscExampleSequenceIndices tables.') msc_example_sequence_indices_one_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 27, 1, 1, 10), object_identifier()) if mibBuilder.loadTexts: mscExampleSequenceIndicesOneIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleSequenceIndicesOneIndex.setDescription('This variable represents an index for the mscExampleSequenceIndices tables.') msc_example_sequence_indices_two_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 27, 1, 1, 11), object_identifier()) if mibBuilder.loadTexts: mscExampleSequenceIndicesTwoIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleSequenceIndicesTwoIndex.setDescription('This variable represents an index for the mscExampleSequenceIndices tables.') msc_example_sequence_indices_three_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 27, 1, 1, 12), object_identifier()) if mibBuilder.loadTexts: mscExampleSequenceIndicesThreeIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleSequenceIndicesThreeIndex.setDescription('This variable represents an index for the mscExampleSequenceIndices tables.') msc_example_sequence_indices_provisioned_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 27, 10)) if mibBuilder.loadTexts: mscExampleSequenceIndicesProvisionedTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleSequenceIndicesProvisionedTable.setDescription('') msc_example_sequence_indices_provisioned_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 27, 10, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleSequenceIndicesOneIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleSequenceIndicesTwoIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleSequenceIndicesThreeIndex')) if mibBuilder.loadTexts: mscExampleSequenceIndicesProvisionedEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleSequenceIndicesProvisionedEntry.setDescription('An entry in the mscExampleSequenceIndicesProvisionedTable.') msc_example_sequence_indices_prov_attribute = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 27, 10, 1, 1), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 255)).clone(1)).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleSequenceIndicesProvAttribute.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleSequenceIndicesProvAttribute.setDescription('') msc_example_obj_id_indices = mib_identifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 28)) msc_example_obj_id_indices_row_status_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 28, 1)) if mibBuilder.loadTexts: mscExampleObjIdIndicesRowStatusTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleObjIdIndicesRowStatusTable.setDescription('This entry controls the addition and deletion of mscExampleObjIdIndices components.') msc_example_obj_id_indices_row_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 28, 1, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleObjIdIndicesOneIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleObjIdIndicesTwoIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleObjIdIndicesThreeIndex')) if mibBuilder.loadTexts: mscExampleObjIdIndicesRowStatusEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleObjIdIndicesRowStatusEntry.setDescription('A single entry in the table represents a single mscExampleObjIdIndices component.') msc_example_obj_id_indices_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 28, 1, 1, 1), row_status()).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleObjIdIndicesRowStatus.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleObjIdIndicesRowStatus.setDescription('This variable is used as the basis for SNMP naming of mscExampleObjIdIndices components. These components can be added and deleted.') msc_example_obj_id_indices_component_name = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 28, 1, 1, 2), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscExampleObjIdIndicesComponentName.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleObjIdIndicesComponentName.setDescription("This variable provides the component's string name for use with the ASCII Console Interface") msc_example_obj_id_indices_storage_type = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 28, 1, 1, 4), storage_type()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscExampleObjIdIndicesStorageType.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleObjIdIndicesStorageType.setDescription('This variable represents the storage type value for the mscExampleObjIdIndices tables.') msc_example_obj_id_indices_one_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 28, 1, 1, 10), object_identifier()) if mibBuilder.loadTexts: mscExampleObjIdIndicesOneIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleObjIdIndicesOneIndex.setDescription('This variable represents an index for the mscExampleObjIdIndices tables.') msc_example_obj_id_indices_two_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 28, 1, 1, 11), object_identifier()) if mibBuilder.loadTexts: mscExampleObjIdIndicesTwoIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleObjIdIndicesTwoIndex.setDescription('This variable represents an index for the mscExampleObjIdIndices tables.') msc_example_obj_id_indices_three_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 28, 1, 1, 12), object_identifier()) if mibBuilder.loadTexts: mscExampleObjIdIndicesThreeIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleObjIdIndicesThreeIndex.setDescription('This variable represents an index for the mscExampleObjIdIndices tables.') msc_example_obj_id_indices_provisioned_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 28, 10)) if mibBuilder.loadTexts: mscExampleObjIdIndicesProvisionedTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleObjIdIndicesProvisionedTable.setDescription('') msc_example_obj_id_indices_provisioned_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 28, 10, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleObjIdIndicesOneIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleObjIdIndicesTwoIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleObjIdIndicesThreeIndex')) if mibBuilder.loadTexts: mscExampleObjIdIndicesProvisionedEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleObjIdIndicesProvisionedEntry.setDescription('An entry in the mscExampleObjIdIndicesProvisionedTable.') msc_example_obj_id_indices_prov_attribute = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 28, 10, 1, 1), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 255)).clone(1)).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleObjIdIndicesProvAttribute.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleObjIdIndicesProvAttribute.setDescription('') msc_example_dashed_indices = mib_identifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 30)) msc_example_dashed_indices_row_status_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 30, 1)) if mibBuilder.loadTexts: mscExampleDashedIndicesRowStatusTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDashedIndicesRowStatusTable.setDescription('This entry controls the addition and deletion of mscExampleDashedIndices components.') msc_example_dashed_indices_row_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 30, 1, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDashedIndicesOneIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDashedIndicesTwoIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDashedIndicesThreeIndex')) if mibBuilder.loadTexts: mscExampleDashedIndicesRowStatusEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDashedIndicesRowStatusEntry.setDescription('A single entry in the table represents a single mscExampleDashedIndices component.') msc_example_dashed_indices_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 30, 1, 1, 1), row_status()).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleDashedIndicesRowStatus.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDashedIndicesRowStatus.setDescription('This variable is used as the basis for SNMP naming of mscExampleDashedIndices components. These components can be added and deleted.') msc_example_dashed_indices_component_name = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 30, 1, 1, 2), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscExampleDashedIndicesComponentName.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDashedIndicesComponentName.setDescription("This variable provides the component's string name for use with the ASCII Console Interface") msc_example_dashed_indices_storage_type = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 30, 1, 1, 4), storage_type()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscExampleDashedIndicesStorageType.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDashedIndicesStorageType.setDescription('This variable represents the storage type value for the mscExampleDashedIndices tables.') msc_example_dashed_indices_one_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 30, 1, 1, 10), dashed_hex_string().subtype(subtypeSpec=value_size_constraint(1, 10))) if mibBuilder.loadTexts: mscExampleDashedIndicesOneIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDashedIndicesOneIndex.setDescription('This variable represents an index for the mscExampleDashedIndices tables.') msc_example_dashed_indices_two_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 30, 1, 1, 11), dashed_hex_string().subtype(subtypeSpec=value_size_constraint(1, 10))) if mibBuilder.loadTexts: mscExampleDashedIndicesTwoIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDashedIndicesTwoIndex.setDescription('This variable represents an index for the mscExampleDashedIndices tables.') msc_example_dashed_indices_three_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 30, 1, 1, 12), dashed_hex_string().subtype(subtypeSpec=value_size_constraint(1, 10))) if mibBuilder.loadTexts: mscExampleDashedIndicesThreeIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDashedIndicesThreeIndex.setDescription('This variable represents an index for the mscExampleDashedIndices tables.') msc_example_dashed_indices_provisioned_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 30, 10)) if mibBuilder.loadTexts: mscExampleDashedIndicesProvisionedTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDashedIndicesProvisionedTable.setDescription('') msc_example_dashed_indices_provisioned_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 30, 10, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDashedIndicesOneIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDashedIndicesTwoIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDashedIndicesThreeIndex')) if mibBuilder.loadTexts: mscExampleDashedIndicesProvisionedEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDashedIndicesProvisionedEntry.setDescription('An entry in the mscExampleDashedIndicesProvisionedTable.') msc_example_dashed_indices_prov_attribute = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 30, 10, 1, 1), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 255)).clone(1)).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleDashedIndicesProvAttribute.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleDashedIndicesProvAttribute.setDescription('') msc_example_required_indices = mib_identifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 31)) msc_example_required_indices_row_status_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 31, 1)) if mibBuilder.loadTexts: mscExampleRequiredIndicesRowStatusTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleRequiredIndicesRowStatusTable.setDescription('This entry controls the addition and deletion of mscExampleRequiredIndices components.') msc_example_required_indices_row_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 31, 1, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleRequiredIndicesDecimalIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleRequiredIndicesEnumerationIndex')) if mibBuilder.loadTexts: mscExampleRequiredIndicesRowStatusEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleRequiredIndicesRowStatusEntry.setDescription('A single entry in the table represents a single mscExampleRequiredIndices component.') msc_example_required_indices_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 31, 1, 1, 1), row_status()).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleRequiredIndicesRowStatus.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleRequiredIndicesRowStatus.setDescription('This variable is used as the basis for SNMP naming of mscExampleRequiredIndices components. These components can be added and deleted.') msc_example_required_indices_component_name = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 31, 1, 1, 2), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscExampleRequiredIndicesComponentName.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleRequiredIndicesComponentName.setDescription("This variable provides the component's string name for use with the ASCII Console Interface") msc_example_required_indices_storage_type = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 31, 1, 1, 4), storage_type()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscExampleRequiredIndicesStorageType.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleRequiredIndicesStorageType.setDescription('This variable represents the storage type value for the mscExampleRequiredIndices tables.') msc_example_required_indices_decimal_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 31, 1, 1, 10), integer32().subtype(subtypeSpec=value_range_constraint(0, 268435455))) if mibBuilder.loadTexts: mscExampleRequiredIndicesDecimalIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleRequiredIndicesDecimalIndex.setDescription('This variable represents an index for the mscExampleRequiredIndices tables.') msc_example_required_indices_enumeration_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 31, 1, 1, 11), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('first', 1), ('second', 2), ('third', 3)))) if mibBuilder.loadTexts: mscExampleRequiredIndicesEnumerationIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleRequiredIndicesEnumerationIndex.setDescription('This variable represents an index for the mscExampleRequiredIndices tables.') msc_example_required_indices_provisioned_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 31, 10)) if mibBuilder.loadTexts: mscExampleRequiredIndicesProvisionedTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleRequiredIndicesProvisionedTable.setDescription('') msc_example_required_indices_provisioned_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 31, 10, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleRequiredIndicesDecimalIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleRequiredIndicesEnumerationIndex')) if mibBuilder.loadTexts: mscExampleRequiredIndicesProvisionedEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleRequiredIndicesProvisionedEntry.setDescription('An entry in the mscExampleRequiredIndicesProvisionedTable.') msc_example_required_indices_prov_attribute = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 31, 10, 1, 1), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 255)).clone(1)).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleRequiredIndicesProvAttribute.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleRequiredIndicesProvAttribute.setDescription('') msc_example_nsap = mib_identifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 32)) msc_example_nsap_row_status_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 32, 1)) if mibBuilder.loadTexts: mscExampleNsapRowStatusTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleNsapRowStatusTable.setDescription('This entry controls the addition and deletion of mscExampleNsap components.') msc_example_nsap_row_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 32, 1, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleNsapIndex')) if mibBuilder.loadTexts: mscExampleNsapRowStatusEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleNsapRowStatusEntry.setDescription('A single entry in the table represents a single mscExampleNsap component.') msc_example_nsap_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 32, 1, 1, 1), row_status()).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleNsapRowStatus.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleNsapRowStatus.setDescription('This variable is used as the basis for SNMP naming of mscExampleNsap components. These components can be added and deleted.') msc_example_nsap_component_name = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 32, 1, 1, 2), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscExampleNsapComponentName.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleNsapComponentName.setDescription("This variable provides the component's string name for use with the ASCII Console Interface") msc_example_nsap_storage_type = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 32, 1, 1, 4), storage_type()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscExampleNsapStorageType.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleNsapStorageType.setDescription('This variable represents the storage type value for the mscExampleNsap tables.') msc_example_nsap_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 32, 1, 1, 10), ascii_string_index().subtype(subtypeSpec=value_size_constraint(0, 44))) if mibBuilder.loadTexts: mscExampleNsapIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleNsapIndex.setDescription('This variable represents the index for the mscExampleNsap tables.') msc_example_nsap_atm_addr_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 32, 102)) if mibBuilder.loadTexts: mscExampleNsapAtmAddrTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleNsapAtmAddrTable.setDescription('') msc_example_nsap_atm_addr_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 32, 102, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleNsapIndex')) if mibBuilder.loadTexts: mscExampleNsapAtmAddrEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleNsapAtmAddrEntry.setDescription('An entry in the mscExampleNsapAtmAddrTable.') msc_example_nsap_nsap_native_address = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 32, 102, 1, 1246), ascii_string().subtype(subtypeSpec=value_size_constraint(1, 44))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleNsapNsapNativeAddress.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleNsapNsapNativeAddress.setDescription('') msc_example_nsap_native_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 32, 1247)) if mibBuilder.loadTexts: mscExampleNsapNativeTable.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleNsapNativeTable.setDescription('') msc_example_nsap_native_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 32, 1247, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleNsapIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleNsapNativeIndex')) if mibBuilder.loadTexts: mscExampleNsapNativeEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleNsapNativeEntry.setDescription('An entry in the mscExampleNsapNativeTable.') msc_example_nsap_native_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 32, 1247, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 9))) if mibBuilder.loadTexts: mscExampleNsapNativeIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleNsapNativeIndex.setDescription('This variable represents the mscExampleNsapNativeTable specific index for the mscExampleNsapNativeTable.') msc_example_nsap_native_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 32, 1247, 1, 2), ascii_string().subtype(subtypeSpec=value_size_constraint(1, 44))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleNsapNativeValue.setStatus('mandatory') if mibBuilder.loadTexts: mscExampleNsapNativeValue.setDescription('This variable represents an individual value for the mscExampleNsapNativeTable.') msc_fri = mib_identifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001)) msc_fri_row_status_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 1)) if mibBuilder.loadTexts: mscFriRowStatusTable.setStatus('mandatory') if mibBuilder.loadTexts: mscFriRowStatusTable.setDescription('This entry controls the addition and deletion of mscFri components.') msc_fri_row_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 1, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriIndex')) if mibBuilder.loadTexts: mscFriRowStatusEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscFriRowStatusEntry.setDescription('A single entry in the table represents a single mscFri component.') msc_fri_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 1, 1, 1), row_status()).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscFriRowStatus.setStatus('mandatory') if mibBuilder.loadTexts: mscFriRowStatus.setDescription('This variable is used as the basis for SNMP naming of mscFri components. These components can be added and deleted.') msc_fri_component_name = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 1, 1, 2), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscFriComponentName.setStatus('mandatory') if mibBuilder.loadTexts: mscFriComponentName.setDescription("This variable provides the component's string name for use with the ASCII Console Interface") msc_fri_storage_type = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 1, 1, 4), storage_type()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscFriStorageType.setStatus('mandatory') if mibBuilder.loadTexts: mscFriStorageType.setDescription('This variable represents the storage type value for the mscFri tables.') msc_fri_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 1, 1, 10), integer32().subtype(subtypeSpec=value_range_constraint(0, 99))) if mibBuilder.loadTexts: mscFriIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscFriIndex.setDescription('This variable represents the index for the mscFri tables.') msc_fri_operational_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 100)) if mibBuilder.loadTexts: mscFriOperationalTable.setStatus('mandatory') if mibBuilder.loadTexts: mscFriOperationalTable.setDescription('') msc_fri_operational_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 100, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriIndex')) if mibBuilder.loadTexts: mscFriOperationalEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscFriOperationalEntry.setDescription('An entry in the mscFriOperationalTable.') msc_fri_operational_free_simple_ascii = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 100, 1, 1), ascii_string().subtype(subtypeSpec=value_size_constraint(10, 100))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscFriOperationalFreeSimpleAscii.setStatus('mandatory') if mibBuilder.loadTexts: mscFriOperationalFreeSimpleAscii.setDescription('') msc_fri_operational_free_simple_dashed = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 100, 1, 2), dashed_hex_string().subtype(subtypeSpec=value_size_constraint(10, 100))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscFriOperationalFreeSimpleDashed.setStatus('mandatory') if mibBuilder.loadTexts: mscFriOperationalFreeSimpleDashed.setDescription('') msc_fri_operational_free_simple_extended = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 100, 1, 3), extended_ascii_string().subtype(subtypeSpec=value_size_constraint(10, 100))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscFriOperationalFreeSimpleExtended.setStatus('mandatory') if mibBuilder.loadTexts: mscFriOperationalFreeSimpleExtended.setDescription('') msc_fri_operational_free_simple_bcd = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 100, 1, 4), digit_string().subtype(subtypeSpec=value_size_constraint(2, 10))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscFriOperationalFreeSimpleBcd.setStatus('mandatory') if mibBuilder.loadTexts: mscFriOperationalFreeSimpleBcd.setDescription('') msc_fri_operational_free_simple_signed = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 100, 1, 5), integer32().subtype(subtypeSpec=value_range_constraint(-2, 10))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscFriOperationalFreeSimpleSigned.setStatus('mandatory') if mibBuilder.loadTexts: mscFriOperationalFreeSimpleSigned.setDescription('') msc_fri_operational_free_simple_fixed = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 100, 1, 6), fixed_point1().subtype(subtypeSpec=value_range_constraint(55, 66))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscFriOperationalFreeSimpleFixed.setStatus('mandatory') if mibBuilder.loadTexts: mscFriOperationalFreeSimpleFixed.setDescription('') msc_fri_operational_free_simple_sequence = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 100, 1, 7), integer_sequence().subtype(subtypeSpec=value_size_constraint(5, 11))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscFriOperationalFreeSimpleSequence.setStatus('mandatory') if mibBuilder.loadTexts: mscFriOperationalFreeSimpleSequence.setDescription('') msc_fri_operational_free_simple_obj_id = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 100, 1, 8), integer_sequence()).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscFriOperationalFreeSimpleObjId.setStatus('mandatory') if mibBuilder.loadTexts: mscFriOperationalFreeSimpleObjId.setDescription('') msc_fri_operational_free_simple_component = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 100, 1, 9), row_pointer()).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscFriOperationalFreeSimpleComponent.setStatus('mandatory') if mibBuilder.loadTexts: mscFriOperationalFreeSimpleComponent.setDescription('') msc_fri_operational_free_simple_hex = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 100, 1, 10), hex_string().subtype(subtypeSpec=value_size_constraint(20, 20)).setFixedLength(20)).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscFriOperationalFreeSimpleHex.setStatus('mandatory') if mibBuilder.loadTexts: mscFriOperationalFreeSimpleHex.setDescription('') msc_fri_operational_struct_set_enumeration = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 100, 1, 11), octet_string().subtype(subtypeSpec=value_size_constraint(2, 2)).setFixedLength(2).clone(hexValue='9100')).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscFriOperationalStructSetEnumeration.setStatus('mandatory') if mibBuilder.loadTexts: mscFriOperationalStructSetEnumeration.setDescription('Description of bits: january(0) february(1) march(2) april(3) may(4) june(5) july(6) august(7) september(8) october(9) november(10) december(11)') msc_fri_operational_struct_set_unsigned = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 100, 1, 12), octet_string().subtype(subtypeSpec=value_size_constraint(1, 1)).setFixedLength(1).clone(hexValue='54')).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscFriOperationalStructSetUnsigned.setStatus('mandatory') if mibBuilder.loadTexts: mscFriOperationalStructSetUnsigned.setDescription('Description of bits: n0(0) n1(1) n2(2) n3(3) n4(4) n5(5)') msc_fri_operational_struct_simple_ascii = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 100, 1, 13), ascii_string().subtype(subtypeSpec=value_size_constraint(10, 100)).clone(hexValue='61313063686172737472696e67')).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscFriOperationalStructSimpleAscii.setStatus('mandatory') if mibBuilder.loadTexts: mscFriOperationalStructSimpleAscii.setDescription('') msc_fri_operational_struct_simple_dashed = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 100, 1, 14), dashed_hex_string().subtype(subtypeSpec=value_size_constraint(10, 100))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscFriOperationalStructSimpleDashed.setStatus('mandatory') if mibBuilder.loadTexts: mscFriOperationalStructSimpleDashed.setDescription('') msc_fri_operational_struct_simple_extended = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 100, 1, 15), extended_ascii_string().subtype(subtypeSpec=value_size_constraint(10, 100))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscFriOperationalStructSimpleExtended.setStatus('mandatory') if mibBuilder.loadTexts: mscFriOperationalStructSimpleExtended.setDescription('') msc_fri_operational_struct_simple_bcd = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 100, 1, 16), digit_string().subtype(subtypeSpec=value_size_constraint(2, 10))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscFriOperationalStructSimpleBcd.setStatus('mandatory') if mibBuilder.loadTexts: mscFriOperationalStructSimpleBcd.setDescription('') msc_fri_operational_struct_simple_signed = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 100, 1, 17), integer32().subtype(subtypeSpec=value_range_constraint(-2, 10))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscFriOperationalStructSimpleSigned.setStatus('mandatory') if mibBuilder.loadTexts: mscFriOperationalStructSimpleSigned.setDescription('') msc_fri_operational_struct_simple_fixed = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 100, 1, 18), fixed_point1().subtype(subtypeSpec=value_range_constraint(23, 29))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscFriOperationalStructSimpleFixed.setStatus('mandatory') if mibBuilder.loadTexts: mscFriOperationalStructSimpleFixed.setDescription('') msc_fri_operational_struct_simple_sequence = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 100, 1, 19), integer_sequence().subtype(subtypeSpec=value_size_constraint(3, 6))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscFriOperationalStructSimpleSequence.setStatus('mandatory') if mibBuilder.loadTexts: mscFriOperationalStructSimpleSequence.setDescription('') msc_fri_operational_struct_simple_enum = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 100, 1, 20), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5, 6))).clone(namedValues=named_values(('monday', 0), ('tuesday', 1), ('wednesday', 2), ('thursday', 3), ('friday', 4), ('saterday', 5), ('sunday', 6))).clone('monday')).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscFriOperationalStructSimpleEnum.setStatus('mandatory') if mibBuilder.loadTexts: mscFriOperationalStructSimpleEnum.setDescription('') msc_fri_operational_struct_simple_hex = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 100, 1, 21), hex_string().subtype(subtypeSpec=value_size_constraint(10, 100))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscFriOperationalStructSimpleHex.setStatus('mandatory') if mibBuilder.loadTexts: mscFriOperationalStructSimpleHex.setDescription('') msc_fri_operational_struct_simple_unsigned = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 100, 1, 22), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 31)).clone(3)).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscFriOperationalStructSimpleUnsigned.setStatus('mandatory') if mibBuilder.loadTexts: mscFriOperationalStructSimpleUnsigned.setDescription('') msc_fri_provisional_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 101)) if mibBuilder.loadTexts: mscFriProvisionalTable.setStatus('mandatory') if mibBuilder.loadTexts: mscFriProvisionalTable.setDescription('') msc_fri_provisional_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 101, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriIndex')) if mibBuilder.loadTexts: mscFriProvisionalEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscFriProvisionalEntry.setDescription('An entry in the mscFriProvisionalTable.') msc_fri_provisional_struct_set_enumeration = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 101, 1, 1), octet_string().subtype(subtypeSpec=value_size_constraint(1, 1)).setFixedLength(1).clone(hexValue='a8')).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscFriProvisionalStructSetEnumeration.setStatus('mandatory') if mibBuilder.loadTexts: mscFriProvisionalStructSetEnumeration.setDescription('Description of bits: monday(0) tuesday(1) wednesday(2) thursday(3) friday(4) saterday(5) sunday(6)') msc_fri_provisional_struct_set_unsigned = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 101, 1, 2), octet_string().subtype(subtypeSpec=value_size_constraint(2, 2)).setFixedLength(2).clone(hexValue='aaa8')).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscFriProvisionalStructSetUnsigned.setStatus('mandatory') if mibBuilder.loadTexts: mscFriProvisionalStructSetUnsigned.setDescription('Description of bits: n0(0) n1(1) n2(2) n3(3) n4(4) n5(5) n6(6) n7(7) n8(8) n9(9) n10(10) n11(11) n12(12)') msc_fri_provisional_struct_simple_ascii = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 101, 1, 3), ascii_string().subtype(subtypeSpec=value_size_constraint(10, 100)).clone(hexValue='61737472696e676f663131')).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscFriProvisionalStructSimpleAscii.setStatus('mandatory') if mibBuilder.loadTexts: mscFriProvisionalStructSimpleAscii.setDescription('') msc_fri_provisional_struct_simple_dashed = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 101, 1, 4), dashed_hex_string().subtype(subtypeSpec=value_size_constraint(10, 100)).clone(hexValue='01234556789abCDef0ee')).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscFriProvisionalStructSimpleDashed.setStatus('mandatory') if mibBuilder.loadTexts: mscFriProvisionalStructSimpleDashed.setDescription('') msc_fri_provisional_struct_simple_extended = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 101, 1, 5), extended_ascii_string().subtype(subtypeSpec=value_size_constraint(10, 100)).clone(hexValue='61006211632264336544')).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscFriProvisionalStructSimpleExtended.setStatus('mandatory') if mibBuilder.loadTexts: mscFriProvisionalStructSimpleExtended.setDescription('') msc_fri_provisional_struct_simple_bcd = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 101, 1, 6), digit_string().subtype(subtypeSpec=value_size_constraint(2, 10)).clone(hexValue='31323334')).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscFriProvisionalStructSimpleBcd.setStatus('mandatory') if mibBuilder.loadTexts: mscFriProvisionalStructSimpleBcd.setDescription('') msc_fri_provisional_struct_simple_sequence = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 101, 1, 7), integer_sequence().subtype(subtypeSpec=value_size_constraint(1, 2))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscFriProvisionalStructSimpleSequence.setStatus('mandatory') if mibBuilder.loadTexts: mscFriProvisionalStructSimpleSequence.setDescription('') msc_fri_provisional_struct_simple_enum = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 101, 1, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11))).clone(namedValues=named_values(('january', 0), ('february', 1), ('march', 2), ('april', 3), ('may', 4), ('june', 5), ('july', 6), ('august', 7), ('september', 8), ('october', 9), ('november', 10), ('december', 11))).clone('february')).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscFriProvisionalStructSimpleEnum.setStatus('mandatory') if mibBuilder.loadTexts: mscFriProvisionalStructSimpleEnum.setDescription('') msc_fri_provisional_struct_simple_hex = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 101, 1, 9), hex_string().subtype(subtypeSpec=value_size_constraint(10, 100)).clone(hexValue='3039303930393039303930393039303930393039303930393039')).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscFriProvisionalStructSimpleHex.setStatus('mandatory') if mibBuilder.loadTexts: mscFriProvisionalStructSimpleHex.setDescription('') msc_fri_provisional_struct_simple_unsigned = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 101, 1, 10), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 255)).clone(10)).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscFriProvisionalStructSimpleUnsigned.setStatus('mandatory') if mibBuilder.loadTexts: mscFriProvisionalStructSimpleUnsigned.setDescription('') msc_fri_provisional_struct_simple_signed = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 101, 1, 11), integer32().subtype(subtypeSpec=value_range_constraint(-255, 255)).clone(-5)).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscFriProvisionalStructSimpleSigned.setStatus('mandatory') if mibBuilder.loadTexts: mscFriProvisionalStructSimpleSigned.setDescription('') msc_fri_provisional_struct_simple_fixed = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 101, 1, 12), fixed_point2().subtype(subtypeSpec=value_range_constraint(254, 355)).clone(350)).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscFriProvisionalStructSimpleFixed.setStatus('mandatory') if mibBuilder.loadTexts: mscFriProvisionalStructSimpleFixed.setDescription('') msc_fri_provisional_free_simple_ascii = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 101, 1, 13), ascii_string().subtype(subtypeSpec=value_size_constraint(10, 100)).clone(hexValue='61737472696e676f663131')).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscFriProvisionalFreeSimpleAscii.setStatus('mandatory') if mibBuilder.loadTexts: mscFriProvisionalFreeSimpleAscii.setDescription('') msc_fri_provisional_free_simple_dashed = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 101, 1, 14), dashed_hex_string().subtype(subtypeSpec=value_size_constraint(10, 100)).clone(hexValue='00112233445566778899aabbccddeeff')).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscFriProvisionalFreeSimpleDashed.setStatus('mandatory') if mibBuilder.loadTexts: mscFriProvisionalFreeSimpleDashed.setDescription('') msc_fri_provisional_free_simple_extended = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 101, 1, 15), extended_ascii_string().subtype(subtypeSpec=value_size_constraint(10, 100)).clone(hexValue='61626300006465665555676869')).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscFriProvisionalFreeSimpleExtended.setStatus('mandatory') if mibBuilder.loadTexts: mscFriProvisionalFreeSimpleExtended.setDescription('') msc_fri_provisional_free_simple_bcd = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 101, 1, 16), digit_string().subtype(subtypeSpec=value_size_constraint(2, 10)).clone(hexValue='31323334')).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscFriProvisionalFreeSimpleBcd.setStatus('mandatory') if mibBuilder.loadTexts: mscFriProvisionalFreeSimpleBcd.setDescription('') msc_fri_provisional_free_simple_sequence = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 101, 1, 17), integer_sequence().subtype(subtypeSpec=value_size_constraint(8, 11))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscFriProvisionalFreeSimpleSequence.setStatus('mandatory') if mibBuilder.loadTexts: mscFriProvisionalFreeSimpleSequence.setDescription('') msc_fri_provisional_free_simple_signed = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 101, 1, 18), integer32().subtype(subtypeSpec=value_range_constraint(-2147483648, 2147483647)).clone(-11)).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscFriProvisionalFreeSimpleSigned.setStatus('mandatory') if mibBuilder.loadTexts: mscFriProvisionalFreeSimpleSigned.setDescription('') msc_fri_provisional_free_simple_fixed = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 101, 1, 19), fixed_point2().subtype(subtypeSpec=value_range_constraint(22, 233)).clone(122)).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscFriProvisionalFreeSimpleFixed.setStatus('mandatory') if mibBuilder.loadTexts: mscFriProvisionalFreeSimpleFixed.setDescription('') msc_fri_provisional_free_simple_obj_id = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 101, 1, 20), integer_sequence()).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscFriProvisionalFreeSimpleObjId.setStatus('mandatory') if mibBuilder.loadTexts: mscFriProvisionalFreeSimpleObjId.setDescription('') msc_fri_provisional_free_simple_component = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 101, 1, 21), row_pointer()).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscFriProvisionalFreeSimpleComponent.setStatus('mandatory') if mibBuilder.loadTexts: mscFriProvisionalFreeSimpleComponent.setDescription('') msc_fri_provisional_free_simple_hex = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 101, 1, 22), hex_string().subtype(subtypeSpec=value_size_constraint(10, 100)).clone(hexValue='00112233445566778899aaBBcCDdeeFF313233')).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscFriProvisionalFreeSimpleHex.setStatus('mandatory') if mibBuilder.loadTexts: mscFriProvisionalFreeSimpleHex.setDescription('') msc_fri_escape_check_attribute = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 101, 1, 23), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 255)).clone(4)).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscFriEscapeCheckAttribute.setStatus('mandatory') if mibBuilder.loadTexts: mscFriEscapeCheckAttribute.setDescription('') msc_fri_escape_defaults_component = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 101, 1, 24), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 255))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscFriEscapeDefaultsComponent.setStatus('mandatory') if mibBuilder.loadTexts: mscFriEscapeDefaultsComponent.setDescription('') msc_fri_escape_defaults_group = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 101, 1, 25), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 255))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscFriEscapeDefaultsGroup.setStatus('mandatory') if mibBuilder.loadTexts: mscFriEscapeDefaultsGroup.setDescription('') msc_fri_escape_set = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 101, 1, 26), ascii_string().subtype(subtypeSpec=value_size_constraint(4, 8)).clone(hexValue='70617373776f7264')).setMaxAccess('writeonly') if mibBuilder.loadTexts: mscFriEscapeSet.setStatus('mandatory') if mibBuilder.loadTexts: mscFriEscapeSet.setDescription('This attribute is used for testing the immediate value manipulation offered by the set escape. This is ONLY VALID IF the read access is DEBUG or NONE. This is to prevent the NMS and Passport from becoming out of sync. If the value has an odd number of characters, we issue the exampleEscapeSetResponse error response.') msc_fri_escape_copy_component = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 101, 1, 27), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscFriEscapeCopyComponent.setStatus('mandatory') if mibBuilder.loadTexts: mscFriEscapeCopyComponent.setDescription('') msc_fri_escape_copy_group = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 101, 1, 28), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscFriEscapeCopyGroup.setStatus('mandatory') if mibBuilder.loadTexts: mscFriEscapeCopyGroup.setDescription('') msc_fri_escape_copy_attribute = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 101, 1, 29), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscFriEscapeCopyAttribute.setStatus('mandatory') if mibBuilder.loadTexts: mscFriEscapeCopyAttribute.setDescription('') msc_fri_state_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 102)) if mibBuilder.loadTexts: mscFriStateTable.setStatus('mandatory') if mibBuilder.loadTexts: mscFriStateTable.setDescription('This group contains the three OSI State attributes and the six OSI Status attributes. The descriptions generically indicate what each attribute implies about the component. Note that not all the values and state combinations described here are supported by every component which uses this group. For component-specific information and the valid state combinations, refer to NTP 241- 7001-150, Passport Operations and Maintenance Guide.') msc_fri_state_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 102, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriIndex')) if mibBuilder.loadTexts: mscFriStateEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscFriStateEntry.setDescription('An entry in the mscFriStateTable.') msc_fri_admin_state = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 102, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('locked', 0), ('unlocked', 1), ('shuttingDown', 2))).clone('unlocked')).setMaxAccess('readonly') if mibBuilder.loadTexts: mscFriAdminState.setStatus('mandatory') if mibBuilder.loadTexts: mscFriAdminState.setDescription('This attribute indicates the OSI Administrative State of the component. The value locked indicates that the component is administratively prohibited from providing services for its users. A Lock or Lock - force command has been previously issued for this component. When the value is locked, the value of usageState must be idle. The value shuttingDown indicates that the component is administratively permitted to provide service to its existing users only. A Lock command was issued against the component and it is in the process of shutting down. The value unlocked indicates that the component is administratively permitted to provide services for its users. To enter this state, issue an Unlock command to this component. The OSI Status attributes, if supported by the component, may provide more details, qualifying the state of the component.') msc_fri_operational_state = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 102, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('disabled', 0), ('enabled', 1))).clone('disabled')).setMaxAccess('readonly') if mibBuilder.loadTexts: mscFriOperationalState.setStatus('mandatory') if mibBuilder.loadTexts: mscFriOperationalState.setDescription('This attribute indicates the OSI Operational State of the component. The value enabled indicates that the component is available for operation. Note that if adminState is locked, it would still not be providing service. The value disabled indicates that the component is not available for operation. For example, something is wrong with the component itself, or with another component on which this one depends. If the value is disabled, the usageState must be idle. The OSI Status attributes, if supported by the component, may provide more details, qualifying the state of the component.') msc_fri_usage_state = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 102, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('idle', 0), ('active', 1), ('busy', 2))).clone('idle')).setMaxAccess('readonly') if mibBuilder.loadTexts: mscFriUsageState.setStatus('mandatory') if mibBuilder.loadTexts: mscFriUsageState.setDescription('This attribute indicates the OSI Usage State of the component. The value idle indicates that the component is not currently in use. The value active indicates that the component is in use and has spare capacity to provide for additional users. The value busy indicates that the component is in use and has no spare operating capacity for additional users at this time. The OSI Status attributes, if supported by the component, may provide more details, qualifying the state of the component.') msc_fri_availability_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 102, 1, 4), octet_string().subtype(subtypeSpec=value_size_constraint(2, 2)).setFixedLength(2)).setMaxAccess('readonly') if mibBuilder.loadTexts: mscFriAvailabilityStatus.setStatus('mandatory') if mibBuilder.loadTexts: mscFriAvailabilityStatus.setDescription('If supported by the component, this attribute indicates the OSI Availability status of the component. Note that, even though it is defined as a multi-valued set, at most one value is shown to the user. When no values are in the set, this indicates that either the attribute is not supported or that none of the status conditions described below are present. The value inTest indicates that the resource is undergoing a test procedure. If adminState is locked or shuttingDown, the normal users are precluded from using the resource and controlStatus is reservedForTest. Tests that do not exclude additional users can be present in any operational or administrative state but the reservedForTest condition should not be present. The value failed indicates that the component has an internal fault that prevents it from operating. The operationalState is disabled. The value dependency indicates that the component cannot operate because some other resource on which it depends is unavailable. The operationalState is disabled. The value powerOff indicates the resource requires power to be applied and it is not powered on. The operationalState is disabled. The value offLine indicates the resource requires a routine operation (either manual, automatic, or both) to be performed to place it on-line and make it available for use. The operationalState is disabled. The value offDuty indicates the resource is inactive in accordance with a predetermined time schedule. In the absence of other disabling conditions, the operationalState is enabled or disabled. The value degraded indicates the service provided by the component is degraded in some way, such as in speed or operating capacity. However, the resource remains available for service. The operationalState is enabled. The value notInstalled indicates the resource is not present. The operationalState is disabled. The value logFull is not used. Description of bits: inTest(0) failed(1) powerOff(2) offLine(3) offDuty(4) dependency(5) degraded(6) notInstalled(7) logFull(8)') msc_fri_procedural_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 102, 1, 5), octet_string().subtype(subtypeSpec=value_size_constraint(1, 1)).setFixedLength(1)).setMaxAccess('readonly') if mibBuilder.loadTexts: mscFriProceduralStatus.setStatus('mandatory') if mibBuilder.loadTexts: mscFriProceduralStatus.setDescription("If supported by the component, this attribute indicates the OSI Procedural status of the component. Note that, even though it is defined as a multi-valued set, at most one value is shown to the user. When no values are in the set, this indicates that either the attribute is not supported or that none of the status conditions described below are present. The value initializationRequired indicates (for a resource which doesn't initialize autonomously) that initialization is required before it can perform its normal functions, and this procedure has not been initiated. The operationalState is disabled. The value notInitialized indicates (for a resource which does initialize autonomously) that initialization is required before it can perform its normal functions, and this procedure has not been initiated. The operationalState may be enabled or disabled. The value initializing indicates that initialization has been initiated but is not yet complete. The operationalState may be enabled or disabled. The value reporting indicates the resource has completed some processing operation and is notifying the results. The operationalState is enabled. The value terminating indicates the component is in a termination phase. If the resource doesn't reinitialize autonomously, operationalState is disabled; otherwise it is enabled or disabled. Description of bits: initializationRequired(0) notInitialized(1) initializing(2) reporting(3) terminating(4)") msc_fri_control_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 102, 1, 6), octet_string().subtype(subtypeSpec=value_size_constraint(1, 1)).setFixedLength(1)).setMaxAccess('readonly') if mibBuilder.loadTexts: mscFriControlStatus.setStatus('mandatory') if mibBuilder.loadTexts: mscFriControlStatus.setDescription('If supported by the component, this attribute indicates the OSI Control status of the component. Note that, even though it is defined as a multi-valued set, at most one value is shown to the user. When no values are in the set, this indicates that either the attribute is not supported or that none of the status conditions described below are present. The value subjectToTest indicates the resource is available but tests may be conducted simultaneously at unpredictable times, which may cause it to exhibit unusual characteristics. The value partOfServicesLocked indicates that part of the service is restricted from users of a resource. The adminState is unlocked. The value reservedForTest indicates that the component is administratively unavailable because it is undergoing a test procedure. The adminState is locked. The value suspended indicates that the service has been administratively suspended. Description of bits: subjectToTest(0) partOfServicesLocked(1) reservedForTest(2) suspended(3)') msc_fri_alarm_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 102, 1, 7), octet_string().subtype(subtypeSpec=value_size_constraint(1, 1)).setFixedLength(1)).setMaxAccess('readonly') if mibBuilder.loadTexts: mscFriAlarmStatus.setStatus('mandatory') if mibBuilder.loadTexts: mscFriAlarmStatus.setDescription('If supported by the component, this attribute indicates the OSI Alarm status of the component. Note that, even though it is defined as a multi-valued set, at most one value is shown to the user. When no values are in the set, this indicates that either the attribute is not supported or that none of the status conditions described below are present. The value underRepair indicates the component is currently being repaired. The operationalState is enabled or disabled. The value critical indicates one or more critical alarms are outstanding against the component. Other, less severe, alarms may also be outstanding. The operationalState is enabled or disabled. The value major indicates one or more major alarms are outstanding against the component. Other, less severe, alarms may also be outstanding. The operationalState is enabled or disabled. The value minor indicates one or more minor alarms are outstanding against the component. Other, less severe, alarms may also be outstanding. The operationalState is enabled or disabled. The value alarmOutstanding generically indicates that an alarm of some severity is outstanding against the component. Description of bits: underRepair(0) critical(1) major(2) minor(3) alarmOutstanding(4)') msc_fri_standby_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 102, 1, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 15))).clone(namedValues=named_values(('hotStandby', 0), ('coldStandby', 1), ('providingService', 2), ('notSet', 15))).clone('notSet')).setMaxAccess('readonly') if mibBuilder.loadTexts: mscFriStandbyStatus.setStatus('mandatory') if mibBuilder.loadTexts: mscFriStandbyStatus.setDescription('If supported by the component, this attribute indicates the OSI Standby status of the component. The value notSet indicates that either the attribute is not supported or that none of the status conditions described below are present. Note that this is a non-standard value, used because the original specification indicated this attribute was set-valued and thus, did not provide a value to indicate that none of the other three are applicable. The value hotStandby indicates that the resource is not providing service but will be immediately able to take over the role of the resource to be backed up, without initialization activity, and containing the same information as the resource to be backed up. The value coldStandby indicates the resource is a backup for another resource but will not be immediately able to take over the role of the backed up resource and will require some initialization activity. The value providingService indicates that this component, as a backup resource, is currently backing up another resource.') msc_fri_unknown_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 102, 1, 9), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('false', 0), ('true', 1))).clone('false')).setMaxAccess('readonly') if mibBuilder.loadTexts: mscFriUnknownStatus.setStatus('mandatory') if mibBuilder.loadTexts: mscFriUnknownStatus.setDescription('This attribute indicates the OSI Unknown status of the component. The value false indicates that all of the other OSI State and Status attribute values can be considered accurate. The value true indicates that the actual state of the component is not known for sure.') msc_fri_pf_list_ascii_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 1187)) if mibBuilder.loadTexts: mscFriPfListAsciiTable.setStatus('mandatory') if mibBuilder.loadTexts: mscFriPfListAsciiTable.setDescription('') msc_fri_pf_list_ascii_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 1187, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriPfListAsciiValue')) if mibBuilder.loadTexts: mscFriPfListAsciiEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscFriPfListAsciiEntry.setDescription('An entry in the mscFriPfListAsciiTable.') msc_fri_pf_list_ascii_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 1187, 1, 1), ascii_string().subtype(subtypeSpec=value_size_constraint(0, 100))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscFriPfListAsciiValue.setStatus('mandatory') if mibBuilder.loadTexts: mscFriPfListAsciiValue.setDescription('This variable represents both the value and the index for the mscFriPfListAsciiTable.') msc_fri_pf_list_ascii_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 1187, 1, 2), row_status()).setMaxAccess('writeonly') if mibBuilder.loadTexts: mscFriPfListAsciiRowStatus.setStatus('mandatory') if mibBuilder.loadTexts: mscFriPfListAsciiRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscFriPfListAsciiTable.') msc_fri_pf_list_unsigned_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 1188)) if mibBuilder.loadTexts: mscFriPfListUnsignedTable.setStatus('mandatory') if mibBuilder.loadTexts: mscFriPfListUnsignedTable.setDescription('') msc_fri_pf_list_unsigned_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 1188, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriPfListUnsignedValue')) if mibBuilder.loadTexts: mscFriPfListUnsignedEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscFriPfListUnsignedEntry.setDescription('An entry in the mscFriPfListUnsignedTable.') msc_fri_pf_list_unsigned_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 1188, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 255))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscFriPfListUnsignedValue.setStatus('mandatory') if mibBuilder.loadTexts: mscFriPfListUnsignedValue.setDescription('This variable represents both the value and the index for the mscFriPfListUnsignedTable.') msc_fri_pf_list_unsigned_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 1188, 1, 2), row_status()).setMaxAccess('writeonly') if mibBuilder.loadTexts: mscFriPfListUnsignedRowStatus.setStatus('mandatory') if mibBuilder.loadTexts: mscFriPfListUnsignedRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscFriPfListUnsignedTable.') msc_fri_pf_list_fixed_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 1189)) if mibBuilder.loadTexts: mscFriPfListFixedTable.setStatus('mandatory') if mibBuilder.loadTexts: mscFriPfListFixedTable.setDescription('') msc_fri_pf_list_fixed_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 1189, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriPfListFixedValue')) if mibBuilder.loadTexts: mscFriPfListFixedEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscFriPfListFixedEntry.setDescription('An entry in the mscFriPfListFixedTable.') msc_fri_pf_list_fixed_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 1189, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 2559))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscFriPfListFixedValue.setStatus('mandatory') if mibBuilder.loadTexts: mscFriPfListFixedValue.setDescription('This variable represents both the value and the index for the mscFriPfListFixedTable.') msc_fri_pf_list_fixed_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 1189, 1, 2), row_status()).setMaxAccess('writeonly') if mibBuilder.loadTexts: mscFriPfListFixedRowStatus.setStatus('mandatory') if mibBuilder.loadTexts: mscFriPfListFixedRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscFriPfListFixedTable.') msc_fri_pf_list_signed_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 1190)) if mibBuilder.loadTexts: mscFriPfListSignedTable.setStatus('mandatory') if mibBuilder.loadTexts: mscFriPfListSignedTable.setDescription('') msc_fri_pf_list_signed_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 1190, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriPfListSignedValue')) if mibBuilder.loadTexts: mscFriPfListSignedEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscFriPfListSignedEntry.setDescription('An entry in the mscFriPfListSignedTable.') msc_fri_pf_list_signed_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 1190, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(-200, 255))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscFriPfListSignedValue.setStatus('mandatory') if mibBuilder.loadTexts: mscFriPfListSignedValue.setDescription('This variable represents both the value and the index for the mscFriPfListSignedTable.') msc_fri_pf_list_signed_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 1190, 1, 2), row_status()).setMaxAccess('writeonly') if mibBuilder.loadTexts: mscFriPfListSignedRowStatus.setStatus('mandatory') if mibBuilder.loadTexts: mscFriPfListSignedRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscFriPfListSignedTable.') msc_fri_of_list_component_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 1191)) if mibBuilder.loadTexts: mscFriOfListComponentTable.setStatus('mandatory') if mibBuilder.loadTexts: mscFriOfListComponentTable.setDescription('') msc_fri_of_list_component_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 1191, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriOfListComponentValue')) if mibBuilder.loadTexts: mscFriOfListComponentEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscFriOfListComponentEntry.setDescription('An entry in the mscFriOfListComponentTable.') msc_fri_of_list_component_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 1191, 1, 1), row_pointer()).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscFriOfListComponentValue.setStatus('mandatory') if mibBuilder.loadTexts: mscFriOfListComponentValue.setDescription('This variable represents both the value and the index for the mscFriOfListComponentTable.') msc_fri_of_list_component_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 1191, 1, 2), row_status()).setMaxAccess('writeonly') if mibBuilder.loadTexts: mscFriOfListComponentRowStatus.setStatus('mandatory') if mibBuilder.loadTexts: mscFriOfListComponentRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscFriOfListComponentTable.') msc_fri_of_list_enumeration_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 1192)) if mibBuilder.loadTexts: mscFriOfListEnumerationTable.setStatus('mandatory') if mibBuilder.loadTexts: mscFriOfListEnumerationTable.setDescription('') msc_fri_of_list_enumeration_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 1192, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriOfListEnumerationValue')) if mibBuilder.loadTexts: mscFriOfListEnumerationEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscFriOfListEnumerationEntry.setDescription('An entry in the mscFriOfListEnumerationTable.') msc_fri_of_list_enumeration_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 1192, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11))).clone(namedValues=named_values(('january', 0), ('february', 1), ('march', 2), ('april', 3), ('may', 4), ('june', 5), ('july', 6), ('august', 7), ('september', 8), ('october', 9), ('november', 10), ('december', 11)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscFriOfListEnumerationValue.setStatus('mandatory') if mibBuilder.loadTexts: mscFriOfListEnumerationValue.setDescription('This variable represents both the value and the index for the mscFriOfListEnumerationTable.') msc_fri_of_list_enumeration_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 1192, 1, 2), row_status()).setMaxAccess('writeonly') if mibBuilder.loadTexts: mscFriOfListEnumerationRowStatus.setStatus('mandatory') if mibBuilder.loadTexts: mscFriOfListEnumerationRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the mscFriOfListEnumerationTable.') msc_fri_dna = mib_identifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 4)) msc_fri_dna_row_status_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 4, 1)) if mibBuilder.loadTexts: mscFriDnaRowStatusTable.setStatus('mandatory') if mibBuilder.loadTexts: mscFriDnaRowStatusTable.setDescription('This entry controls the addition and deletion of mscFriDna components.') msc_fri_dna_row_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 4, 1, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriDnaIndex')) if mibBuilder.loadTexts: mscFriDnaRowStatusEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscFriDnaRowStatusEntry.setDescription('A single entry in the table represents a single mscFriDna component.') msc_fri_dna_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 4, 1, 1, 1), row_status()).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscFriDnaRowStatus.setStatus('mandatory') if mibBuilder.loadTexts: mscFriDnaRowStatus.setDescription('This variable is used as the basis for SNMP naming of mscFriDna components. These components can be added and deleted.') msc_fri_dna_component_name = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 4, 1, 1, 2), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscFriDnaComponentName.setStatus('mandatory') if mibBuilder.loadTexts: mscFriDnaComponentName.setDescription("This variable provides the component's string name for use with the ASCII Console Interface") msc_fri_dna_storage_type = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 4, 1, 1, 4), storage_type()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscFriDnaStorageType.setStatus('mandatory') if mibBuilder.loadTexts: mscFriDnaStorageType.setDescription('This variable represents the storage type value for the mscFriDna tables.') msc_fri_dna_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 4, 1, 1, 10), integer32().subtype(subtypeSpec=value_range_constraint(0, 15))) if mibBuilder.loadTexts: mscFriDnaIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscFriDnaIndex.setDescription('This variable represents the index for the mscFriDna tables.') msc_fri_dna_operational_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 4, 10)) if mibBuilder.loadTexts: mscFriDnaOperationalTable.setStatus('mandatory') if mibBuilder.loadTexts: mscFriDnaOperationalTable.setDescription('') msc_fri_dna_operational_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 4, 10, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriDnaIndex')) if mibBuilder.loadTexts: mscFriDnaOperationalEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscFriDnaOperationalEntry.setDescription('An entry in the mscFriDnaOperationalTable.') msc_fri_dna_attribute = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 4, 10, 1, 1), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 65535)).clone(1)).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscFriDnaAttribute.setStatus('mandatory') if mibBuilder.loadTexts: mscFriDnaAttribute.setDescription('') msc_fri_dna_provisional_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 4, 11)) if mibBuilder.loadTexts: mscFriDnaProvisionalTable.setStatus('mandatory') if mibBuilder.loadTexts: mscFriDnaProvisionalTable.setDescription('') msc_fri_dna_provisional_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 4, 11, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriDnaIndex')) if mibBuilder.loadTexts: mscFriDnaProvisionalEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscFriDnaProvisionalEntry.setDescription('An entry in the mscFriDnaProvisionalTable.') msc_fri_dna_type_of_address = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 4, 11, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('networkDepend', 0), ('international', 1), ('national', 2))).clone('international')).setMaxAccess('readonly') if mibBuilder.loadTexts: mscFriDnaTypeOfAddress.setStatus('mandatory') if mibBuilder.loadTexts: mscFriDnaTypeOfAddress.setDescription('') msc_fri_dna_number_plan_indicator = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 4, 11, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('x121', 0), ('e164', 1))).clone('x121')).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscFriDnaNumberPlanIndicator.setStatus('mandatory') if mibBuilder.loadTexts: mscFriDnaNumberPlanIndicator.setDescription('') msc_fri_dna_data_network_address = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 4, 11, 1, 3), digit_string().subtype(subtypeSpec=value_size_constraint(1, 15))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscFriDnaDataNetworkAddress.setStatus('mandatory') if mibBuilder.loadTexts: mscFriDnaDataNetworkAddress.setDescription('') msc_fri_dynamic = mib_identifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 7)) msc_fri_dynamic_row_status_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 7, 1)) if mibBuilder.loadTexts: mscFriDynamicRowStatusTable.setStatus('mandatory') if mibBuilder.loadTexts: mscFriDynamicRowStatusTable.setDescription('*** THIS TABLE CURRENTLY NOT IMPLEMENTED *** This entry controls the addition and deletion of mscFriDynamic components.') msc_fri_dynamic_row_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 7, 1, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriDynamicIndex')) if mibBuilder.loadTexts: mscFriDynamicRowStatusEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscFriDynamicRowStatusEntry.setDescription('A single entry in the table represents a single mscFriDynamic component.') msc_fri_dynamic_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 7, 1, 1, 1), row_status()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscFriDynamicRowStatus.setStatus('mandatory') if mibBuilder.loadTexts: mscFriDynamicRowStatus.setDescription('This variable is used as the basis for SNMP naming of mscFriDynamic components. These components cannot be added nor deleted.') msc_fri_dynamic_component_name = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 7, 1, 1, 2), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscFriDynamicComponentName.setStatus('mandatory') if mibBuilder.loadTexts: mscFriDynamicComponentName.setDescription("This variable provides the component's string name for use with the ASCII Console Interface") msc_fri_dynamic_storage_type = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 7, 1, 1, 4), storage_type()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscFriDynamicStorageType.setStatus('mandatory') if mibBuilder.loadTexts: mscFriDynamicStorageType.setDescription('This variable represents the storage type value for the mscFriDynamic tables.') msc_fri_dynamic_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 7, 1, 1, 10), integer32().subtype(subtypeSpec=value_range_constraint(0, 1023))) if mibBuilder.loadTexts: mscFriDynamicIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscFriDynamicIndex.setDescription('This variable represents the index for the mscFriDynamic tables.') msc_fri_dynamic_operational_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 7, 10)) if mibBuilder.loadTexts: mscFriDynamicOperationalTable.setStatus('mandatory') if mibBuilder.loadTexts: mscFriDynamicOperationalTable.setDescription('*** THIS TABLE CURRENTLY NOT IMPLEMENTED ***') msc_fri_dynamic_operational_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 7, 10, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriDynamicIndex')) if mibBuilder.loadTexts: mscFriDynamicOperationalEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscFriDynamicOperationalEntry.setDescription('An entry in the mscFriDynamicOperationalTable.') msc_fri_dynamic_attribute = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 7, 10, 1, 1), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 255)).clone(1)).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscFriDynamicAttribute.setStatus('mandatory') if mibBuilder.loadTexts: mscFriDynamicAttribute.setDescription('') msc_fri_dyn_op = mib_identifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8)) msc_fri_dyn_op_row_status_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 1)) if mibBuilder.loadTexts: mscFriDynOpRowStatusTable.setStatus('mandatory') if mibBuilder.loadTexts: mscFriDynOpRowStatusTable.setDescription('This entry controls the addition and deletion of mscFriDynOp components.') msc_fri_dyn_op_row_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 1, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriDynOpIndex')) if mibBuilder.loadTexts: mscFriDynOpRowStatusEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscFriDynOpRowStatusEntry.setDescription('A single entry in the table represents a single mscFriDynOp component.') msc_fri_dyn_op_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 1, 1, 1), row_status()).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscFriDynOpRowStatus.setStatus('mandatory') if mibBuilder.loadTexts: mscFriDynOpRowStatus.setDescription('This variable is used as the basis for SNMP naming of mscFriDynOp components. These components can be added and deleted.') msc_fri_dyn_op_component_name = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 1, 1, 2), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscFriDynOpComponentName.setStatus('mandatory') if mibBuilder.loadTexts: mscFriDynOpComponentName.setDescription("This variable provides the component's string name for use with the ASCII Console Interface") msc_fri_dyn_op_storage_type = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 1, 1, 4), storage_type()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscFriDynOpStorageType.setStatus('mandatory') if mibBuilder.loadTexts: mscFriDynOpStorageType.setDescription('This variable represents the storage type value for the mscFriDynOp tables.') msc_fri_dyn_op_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 1, 1, 10), integer32().subtype(subtypeSpec=value_range_constraint(0, 1023))) if mibBuilder.loadTexts: mscFriDynOpIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscFriDynOpIndex.setDescription('This variable represents the index for the mscFriDynOp tables.') msc_fri_dyn_op_operational_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 10)) if mibBuilder.loadTexts: mscFriDynOpOperationalTable.setStatus('mandatory') if mibBuilder.loadTexts: mscFriDynOpOperationalTable.setDescription('') msc_fri_dyn_op_operational_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 10, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriDynOpIndex')) if mibBuilder.loadTexts: mscFriDynOpOperationalEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscFriDynOpOperationalEntry.setDescription('An entry in the mscFriDynOpOperationalTable.') msc_fri_dyn_op_attribute = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 10, 1, 1), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 255)).clone(1)).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscFriDynOpAttribute.setStatus('mandatory') if mibBuilder.loadTexts: mscFriDynOpAttribute.setDescription('') msc_fri_dyn_op_initial = mib_identifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 2)) msc_fri_dyn_op_initial_row_status_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 2, 1)) if mibBuilder.loadTexts: mscFriDynOpInitialRowStatusTable.setStatus('mandatory') if mibBuilder.loadTexts: mscFriDynOpInitialRowStatusTable.setDescription('This entry controls the addition and deletion of mscFriDynOpInitial components.') msc_fri_dyn_op_initial_row_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 2, 1, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriDynOpIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriDynOpInitialIndex')) if mibBuilder.loadTexts: mscFriDynOpInitialRowStatusEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscFriDynOpInitialRowStatusEntry.setDescription('A single entry in the table represents a single mscFriDynOpInitial component.') msc_fri_dyn_op_initial_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 2, 1, 1, 1), row_status()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscFriDynOpInitialRowStatus.setStatus('mandatory') if mibBuilder.loadTexts: mscFriDynOpInitialRowStatus.setDescription('This variable is used as the basis for SNMP naming of mscFriDynOpInitial components. These components cannot be added nor deleted.') msc_fri_dyn_op_initial_component_name = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 2, 1, 1, 2), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscFriDynOpInitialComponentName.setStatus('mandatory') if mibBuilder.loadTexts: mscFriDynOpInitialComponentName.setDescription("This variable provides the component's string name for use with the ASCII Console Interface") msc_fri_dyn_op_initial_storage_type = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 2, 1, 1, 4), storage_type()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscFriDynOpInitialStorageType.setStatus('mandatory') if mibBuilder.loadTexts: mscFriDynOpInitialStorageType.setDescription('This variable represents the storage type value for the mscFriDynOpInitial tables.') msc_fri_dyn_op_initial_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 2, 1, 1, 10), non_replicated()) if mibBuilder.loadTexts: mscFriDynOpInitialIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscFriDynOpInitialIndex.setDescription('This variable represents the index for the mscFriDynOpInitial tables.') msc_fri_dyn_op_initial_operational_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 2, 10)) if mibBuilder.loadTexts: mscFriDynOpInitialOperationalTable.setStatus('mandatory') if mibBuilder.loadTexts: mscFriDynOpInitialOperationalTable.setDescription('') msc_fri_dyn_op_initial_operational_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 2, 10, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriDynOpIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriDynOpInitialIndex')) if mibBuilder.loadTexts: mscFriDynOpInitialOperationalEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscFriDynOpInitialOperationalEntry.setDescription('An entry in the mscFriDynOpInitialOperationalTable.') msc_fri_dyn_op_initial_attribute = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 2, 10, 1, 1), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 255)).clone(1)).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscFriDynOpInitialAttribute.setStatus('mandatory') if mibBuilder.loadTexts: mscFriDynOpInitialAttribute.setDescription('') msc_fri_dyn_op_initial_provisioned_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 2, 11)) if mibBuilder.loadTexts: mscFriDynOpInitialProvisionedTable.setStatus('mandatory') if mibBuilder.loadTexts: mscFriDynOpInitialProvisionedTable.setDescription('') msc_fri_dyn_op_initial_provisioned_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 2, 11, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriDynOpIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriDynOpInitialIndex')) if mibBuilder.loadTexts: mscFriDynOpInitialProvisionedEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscFriDynOpInitialProvisionedEntry.setDescription('An entry in the mscFriDynOpInitialProvisionedTable.') msc_fri_dyn_op_initial_prov_attribute = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 2, 11, 1, 1), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 255)).clone(1)).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscFriDynOpInitialProvAttribute.setStatus('mandatory') if mibBuilder.loadTexts: mscFriDynOpInitialProvAttribute.setDescription('') msc_fri_dyn_op_optional = mib_identifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 3)) msc_fri_dyn_op_optional_row_status_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 3, 1)) if mibBuilder.loadTexts: mscFriDynOpOptionalRowStatusTable.setStatus('mandatory') if mibBuilder.loadTexts: mscFriDynOpOptionalRowStatusTable.setDescription('This entry controls the addition and deletion of mscFriDynOpOptional components.') msc_fri_dyn_op_optional_row_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 3, 1, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriDynOpIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriDynOpOptionalIndex')) if mibBuilder.loadTexts: mscFriDynOpOptionalRowStatusEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscFriDynOpOptionalRowStatusEntry.setDescription('A single entry in the table represents a single mscFriDynOpOptional component.') msc_fri_dyn_op_optional_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 3, 1, 1, 1), row_status()).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscFriDynOpOptionalRowStatus.setStatus('mandatory') if mibBuilder.loadTexts: mscFriDynOpOptionalRowStatus.setDescription('This variable is used as the basis for SNMP naming of mscFriDynOpOptional components. These components can be added and deleted.') msc_fri_dyn_op_optional_component_name = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 3, 1, 1, 2), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscFriDynOpOptionalComponentName.setStatus('mandatory') if mibBuilder.loadTexts: mscFriDynOpOptionalComponentName.setDescription("This variable provides the component's string name for use with the ASCII Console Interface") msc_fri_dyn_op_optional_storage_type = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 3, 1, 1, 4), storage_type()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscFriDynOpOptionalStorageType.setStatus('mandatory') if mibBuilder.loadTexts: mscFriDynOpOptionalStorageType.setDescription('This variable represents the storage type value for the mscFriDynOpOptional tables.') msc_fri_dyn_op_optional_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 3, 1, 1, 10), non_replicated()) if mibBuilder.loadTexts: mscFriDynOpOptionalIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscFriDynOpOptionalIndex.setDescription('This variable represents the index for the mscFriDynOpOptional tables.') msc_fri_dyn_op_optional_operational_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 3, 10)) if mibBuilder.loadTexts: mscFriDynOpOptionalOperationalTable.setStatus('mandatory') if mibBuilder.loadTexts: mscFriDynOpOptionalOperationalTable.setDescription('') msc_fri_dyn_op_optional_operational_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 3, 10, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriDynOpIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriDynOpOptionalIndex')) if mibBuilder.loadTexts: mscFriDynOpOptionalOperationalEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscFriDynOpOptionalOperationalEntry.setDescription('An entry in the mscFriDynOpOptionalOperationalTable.') msc_fri_dyn_op_optional_attribute = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 3, 10, 1, 1), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 255)).clone(1)).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscFriDynOpOptionalAttribute.setStatus('mandatory') if mibBuilder.loadTexts: mscFriDynOpOptionalAttribute.setDescription('') msc_fri_dyn_op_optional_provisioned_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 3, 11)) if mibBuilder.loadTexts: mscFriDynOpOptionalProvisionedTable.setStatus('mandatory') if mibBuilder.loadTexts: mscFriDynOpOptionalProvisionedTable.setDescription('') msc_fri_dyn_op_optional_provisioned_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 3, 11, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriDynOpIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriDynOpOptionalIndex')) if mibBuilder.loadTexts: mscFriDynOpOptionalProvisionedEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscFriDynOpOptionalProvisionedEntry.setDescription('An entry in the mscFriDynOpOptionalProvisionedTable.') msc_fri_dyn_op_optional_prov_attribute = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 3, 11, 1, 1), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 255)).clone(1)).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscFriDynOpOptionalProvAttribute.setStatus('mandatory') if mibBuilder.loadTexts: mscFriDynOpOptionalProvAttribute.setDescription('') msc_fri_dyn_op_dynamic = mib_identifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 4)) msc_fri_dyn_op_dynamic_row_status_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 4, 1)) if mibBuilder.loadTexts: mscFriDynOpDynamicRowStatusTable.setStatus('mandatory') if mibBuilder.loadTexts: mscFriDynOpDynamicRowStatusTable.setDescription('This entry controls the addition and deletion of mscFriDynOpDynamic components.') msc_fri_dyn_op_dynamic_row_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 4, 1, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriDynOpIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriDynOpDynamicIndex')) if mibBuilder.loadTexts: mscFriDynOpDynamicRowStatusEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscFriDynOpDynamicRowStatusEntry.setDescription('A single entry in the table represents a single mscFriDynOpDynamic component.') msc_fri_dyn_op_dynamic_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 4, 1, 1, 1), row_status()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscFriDynOpDynamicRowStatus.setStatus('mandatory') if mibBuilder.loadTexts: mscFriDynOpDynamicRowStatus.setDescription('This variable is used as the basis for SNMP naming of mscFriDynOpDynamic components. These components cannot be added nor deleted.') msc_fri_dyn_op_dynamic_component_name = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 4, 1, 1, 2), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscFriDynOpDynamicComponentName.setStatus('mandatory') if mibBuilder.loadTexts: mscFriDynOpDynamicComponentName.setDescription("This variable provides the component's string name for use with the ASCII Console Interface") msc_fri_dyn_op_dynamic_storage_type = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 4, 1, 1, 4), storage_type()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscFriDynOpDynamicStorageType.setStatus('mandatory') if mibBuilder.loadTexts: mscFriDynOpDynamicStorageType.setDescription('This variable represents the storage type value for the mscFriDynOpDynamic tables.') msc_fri_dyn_op_dynamic_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 4, 1, 1, 10), non_replicated()) if mibBuilder.loadTexts: mscFriDynOpDynamicIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscFriDynOpDynamicIndex.setDescription('This variable represents the index for the mscFriDynOpDynamic tables.') msc_fri_dyn_op_dynamic_operational_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 4, 10)) if mibBuilder.loadTexts: mscFriDynOpDynamicOperationalTable.setStatus('mandatory') if mibBuilder.loadTexts: mscFriDynOpDynamicOperationalTable.setDescription('') msc_fri_dyn_op_dynamic_operational_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 4, 10, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriDynOpIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriDynOpDynamicIndex')) if mibBuilder.loadTexts: mscFriDynOpDynamicOperationalEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscFriDynOpDynamicOperationalEntry.setDescription('An entry in the mscFriDynOpDynamicOperationalTable.') msc_fri_dyn_op_dynamic_attribute = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 4, 10, 1, 1), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 255)).clone(1)).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscFriDynOpDynamicAttribute.setStatus('mandatory') if mibBuilder.loadTexts: mscFriDynOpDynamicAttribute.setDescription('') msc_fri_dyn_op_dyn_op_jr = mib_identifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 5)) msc_fri_dyn_op_dyn_op_jr_row_status_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 5, 1)) if mibBuilder.loadTexts: mscFriDynOpDynOpJrRowStatusTable.setStatus('mandatory') if mibBuilder.loadTexts: mscFriDynOpDynOpJrRowStatusTable.setDescription('This entry controls the addition and deletion of mscFriDynOpDynOpJr components.') msc_fri_dyn_op_dyn_op_jr_row_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 5, 1, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriDynOpIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriDynOpDynOpJrIndex')) if mibBuilder.loadTexts: mscFriDynOpDynOpJrRowStatusEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscFriDynOpDynOpJrRowStatusEntry.setDescription('A single entry in the table represents a single mscFriDynOpDynOpJr component.') msc_fri_dyn_op_dyn_op_jr_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 5, 1, 1, 1), row_status()).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscFriDynOpDynOpJrRowStatus.setStatus('mandatory') if mibBuilder.loadTexts: mscFriDynOpDynOpJrRowStatus.setDescription('This variable is used as the basis for SNMP naming of mscFriDynOpDynOpJr components. These components can be added and deleted.') msc_fri_dyn_op_dyn_op_jr_component_name = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 5, 1, 1, 2), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscFriDynOpDynOpJrComponentName.setStatus('mandatory') if mibBuilder.loadTexts: mscFriDynOpDynOpJrComponentName.setDescription("This variable provides the component's string name for use with the ASCII Console Interface") msc_fri_dyn_op_dyn_op_jr_storage_type = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 5, 1, 1, 4), storage_type()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscFriDynOpDynOpJrStorageType.setStatus('mandatory') if mibBuilder.loadTexts: mscFriDynOpDynOpJrStorageType.setDescription('This variable represents the storage type value for the mscFriDynOpDynOpJr tables.') msc_fri_dyn_op_dyn_op_jr_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 5, 1, 1, 10), non_replicated()) if mibBuilder.loadTexts: mscFriDynOpDynOpJrIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscFriDynOpDynOpJrIndex.setDescription('This variable represents the index for the mscFriDynOpDynOpJr tables.') msc_fri_dyn_op_dyn_op_jr_operational_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 5, 10)) if mibBuilder.loadTexts: mscFriDynOpDynOpJrOperationalTable.setStatus('mandatory') if mibBuilder.loadTexts: mscFriDynOpDynOpJrOperationalTable.setDescription('') msc_fri_dyn_op_dyn_op_jr_operational_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 5, 10, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriDynOpIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriDynOpDynOpJrIndex')) if mibBuilder.loadTexts: mscFriDynOpDynOpJrOperationalEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscFriDynOpDynOpJrOperationalEntry.setDescription('An entry in the mscFriDynOpDynOpJrOperationalTable.') msc_fri_dyn_op_dyn_op_jr_attribute = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 5, 10, 1, 1), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 255)).clone(1)).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscFriDynOpDynOpJrAttribute.setStatus('mandatory') if mibBuilder.loadTexts: mscFriDynOpDynOpJrAttribute.setDescription('') msc_fri_event = mib_identifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 9)) msc_fri_event_row_status_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 9, 1)) if mibBuilder.loadTexts: mscFriEventRowStatusTable.setStatus('mandatory') if mibBuilder.loadTexts: mscFriEventRowStatusTable.setDescription('This entry controls the addition and deletion of mscFriEvent components.') msc_fri_event_row_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 9, 1, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriEventIndex')) if mibBuilder.loadTexts: mscFriEventRowStatusEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscFriEventRowStatusEntry.setDescription('A single entry in the table represents a single mscFriEvent component.') msc_fri_event_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 9, 1, 1, 1), row_status()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscFriEventRowStatus.setStatus('mandatory') if mibBuilder.loadTexts: mscFriEventRowStatus.setDescription('This variable is used as the basis for SNMP naming of mscFriEvent components. These components cannot be added nor deleted.') msc_fri_event_component_name = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 9, 1, 1, 2), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscFriEventComponentName.setStatus('mandatory') if mibBuilder.loadTexts: mscFriEventComponentName.setDescription("This variable provides the component's string name for use with the ASCII Console Interface") msc_fri_event_storage_type = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 9, 1, 1, 4), storage_type()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscFriEventStorageType.setStatus('mandatory') if mibBuilder.loadTexts: mscFriEventStorageType.setDescription('This variable represents the storage type value for the mscFriEvent tables.') msc_fri_event_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 9, 1, 1, 10), non_replicated()) if mibBuilder.loadTexts: mscFriEventIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscFriEventIndex.setDescription('This variable represents the index for the mscFriEvent tables.') msc_fri_registered = mib_identifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 18)) msc_fri_registered_row_status_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 18, 1)) if mibBuilder.loadTexts: mscFriRegisteredRowStatusTable.setStatus('mandatory') if mibBuilder.loadTexts: mscFriRegisteredRowStatusTable.setDescription('This entry controls the addition and deletion of mscFriRegistered components.') msc_fri_registered_row_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 18, 1, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriRegisteredIndex')) if mibBuilder.loadTexts: mscFriRegisteredRowStatusEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscFriRegisteredRowStatusEntry.setDescription('A single entry in the table represents a single mscFriRegistered component.') msc_fri_registered_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 18, 1, 1, 1), row_status()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscFriRegisteredRowStatus.setStatus('mandatory') if mibBuilder.loadTexts: mscFriRegisteredRowStatus.setDescription('This variable is used as the basis for SNMP naming of mscFriRegistered components. These components cannot be added nor deleted.') msc_fri_registered_component_name = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 18, 1, 1, 2), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscFriRegisteredComponentName.setStatus('mandatory') if mibBuilder.loadTexts: mscFriRegisteredComponentName.setDescription("This variable provides the component's string name for use with the ASCII Console Interface") msc_fri_registered_storage_type = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 18, 1, 1, 4), storage_type()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscFriRegisteredStorageType.setStatus('mandatory') if mibBuilder.loadTexts: mscFriRegisteredStorageType.setDescription('This variable represents the storage type value for the mscFriRegistered tables.') msc_fri_registered_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 18, 1, 1, 10), integer32().subtype(subtypeSpec=value_range_constraint(0, 15))) if mibBuilder.loadTexts: mscFriRegisteredIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscFriRegisteredIndex.setDescription('This variable represents the index for the mscFriRegistered tables.') msc_fri_registered_data_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 18, 10)) if mibBuilder.loadTexts: mscFriRegisteredDataTable.setStatus('mandatory') if mibBuilder.loadTexts: mscFriRegisteredDataTable.setDescription('') msc_fri_registered_data_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 18, 10, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriRegisteredIndex')) if mibBuilder.loadTexts: mscFriRegisteredDataEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscFriRegisteredDataEntry.setDescription('An entry in the mscFriRegisteredDataTable.') msc_fri_registered_attribute = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 18, 10, 1, 1), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 255)).clone(1)).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscFriRegisteredAttribute.setStatus('mandatory') if mibBuilder.loadTexts: mscFriRegisteredAttribute.setDescription('') msc_registered = mib_identifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5004)) msc_registered_row_status_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5004, 1)) if mibBuilder.loadTexts: mscRegisteredRowStatusTable.setStatus('mandatory') if mibBuilder.loadTexts: mscRegisteredRowStatusTable.setDescription('This entry controls the addition and deletion of mscRegistered components.') msc_registered_row_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5004, 1, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscRegisteredIndex')) if mibBuilder.loadTexts: mscRegisteredRowStatusEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscRegisteredRowStatusEntry.setDescription('A single entry in the table represents a single mscRegistered component.') msc_registered_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5004, 1, 1, 1), row_status()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscRegisteredRowStatus.setStatus('mandatory') if mibBuilder.loadTexts: mscRegisteredRowStatus.setDescription('This variable is used as the basis for SNMP naming of mscRegistered components. These components cannot be added nor deleted.') msc_registered_component_name = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5004, 1, 1, 2), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscRegisteredComponentName.setStatus('mandatory') if mibBuilder.loadTexts: mscRegisteredComponentName.setDescription("This variable provides the component's string name for use with the ASCII Console Interface") msc_registered_storage_type = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5004, 1, 1, 4), storage_type()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscRegisteredStorageType.setStatus('mandatory') if mibBuilder.loadTexts: mscRegisteredStorageType.setDescription('This variable represents the storage type value for the mscRegistered tables.') msc_registered_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5004, 1, 1, 10), integer32().subtype(subtypeSpec=value_range_constraint(0, 15))) if mibBuilder.loadTexts: mscRegisteredIndex.setStatus('mandatory') if mibBuilder.loadTexts: mscRegisteredIndex.setDescription('This variable represents the index for the mscRegistered tables.') msc_registered_data_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5004, 10)) if mibBuilder.loadTexts: mscRegisteredDataTable.setStatus('mandatory') if mibBuilder.loadTexts: mscRegisteredDataTable.setDescription('') msc_registered_data_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5004, 10, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscRegisteredIndex')) if mibBuilder.loadTexts: mscRegisteredDataEntry.setStatus('mandatory') if mibBuilder.loadTexts: mscRegisteredDataEntry.setDescription('An entry in the mscRegisteredDataTable.') msc_registered_attribute = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5004, 10, 1, 1), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 255)).clone(1)).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscRegisteredAttribute.setStatus('mandatory') if mibBuilder.loadTexts: mscRegisteredAttribute.setDescription('') cas_test_group = mib_identifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 2, 103, 1)) cas_test_group_ca = mib_identifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 2, 103, 1, 1)) cas_test_group_ca02 = mib_identifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 2, 103, 1, 1, 3)) cas_test_group_ca02_a = mib_identifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 2, 103, 1, 1, 3, 2)) cas_test_capabilities = mib_identifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 2, 103, 3)) cas_test_capabilities_ca = mib_identifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 2, 103, 3, 1)) cas_test_capabilities_ca02 = mib_identifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 2, 103, 3, 1, 3)) cas_test_capabilities_ca02_a = mib_identifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 2, 103, 3, 1, 3, 2)) mibBuilder.exportSymbols('Nortel-MsCarrier-MscPassport-CasTestMIB', mscExampleWildBcdProvFreeWildBcdArrayTable=mscExampleWildBcdProvFreeWildBcdArrayTable, mscExampleHexProvStructHexVectorTable=mscExampleHexProvStructHexVectorTable, mscExampleDecimalPsIntArrayRowIndex=mscExampleDecimalPsIntArrayRowIndex, mscExampleBcdProvFreeBcdReplicatedTable=mscExampleBcdProvFreeBcdReplicatedTable, mscExampleStringProvStructAsciiOnly=mscExampleStringProvStructAsciiOnly, mscExampleMiscellaneousProvFreeTimeList2Table=mscExampleMiscellaneousProvFreeTimeList2Table, mscExampleBcdProvFreeBcd=mscExampleBcdProvFreeBcd, mscExampleHexProvFreeHexArray1Table=mscExampleHexProvFreeHexArray1Table, mscExampleSequenceIndicesRowStatusEntry=mscExampleSequenceIndicesRowStatusEntry, mscExampleHexOfHexVectorTable=mscExampleHexOfHexVectorTable, mscExampleHexProvStructHexArrayColumnIndex=mscExampleHexProvStructHexArrayColumnIndex, mscExampleDashedProvFreeDashedVectorTable=mscExampleDashedProvFreeDashedVectorTable, mscExampleBcdIndicesStorageType=mscExampleBcdIndicesStorageType, mscFriOperationalState=mscFriOperationalState, mscExampleObjIdIndicesProvisionedTable=mscExampleObjIdIndicesProvisionedTable, mscExampleExtendedOperFreeExtendedReplicatedEntry=mscExampleExtendedOperFreeExtendedReplicatedEntry, mscExampleStringProvFreeStrListRowStatus=mscExampleStringProvFreeStrListRowStatus, mscFriDynOpInitialProvisionedEntry=mscFriDynOpInitialProvisionedEntry, mscExampleExtendedOperFreeExtendedArrayEntry=mscExampleExtendedOperFreeExtendedArrayEntry, mscExampleProvEnumSubCreatedValue=mscExampleProvEnumSubCreatedValue, mscExampleProvSignedSubCreatedValue=mscExampleProvSignedSubCreatedValue, mscExampleHexOfHexArrayEntry=mscExampleHexOfHexArrayEntry, mscExampleDecimalProvStructInteger=mscExampleDecimalProvStructInteger, mscExampleHexProvFreeHexArrayRowIndex=mscExampleHexProvFreeHexArrayRowIndex, mscExampleBcdProvFreeBcdArray1Table=mscExampleBcdProvFreeBcdArray1Table, mscExampleEnumIndicesRowStatus=mscExampleEnumIndicesRowStatus, mscFriProvisionalStructSimpleFixed=mscFriProvisionalStructSimpleFixed, mscExampleDecimalOfIntReplicatedEntry=mscExampleDecimalOfIntReplicatedEntry, mscExampleEnumProvFreeEnumVector1Value=mscExampleEnumProvFreeEnumVector1Value, mscExampleIpAddrIndicesTwoIndex=mscExampleIpAddrIndicesTwoIndex, mscExampleExtendedProvFreeExtendedListValue=mscExampleExtendedProvFreeExtendedListValue, mscFriDynamicRowStatusEntry=mscFriDynamicRowStatusEntry, mscExampleWildBcdOperFreeWildBcdListEntry=mscExampleWildBcdOperFreeWildBcdListEntry, mscFriProceduralStatus=mscFriProceduralStatus, mscFriDna=mscFriDna, mscExampleSequenceOperFreeSequence=mscExampleSequenceOperFreeSequence, mscExampleHexProvStructHexVectorValue=mscExampleHexProvStructHexVectorValue, mscExampleRequiredIndicesRowStatusTable=mscExampleRequiredIndicesRowStatusTable, mscExampleHexProvFreeHexArray1RowIndex=mscExampleHexProvFreeHexArray1RowIndex, mscExampleBcdOperFreeBcdArrayTable=mscExampleBcdOperFreeBcdArrayTable, mscExampleBcdProvFreeBcdReplicatedIndex=mscExampleBcdProvFreeBcdReplicatedIndex, mscExampleObjectIdOperFreeObjIdListEntry=mscExampleObjectIdOperFreeObjIdListEntry, mscExampleDecimalOfIntListTable=mscExampleDecimalOfIntListTable, mscFriProvisionalFreeSimpleAscii=mscFriProvisionalFreeSimpleAscii, mscExampleWildBcdOperStructWildBcdArrayColumnIndex=mscExampleWildBcdOperStructWildBcdArrayColumnIndex, mscExampleBcdProvStructBcdArrayColumnIndex=mscExampleBcdProvStructBcdArrayColumnIndex, mscExampleDashedOperationalTable=mscExampleDashedOperationalTable, mscFriOperationalStructSetEnumeration=mscFriOperationalStructSetEnumeration, mscExampleDecimalPfIntVector1Entry=mscExampleDecimalPfIntVector1Entry, mscExampleBcdOperStructBcdVectorValue=mscExampleBcdOperStructBcdVectorValue, mscExampleIpAddressProvFreeIpAddressVector1Entry=mscExampleIpAddressProvFreeIpAddressVector1Entry, mscFriDynOpRowStatus=mscFriDynOpRowStatus, mscExampleSequenceOperationalEntry=mscExampleSequenceOperationalEntry, mscExampleEnumProvFreeEnumVector1Table=mscExampleEnumProvFreeEnumVector1Table, mscExampleStringProvFreeStrList1Entry=mscExampleStringProvFreeStrList1Entry, mscExampleBcdProvFreeBcdArray1Entry=mscExampleBcdProvFreeBcdArray1Entry, mscExampleObjectIdProvFreeObjIdReplicatedTable=mscExampleObjectIdProvFreeObjIdReplicatedTable, mscExampleSequenceProvFreeSequenceReplicatedEntry=mscExampleSequenceProvFreeSequenceReplicatedEntry, mscExampleHexProvFreeHexReplicated1Entry=mscExampleHexProvFreeHexReplicated1Entry, mscExampleExtendedOperFreeExtended=mscExampleExtendedOperFreeExtended, mscExampleOperEnumSubCreatedRowStatus=mscExampleOperEnumSubCreatedRowStatus, mscExampleIpAddressProvFreeIpAddressArrayTable=mscExampleIpAddressProvFreeIpAddressArrayTable, mscExampleTwoIndicesRowStatusEntry=mscExampleTwoIndicesRowStatusEntry, mscExampleDecimalOfIntListEntry=mscExampleDecimalOfIntListEntry, mscExampleMiscellaneousProvFreeTimeDateTimeMinute1=mscExampleMiscellaneousProvFreeTimeDateTimeMinute1, mscExampleBcdOperStructBcdVectorTable=mscExampleBcdOperStructBcdVectorTable, mscExampleSignedOperStructSignedArrayRowIndex=mscExampleSignedOperStructSignedArrayRowIndex, mscExampleDecimalPfIntVector1Index=mscExampleDecimalPfIntVector1Index, mscExampleAsciiIndicesProvAttribute=mscExampleAsciiIndicesProvAttribute, mscExampleEnumProvFreeEnumArray1MonthIndex=mscExampleEnumProvFreeEnumArray1MonthIndex, mscExampleObjIdIndicesOneIndex=mscExampleObjIdIndicesOneIndex, mscExampleSequenceIndicesRowStatusTable=mscExampleSequenceIndicesRowStatusTable, mscExampleHexOfHexListValue=mscExampleHexOfHexListValue, mscExampleHexProvisionalEntry=mscExampleHexProvisionalEntry, mscExampleHexProvStructHexArrayTable=mscExampleHexProvStructHexArrayTable, mscFriPfListAsciiEntry=mscFriPfListAsciiEntry, mscExampleSignedRowStatusEntry=mscExampleSignedRowStatusEntry, mscExampleDecimalPfIntArray1Value=mscExampleDecimalPfIntArray1Value, mscExampleFourIndicesOneIndex=mscExampleFourIndicesOneIndex, mscExampleIpAddressStorageType=mscExampleIpAddressStorageType, mscExampleThreeIndicesProvAttribute=mscExampleThreeIndicesProvAttribute, mscExampleBcdStorageType=mscExampleBcdStorageType, mscExampleBcdProvFreeBcdListValue=mscExampleBcdProvFreeBcdListValue, mscExampleSignedProvFreeSignedVector1Entry=mscExampleSignedProvFreeSignedVector1Entry, mscExampleStringOperFreeStrReplicatedIndex=mscExampleStringOperFreeStrReplicatedIndex, mscExampleFixedPtProvFreeFixedPtVectorEntry=mscExampleFixedPtProvFreeFixedPtVectorEntry, mscExampleDecimalPfIntVectorIndex=mscExampleDecimalPfIntVectorIndex, mscExampleExtendedOperStructExtended=mscExampleExtendedOperStructExtended, mscFriDynamicRowStatus=mscFriDynamicRowStatus, mscExampleMiscellaneousProvFreeLongReplicatedRowStatus=mscExampleMiscellaneousProvFreeLongReplicatedRowStatus, mscExampleBcdIndicesProvisionedEntry=mscExampleBcdIndicesProvisionedEntry, mscExampleBcdProvFreeBcdArrayRowIndex=mscExampleBcdProvFreeBcdArrayRowIndex, mscExampleRequiredIndicesProvisionedEntry=mscExampleRequiredIndicesProvisionedEntry, mscExampleExtendedProvFreeExtendedArrayTable=mscExampleExtendedProvFreeExtendedArrayTable, mscExampleSignedProvFreeSignedArray1Entry=mscExampleSignedProvFreeSignedArray1Entry, mscExampleDecimalIndicesStorageType=mscExampleDecimalIndicesStorageType, mscExampleBcdOperFreeBcdVectorEntry=mscExampleBcdOperFreeBcdVectorEntry, mscExampleDashedOsDashedArrayColumnIndex=mscExampleDashedOsDashedArrayColumnIndex, mscExampleDecimalPsIntVectorValue=mscExampleDecimalPsIntVectorValue, mscExampleIpAddressOperStructIpAddressArrayValue=mscExampleIpAddressOperStructIpAddressArrayValue, mscExampleExtendedProvStructExtendedArrayTable=mscExampleExtendedProvStructExtendedArrayTable, mscExampleFixedPtProvStructFixedPtArrayRowIndex=mscExampleFixedPtProvStructFixedPtArrayRowIndex, mscExampleIpAddressProvFreeIpAddressReplicatedTable=mscExampleIpAddressProvFreeIpAddressReplicatedTable, mscExampleHexProvFreeHexArray1Entry=mscExampleHexProvFreeHexArray1Entry, mscExampleEnumOperStructEnum=mscExampleEnumOperStructEnum, mscExampleDecimalPfIntArray1RowIndex=mscExampleDecimalPfIntArray1RowIndex, mscExampleDashedProvStructDashedVectorValue=mscExampleDashedProvStructDashedVectorValue, mscFriProvisionalStructSimpleAscii=mscFriProvisionalStructSimpleAscii, mscExampleProvStringSubCreatedRowStatus=mscExampleProvStringSubCreatedRowStatus, mscExampleSignedOperStructSignedVectorTable=mscExampleSignedOperStructSignedVectorTable, mscExampleWildBcdOperFreeWildBcdVectorIndex=mscExampleWildBcdOperFreeWildBcdVectorIndex, mscExampleWildBcdOperFreeWildBcdVectorTable=mscExampleWildBcdOperFreeWildBcdVectorTable, mscFriDynOpDynOpJrRowStatusEntry=mscFriDynOpDynOpJrRowStatusEntry, mscExampleNsapAtmAddrTable=mscExampleNsapAtmAddrTable, mscExampleFourIndicesProvisionedEntry=mscExampleFourIndicesProvisionedEntry, mscFriDynOpOptionalStorageType=mscFriDynOpOptionalStorageType, mscFriPfListSignedRowStatus=mscFriPfListSignedRowStatus, mscExampleSignedProvFreeSignedVectorIndex=mscExampleSignedProvFreeSignedVectorIndex, mscFriEventRowStatusEntry=mscFriEventRowStatusEntry, mscExampleFixedPtOperFreeFixedPtArrayRowIndex=mscExampleFixedPtOperFreeFixedPtArrayRowIndex, casTestGroup=casTestGroup, mscExampleOperationalEntry=mscExampleOperationalEntry, mscExampleHexOsHexArrayTable=mscExampleHexOsHexArrayTable, mscExampleIpAddressOperFreeIpAddressListValue=mscExampleIpAddressOperFreeIpAddressListValue, mscExampleObjectIdRowStatusTable=mscExampleObjectIdRowStatusTable, mscExampleDecimalOperationalEntry=mscExampleDecimalOperationalEntry, mscExampleDecimalProvFreeInteger=mscExampleDecimalProvFreeInteger, mscExampleBcdIndicesProvAttribute=mscExampleBcdIndicesProvAttribute, mscExampleDashedIndex=mscExampleDashedIndex, mscFriOperationalStructSimpleEnum=mscFriOperationalStructSimpleEnum, mscExampleEnumOperFreeEnumReplicatedIndex=mscExampleEnumOperFreeEnumReplicatedIndex, mscExampleObjectIdProvFreeObjIdListTable=mscExampleObjectIdProvFreeObjIdListTable, mscExampleFixedPtProvStructFixedPtVectorTable=mscExampleFixedPtProvStructFixedPtVectorTable, mscExampleDecimalPfIntReplicated1Table=mscExampleDecimalPfIntReplicated1Table, mscExampleFixedPtOperFreeFixedPtListEntry=mscExampleFixedPtOperFreeFixedPtListEntry, mscExampleDashedOfDashedArrayRowIndex=mscExampleDashedOfDashedArrayRowIndex, mscRegisteredAttribute=mscRegisteredAttribute, mscExampleEnumOperStructEnumSet=mscExampleEnumOperStructEnumSet, mscFriOperationalFreeSimpleObjId=mscFriOperationalFreeSimpleObjId, mscFriOperationalFreeSimpleSequence=mscFriOperationalFreeSimpleSequence, mscExampleDashedProvisionalTable=mscExampleDashedProvisionalTable, mscExampleIpAddressRowStatus=mscExampleIpAddressRowStatus, mscExampleHexProvFreeHexArray2Value=mscExampleHexProvFreeHexArray2Value, mscExampleStringProvStringSub=mscExampleStringProvStringSub, mscExampleObjectIdOperFreeObjIdReplicatedRowStatus=mscExampleObjectIdOperFreeObjIdReplicatedRowStatus, mscExampleIpAddressProvStructIpAddressArrayValue=mscExampleIpAddressProvStructIpAddressArrayValue, mscExampleHexStrIndicesRowStatusTable=mscExampleHexStrIndicesRowStatusTable, mscExampleSignedProvFreeSignedVector1Table=mscExampleSignedProvFreeSignedVector1Table, mscFriPfListUnsignedRowStatus=mscFriPfListUnsignedRowStatus, mscExampleFixedPtProvFreeFixedPtSet=mscExampleFixedPtProvFreeFixedPtSet, mscExampleIpAddressProvFreeIpAddressArrayEntry=mscExampleIpAddressProvFreeIpAddressArrayEntry, mscExampleExtendedOperFreeExtendedArrayValue=mscExampleExtendedOperFreeExtendedArrayValue, mscExampleEnumProvisionalTable=mscExampleEnumProvisionalTable, mscExampleStringProvFreeStrReplicatedTable=mscExampleStringProvFreeStrReplicatedTable, mscExampleDecimalPfIntListEntry=mscExampleDecimalPfIntListEntry, mscExampleSequenceOperFreeSequenceReplicatedValue=mscExampleSequenceOperFreeSequenceReplicatedValue, mscExampleBcdOperFreeBcdListEntry=mscExampleBcdOperFreeBcdListEntry, mscExampleFixedPtProvFreeFixedPtReplicatedTable=mscExampleFixedPtProvFreeFixedPtReplicatedTable, mscExampleMiscellaneousProvFreeTimeList1Value=mscExampleMiscellaneousProvFreeTimeList1Value, mscExampleMiscellaneousOperFreeTime=mscExampleMiscellaneousOperFreeTime, mscExampleDecimalProvisionalEntry=mscExampleDecimalProvisionalEntry, mscExampleFourIndicesStorageType=mscExampleFourIndicesStorageType, mscExampleIpAddressProvStructIpAddressVectorEntry=mscExampleIpAddressProvStructIpAddressVectorEntry, mscExampleFixedPtProvStructFixedPtSet=mscExampleFixedPtProvStructFixedPtSet, mscExampleObjectIdProvFreeObjIdReplicatedRowStatus=mscExampleObjectIdProvFreeObjIdReplicatedRowStatus, mscExampleMiscellaneousOperFreeTimeListTable=mscExampleMiscellaneousOperFreeTimeListTable, mscExampleEnumProvFreeEnumArray1Value=mscExampleEnumProvFreeEnumArray1Value, mscExampleDecimalPfIntList1Value=mscExampleDecimalPfIntList1Value, mscExampleWildBcdOperStructWildBcdVectorTable=mscExampleWildBcdOperStructWildBcdVectorTable, mscFriDnaRowStatusTable=mscFriDnaRowStatusTable, mscExampleSignedProvFreeSigned1=mscExampleSignedProvFreeSigned1, mscExampleWildBcdProvStructWildBcdVectorTable=mscExampleWildBcdProvStructWildBcdVectorTable, mscExampleOperSignedSubCreatedTable=mscExampleOperSignedSubCreatedTable, mscExampleDashedProvStructDashed=mscExampleDashedProvStructDashed, mscFriDynOpOptionalProvAttribute=mscFriDynOpOptionalProvAttribute, mscExampleFixedPtOperFreeFixedPtReplicatedRowStatus=mscExampleFixedPtOperFreeFixedPtReplicatedRowStatus, mscExampleDashedIndicesProvisionedEntry=mscExampleDashedIndicesProvisionedEntry, mscExampleDecimalOfIntReplicatedRowStatus=mscExampleDecimalOfIntReplicatedRowStatus, mscExampleDecimalProvFreeInteger2=mscExampleDecimalProvFreeInteger2, mscExampleBcdProvFreeBcdVectorValue=mscExampleBcdProvFreeBcdVectorValue, mscExampleMiscellaneousOperFreeLongReplicatedValue=mscExampleMiscellaneousOperFreeLongReplicatedValue, mscExampleHexIndicesRowStatusTable=mscExampleHexIndicesRowStatusTable, mscExampleEnumIndicesRowStatusEntry=mscExampleEnumIndicesRowStatusEntry, mscExampleIpAddressOperationalTable=mscExampleIpAddressOperationalTable, mscExampleHexStorageType=mscExampleHexStorageType, mscExampleExtendedProvFreeExtendedListEntry=mscExampleExtendedProvFreeExtendedListEntry, mscExampleIpAddressOperStructIpAddressArrayTable=mscExampleIpAddressOperStructIpAddressArrayTable, mscExampleStringProvFreeStrVector1Table=mscExampleStringProvFreeStrVector1Table, mscExampleWildBcdProvStructWildBcdArrayRowIndex=mscExampleWildBcdProvStructWildBcdArrayRowIndex, mscExampleFixedPtProvFreeFixedPtListTable=mscExampleFixedPtProvFreeFixedPtListTable, mscExampleSignedOperStructSignedArrayValue=mscExampleSignedOperStructSignedArrayValue, mscExampleStringProvFreeStrReplicatedValue=mscExampleStringProvFreeStrReplicatedValue, mscExampleBcdIndices=mscExampleBcdIndices, mscExampleBcdProvFreeBcdList1RowStatus=mscExampleBcdProvFreeBcdList1RowStatus, mscExampleOneIndexOneIndex=mscExampleOneIndexOneIndex, mscExampleDecimalStorageType=mscExampleDecimalStorageType, mscExampleBcdOperStructBcdArrayValue=mscExampleBcdOperStructBcdArrayValue, mscFriRegisteredIndex=mscFriRegisteredIndex, mscExampleRequiredIndicesProvAttribute=mscExampleRequiredIndicesProvAttribute, mscExampleEnumOperationalTable=mscExampleEnumOperationalTable, mscExampleFixedPtOperFreeFixedPtArrayEntry=mscExampleFixedPtOperFreeFixedPtArrayEntry, mscExampleEnumIndicesProvisionedTable=mscExampleEnumIndicesProvisionedTable, mscFriProvisionalFreeSimpleExtended=mscFriProvisionalFreeSimpleExtended, mscExampleTwoIndicesProvisionedTable=mscExampleTwoIndicesProvisionedTable, mscExampleWildBcdOperFreeWildBcdListValue=mscExampleWildBcdOperFreeWildBcdListValue, mscExampleEnumProvFreeEnumVector1Entry=mscExampleEnumProvFreeEnumVector1Entry, mscExampleEnumProvFreeEnumArray1DayIndex=mscExampleEnumProvFreeEnumArray1DayIndex, mscExampleSignedOperFreeSignedVectorEntry=mscExampleSignedOperFreeSignedVectorEntry, mscExampleIpAddressComponentName=mscExampleIpAddressComponentName, mscFriDynOpDynOpJrComponentName=mscFriDynOpDynOpJrComponentName, mscExampleExtendedProvStructExtendedArrayRowIndex=mscExampleExtendedProvStructExtendedArrayRowIndex, mscExampleTwoIndices=mscExampleTwoIndices, mscExampleSequenceIndicesThreeIndex=mscExampleSequenceIndicesThreeIndex, mscExampleEnumRowStatus=mscExampleEnumRowStatus, mscExampleWildBcdProvFreeWildBcdReplicatedRowStatus=mscExampleWildBcdProvFreeWildBcdReplicatedRowStatus, mscExampleDashedOfDashedReplicatedValue=mscExampleDashedOfDashedReplicatedValue, mscExampleEnumProvFreeEnumReplicatedTable=mscExampleEnumProvFreeEnumReplicatedTable, mscExampleSignedOperationalEntry=mscExampleSignedOperationalEntry, mscExampleRequiredIndicesDecimalIndex=mscExampleRequiredIndicesDecimalIndex, mscExampleExtendedOperationalTable=mscExampleExtendedOperationalTable, mscExampleNsapNsapNativeAddress=mscExampleNsapNsapNativeAddress, mscExampleWildBcdOperationalTable=mscExampleWildBcdOperationalTable, mscExampleObjIdIndices=mscExampleObjIdIndices, mscExampleDecimalPfIntArrayRowIndex=mscExampleDecimalPfIntArrayRowIndex, mscFriDynOpDynOpJrAttribute=mscFriDynOpDynOpJrAttribute, mscExampleEnumOperFreeEnumArrayValue=mscExampleEnumOperFreeEnumArrayValue, mscExampleExtendedProvFreeExtendedListTable=mscExampleExtendedProvFreeExtendedListTable, mscExampleExtendedOperStructExtendedArrayColumnIndex=mscExampleExtendedOperStructExtendedArrayColumnIndex, mscExampleExtendedProvFreeExtended=mscExampleExtendedProvFreeExtended, mscFriPfListFixedValue=mscFriPfListFixedValue, mscExampleWildBcdProvStructWildBcdVectorIndex=mscExampleWildBcdProvStructWildBcdVectorIndex, mscExampleProvDecimalSubCreatedValue=mscExampleProvDecimalSubCreatedValue, mscExampleDashedProvFreeDashedReplicatedRowStatus=mscExampleDashedProvFreeDashedReplicatedRowStatus, mscExampleEnumIndices=mscExampleEnumIndices, mscExampleBcdProvFreeBcd1=mscExampleBcdProvFreeBcd1, mscFriDynOpOptionalAttribute=mscFriDynOpOptionalAttribute, mscExampleDashedProvFreeDashedListValue=mscExampleDashedProvFreeDashedListValue, mscExampleIpAddressOperStructIpAddressVectorTable=mscExampleIpAddressOperStructIpAddressVectorTable, mscExampleHexStrIndicesProvisionedTable=mscExampleHexStrIndicesProvisionedTable, mscExampleEnumProvFreeEnumList1Value=mscExampleEnumProvFreeEnumList1Value, mscExampleFourIndicesFourIndex=mscExampleFourIndicesFourIndex, mscExampleMiscellaneousOperFreeLong=mscExampleMiscellaneousOperFreeLong, mscExampleWildBcdOperStructWildBcdArrayValue=mscExampleWildBcdOperStructWildBcdArrayValue, mscExampleObjectIdOperFreeObjIdReplicatedIndex=mscExampleObjectIdOperFreeObjIdReplicatedIndex, mscExampleDashedIndicesRowStatusEntry=mscExampleDashedIndicesRowStatusEntry, mscExampleSignedComponentName=mscExampleSignedComponentName, mscExampleIpAddressOperFreeIpAddressVectorEntry=mscExampleIpAddressOperFreeIpAddressVectorEntry, mscExampleDecimalRowStatus=mscExampleDecimalRowStatus, mscFriOperationalStructSimpleHex=mscFriOperationalStructSimpleHex, mscFriEventIndex=mscFriEventIndex, mscExampleBcdProvFreeBcdListTable=mscExampleBcdProvFreeBcdListTable, mscExampleIpAddressProvFreeIpAddressVectorEntry=mscExampleIpAddressProvFreeIpAddressVectorEntry, mscExampleDecimalIndicesRowStatus=mscExampleDecimalIndicesRowStatus, mscExampleBcdOperFreeBcdReplicatedEntry=mscExampleBcdOperFreeBcdReplicatedEntry) mibBuilder.exportSymbols('Nortel-MsCarrier-MscPassport-CasTestMIB', mscExampleFixedPtOperFreeFixedPtReplicatedEntry=mscExampleFixedPtOperFreeFixedPtReplicatedEntry, mscExampleBcdOperFreeBcdReplicatedTable=mscExampleBcdOperFreeBcdReplicatedTable, mscExampleExtendedOperFreeExtendedReplicatedValue=mscExampleExtendedOperFreeExtendedReplicatedValue, mscExampleObjectIdOperFreeObjIdListRowStatus=mscExampleObjectIdOperFreeObjIdListRowStatus, mscFriDynOpOptionalComponentName=mscFriDynOpOptionalComponentName, mscExampleStringProvFreeStrReplicatedRowStatus=mscExampleStringProvFreeStrReplicatedRowStatus, mscExampleOperMyComponentName=mscExampleOperMyComponentName, mscExampleStringStorageType=mscExampleStringStorageType, mscExampleIpAddressOperFreeIpAddressArrayValue=mscExampleIpAddressOperFreeIpAddressArrayValue, mscExampleSequenceOperationalTable=mscExampleSequenceOperationalTable, mscExampleSignedProvStructSignedVectorValue=mscExampleSignedProvStructSignedVectorValue, mscExampleDecimalRowStatusEntry=mscExampleDecimalRowStatusEntry, mscExampleStringProvFreeStrListValue=mscExampleStringProvFreeStrListValue, mscExampleHexOsHexVectorTable=mscExampleHexOsHexVectorTable, mscExampleEnumProvFreeEnumArrayDayIndex=mscExampleEnumProvFreeEnumArrayDayIndex, mscExampleDashedProvStructDashedArrayValue=mscExampleDashedProvStructDashedArrayValue, mscExampleEnumIndicesRowStatusTable=mscExampleEnumIndicesRowStatusTable, mscExampleIpAddressProvStructIpAddressVectorTable=mscExampleIpAddressProvStructIpAddressVectorTable, mscExampleDashedOfDashedListValue=mscExampleDashedOfDashedListValue, mscExampleDecimalProvDecimalSub=mscExampleDecimalProvDecimalSub, mscExampleEnumProvFreeEnumListEntry=mscExampleEnumProvFreeEnumListEntry, mscFriDynOpAttribute=mscFriDynOpAttribute, mscExampleHexOsHexArrayValue=mscExampleHexOsHexArrayValue, mscFriOperationalStructSimpleDashed=mscFriOperationalStructSimpleDashed, mscExampleDashedOsDashedArrayRowIndex=mscExampleDashedOsDashedArrayRowIndex, mscExampleBcdProvFreeBcdVector1Table=mscExampleBcdProvFreeBcdVector1Table, mscExampleFixedPtRowStatusTable=mscExampleFixedPtRowStatusTable, mscExampleIpAddressProvStructIpAddressArrayColumnIndex=mscExampleIpAddressProvStructIpAddressArrayColumnIndex, mscFriDynOpOptionalOperationalTable=mscFriDynOpOptionalOperationalTable, mscExampleEnumProvFreeEnumList1Entry=mscExampleEnumProvFreeEnumList1Entry, mscExampleNsapNativeEntry=mscExampleNsapNativeEntry, mscExampleFixedPtProvFreeFixedPtReplicatedRowStatus=mscExampleFixedPtProvFreeFixedPtReplicatedRowStatus, mscFriProvisionalStructSimpleSigned=mscFriProvisionalStructSimpleSigned, mscExampleWildBcdProvStructWildBcdVectorValue=mscExampleWildBcdProvStructWildBcdVectorValue, mscExampleSequence=mscExampleSequence, mscExampleDashedOsDashedVectorValue=mscExampleDashedOsDashedVectorValue, mscExampleMiscellaneousProvFreeLongListValue=mscExampleMiscellaneousProvFreeLongListValue, mscExampleIpAddressProvStructIpAddress=mscExampleIpAddressProvStructIpAddress, mscExampleDecimalPfIntList1Table=mscExampleDecimalPfIntList1Table, mscFriDynOpDynamicOperationalEntry=mscFriDynOpDynamicOperationalEntry, mscFriEvent=mscFriEvent, mscFriProvisionalStructSimpleExtended=mscFriProvisionalStructSimpleExtended, mscExampleDecimalPfIntReplicatedValue=mscExampleDecimalPfIntReplicatedValue, mscExampleMiscellaneousRowStatusTable=mscExampleMiscellaneousRowStatusTable, mscExampleStringOperStructAsciiOnly=mscExampleStringOperStructAsciiOnly, mscExampleHexIndicesOneIndex=mscExampleHexIndicesOneIndex, mscExampleEnumOperFreeEnumVectorEntry=mscExampleEnumOperFreeEnumVectorEntry, mscExampleIpAddressOperationalEntry=mscExampleIpAddressOperationalEntry, mscExampleDashedProvFreeDashedReplicatedTable=mscExampleDashedProvFreeDashedReplicatedTable, mscFriDynamicComponentName=mscFriDynamicComponentName, mscExampleExtendedOperFreeExtendedListValue=mscExampleExtendedOperFreeExtendedListValue, mscExampleStringOperFreeStrReplicatedEntry=mscExampleStringOperFreeStrReplicatedEntry, mscFriDynOpRowStatusEntry=mscFriDynOpRowStatusEntry, mscExampleDashedProvFreeDashedReplicatedEntry=mscExampleDashedProvFreeDashedReplicatedEntry, mscExampleHexRowStatusEntry=mscExampleHexRowStatusEntry, mscExampleSignedOperFreeSignedArrayRowIndex=mscExampleSignedOperFreeSignedArrayRowIndex, mscExampleIpAddrIndicesStorageType=mscExampleIpAddrIndicesStorageType, mscExampleFixedPtProvStructFixedPt=mscExampleFixedPtProvStructFixedPt, mscExampleSignedProvFreeSigned=mscExampleSignedProvFreeSigned, mscExampleDecimalOperStructInteger=mscExampleDecimalOperStructInteger, mscExampleSignedProvStructSignedArrayValue=mscExampleSignedProvStructSignedArrayValue, mscExampleEnumProvEnumSub=mscExampleEnumProvEnumSub, mscExampleDecimalPfIntReplicated1Entry=mscExampleDecimalPfIntReplicated1Entry, mscExampleExtendedStorageType=mscExampleExtendedStorageType, mscExampleExtendedOperFreeExtendedVectorTable=mscExampleExtendedOperFreeExtendedVectorTable, mscExampleBcdRowStatusTable=mscExampleBcdRowStatusTable, mscExampleMiscellaneousProvFreeTimeList1RowStatus=mscExampleMiscellaneousProvFreeTimeList1RowStatus, mscExampleObjectIdProvFreeObjIdReplicatedIndex=mscExampleObjectIdProvFreeObjIdReplicatedIndex, mscExampleEnumOperFreeEnum=mscExampleEnumOperFreeEnum, mscExampleHexProvFreeHexArrayEntry=mscExampleHexProvFreeHexArrayEntry, mscExampleHexStrIndices=mscExampleHexStrIndices, mscExampleMiscellaneousOperFreeLongReplicatedIndex=mscExampleMiscellaneousOperFreeLongReplicatedIndex, mscFriDynOpInitialStorageType=mscFriDynOpInitialStorageType, mscExampleDashedProvFreeDashedListRowStatus=mscExampleDashedProvFreeDashedListRowStatus, mscExampleTwoIndicesOneIndex=mscExampleTwoIndicesOneIndex, mscExampleHexProvFreeHexArray1ColumnIndex=mscExampleHexProvFreeHexArray1ColumnIndex, mscExampleSignedOperFreeSignedReplicatedValue=mscExampleSignedOperFreeSignedReplicatedValue, mscExampleIpAddressProvFreeIpAddressVectorTable=mscExampleIpAddressProvFreeIpAddressVectorTable, mscExampleMiscellaneousProvFreeLongReplicatedIndex=mscExampleMiscellaneousProvFreeLongReplicatedIndex, mscExampleBcdIndex=mscExampleBcdIndex, mscExampleBcdProvFreeBcdListEntry=mscExampleBcdProvFreeBcdListEntry, mscExampleIpAddressOperFreeIpAddressArrayColumnIndex=mscExampleIpAddressOperFreeIpAddressArrayColumnIndex, mscExampleDecimalPfIntListTable=mscExampleDecimalPfIntListTable, mscFriDynOp=mscFriDynOp, mscExampleObjectIdProvFreeObjIdListValue=mscExampleObjectIdProvFreeObjIdListValue, mscExampleObjectIdProvFreeObjIdReplicatedValue=mscExampleObjectIdProvFreeObjIdReplicatedValue, mscExampleDashedIndicesRowStatus=mscExampleDashedIndicesRowStatus, mscFriPfListAsciiTable=mscFriPfListAsciiTable, mscRegisteredDataEntry=mscRegisteredDataEntry, mscFriDynamicOperationalTable=mscFriDynamicOperationalTable, casTestGroupCA=casTestGroupCA, mscExampleHexProvFreeHexVector1Entry=mscExampleHexProvFreeHexVector1Entry, mscFriDnaRowStatusEntry=mscFriDnaRowStatusEntry, mscExampleDecimalPfIntArrayValue=mscExampleDecimalPfIntArrayValue, mscExampleDecimalOfIntVectorEntry=mscExampleDecimalOfIntVectorEntry, mscExampleHexOfHexListEntry=mscExampleHexOfHexListEntry, mscExampleSignedProvStructSigned=mscExampleSignedProvStructSigned, mscExampleDashedProvStructDashedArrayTable=mscExampleDashedProvStructDashedArrayTable, mscExampleIpAddressOperStructIpAddressVectorEntry=mscExampleIpAddressOperStructIpAddressVectorEntry, mscExampleStringProvFreeAsciiOnly1=mscExampleStringProvFreeAsciiOnly1, mscExampleEnumProvStructEnumVectorIndex=mscExampleEnumProvStructEnumVectorIndex, casTestCapabilitiesCA02=casTestCapabilitiesCA02, mscExampleWildBcdProvFreeWildBcdVectorIndex=mscExampleWildBcdProvFreeWildBcdVectorIndex, mscFriDynOpInitialOperationalEntry=mscFriDynOpInitialOperationalEntry, mscExampleStringProvFreeStrArray1ColumnIndex=mscExampleStringProvFreeStrArray1ColumnIndex, mscFriDynOpInitialComponentName=mscFriDynOpInitialComponentName, mscFriDnaAttribute=mscFriDnaAttribute, mscExampleExtended=mscExampleExtended, mscExampleSignedRowStatusTable=mscExampleSignedRowStatusTable, mscFriOperationalFreeSimpleFixed=mscFriOperationalFreeSimpleFixed, mscFriDynOpOptionalOperationalEntry=mscFriDynOpOptionalOperationalEntry, mscExampleDashedOfDashedListEntry=mscExampleDashedOfDashedListEntry, mscExampleMiscellaneousProvFreeLongReplicatedEntry=mscExampleMiscellaneousProvFreeLongReplicatedEntry, mscExampleHexProvFreeHexVector2Index=mscExampleHexProvFreeHexVector2Index, mscExampleHexOfHexArrayValue=mscExampleHexOfHexArrayValue, mscExampleIpAddressOperFreeIpAddressVectorIndex=mscExampleIpAddressOperFreeIpAddressVectorIndex, mscExampleWildBcdOperFreeWildBcdVectorValue=mscExampleWildBcdOperFreeWildBcdVectorValue, mscExampleSequenceIndicesStorageType=mscExampleSequenceIndicesStorageType, mscExampleMiscellaneousOperFreeLongReplicatedTable=mscExampleMiscellaneousOperFreeLongReplicatedTable, mscExampleSignedOperFreeSignedArrayColumnIndex=mscExampleSignedOperFreeSignedArrayColumnIndex, mscExampleSignedOperFreeSignedReplicatedTable=mscExampleSignedOperFreeSignedReplicatedTable, mscExampleExtendedOperFreeExtendedArrayRowIndex=mscExampleExtendedOperFreeExtendedArrayRowIndex, mscExampleStringOperStructStrArrayTable=mscExampleStringOperStructStrArrayTable, mscFriProvisionalStructSetUnsigned=mscFriProvisionalStructSetUnsigned, mscExampleHexStrIndicesStorageType=mscExampleHexStrIndicesStorageType, mscExampleNsapRowStatusTable=mscExampleNsapRowStatusTable, mscExampleDecimalIndicesTwoIndex=mscExampleDecimalIndicesTwoIndex, mscExampleFixedPtProvStructFixedPtArrayColumnIndex=mscExampleFixedPtProvStructFixedPtArrayColumnIndex, mscExampleWildBcdProvFreeWildBcdReplicatedTable=mscExampleWildBcdProvFreeWildBcdReplicatedTable, mscFriDynOpDynOpJrStorageType=mscFriDynOpDynOpJrStorageType, mscExampleExtendedOperFreeExtendedVectorEntry=mscExampleExtendedOperFreeExtendedVectorEntry, mscExampleStringOperFreeHexOnly=mscExampleStringOperFreeHexOnly, mscExampleIpAddressProvFreeIpAddressListRowStatus=mscExampleIpAddressProvFreeIpAddressListRowStatus, mscExampleEnumProvFreeEnumArrayEntry=mscExampleEnumProvFreeEnumArrayEntry, mscExampleObjIdIndicesComponentName=mscExampleObjIdIndicesComponentName, mscExampleFixedPtProvFreeFixedPt=mscExampleFixedPtProvFreeFixedPt, mscExampleIndex=mscExampleIndex, mscExampleDecimalProvFreeIntSet1=mscExampleDecimalProvFreeIntSet1, mscExampleWildBcdProvFreeWildBcdReplicatedIndex=mscExampleWildBcdProvFreeWildBcdReplicatedIndex, mscExampleExtendedProvFreeExtendedReplicatedTable=mscExampleExtendedProvFreeExtendedReplicatedTable, mscExampleSequenceComponentName=mscExampleSequenceComponentName, mscExampleEnumIndicesProvAttribute=mscExampleEnumIndicesProvAttribute, mscExampleWildBcdProvFreeWildBcdArrayEntry=mscExampleWildBcdProvFreeWildBcdArrayEntry, mscExampleFourIndicesComponentName=mscExampleFourIndicesComponentName, mscExampleDashedProvStructDashedArrayEntry=mscExampleDashedProvStructDashedArrayEntry, mscExampleWildBcdOperFreeWildBcdArrayRowIndex=mscExampleWildBcdOperFreeWildBcdArrayRowIndex, mscExampleObjectIdOperFreeObjIdListTable=mscExampleObjectIdOperFreeObjIdListTable, mscExampleHexOfHexReplicatedRowStatus=mscExampleHexOfHexReplicatedRowStatus, mscExampleDashedProvFreeDashedListEntry=mscExampleDashedProvFreeDashedListEntry, mscExampleDecimalOperFreeGauge32=mscExampleDecimalOperFreeGauge32, mscExampleAsciiIndices=mscExampleAsciiIndices, mscExampleString=mscExampleString, mscExampleProvDecimalSubCreatedTable=mscExampleProvDecimalSubCreatedTable, mscExampleBcdProvFreeBcdReplicatedValue=mscExampleBcdProvFreeBcdReplicatedValue, mscFriOperationalStructSimpleUnsigned=mscFriOperationalStructSimpleUnsigned, mscExampleIpAddressProvFreeIpAddressReplicatedIndex=mscExampleIpAddressProvFreeIpAddressReplicatedIndex, mscExampleSequenceStorageType=mscExampleSequenceStorageType, mscExampleMiscellaneousProvFreeTimeListRowStatus=mscExampleMiscellaneousProvFreeTimeListRowStatus, mscExampleEnumOperFreeEnumListRowStatus=mscExampleEnumOperFreeEnumListRowStatus, mscExampleFixedPtIndex=mscExampleFixedPtIndex, mscExampleEnumProvFreeEnumArrayValue=mscExampleEnumProvFreeEnumArrayValue, mscFriPfListUnsignedEntry=mscFriPfListUnsignedEntry, mscExampleEnumProvFreeEnumVectorIndex=mscExampleEnumProvFreeEnumVectorIndex, mscExampleStringOperFreeStrReplicatedValue=mscExampleStringOperFreeStrReplicatedValue, mscExampleMiscellaneousProvFreeTimeList2Entry=mscExampleMiscellaneousProvFreeTimeList2Entry, mscFriOperationalStructSimpleExtended=mscFriOperationalStructSimpleExtended, mscExampleBcdIndicesThreeIndex=mscExampleBcdIndicesThreeIndex, mscExampleEnumProvFreeEnumSet1=mscExampleEnumProvFreeEnumSet1, mscExampleIpAddressProvisionalEntry=mscExampleIpAddressProvisionalEntry, mscExampleIpAddrIndicesRowStatus=mscExampleIpAddrIndicesRowStatus, mscExampleDecimalProvFreeIntSet=mscExampleDecimalProvFreeIntSet, mscExampleHexProvFreeHexArray2Table=mscExampleHexProvFreeHexArray2Table, mscExampleTwoIndicesTwoIndex=mscExampleTwoIndicesTwoIndex, mscExampleEnumProvFreeEnumSet=mscExampleEnumProvFreeEnumSet, mscFriDynOpInitialAttribute=mscFriDynOpInitialAttribute, mscExampleObjectIdOperFreeObjIdReplicatedEntry=mscExampleObjectIdOperFreeObjIdReplicatedEntry, mscExampleDecimalPsIntVectorIndex=mscExampleDecimalPsIntVectorIndex, mscExampleBcdIndicesOneIndex=mscExampleBcdIndicesOneIndex, mscExampleFixedPtProvFreeFixedPtReplicatedValue=mscExampleFixedPtProvFreeFixedPtReplicatedValue, mscExampleExtendedOperStructExtendedArrayEntry=mscExampleExtendedOperStructExtendedArrayEntry, mscExampleHexComponentName=mscExampleHexComponentName, mscExampleRequiredIndicesEnumerationIndex=mscExampleRequiredIndicesEnumerationIndex, mscFriProvisionalFreeSimpleComponent=mscFriProvisionalFreeSimpleComponent, mscFriOperationalFreeSimpleBcd=mscFriOperationalFreeSimpleBcd, mscExampleFixedPtProvFreeFixedPtArrayRowIndex=mscExampleFixedPtProvFreeFixedPtArrayRowIndex, mscExampleBcdProvFreeBcdReplicated1Index=mscExampleBcdProvFreeBcdReplicated1Index, mscExampleDecimalOfIntArrayTable=mscExampleDecimalOfIntArrayTable, mscExampleHexProvFreeHexVector2Table=mscExampleHexProvFreeHexVector2Table, mscExampleFixedPtProvFreeFixedPtArrayEntry=mscExampleFixedPtProvFreeFixedPtArrayEntry, mscExampleExtendedComponentName=mscExampleExtendedComponentName, mscExampleThreeIndicesThreeIndex=mscExampleThreeIndicesThreeIndex, mscFriDynamicRowStatusTable=mscFriDynamicRowStatusTable, mscFriDynOpComponentName=mscFriDynOpComponentName, mscExampleSequenceOperFreeSequenceReplicatedIndex=mscExampleSequenceOperFreeSequenceReplicatedIndex, mscExampleStringProvFreeStrReplicatedIndex=mscExampleStringProvFreeStrReplicatedIndex, mscExampleSignedProvFreeSignedArrayColumnIndex=mscExampleSignedProvFreeSignedArrayColumnIndex, mscExampleRequiredIndicesRowStatus=mscExampleRequiredIndicesRowStatus, mscFriRegisteredRowStatusTable=mscFriRegisteredRowStatusTable, mscExampleEnumProvFreeEnumVectorValue=mscExampleEnumProvFreeEnumVectorValue, mscFriRegistered=mscFriRegistered, mscExampleFixedPtOperStructFixedPtVectorTable=mscExampleFixedPtOperStructFixedPtVectorTable, mscExampleStringComponentName=mscExampleStringComponentName, mscExampleHexProvEnumSub=mscExampleHexProvEnumSub, mscExampleSignedOperFreeSignedReplicatedIndex=mscExampleSignedOperFreeSignedReplicatedIndex, mscExampleHexProvisionalTable=mscExampleHexProvisionalTable, mscExampleExtendedProvFreeExtendedVectorTable=mscExampleExtendedProvFreeExtendedVectorTable, mscExampleObjectIdOperationalEntry=mscExampleObjectIdOperationalEntry, mscExampleFourIndicesProvisionedTable=mscExampleFourIndicesProvisionedTable, mscExampleBcdProvFreeBcdReplicated1Table=mscExampleBcdProvFreeBcdReplicated1Table, mscExampleDecimalPsIntArrayEntry=mscExampleDecimalPsIntArrayEntry, mscExampleHexIndicesRowStatusEntry=mscExampleHexIndicesRowStatusEntry, mscExampleMiscellaneousProvFreeTimeReplicatedValue=mscExampleMiscellaneousProvFreeTimeReplicatedValue, mscExampleFixedPtProvStructFixedPtVectorEntry=mscExampleFixedPtProvStructFixedPtVectorEntry, mscExampleIpAddrIndicesProvisionedTable=mscExampleIpAddrIndicesProvisionedTable, mscExampleStringProvStructStrVectorIndex=mscExampleStringProvStructStrVectorIndex, mscFriOperationalFreeSimpleExtended=mscFriOperationalFreeSimpleExtended, mscFriPfListAsciiValue=mscFriPfListAsciiValue, mscExampleSigned=mscExampleSigned, mscExampleSignedProvStructSignedArrayRowIndex=mscExampleSignedProvStructSignedArrayRowIndex, mscExampleHexProvFreeHexReplicatedRowStatus=mscExampleHexProvFreeHexReplicatedRowStatus, mscExampleExtendedOperFreeExtendedReplicatedTable=mscExampleExtendedOperFreeExtendedReplicatedTable, mscExampleSequenceIndicesTwoIndex=mscExampleSequenceIndicesTwoIndex, mscExampleDecimalOfIntListRowStatus=mscExampleDecimalOfIntListRowStatus, mscExampleEnumOperFreeEnumReplicatedEntry=mscExampleEnumOperFreeEnumReplicatedEntry, mscExampleSequenceIndices=mscExampleSequenceIndices, mscRegisteredRowStatusEntry=mscRegisteredRowStatusEntry, mscExampleExtendedProvStructExtended=mscExampleExtendedProvStructExtended, mscExampleBcdProvFreeBcdArray1ColumnIndex=mscExampleBcdProvFreeBcdArray1ColumnIndex, mscExampleDecimalOperationalTable=mscExampleDecimalOperationalTable, mscFriOperationalStructSimpleFixed=mscFriOperationalStructSimpleFixed, mscExampleDashedOfDashedArrayEntry=mscExampleDashedOfDashedArrayEntry, mscExampleHexRowStatusTable=mscExampleHexRowStatusTable, mscFriDynOpStorageType=mscFriDynOpStorageType, mscExampleDashedOfDashedReplicatedTable=mscExampleDashedOfDashedReplicatedTable, mscExampleEnumOperFreeEnumArrayTable=mscExampleEnumOperFreeEnumArrayTable, mscExampleMiscellaneousProvFreeLongListTable=mscExampleMiscellaneousProvFreeLongListTable, mscExampleBcdOperStructBcd=mscExampleBcdOperStructBcd, mscExampleExtendedOperStructExtendedVectorTable=mscExampleExtendedOperStructExtendedVectorTable, mscExampleIpAddressOperFreeIpAddressVectorTable=mscExampleIpAddressOperFreeIpAddressVectorTable, mscExampleIpAddressProvFreeIpAddressReplicatedValue=mscExampleIpAddressProvFreeIpAddressReplicatedValue, mscExampleAsciiIndicesRowStatusTable=mscExampleAsciiIndicesRowStatusTable, mscExampleStringProvFreeStrVector1Value=mscExampleStringProvFreeStrVector1Value, mscExampleWildBcdOperFreeWildBcdArrayEntry=mscExampleWildBcdOperFreeWildBcdArrayEntry, mscExampleProvDecimalSubCreatedRowStatus=mscExampleProvDecimalSubCreatedRowStatus, mscExampleStringProvFreeStrArray1Value=mscExampleStringProvFreeStrArray1Value, mscExampleWildBcd=mscExampleWildBcd, mscExampleStringOperFreeStrListEntry=mscExampleStringOperFreeStrListEntry, mscExampleSignedProvFreeSignedArray1Value=mscExampleSignedProvFreeSignedArray1Value, mscExampleIpAddressProvFreeIpAddressList1Value=mscExampleIpAddressProvFreeIpAddressList1Value, mscExampleNsapComponentName=mscExampleNsapComponentName, mscExampleBcdProvStructBcdArrayTable=mscExampleBcdProvStructBcdArrayTable, mscExampleObjectIdProvEnumSub=mscExampleObjectIdProvEnumSub, mscExampleSequenceRowStatusEntry=mscExampleSequenceRowStatusEntry, mscRegisteredStorageType=mscRegisteredStorageType) mibBuilder.exportSymbols('Nortel-MsCarrier-MscPassport-CasTestMIB', mscFriPfListFixedEntry=mscFriPfListFixedEntry, mscExampleHexProvFreeHexVector1Table=mscExampleHexProvFreeHexVector1Table, mscExampleSequenceOperFreeSequenceReplicatedTable=mscExampleSequenceOperFreeSequenceReplicatedTable, mscExampleIpAddressProvFreeIpAddressReplicatedEntry=mscExampleIpAddressProvFreeIpAddressReplicatedEntry, mscExampleMiscellaneousOperFreeLongReplicatedEntry=mscExampleMiscellaneousOperFreeLongReplicatedEntry, mscExampleMiscellaneousProvFreeTimeList1Table=mscExampleMiscellaneousProvFreeTimeList1Table, mscExampleFixedPtOperStructFixedPtArrayEntry=mscExampleFixedPtOperStructFixedPtArrayEntry, mscExampleDashedOperFreeDashed=mscExampleDashedOperFreeDashed, mscFriDnaProvisionalTable=mscFriDnaProvisionalTable, mscExampleStringOperFreeStrListValue=mscExampleStringOperFreeStrListValue, mscExampleMiscellaneousProvFreeTimeReplicatedEntry=mscExampleMiscellaneousProvFreeTimeReplicatedEntry, mscExampleSequenceProvFreeSequenceReplicatedValue=mscExampleSequenceProvFreeSequenceReplicatedValue, mscExampleMiscellaneousProvFreeTimeList3RowStatus=mscExampleMiscellaneousProvFreeTimeList3RowStatus, mscExampleBcdOperStructBcdVectorEntry=mscExampleBcdOperStructBcdVectorEntry, mscExampleSignedProvStructSignedArrayEntry=mscExampleSignedProvStructSignedArrayEntry, mscExampleWildBcdProvStructWildBcdArrayTable=mscExampleWildBcdProvStructWildBcdArrayTable, mscExampleEnumOperFreeEnumArrayEntry=mscExampleEnumOperFreeEnumArrayEntry, mscExampleDecimalPfIntReplicatedIndex=mscExampleDecimalPfIntReplicatedIndex, mscExampleStringProvStructStrVectorTable=mscExampleStringProvStructStrVectorTable, mscExampleDecimalIndicesThreeIndex=mscExampleDecimalIndicesThreeIndex, mscExampleBcdOperationalTable=mscExampleBcdOperationalTable, mscExampleSignedProvFreeSignedVector1Value=mscExampleSignedProvFreeSignedVector1Value, mscExampleIpAddressOperFreeIpAddressArrayRowIndex=mscExampleIpAddressOperFreeIpAddressArrayRowIndex, mscExampleSignedProvFreeSignedArray1ColumnIndex=mscExampleSignedProvFreeSignedArray1ColumnIndex, mscFriDynOpOptional=mscFriDynOpOptional, mscExampleHexStrIndicesOneIndex=mscExampleHexStrIndicesOneIndex, mscExampleDecimalIndicesRowStatusEntry=mscExampleDecimalIndicesRowStatusEntry, mscExampleDashedProvisionalEntry=mscExampleDashedProvisionalEntry, mscExampleFourIndicesRowStatusTable=mscExampleFourIndicesRowStatusTable, mscExampleExtendedProvFreeExtendedArrayEntry=mscExampleExtendedProvFreeExtendedArrayEntry, mscExampleSequenceProvStructSequence=mscExampleSequenceProvStructSequence, mscExampleSequenceIndicesProvAttribute=mscExampleSequenceIndicesProvAttribute, mscExampleSignedOperFreeSignedListValue=mscExampleSignedOperFreeSignedListValue, mscExampleMiscellaneousOperationalTable=mscExampleMiscellaneousOperationalTable, mscExampleDecimalPfIntVector1Value=mscExampleDecimalPfIntVector1Value, mscExampleHexOsHexArrayColumnIndex=mscExampleHexOsHexArrayColumnIndex, mscExampleDashedOfDashedReplicatedRowStatus=mscExampleDashedOfDashedReplicatedRowStatus, mscExampleBcdOperFreeBcdArrayEntry=mscExampleBcdOperFreeBcdArrayEntry, mscExampleFixedPtOperFreeFixedPtReplicatedIndex=mscExampleFixedPtOperFreeFixedPtReplicatedIndex, mscExampleSignedProvFreeSignedArray1Table=mscExampleSignedProvFreeSignedArray1Table, mscExampleStringOperStructStrArrayRowIndex=mscExampleStringOperStructStrArrayRowIndex, mscFriProvisionalStructSimpleEnum=mscFriProvisionalStructSimpleEnum, mscExampleRequiredIndices=mscExampleRequiredIndices, mscFriAvailabilityStatus=mscFriAvailabilityStatus, casTestGroupCA02=casTestGroupCA02, mscExampleDashedProvFreeDashedReplicatedValue=mscExampleDashedProvFreeDashedReplicatedValue, mscExampleProvDecimalSubCreatedEntry=mscExampleProvDecimalSubCreatedEntry, mscExampleBcdOperStructBcdVectorIndex=mscExampleBcdOperStructBcdVectorIndex, mscExampleSignedProvStructSignedVectorIndex=mscExampleSignedProvStructSignedVectorIndex, mscExampleIpAddrIndicesRowStatusEntry=mscExampleIpAddrIndicesRowStatusEntry, mscFriAlarmStatus=mscFriAlarmStatus, mscFriDnaNumberPlanIndicator=mscFriDnaNumberPlanIndicator, mscExampleProvFixedPtSubCreatedRowStatus=mscExampleProvFixedPtSubCreatedRowStatus, mscExampleExtendedRowStatusTable=mscExampleExtendedRowStatusTable, mscExampleExtendedOperFreeExtendedArrayTable=mscExampleExtendedOperFreeExtendedArrayTable, mscExampleHexIndicesThreeIndex=mscExampleHexIndicesThreeIndex, mscExampleEnumProvFreeEnum1=mscExampleEnumProvFreeEnum1, mscFriDynOpInitialRowStatus=mscFriDynOpInitialRowStatus, mscExampleIpAddressProvFreeIpAddressVector1Table=mscExampleIpAddressProvFreeIpAddressVector1Table, mscExampleBcdProvFreeBcdReplicated1Entry=mscExampleBcdProvFreeBcdReplicated1Entry, mscExampleThreeIndicesRowStatus=mscExampleThreeIndicesRowStatus, mscExampleProvSignedSubCreatedTable=mscExampleProvSignedSubCreatedTable, mscExampleDashedProvFreeDashedVectorIndex=mscExampleDashedProvFreeDashedVectorIndex, mscExampleEnumOperFreeEnumListValue=mscExampleEnumOperFreeEnumListValue, mscExampleIpAddressOperFreeIpAddressReplicatedEntry=mscExampleIpAddressOperFreeIpAddressReplicatedEntry, mscExampleEnumProvFreeEnumListRowStatus=mscExampleEnumProvFreeEnumListRowStatus, mscExampleExtendedProvEnumSub=mscExampleExtendedProvEnumSub, mscExampleWildBcdProvFreeWildBcdVectorTable=mscExampleWildBcdProvFreeWildBcdVectorTable, mscExampleWildBcdProvStructWildBcdArrayValue=mscExampleWildBcdProvStructWildBcdArrayValue, mscExampleThreeIndices=mscExampleThreeIndices, mscExampleHexProvFreeHexListRowStatus=mscExampleHexProvFreeHexListRowStatus, mscExampleFixedPtProvFreeFixedPtListRowStatus=mscExampleFixedPtProvFreeFixedPtListRowStatus, mscFriOperationalStructSimpleAscii=mscFriOperationalStructSimpleAscii, mscFriDynamic=mscFriDynamic, mscExampleDashedOfDashedListRowStatus=mscExampleDashedOfDashedListRowStatus, mscExampleBcdProvFreeBcdList1Value=mscExampleBcdProvFreeBcdList1Value, mscExampleEnumProvFreeEnumReplicatedIndex=mscExampleEnumProvFreeEnumReplicatedIndex, mscExampleDashedOfDashedListTable=mscExampleDashedOfDashedListTable, mscExampleSignedProvFreeSignedListTable=mscExampleSignedProvFreeSignedListTable, mscExampleStringOperationalEntry=mscExampleStringOperationalEntry, mscFriUnknownStatus=mscFriUnknownStatus, mscExampleStringProvStructStrArrayTable=mscExampleStringProvStructStrArrayTable, mscExampleFourIndicesThreeIndex=mscExampleFourIndicesThreeIndex, mscExampleExtendedProvFreeExtendedReplicatedValue=mscExampleExtendedProvFreeExtendedReplicatedValue, mscFriProvisionalFreeSimpleObjId=mscFriProvisionalFreeSimpleObjId, mscExampleBcdOperFreeBcdArrayValue=mscExampleBcdOperFreeBcdArrayValue, mscExampleExtendedOperFreeExtendedListTable=mscExampleExtendedOperFreeExtendedListTable, mscExampleMiscellaneousOperationalEntry=mscExampleMiscellaneousOperationalEntry, mscExampleIpAddressProvStructIpAddressVectorIndex=mscExampleIpAddressProvStructIpAddressVectorIndex, mscFriOfListComponentValue=mscFriOfListComponentValue, mscExampleOneIndexProvisionedEntry=mscExampleOneIndexProvisionedEntry, mscExampleSignedOperStructSignedArrayTable=mscExampleSignedOperStructSignedArrayTable, mscExampleExtendedOperFreeExtendedReplicatedRowStatus=mscExampleExtendedOperFreeExtendedReplicatedRowStatus, mscRegisteredComponentName=mscRegisteredComponentName, mscExampleBcdProvFreeBcdVector1Value=mscExampleBcdProvFreeBcdVector1Value, mscExampleFixedPtOperFreeFixedPtSet=mscExampleFixedPtOperFreeFixedPtSet, mscExampleEnumProvFreeEnumArray1Table=mscExampleEnumProvFreeEnumArray1Table, mscExampleDashedStorageType=mscExampleDashedStorageType, mscExampleFourIndices=mscExampleFourIndices, mscExampleWildBcdProvFreeWildBcdListTable=mscExampleWildBcdProvFreeWildBcdListTable, mscExampleHexOfHexListRowStatus=mscExampleHexOfHexListRowStatus, mscExampleBcdProvStructBcd=mscExampleBcdProvStructBcd, mscExampleSequenceIndicesComponentName=mscExampleSequenceIndicesComponentName, mscExampleSequenceOperFreeSequenceReplicatedRowStatus=mscExampleSequenceOperFreeSequenceReplicatedRowStatus, mscFriEscapeCopyGroup=mscFriEscapeCopyGroup, mscExampleDecimalIndex=mscExampleDecimalIndex, mscExampleDecimalPfIntArrayColumnIndex=mscExampleDecimalPfIntArrayColumnIndex, mscFriDnaTypeOfAddress=mscFriDnaTypeOfAddress, mscFriDynOpIndex=mscFriDynOpIndex, mscExampleEnumProvStructEnumVectorValue=mscExampleEnumProvStructEnumVectorValue, mscExampleStringOperStructStrArrayEntry=mscExampleStringOperStructStrArrayEntry, mscFriOperationalStructSimpleBcd=mscFriOperationalStructSimpleBcd, mscExampleSignedOperFreeSigned=mscExampleSignedOperFreeSigned, mscExampleHexOfHexReplicatedTable=mscExampleHexOfHexReplicatedTable, mscExampleExtendedProvisionalEntry=mscExampleExtendedProvisionalEntry, mscExampleDecimalOperFreeIntSet=mscExampleDecimalOperFreeIntSet, mscExampleAsciiIndicesComponentName=mscExampleAsciiIndicesComponentName, mscExampleDashedProvStructDashedVectorTable=mscExampleDashedProvStructDashedVectorTable, mscExampleSequenceIndicesRowStatus=mscExampleSequenceIndicesRowStatus, mscExampleEnumIndicesTwoIndex=mscExampleEnumIndicesTwoIndex, mscExampleStringOperStructStrVectorTable=mscExampleStringOperStructStrVectorTable, mscFriOfListComponentRowStatus=mscFriOfListComponentRowStatus, mscExampleEnumProvFreeEnumVectorTable=mscExampleEnumProvFreeEnumVectorTable, mscExampleIpAddressProvFreeIpAddressVectorIndex=mscExampleIpAddressProvFreeIpAddressVectorIndex, mscExampleThreeIndicesProvisionedTable=mscExampleThreeIndicesProvisionedTable, mscExampleMiscellaneousOperFreeTimeDateOnly=mscExampleMiscellaneousOperFreeTimeDateOnly, mscExampleStringProvStructHexOnly=mscExampleStringProvStructHexOnly, mscExampleIpAddressRowStatusTable=mscExampleIpAddressRowStatusTable, mscExampleFixedPtProvStructFixedPtVectorValue=mscExampleFixedPtProvStructFixedPtVectorValue, mscExampleHexProvStructHexArrayEntry=mscExampleHexProvStructHexArrayEntry, mscExampleTwoIndicesProvisionedEntry=mscExampleTwoIndicesProvisionedEntry, mscExampleHexProvFreeHexVectorTable=mscExampleHexProvFreeHexVectorTable, mscExampleExtendedOperStructExtendedVectorEntry=mscExampleExtendedOperStructExtendedVectorEntry, mscExampleStringProvFreeStrArray1Table=mscExampleStringProvFreeStrArray1Table, mscExampleDashedProvFreeDashedListTable=mscExampleDashedProvFreeDashedListTable, mscExampleSignedProvFreeSignedVectorValue=mscExampleSignedProvFreeSignedVectorValue, mscFriDynOpInitialOperationalTable=mscFriDynOpInitialOperationalTable, mscExampleHexOfHexArrayRowIndex=mscExampleHexOfHexArrayRowIndex, mscExampleWildBcdProvStructWildBcdArrayEntry=mscExampleWildBcdProvStructWildBcdArrayEntry, mscExampleDashedOfDashedReplicatedIndex=mscExampleDashedOfDashedReplicatedIndex, mscExampleSignedOperStructSigned=mscExampleSignedOperStructSigned, mscExampleStringProvFreeStrArrayColumnIndex=mscExampleStringProvFreeStrArrayColumnIndex, mscExampleSignedStorageType=mscExampleSignedStorageType, mscExampleEnumOperStructEnumArrayTable=mscExampleEnumOperStructEnumArrayTable, mscFriDynOpInitialRowStatusEntry=mscFriDynOpInitialRowStatusEntry, mscExampleComponentName=mscExampleComponentName, mscExampleFixedPtOperStructFixedPt=mscExampleFixedPtOperStructFixedPt, mscExampleEnumOperStructEnumArrayDayIndex=mscExampleEnumOperStructEnumArrayDayIndex, mscFriDynOpInitialRowStatusTable=mscFriDynOpInitialRowStatusTable, mscExampleDecimalPsIntArrayColumnIndex=mscExampleDecimalPsIntArrayColumnIndex, mscExampleDecimalPfIntReplicatedEntry=mscExampleDecimalPfIntReplicatedEntry, mscExampleBcdOperFreeBcdReplicatedIndex=mscExampleBcdOperFreeBcdReplicatedIndex, mscExampleExtendedProvFreeExtendedArrayColumnIndex=mscExampleExtendedProvFreeExtendedArrayColumnIndex, mscExampleBcdOperationalEntry=mscExampleBcdOperationalEntry, mscFriEscapeDefaultsComponent=mscFriEscapeDefaultsComponent, mscExampleDecimalPfIntVectorEntry=mscExampleDecimalPfIntVectorEntry, mscExampleFixedPtOperFreeFixedPtListTable=mscExampleFixedPtOperFreeFixedPtListTable, mscExampleMiscellaneousProvFreeLongReplicatedTable=mscExampleMiscellaneousProvFreeLongReplicatedTable, mscExampleNsapNativeIndex=mscExampleNsapNativeIndex, mscExampleSignedProvStructSignedVectorTable=mscExampleSignedProvStructSignedVectorTable, mscExampleBcdOperFreeBcdReplicatedRowStatus=mscExampleBcdOperFreeBcdReplicatedRowStatus, mscExampleFixedPtProvFreeFixedPtListValue=mscExampleFixedPtProvFreeFixedPtListValue, mscExampleFourIndicesRowStatus=mscExampleFourIndicesRowStatus, mscExampleThreeIndicesStorageType=mscExampleThreeIndicesStorageType, mscExampleDashedProvStructDashedVectorIndex=mscExampleDashedProvStructDashedVectorIndex, mscExampleHexProvFreeHexListValue=mscExampleHexProvFreeHexListValue, mscExampleEnumProvFreeEnumReplicatedEntry=mscExampleEnumProvFreeEnumReplicatedEntry, mscFriDnaComponentName=mscFriDnaComponentName, mscFriOperationalEntry=mscFriOperationalEntry, mscExampleMiscellaneousProvFreeLong=mscExampleMiscellaneousProvFreeLong, mscFriProvisionalFreeSimpleSequence=mscFriProvisionalFreeSimpleSequence, mscExampleSignedIndex=mscExampleSignedIndex, mscFriDynOpDynamicRowStatusTable=mscFriDynOpDynamicRowStatusTable, mscFriControlStatus=mscFriControlStatus, mscExampleBcdProvFreeBcdReplicatedRowStatus=mscExampleBcdProvFreeBcdReplicatedRowStatus, mscExampleHexIndicesComponentName=mscExampleHexIndicesComponentName, mscExampleExtendedProvStructExtendedArrayEntry=mscExampleExtendedProvStructExtendedArrayEntry, mscExampleIpAddressProvStructIpAddressArrayEntry=mscExampleIpAddressProvStructIpAddressArrayEntry, mscExampleMiscellaneousProvFreeTimeList2Value=mscExampleMiscellaneousProvFreeTimeList2Value, mscExampleOperStringSubCreatedEntry=mscExampleOperStringSubCreatedEntry, mscExampleMiscellaneousOperStructLong=mscExampleMiscellaneousOperStructLong, mscExampleIpAddrIndicesComponentName=mscExampleIpAddrIndicesComponentName, mscExampleStringOperFreeStrVectorEntry=mscExampleStringOperFreeStrVectorEntry, mscExampleIpAddrIndicesProvAttribute=mscExampleIpAddrIndicesProvAttribute, mscExampleOperEnumSubCreatedTable=mscExampleOperEnumSubCreatedTable, mscExampleThreeIndicesComponentName=mscExampleThreeIndicesComponentName, mscExampleStringProvFreeStrList1RowStatus=mscExampleStringProvFreeStrList1RowStatus, mscExampleObjectIdProvisionalTable=mscExampleObjectIdProvisionalTable, mscExampleWildBcdOperStructWildBcdVectorIndex=mscExampleWildBcdOperStructWildBcdVectorIndex, mscExampleBcdProvFreeBcdVector1Index=mscExampleBcdProvFreeBcdVector1Index, mscExampleDashedProvStructDashedArrayColumnIndex=mscExampleDashedProvStructDashedArrayColumnIndex, mscExampleAsciiIndicesRowStatus=mscExampleAsciiIndicesRowStatus, mscExampleDecimalOfIntReplicatedTable=mscExampleDecimalOfIntReplicatedTable, mscExampleEnumOperFreeEnumArrayDayIndex=mscExampleEnumOperFreeEnumArrayDayIndex, mscExampleObjectId=mscExampleObjectId, mscExampleMiscellaneousProvFreeTime1=mscExampleMiscellaneousProvFreeTime1, mscFriEventStorageType=mscFriEventStorageType, mscFriPfListUnsignedValue=mscFriPfListUnsignedValue, mscExampleStringOperStructStrArrayValue=mscExampleStringOperStructStrArrayValue, mscExampleEnumOperStructEnumVectorEntry=mscExampleEnumOperStructEnumVectorEntry, mscExampleProvFixedPtSubCreatedValue=mscExampleProvFixedPtSubCreatedValue, mscFri=mscFri, mscFriDynOpInitialIndex=mscFriDynOpInitialIndex, mscExampleWildBcdOperFreeWildBcdReplicatedEntry=mscExampleWildBcdOperFreeWildBcdReplicatedEntry, mscExampleRowStatusTable=mscExampleRowStatusTable, mscExampleProvSignedSubCreatedEntry=mscExampleProvSignedSubCreatedEntry, mscExampleStringProvFreeStrArrayValue=mscExampleStringProvFreeStrArrayValue, mscFriDnaDataNetworkAddress=mscFriDnaDataNetworkAddress, mscExampleDecimalOfIntListValue=mscExampleDecimalOfIntListValue, mscExampleOperStringSubCreatedValue=mscExampleOperStringSubCreatedValue, mscExampleDecimalPsIntArrayValue=mscExampleDecimalPsIntArrayValue, mscExampleProvFixedPtSubCreatedEntry=mscExampleProvFixedPtSubCreatedEntry, mscFriDynOpDynamicIndex=mscFriDynOpDynamicIndex, mscExampleExtendedOperFreeExtendedReplicatedIndex=mscExampleExtendedOperFreeExtendedReplicatedIndex, mscExampleSequenceProvFreeSequenceReplicatedRowStatus=mscExampleSequenceProvFreeSequenceReplicatedRowStatus, mscExampleDecimalPfIntVector1Table=mscExampleDecimalPfIntVector1Table, mscExampleMiscellaneousOperFreeCounter64=mscExampleMiscellaneousOperFreeCounter64, mscExampleIpAddrIndicesProvisionedEntry=mscExampleIpAddrIndicesProvisionedEntry, mscFriRegisteredDataEntry=mscFriRegisteredDataEntry, mscFriProvisionalFreeSimpleBcd=mscFriProvisionalFreeSimpleBcd, mscExampleObjIdIndicesRowStatus=mscExampleObjIdIndicesRowStatus, mscExampleBcdProvisionalEntry=mscExampleBcdProvisionalEntry, mscExampleBcdProvisionalTable=mscExampleBcdProvisionalTable, mscExampleFixedPtProvFreeFixedPtVectorIndex=mscExampleFixedPtProvFreeFixedPtVectorIndex, mscExampleMiscellaneousOperFreeTimeListEntry=mscExampleMiscellaneousOperFreeTimeListEntry, mscExampleHexIndicesRowStatus=mscExampleHexIndicesRowStatus, casTestMIB=casTestMIB, mscExampleObjectIdRowStatusEntry=mscExampleObjectIdRowStatusEntry, mscExampleDecimalPfIntArrayEntry=mscExampleDecimalPfIntArrayEntry, mscExampleEnumProvStructEnumVectorTable=mscExampleEnumProvStructEnumVectorTable, mscExampleExtendedOperStructExtendedArrayTable=mscExampleExtendedOperStructExtendedArrayTable, mscExampleObjectIdProvisionalEntry=mscExampleObjectIdProvisionalEntry, mscExampleHexOsHexVectorValue=mscExampleHexOsHexVectorValue, mscExampleHexOfHexArrayColumnIndex=mscExampleHexOfHexArrayColumnIndex, mscExampleExtendedProvFreeExtendedReplicatedEntry=mscExampleExtendedProvFreeExtendedReplicatedEntry, mscExampleEnumProvFreeEnumReplicatedValue=mscExampleEnumProvFreeEnumReplicatedValue, mscRegistered=mscRegistered, mscExampleSignedProvFreeSignedReplicatedValue=mscExampleSignedProvFreeSignedReplicatedValue, mscExampleExtendedOperationalEntry=mscExampleExtendedOperationalEntry, mscExampleOperStringSubCreatedTable=mscExampleOperStringSubCreatedTable, mscExampleExtendedProvFreeExtendedListRowStatus=mscExampleExtendedProvFreeExtendedListRowStatus, mscExampleDecimalOfIntVectorValue=mscExampleDecimalOfIntVectorValue, mscExampleNsapIndex=mscExampleNsapIndex, mscExampleWildBcdProvFreeWildBcdListValue=mscExampleWildBcdProvFreeWildBcdListValue, casTestCapabilitiesCA02A=casTestCapabilitiesCA02A, mscExampleObjectIdProvFreeObjId=mscExampleObjectIdProvFreeObjId, mscExampleHexProvStructHexArrayValue=mscExampleHexProvStructHexArrayValue, mscExampleHexProvFreeHexReplicated1Value=mscExampleHexProvFreeHexReplicated1Value, mscFriDynOpDynamicRowStatusEntry=mscFriDynOpDynamicRowStatusEntry, mscExampleHexProvFreeHex=mscExampleHexProvFreeHex, mscExampleHexProvFreeHexReplicatedTable=mscExampleHexProvFreeHexReplicatedTable, mscExampleRequiredIndicesComponentName=mscExampleRequiredIndicesComponentName, mscFriComponentName=mscFriComponentName, mscExampleSequenceIndicesProvisionedTable=mscExampleSequenceIndicesProvisionedTable) mibBuilder.exportSymbols('Nortel-MsCarrier-MscPassport-CasTestMIB', mscExampleOneIndexRowStatus=mscExampleOneIndexRowStatus, mscFriDynOpDynOpJrRowStatus=mscFriDynOpDynOpJrRowStatus, mscExampleMiscellaneousProvFreeTimeTimeOnly1=mscExampleMiscellaneousProvFreeTimeTimeOnly1, mscExampleBcdProvFreeBcdReplicatedEntry=mscExampleBcdProvFreeBcdReplicatedEntry, mscExampleDecimal=mscExampleDecimal, mscExampleWildBcdProvStructWildBcd=mscExampleWildBcdProvStructWildBcd, mscFriProvisionalStructSimpleDashed=mscFriProvisionalStructSimpleDashed, mscExampleSequenceRowStatus=mscExampleSequenceRowStatus, mscExampleTwoIndicesStorageType=mscExampleTwoIndicesStorageType, mscExampleDashedIndicesRowStatusTable=mscExampleDashedIndicesRowStatusTable, mscExampleFixedPtProvFreeFixedPtArrayTable=mscExampleFixedPtProvFreeFixedPtArrayTable, mscExampleTwoIndicesRowStatusTable=mscExampleTwoIndicesRowStatusTable, mscExampleBcdIndicesTwoIndex=mscExampleBcdIndicesTwoIndex, mscExampleDashedOfDashedVectorIndex=mscExampleDashedOfDashedVectorIndex, mscExampleDashedRowStatus=mscExampleDashedRowStatus, mscExampleFixedPtOperFreeFixedPtArrayColumnIndex=mscExampleFixedPtOperFreeFixedPtArrayColumnIndex, mscExampleHexProvFreeHexArray1Value=mscExampleHexProvFreeHexArray1Value, mscExampleOperDecimalSubCreatedTable=mscExampleOperDecimalSubCreatedTable, mscExampleDashedRowStatusTable=mscExampleDashedRowStatusTable, mscExampleExtendedProvFreeExtendedVectorValue=mscExampleExtendedProvFreeExtendedVectorValue, mscFriOperationalFreeSimpleComponent=mscFriOperationalFreeSimpleComponent, mscFriOfListEnumerationValue=mscFriOfListEnumerationValue, mscExampleStringProvFreeStrVectorEntry=mscExampleStringProvFreeStrVectorEntry, mscExampleWildBcdOperStructWildBcdVectorValue=mscExampleWildBcdOperStructWildBcdVectorValue, mscExampleBcdOperFreeBcdVectorIndex=mscExampleBcdOperFreeBcdVectorIndex, mscExampleProvisionalTable=mscExampleProvisionalTable, mscExampleEnumIndicesStorageType=mscExampleEnumIndicesStorageType, mscExampleOneIndexComponentName=mscExampleOneIndexComponentName, mscExampleFixedPtOperFreeFixedPtVectorTable=mscExampleFixedPtOperFreeFixedPtVectorTable, mscExampleWildBcdRowStatusEntry=mscExampleWildBcdRowStatusEntry, mscExampleNsapStorageType=mscExampleNsapStorageType, mscExampleProvEnumSubCreatedRowStatus=mscExampleProvEnumSubCreatedRowStatus, mscExampleHexStrIndicesRowStatus=mscExampleHexStrIndicesRowStatus, mscFriDynOpDynamicOperationalTable=mscFriDynOpDynamicOperationalTable, mscExampleObjectIdComponentName=mscExampleObjectIdComponentName, mscExampleFixedPtOperFreeFixedPtVectorEntry=mscExampleFixedPtOperFreeFixedPtVectorEntry, mscExampleDecimalOsIntVectorValue=mscExampleDecimalOsIntVectorValue, mscExampleDecimalOsIntArrayTable=mscExampleDecimalOsIntArrayTable, mscExampleSignedProvisionalEntry=mscExampleSignedProvisionalEntry, mscExampleExtendedOperFreeExtendedVectorIndex=mscExampleExtendedOperFreeExtendedVectorIndex, mscExampleMiscellaneousProvFreeTimeDateTimeMinute=mscExampleMiscellaneousProvFreeTimeDateTimeMinute, mscExampleEnumOperFreeEnumListEntry=mscExampleEnumOperFreeEnumListEntry, mscExampleSignedRowStatus=mscExampleSignedRowStatus, mscExampleStringProvFreeAsciiOnly=mscExampleStringProvFreeAsciiOnly, mscExampleWildBcdOperationalEntry=mscExampleWildBcdOperationalEntry, mscExampleStringOperFreeStrListTable=mscExampleStringOperFreeStrListTable, mscFriPfListSignedTable=mscFriPfListSignedTable, mscExampleDecimalPfIntList1Entry=mscExampleDecimalPfIntList1Entry, mscExampleSignedOperFreeSignedVectorValue=mscExampleSignedOperFreeSignedVectorValue, mscExampleMiscellaneousProvFreeTimeList3Entry=mscExampleMiscellaneousProvFreeTimeList3Entry, mscExampleExtendedProvFreeExtendedVectorEntry=mscExampleExtendedProvFreeExtendedVectorEntry, mscExampleHexProvFreeHexReplicatedEntry=mscExampleHexProvFreeHexReplicatedEntry, mscExampleHexProvFreeHexReplicatedValue=mscExampleHexProvFreeHexReplicatedValue, mscFriDnaOperationalTable=mscFriDnaOperationalTable, mscExampleExtendedRowStatus=mscExampleExtendedRowStatus, mscExampleHexProvFreeHexVector1Value=mscExampleHexProvFreeHexVector1Value, mscExampleFourIndicesProvAttribute=mscExampleFourIndicesProvAttribute, mscExampleBcdRowStatusEntry=mscExampleBcdRowStatusEntry, mscExampleDashedOfDashedArrayTable=mscExampleDashedOfDashedArrayTable, mscFriDynOpDynOpJrOperationalEntry=mscFriDynOpDynOpJrOperationalEntry, mscFriOperationalFreeSimpleSigned=mscFriOperationalFreeSimpleSigned, mscExampleIpAddressOperStructIpAddressVectorValue=mscExampleIpAddressOperStructIpAddressVectorValue, mscExampleBcdIndicesRowStatusEntry=mscExampleBcdIndicesRowStatusEntry, mscExampleDecimalPfIntVectorValue=mscExampleDecimalPfIntVectorValue, mscExampleDashedIndicesStorageType=mscExampleDashedIndicesStorageType, mscExampleFixedPtOperFreeFixedPtReplicatedTable=mscExampleFixedPtOperFreeFixedPtReplicatedTable, mscFriOperationalStructSimpleSequence=mscFriOperationalStructSimpleSequence, mscExampleWildBcdOperFreeWildBcdReplicatedIndex=mscExampleWildBcdOperFreeWildBcdReplicatedIndex, mscExampleExtendedOperFreeExtendedListEntry=mscExampleExtendedOperFreeExtendedListEntry, mscExampleDashedProvFreeDashedArrayColumnIndex=mscExampleDashedProvFreeDashedArrayColumnIndex, mscExampleMiscellaneousProvFreeTimeListEntry=mscExampleMiscellaneousProvFreeTimeListEntry, mscExampleProvSignedSubCreatedRowStatus=mscExampleProvSignedSubCreatedRowStatus, mscExampleSignedProvisionalTable=mscExampleSignedProvisionalTable, mscExampleSignedOperFreeSignedListRowStatus=mscExampleSignedOperFreeSignedListRowStatus, mscFriDynOpOptionalRowStatus=mscFriDynOpOptionalRowStatus, mscFriDnaProvisionalEntry=mscFriDnaProvisionalEntry, mscExampleProvStringSubCreatedTable=mscExampleProvStringSubCreatedTable, mscExampleFixedPtOperStructFixedPtArrayRowIndex=mscExampleFixedPtOperStructFixedPtArrayRowIndex, mscExampleWildBcdOperFreeWildBcd=mscExampleWildBcdOperFreeWildBcd, mscExampleEnumOperFreeEnumReplicatedValue=mscExampleEnumOperFreeEnumReplicatedValue, mscExampleExtendedOperStructExtendedArrayRowIndex=mscExampleExtendedOperStructExtendedArrayRowIndex, mscExampleEnumOperFreeEnumListTable=mscExampleEnumOperFreeEnumListTable, mscExampleDecimalIndicesProvisionedTable=mscExampleDecimalIndicesProvisionedTable, mscExampleExtendedProvStructExtendedVectorValue=mscExampleExtendedProvStructExtendedVectorValue, mscExampleDecimalOfIntArrayEntry=mscExampleDecimalOfIntArrayEntry, mscExampleFixedPtComponentName=mscExampleFixedPtComponentName, mscExampleFixedPtRowStatus=mscExampleFixedPtRowStatus, mscExampleSignedProvFreeSignedReplicatedRowStatus=mscExampleSignedProvFreeSignedReplicatedRowStatus, mscExampleEnumProvFreeEnumVector1Index=mscExampleEnumProvFreeEnumVector1Index, mscExampleBcdOperFreeBcdVectorValue=mscExampleBcdOperFreeBcdVectorValue, mscExampleDecimalPfIntArrayTable=mscExampleDecimalPfIntArrayTable, mscExampleHexProvFreeHexArray2RowIndex=mscExampleHexProvFreeHexArray2RowIndex, mscExampleBcdProvFreeBcdReplicated1RowStatus=mscExampleBcdProvFreeBcdReplicated1RowStatus, mscExampleObjectIdRowStatus=mscExampleObjectIdRowStatus, mscExampleMiscellaneousOperStructCounter64=mscExampleMiscellaneousOperStructCounter64, mscExampleProvStringSubCreatedEntry=mscExampleProvStringSubCreatedEntry, mscExampleNsapNativeValue=mscExampleNsapNativeValue, mscExampleMiscellaneousOperFreeTimeListRowStatus=mscExampleMiscellaneousOperFreeTimeListRowStatus, mscExampleSignedProvFreeSignedReplicatedEntry=mscExampleSignedProvFreeSignedReplicatedEntry, mscFriEventRowStatusTable=mscFriEventRowStatusTable, mscExampleFixedPtOperFreeFixedPtReplicatedValue=mscExampleFixedPtOperFreeFixedPtReplicatedValue, mscExampleMiscellaneousProvFreeTimeListTable=mscExampleMiscellaneousProvFreeTimeListTable, mscFriRowStatusTable=mscFriRowStatusTable, mscExampleHexProvFreeHexArrayColumnIndex=mscExampleHexProvFreeHexArrayColumnIndex, mscExampleFixedPtOperStructFixedPtVectorEntry=mscExampleFixedPtOperStructFixedPtVectorEntry, mscExampleOperEnumSubCreatedValue=mscExampleOperEnumSubCreatedValue, mscExampleOperEnumSubCreatedEntry=mscExampleOperEnumSubCreatedEntry, mscExampleBcd=mscExampleBcd, mscExampleIpAddrIndices=mscExampleIpAddrIndices, mscRegisteredIndex=mscRegisteredIndex, mscExampleDecimalOsIntVectorIndex=mscExampleDecimalOsIntVectorIndex, mscExampleStringOperStructHexOnly=mscExampleStringOperStructHexOnly, mscExampleDashedIndicesProvisionedTable=mscExampleDashedIndicesProvisionedTable, mscExampleStringProvFreeStrArrayRowIndex=mscExampleStringProvFreeStrArrayRowIndex, mscExampleSignedOperFreeSignedListEntry=mscExampleSignedOperFreeSignedListEntry, mscExampleMiscellaneousProvFreeLongListRowStatus=mscExampleMiscellaneousProvFreeLongListRowStatus, mscExampleBcdComponentName=mscExampleBcdComponentName, mscExampleBcdOperFreeBcdListValue=mscExampleBcdOperFreeBcdListValue, mscExampleOperDecimalSubCreatedEntry=mscExampleOperDecimalSubCreatedEntry, mscFriProvisionalStructSimpleHex=mscFriProvisionalStructSimpleHex, mscExampleWildBcdOperFreeWildBcdReplicatedRowStatus=mscExampleWildBcdOperFreeWildBcdReplicatedRowStatus, mscExampleDashedOperStructDashed=mscExampleDashedOperStructDashed, mscExampleHex=mscExampleHex, mscExampleDashedOfDashedArrayColumnIndex=mscExampleDashedOfDashedArrayColumnIndex, mscExampleHexProvFreeHexVector2Entry=mscExampleHexProvFreeHexVector2Entry, mscExampleWildBcdProvFreeWildBcdVectorValue=mscExampleWildBcdProvFreeWildBcdVectorValue, mscExampleHexProvFreeHexReplicated1Index=mscExampleHexProvFreeHexReplicated1Index, mscExampleStringProvisionalEntry=mscExampleStringProvisionalEntry, mscExampleObjectIdOperationalTable=mscExampleObjectIdOperationalTable, mscExampleFixedPtOperFreeFixedPtArrayTable=mscExampleFixedPtOperFreeFixedPtArrayTable, mscExampleExtendedOperFreeExtendedVectorValue=mscExampleExtendedOperFreeExtendedVectorValue, mscExampleWildBcdProvFreeWildBcdArrayRowIndex=mscExampleWildBcdProvFreeWildBcdArrayRowIndex, mscExampleEnumComponentName=mscExampleEnumComponentName, mscFriEscapeSet=mscFriEscapeSet, mscFriProvisionalTable=mscFriProvisionalTable, mscExampleDashedProvFreeDashedVectorValue=mscExampleDashedProvFreeDashedVectorValue, mscFriProvisionalFreeSimpleDashed=mscFriProvisionalFreeSimpleDashed, mscFriDynOpDynOpJr=mscFriDynOpDynOpJr, mscExampleStringProvFreeHexOnly1=mscExampleStringProvFreeHexOnly1, mscExampleEnumProvStructEnumArrayTable=mscExampleEnumProvStructEnumArrayTable, mscExampleStringOperFreeStrArrayColumnIndex=mscExampleStringOperFreeStrArrayColumnIndex, mscExampleWildBcdProvFreeWildBcd=mscExampleWildBcdProvFreeWildBcd, mscExampleEnumOperFreeEnumSet=mscExampleEnumOperFreeEnumSet, mscExampleSequenceProvisionalTable=mscExampleSequenceProvisionalTable, mscFriDynOpRowStatusTable=mscFriDynOpRowStatusTable, mscExampleEnumProvFreeEnumReplicatedRowStatus=mscExampleEnumProvFreeEnumReplicatedRowStatus, mscExampleAsciiIndicesTwoIndex=mscExampleAsciiIndicesTwoIndex, mscExampleStringProvFreeStrVector1Index=mscExampleStringProvFreeStrVector1Index, mscFriProvisionalStructSimpleSequence=mscFriProvisionalStructSimpleSequence, mscExampleIpAddressProvFreeIpAddressArrayColumnIndex=mscExampleIpAddressProvFreeIpAddressArrayColumnIndex, mscExampleWildBcdOperFreeWildBcdListTable=mscExampleWildBcdOperFreeWildBcdListTable, mscExampleStringOperFreeStrArrayRowIndex=mscExampleStringOperFreeStrArrayRowIndex, mscExampleEnumIndicesThreeIndex=mscExampleEnumIndicesThreeIndex, mscExampleMiscellaneousOperFreeGauge64=mscExampleMiscellaneousOperFreeGauge64, mscExampleFourIndicesRowStatusEntry=mscExampleFourIndicesRowStatusEntry, mscExampleSequenceProvFreeSequenceListTable=mscExampleSequenceProvFreeSequenceListTable, mscExampleBcdRowStatus=mscExampleBcdRowStatus, mscExampleNsapRowStatus=mscExampleNsapRowStatus, mscExampleNsapAtmAddrEntry=mscExampleNsapAtmAddrEntry, mscExampleEnumProvFreeEnumArray1Entry=mscExampleEnumProvFreeEnumArray1Entry, mscExampleBcdProvFreeBcdList1Table=mscExampleBcdProvFreeBcdList1Table, mscExampleBcdProvFreeBcdVector1Entry=mscExampleBcdProvFreeBcdVector1Entry, mscExampleEnumRowStatusEntry=mscExampleEnumRowStatusEntry, mscExampleIpAddressProvFreeIpAddressArray1Entry=mscExampleIpAddressProvFreeIpAddressArray1Entry, mscExampleMiscellaneousProvFreeLongReplicatedValue=mscExampleMiscellaneousProvFreeLongReplicatedValue, mscExampleSignedOperFreeSignedVectorIndex=mscExampleSignedOperFreeSignedVectorIndex, mscExampleFixedPtOperFreeFixedPtListValue=mscExampleFixedPtOperFreeFixedPtListValue, mscExampleWildBcdProvFreeWildBcdReplicatedValue=mscExampleWildBcdProvFreeWildBcdReplicatedValue, mscExampleHexProvFreeHexListEntry=mscExampleHexProvFreeHexListEntry, mscFriOperationalFreeSimpleAscii=mscFriOperationalFreeSimpleAscii, mscExampleDecimalOfIntVectorIndex=mscExampleDecimalOfIntVectorIndex, mscExampleFixedPtOperStructFixedPtVectorValue=mscExampleFixedPtOperStructFixedPtVectorValue, mscExampleStringProvisionalTable=mscExampleStringProvisionalTable, mscExampleDecimalOsIntVectorTable=mscExampleDecimalOsIntVectorTable, mscExampleObjectIdOperFreeObjIdReplicatedTable=mscExampleObjectIdOperFreeObjIdReplicatedTable, mscExampleHexOfHexArrayTable=mscExampleHexOfHexArrayTable, mscExampleExtendedProvStructExtendedArrayValue=mscExampleExtendedProvStructExtendedArrayValue, mscExampleWildBcdProvFreeWildBcdVectorEntry=mscExampleWildBcdProvFreeWildBcdVectorEntry, mscExampleWildBcdOperFreeWildBcdReplicatedValue=mscExampleWildBcdOperFreeWildBcdReplicatedValue, mscExampleHexProvFreeHexArray2Entry=mscExampleHexProvFreeHexArray2Entry, mscFriProvisionalEntry=mscFriProvisionalEntry, mscExampleDecimalProvisionalTable=mscExampleDecimalProvisionalTable, mscExampleIpAddressProvFreeIpAddressListValue=mscExampleIpAddressProvFreeIpAddressListValue, mscExampleObjectIdOperFreeObjIdListValue=mscExampleObjectIdOperFreeObjIdListValue, mscFriAdminState=mscFriAdminState, mscExampleSequenceOperFreeSequenceListEntry=mscExampleSequenceOperFreeSequenceListEntry, mscExampleBcdOperFreeBcdListRowStatus=mscExampleBcdOperFreeBcdListRowStatus, mscExampleEnumStorageType=mscExampleEnumStorageType, mscExampleDashedOfDashedReplicatedEntry=mscExampleDashedOfDashedReplicatedEntry, mscExampleFixedPtProvFixedPtSubcomponent=mscExampleFixedPtProvFixedPtSubcomponent, mscExampleSignedProvFreeSignedListValue=mscExampleSignedProvFreeSignedListValue, mscExampleAsciiIndicesOneIndex=mscExampleAsciiIndicesOneIndex, mscExampleDecimalOsIntArrayEntry=mscExampleDecimalOsIntArrayEntry, mscExampleMiscellaneousStorageType=mscExampleMiscellaneousStorageType, mscExampleDecimalIndicesComponentName=mscExampleDecimalIndicesComponentName, mscExampleStringRowStatus=mscExampleStringRowStatus, mscExampleStringProvFreeStrVector1Entry=mscExampleStringProvFreeStrVector1Entry, mscExampleWildBcdRowStatus=mscExampleWildBcdRowStatus, mscExampleWildBcdProvFreeWildBcdListRowStatus=mscExampleWildBcdProvFreeWildBcdListRowStatus, mscExampleSignedProvFreeSignedListEntry=mscExampleSignedProvFreeSignedListEntry, mscExampleSignedOperFreeSignedReplicatedRowStatus=mscExampleSignedOperFreeSignedReplicatedRowStatus, mscExampleDecimalIndicesProvAttribute=mscExampleDecimalIndicesProvAttribute, mscExampleDashedProvStructDashedVectorEntry=mscExampleDashedProvStructDashedVectorEntry, mscExampleDecimalPfIntArray1Entry=mscExampleDecimalPfIntArray1Entry, mscExampleSequenceProvFreeSequenceReplicatedTable=mscExampleSequenceProvFreeSequenceReplicatedTable, mscExampleEnumProvFreeEnumArrayTable=mscExampleEnumProvFreeEnumArrayTable, mscExampleMiscellaneousProvFreeTime=mscExampleMiscellaneousProvFreeTime, mscFriPfListSignedEntry=mscFriPfListSignedEntry, mscExampleOperFixedPtSubcomponentsCreatedValue=mscExampleOperFixedPtSubcomponentsCreatedValue, mscExampleHexOperationalTable=mscExampleHexOperationalTable, mscExampleBcdProvFreeBcdVectorIndex=mscExampleBcdProvFreeBcdVectorIndex, mscExampleIpAddressOperStructIpAddress=mscExampleIpAddressOperStructIpAddress, mscExampleIpAddressOperStructIpAddressArrayEntry=mscExampleIpAddressOperStructIpAddressArrayEntry, mscExampleSequenceProvFreeSequence=mscExampleSequenceProvFreeSequence, mscExampleSignedProvSignedSub=mscExampleSignedProvSignedSub, mscExampleSignedProvFreeSignedArrayRowIndex=mscExampleSignedProvFreeSignedArrayRowIndex, mscFriProvisionalStructSimpleUnsigned=mscFriProvisionalStructSimpleUnsigned, mscExampleMiscellaneousProvFreeTimeReplicatedIndex=mscExampleMiscellaneousProvFreeTimeReplicatedIndex, mscExampleMiscellaneousProvFreeLongListEntry=mscExampleMiscellaneousProvFreeLongListEntry, mscExampleOperDecimalSubCreatedRowStatus=mscExampleOperDecimalSubCreatedRowStatus, mscExampleWildBcdProvisionalEntry=mscExampleWildBcdProvisionalEntry, mscExampleHexOperationalEntry=mscExampleHexOperationalEntry, mscExampleFixedPtProvFreeFixedPtReplicatedIndex=mscExampleFixedPtProvFreeFixedPtReplicatedIndex, mscExampleDecimalIndicesOneIndex=mscExampleDecimalIndicesOneIndex, mscFriDynOpInitialProvAttribute=mscFriDynOpInitialProvAttribute, mscExampleStringOperFreeStrArrayEntry=mscExampleStringOperFreeStrArrayEntry, mscExampleStringOperFreeStrVectorValue=mscExampleStringOperFreeStrVectorValue, mscExampleMiscellaneousOperFreeLongListRowStatus=mscExampleMiscellaneousOperFreeLongListRowStatus, mscExampleDecimalOsIntArrayValue=mscExampleDecimalOsIntArrayValue, mscExampleWildBcdOperStructWildBcdArrayEntry=mscExampleWildBcdOperStructWildBcdArrayEntry, mscExampleObjectIdIndex=mscExampleObjectIdIndex, mscExampleSequenceProvFreeSequenceReplicatedIndex=mscExampleSequenceProvFreeSequenceReplicatedIndex, mscFriDynOpInitial=mscFriDynOpInitial, mscFriDynOpOptionalIndex=mscFriDynOpOptionalIndex, mscExampleExtendedProvStructExtendedVectorIndex=mscExampleExtendedProvStructExtendedVectorIndex, mscExampleHexProvFreeHexVector1Index=mscExampleHexProvFreeHexVector1Index, mscExampleFixedPtOperStructFixedPtArrayColumnIndex=mscExampleFixedPtOperStructFixedPtArrayColumnIndex, mscExampleHexProvFreeHexList1Table=mscExampleHexProvFreeHexList1Table, mscExampleBcdProvFreeBcdArrayValue=mscExampleBcdProvFreeBcdArrayValue, mscExampleSequenceOperFreeSequenceReplicatedEntry=mscExampleSequenceOperFreeSequenceReplicatedEntry, mscExampleHexProvFreeHexList1Value=mscExampleHexProvFreeHexList1Value, mscExampleExtendedProvFreeExtendedReplicatedIndex=mscExampleExtendedProvFreeExtendedReplicatedIndex, mscExampleIpAddressProvStructIpAddressArrayTable=mscExampleIpAddressProvStructIpAddressArrayTable, mscExampleOperationalTable=mscExampleOperationalTable, mscExampleDashedOfDashedVectorTable=mscExampleDashedOfDashedVectorTable, mscExampleHexIndices=mscExampleHexIndices, mscExampleRowStatus=mscExampleRowStatus, mscFriDynOpOperationalTable=mscFriDynOpOperationalTable, mscExampleSignedOperFreeSignedListTable=mscExampleSignedOperFreeSignedListTable, mscFriUsageState=mscFriUsageState, mscExampleMiscellaneousProvFreeTimeList2RowStatus=mscExampleMiscellaneousProvFreeTimeList2RowStatus, mscFriRowStatus=mscFriRowStatus, mscExampleProvEnumSubCreatedEntry=mscExampleProvEnumSubCreatedEntry, mscExampleMiscellaneousRowStatusEntry=mscExampleMiscellaneousRowStatusEntry) mibBuilder.exportSymbols('Nortel-MsCarrier-MscPassport-CasTestMIB', mscExampleEnumOperationalEntry=mscExampleEnumOperationalEntry, mscExampleFixedPtOperStructFixedPtArrayTable=mscExampleFixedPtOperStructFixedPtArrayTable, mscExampleAsciiIndicesRowStatusEntry=mscExampleAsciiIndicesRowStatusEntry, mscFriEscapeCopyAttribute=mscFriEscapeCopyAttribute, mscExampleDashedProvFreeDashedArrayTable=mscExampleDashedProvFreeDashedArrayTable, mscExampleSequenceProvFreeSequenceListEntry=mscExampleSequenceProvFreeSequenceListEntry, mscExampleStringOperStructStrVectorIndex=mscExampleStringOperStructStrVectorIndex, mscExampleFixedPtProvFreeFixedPtArrayValue=mscExampleFixedPtProvFreeFixedPtArrayValue, mscExampleBcdProvFreeBcdVectorTable=mscExampleBcdProvFreeBcdVectorTable, mscFriProvisionalFreeSimpleFixed=mscFriProvisionalFreeSimpleFixed, mscExampleBcdOperFreeBcdArrayColumnIndex=mscExampleBcdOperFreeBcdArrayColumnIndex, mscFriStorageType=mscFriStorageType, mscExampleHexProvFreeHexListTable=mscExampleHexProvFreeHexListTable, mscExampleSignedProvStructSignedArrayColumnIndex=mscExampleSignedProvStructSignedArrayColumnIndex, mscExampleWildBcdProvFreeWildBcdListEntry=mscExampleWildBcdProvFreeWildBcdListEntry, mscExampleIpAddressOperFreeIpAddressListTable=mscExampleIpAddressOperFreeIpAddressListTable, mscExampleBcdOperFreeBcdReplicatedValue=mscExampleBcdOperFreeBcdReplicatedValue, mscExampleDecimalOsIntArrayColumnIndex=mscExampleDecimalOsIntArrayColumnIndex, mscExampleHexOsHexArrayRowIndex=mscExampleHexOsHexArrayRowIndex, mscFriProvisionalStructSimpleBcd=mscFriProvisionalStructSimpleBcd, mscExampleThreeIndicesTwoIndex=mscExampleThreeIndicesTwoIndex, mscExampleIpAddressProvFreeIpAddressVectorValue=mscExampleIpAddressProvFreeIpAddressVectorValue, mscExampleHexIndicesStorageType=mscExampleHexIndicesStorageType, mscExampleSequenceProvFreeSequenceListRowStatus=mscExampleSequenceProvFreeSequenceListRowStatus, mscExampleExtendedProvFreeExtendedArrayValue=mscExampleExtendedProvFreeExtendedArrayValue, mscExampleHexStrIndicesTwoIndex=mscExampleHexStrIndicesTwoIndex, mscExampleIpAddressRowStatusEntry=mscExampleIpAddressRowStatusEntry, mscExampleSignedProvFreeSignedArray1RowIndex=mscExampleSignedProvFreeSignedArray1RowIndex, mscFriDynOpOperationalEntry=mscFriDynOpOperationalEntry, mscExampleBcdProvFreeBcdArrayEntry=mscExampleBcdProvFreeBcdArrayEntry, mscExampleSequenceIndicesOneIndex=mscExampleSequenceIndicesOneIndex, mscExampleObjIdIndicesStorageType=mscExampleObjIdIndicesStorageType, mscExampleTwoIndicesRowStatus=mscExampleTwoIndicesRowStatus, mscExampleFixedPtOperationalEntry=mscExampleFixedPtOperationalEntry, mscExampleStringOperFreeStrArrayTable=mscExampleStringOperFreeStrArrayTable, mscExampleDecimalOperFreeTimeInterval=mscExampleDecimalOperFreeTimeInterval, mscExampleBcdProvStructBcdArrayEntry=mscExampleBcdProvStructBcdArrayEntry, mscExampleHexProvFreeHexVectorValue=mscExampleHexProvFreeHexVectorValue, mscExampleIpAddressOperFreeIpAddressArrayEntry=mscExampleIpAddressOperFreeIpAddressArrayEntry, mscExampleWildBcdProvFreeWildBcdArrayValue=mscExampleWildBcdProvFreeWildBcdArrayValue, mscExampleMiscellaneousProvFreeTimeList1Entry=mscExampleMiscellaneousProvFreeTimeList1Entry, mscExampleHexIndicesProvisionedEntry=mscExampleHexIndicesProvisionedEntry, mscExampleDashedProvFreeDashedVectorEntry=mscExampleDashedProvFreeDashedVectorEntry, mscExampleHexIndex=mscExampleHexIndex, mscExampleBcdProvFreeBcdArray1RowIndex=mscExampleBcdProvFreeBcdArray1RowIndex, mscExampleStringOperStructStrVectorEntry=mscExampleStringOperStructStrVectorEntry, mscExampleSignedOperFreeSignedReplicatedEntry=mscExampleSignedOperFreeSignedReplicatedEntry, mscExampleFixedPtProvFreeFixedPtListEntry=mscExampleFixedPtProvFreeFixedPtListEntry, mscExampleDashedIndices=mscExampleDashedIndices, mscExampleIpAddressProvFreeIpAddressArrayRowIndex=mscExampleIpAddressProvFreeIpAddressArrayRowIndex, mscExampleStringProvStructStrArrayColumnIndex=mscExampleStringProvStructStrArrayColumnIndex, mscExampleProvisionalEntry=mscExampleProvisionalEntry, mscExampleFixedPtOperationalTable=mscExampleFixedPtOperationalTable, mscExampleDashedProvStructDashedArrayRowIndex=mscExampleDashedProvStructDashedArrayRowIndex, mscExampleExtendedIndex=mscExampleExtendedIndex, mscExampleHexOfHexVectorIndex=mscExampleHexOfHexVectorIndex, mscExampleEnumOperStructEnumVectorValue=mscExampleEnumOperStructEnumVectorValue, mscExample=mscExample, casTestCapabilities=casTestCapabilities, mscExampleObjectIdOperFreeObjIdReplicatedValue=mscExampleObjectIdOperFreeObjIdReplicatedValue, mscExampleSignedProvStructSignedArrayTable=mscExampleSignedProvStructSignedArrayTable, mscExampleMiscellaneousProvFreeTimeTimeOnly=mscExampleMiscellaneousProvFreeTimeTimeOnly, mscExampleBcdProvFreeBcdListRowStatus=mscExampleBcdProvFreeBcdListRowStatus, mscExampleEnumProvFreeEnum=mscExampleEnumProvFreeEnum, mscExampleStringProvFreeStrListTable=mscExampleStringProvFreeStrListTable, mscExampleMiscellaneousOperFreeLongListEntry=mscExampleMiscellaneousOperFreeLongListEntry, mscExampleSequenceOperFreeSequenceListValue=mscExampleSequenceOperFreeSequenceListValue, mscExampleHexProvStructHexArrayRowIndex=mscExampleHexProvStructHexArrayRowIndex, mscExampleStringOperStructStrArrayColumnIndex=mscExampleStringOperStructStrArrayColumnIndex, mscExampleObjIdIndicesTwoIndex=mscExampleObjIdIndicesTwoIndex, mscExampleStringProvFreeStrArrayEntry=mscExampleStringProvFreeStrArrayEntry, mscExampleOperSignedSubCreatedValue=mscExampleOperSignedSubCreatedValue, mscExampleDecimalPsIntVectorEntry=mscExampleDecimalPsIntVectorEntry, mscExampleEnumProvFreeEnumVectorEntry=mscExampleEnumProvFreeEnumVectorEntry, mscExampleExtendedOperFreeExtendedArrayColumnIndex=mscExampleExtendedOperFreeExtendedArrayColumnIndex, mscExampleIpAddressOperFreeIpAddressReplicatedIndex=mscExampleIpAddressOperFreeIpAddressReplicatedIndex, mscExampleThreeIndicesRowStatusEntry=mscExampleThreeIndicesRowStatusEntry, mscExampleHexStrIndicesProvisionedEntry=mscExampleHexStrIndicesProvisionedEntry, mscExampleIpAddress=mscExampleIpAddress, mscExampleFourIndicesTwoIndex=mscExampleFourIndicesTwoIndex, mscExampleIpAddressProvFreeIpAddressListTable=mscExampleIpAddressProvFreeIpAddressListTable, mscExampleIpAddressIndex=mscExampleIpAddressIndex, mscExampleObjectIdOperFreeObjId=mscExampleObjectIdOperFreeObjId, mscExampleIpAddressProvFreeIpAddressReplicatedRowStatus=mscExampleIpAddressProvFreeIpAddressReplicatedRowStatus, mscExampleObjectIdProvFreeObjIdListEntry=mscExampleObjectIdProvFreeObjIdListEntry, mscFriRegisteredRowStatusEntry=mscFriRegisteredRowStatusEntry, mscFriDynOpDynamicAttribute=mscFriDynOpDynamicAttribute, mscExampleEnumProvFreeEnumListValue=mscExampleEnumProvFreeEnumListValue, mscExampleIpAddressOperFreeIpAddressVectorValue=mscExampleIpAddressOperFreeIpAddressVectorValue, mscExampleBcdOperFreeBcd=mscExampleBcdOperFreeBcd, mscExampleSignedProvFreeSignedArrayEntry=mscExampleSignedProvFreeSignedArrayEntry, mscExampleStringOperStructStrVectorValue=mscExampleStringOperStructStrVectorValue, mscExampleSignedOperFreeSignedVectorTable=mscExampleSignedOperFreeSignedVectorTable, mscExampleEnumOperFreeEnumArrayMonthIndex=mscExampleEnumOperFreeEnumArrayMonthIndex, mscExampleStringProvFreeStrList1Table=mscExampleStringProvFreeStrList1Table, mscFriProvisionalFreeSimpleHex=mscFriProvisionalFreeSimpleHex, mscFriOperationalStructSetUnsigned=mscFriOperationalStructSetUnsigned, mscExampleDecimalPfIntListValue=mscExampleDecimalPfIntListValue, mscExampleBcdIndicesRowStatusTable=mscExampleBcdIndicesRowStatusTable, mscExampleWildBcdOperFreeWildBcdArrayColumnIndex=mscExampleWildBcdOperFreeWildBcdArrayColumnIndex, mscExampleEnumProvFreeEnumArrayMonthIndex=mscExampleEnumProvFreeEnumArrayMonthIndex, mscFriPfListSignedValue=mscFriPfListSignedValue, mscExampleStringProvStructStrVectorValue=mscExampleStringProvStructStrVectorValue, mscExampleFixedPtOperFreeFixedPtArrayValue=mscExampleFixedPtOperFreeFixedPtArrayValue, mscExampleMiscellaneousOperFreeLongListTable=mscExampleMiscellaneousOperFreeLongListTable, mscExampleIpAddressOperFreeIpAddressReplicatedRowStatus=mscExampleIpAddressOperFreeIpAddressReplicatedRowStatus, mscExampleIpAddressOperFreeIpAddressReplicatedTable=mscExampleIpAddressOperFreeIpAddressReplicatedTable, mscExampleMiscellaneousProvFreeTimeList3Value=mscExampleMiscellaneousProvFreeTimeList3Value, mscExampleFixedPtProvStructFixedPtVectorIndex=mscExampleFixedPtProvStructFixedPtVectorIndex, mscExampleWildBcdOperStructWildBcdArrayTable=mscExampleWildBcdOperStructWildBcdArrayTable, mscExampleDecimalPsIntVectorTable=mscExampleDecimalPsIntVectorTable, mscExampleStringRowStatusTable=mscExampleStringRowStatusTable, mscExampleMiscellaneousOperFreeTimeDateTimeMinute=mscExampleMiscellaneousOperFreeTimeDateTimeMinute, mscExampleStringOperFreeStrVectorTable=mscExampleStringOperFreeStrVectorTable, mscExampleBcdProvStructBcdVectorEntry=mscExampleBcdProvStructBcdVectorEntry, mscExampleHexProvStructHex=mscExampleHexProvStructHex, mscFriDynamicStorageType=mscFriDynamicStorageType, casTestCapabilitiesCA=casTestCapabilitiesCA, mscExampleHexOfHexVectorEntry=mscExampleHexOfHexVectorEntry, mscExampleDecimalPfIntArray1Table=mscExampleDecimalPfIntArray1Table, mscExampleHexProvFreeHexArrayValue=mscExampleHexProvFreeHexArrayValue, mscExampleDecimalOsIntArrayRowIndex=mscExampleDecimalOsIntArrayRowIndex, mscExampleMiscellaneousProvFreeTimeList3Table=mscExampleMiscellaneousProvFreeTimeList3Table, mscExampleHexStrIndicesComponentName=mscExampleHexStrIndicesComponentName, mscExampleMiscellaneousOperFreeTimeTimeOnly=mscExampleMiscellaneousOperFreeTimeTimeOnly, mscExampleAsciiIndicesProvisionedEntry=mscExampleAsciiIndicesProvisionedEntry, mscExampleEnumIndicesComponentName=mscExampleEnumIndicesComponentName, mscExampleWildBcdStorageType=mscExampleWildBcdStorageType, mscExampleBcdProvFreeBcdList1Entry=mscExampleBcdProvFreeBcdList1Entry, mscFriPfListFixedRowStatus=mscFriPfListFixedRowStatus, mscExampleDecimalOfIntReplicatedIndex=mscExampleDecimalOfIntReplicatedIndex, mscFriOfListEnumerationRowStatus=mscFriOfListEnumerationRowStatus, mscExampleObjectIdStorageType=mscExampleObjectIdStorageType, mscExampleIpAddressOperStructIpAddressVectorIndex=mscExampleIpAddressOperStructIpAddressVectorIndex, mscExampleFixedPtProvisionalEntry=mscExampleFixedPtProvisionalEntry, mscExampleWildBcdProvFreeWildBcdArrayColumnIndex=mscExampleWildBcdProvFreeWildBcdArrayColumnIndex, mscExampleIpAddressProvFreeIpAddressArray1RowIndex=mscExampleIpAddressProvFreeIpAddressArray1RowIndex, mscExampleDecimalPsIntArrayTable=mscExampleDecimalPsIntArrayTable, mscExampleProvFixedPtSubCreatedTable=mscExampleProvFixedPtSubCreatedTable, mscFriOperationalTable=mscFriOperationalTable, mscFriDnaStorageType=mscFriDnaStorageType, mscExampleSequenceProvFreeSequenceListValue=mscExampleSequenceProvFreeSequenceListValue, mscExampleOperFixedPtSubcomponentsCreatedEntry=mscExampleOperFixedPtSubcomponentsCreatedEntry, mscExampleWildBcdProvisionalTable=mscExampleWildBcdProvisionalTable, mscFriEscapeCheckAttribute=mscFriEscapeCheckAttribute, mscExampleBcdIndicesRowStatus=mscExampleBcdIndicesRowStatus, mscFriStandbyStatus=mscFriStandbyStatus, mscExampleHexStrIndicesRowStatusEntry=mscExampleHexStrIndicesRowStatusEntry, mscExampleDecimalOfIntArrayColumnIndex=mscExampleDecimalOfIntArrayColumnIndex, mscExampleAsciiIndicesStorageType=mscExampleAsciiIndicesStorageType, mscExampleIpAddressProvFreeIpAddress1=mscExampleIpAddressProvFreeIpAddress1, mscExampleIpAddressOperStructIpAddressArrayRowIndex=mscExampleIpAddressOperStructIpAddressArrayRowIndex, mscExampleHexIndicesProvAttribute=mscExampleHexIndicesProvAttribute, mscExampleStringOperFreeStrReplicatedRowStatus=mscExampleStringOperFreeStrReplicatedRowStatus, mscExampleEnumOperStructEnumVectorTable=mscExampleEnumOperStructEnumVectorTable, mscFriDynamicIndex=mscFriDynamicIndex, mscExampleSignedOperStructSignedArrayColumnIndex=mscExampleSignedOperStructSignedArrayColumnIndex, mscExampleBcdOperStructBcdArrayRowIndex=mscExampleBcdOperStructBcdArrayRowIndex, mscExampleBcdIndicesProvisionedTable=mscExampleBcdIndicesProvisionedTable, mscExampleDecimalOperFreeInteger=mscExampleDecimalOperFreeInteger, mscExampleEnumProvStructEnumArrayDayIndex=mscExampleEnumProvStructEnumArrayDayIndex, mscExampleOperFixedPtSubcomponentsCreatedTable=mscExampleOperFixedPtSubcomponentsCreatedTable, mscFriOfListEnumerationTable=mscFriOfListEnumerationTable, mscExampleHexProvFreeHexReplicated1RowStatus=mscExampleHexProvFreeHexReplicated1RowStatus, mscFriOperationalFreeSimpleDashed=mscFriOperationalFreeSimpleDashed, mscExampleExtendedProvStructExtendedVectorEntry=mscExampleExtendedProvStructExtendedVectorEntry, mscExampleProvStringSubCreatedValue=mscExampleProvStringSubCreatedValue, mscExampleBcdProvEnumSub=mscExampleBcdProvEnumSub, mscExampleProvMyComponentName=mscExampleProvMyComponentName, mscExampleBcdOperStructBcdArrayEntry=mscExampleBcdOperStructBcdArrayEntry, mscExampleHexProvFreeHexVectorIndex=mscExampleHexProvFreeHexVectorIndex, mscExampleSignedProvStructSignedVectorEntry=mscExampleSignedProvStructSignedVectorEntry, mscExampleBcdProvStructBcdVectorValue=mscExampleBcdProvStructBcdVectorValue, mscExampleMiscellaneousProvEnumSub=mscExampleMiscellaneousProvEnumSub, mscExampleDecimalOfIntArrayValue=mscExampleDecimalOfIntArrayValue, mscExampleSignedProvFreeSignedReplicatedIndex=mscExampleSignedProvFreeSignedReplicatedIndex, mscExampleDashedProvFreeDashedArrayRowIndex=mscExampleDashedProvFreeDashedArrayRowIndex, mscExampleStringProvFreeStrReplicatedEntry=mscExampleStringProvFreeStrReplicatedEntry, mscExampleDashedProvFreeDashed=mscExampleDashedProvFreeDashed, mscExampleHexRowStatus=mscExampleHexRowStatus, mscExampleSequenceIndex=mscExampleSequenceIndex, mscExampleStringProvStructStrArrayEntry=mscExampleStringProvStructStrArrayEntry, mscExampleEnumOperFreeEnumReplicatedTable=mscExampleEnumOperFreeEnumReplicatedTable, mscExampleSignedProvFreeSignedVectorTable=mscExampleSignedProvFreeSignedVectorTable, mscExampleRequiredIndicesRowStatusEntry=mscExampleRequiredIndicesRowStatusEntry, mscExampleExtendedProvFreeExtendedReplicatedRowStatus=mscExampleExtendedProvFreeExtendedReplicatedRowStatus, mscExampleHexStrIndicesThreeIndex=mscExampleHexStrIndicesThreeIndex, mscExampleObjIdIndicesProvAttribute=mscExampleObjIdIndicesProvAttribute, mscExampleIpAddressProvStructIpAddressArrayRowIndex=mscExampleIpAddressProvStructIpAddressArrayRowIndex, mscExampleHexOfHexReplicatedEntry=mscExampleHexOfHexReplicatedEntry, mscExampleProvEnumSubCreatedTable=mscExampleProvEnumSubCreatedTable, mscExampleStringOperFreeStrListRowStatus=mscExampleStringOperFreeStrListRowStatus, mscExampleOneIndexRowStatusEntry=mscExampleOneIndexRowStatusEntry, mscFriPfListFixedTable=mscFriPfListFixedTable, mscExampleDashedOfDashedVectorValue=mscExampleDashedOfDashedVectorValue, mscExampleWildBcdOperFreeWildBcdArrayValue=mscExampleWildBcdOperFreeWildBcdArrayValue, mscExampleDecimalPfIntReplicatedTable=mscExampleDecimalPfIntReplicatedTable, mscExampleExtendedProvFreeExtendedArrayRowIndex=mscExampleExtendedProvFreeExtendedArrayRowIndex, mscExampleFixedPtOperFreeFixedPt=mscExampleFixedPtOperFreeFixedPt, mscExampleSignedOperStructSignedArrayEntry=mscExampleSignedOperStructSignedArrayEntry, mscExampleBcdProvStructBcdVectorIndex=mscExampleBcdProvStructBcdVectorIndex, mscExampleFixedPtProvStructFixedPtArrayTable=mscExampleFixedPtProvStructFixedPtArrayTable, mscExampleMiscellaneousProvStructLong=mscExampleMiscellaneousProvStructLong, mscExampleStringProvFreeStrArrayTable=mscExampleStringProvFreeStrArrayTable, mscFriDnaRowStatus=mscFriDnaRowStatus, mscExampleStringProvFreeStrArray1RowIndex=mscExampleStringProvFreeStrArray1RowIndex, mscExampleIpAddressProvFreeIpAddressArrayValue=mscExampleIpAddressProvFreeIpAddressArrayValue, mscExampleObjIdIndicesRowStatusEntry=mscExampleObjIdIndicesRowStatusEntry, mscExampleHexProvFreeHexList1RowStatus=mscExampleHexProvFreeHexList1RowStatus, mscExampleFixedPtProvFreeFixedPtVectorTable=mscExampleFixedPtProvFreeFixedPtVectorTable, mscExampleFixedPtProvFreeFixedPtReplicatedEntry=mscExampleFixedPtProvFreeFixedPtReplicatedEntry, mscRegisteredDataTable=mscRegisteredDataTable, mscExampleDecimalOperStructIntSet=mscExampleDecimalOperStructIntSet, mscExampleNsapRowStatusEntry=mscExampleNsapRowStatusEntry, mscExampleDashedProvFreeDashedArrayEntry=mscExampleDashedProvFreeDashedArrayEntry, mscExampleEnumOperStructEnumArrayMonthIndex=mscExampleEnumOperStructEnumArrayMonthIndex, mscExampleDecimalPfIntReplicated1RowStatus=mscExampleDecimalPfIntReplicated1RowStatus, mscExampleSignedProvFreeSignedListRowStatus=mscExampleSignedProvFreeSignedListRowStatus, mscExampleEnumProvStructEnumArrayMonthIndex=mscExampleEnumProvStructEnumArrayMonthIndex, mscExampleHexOfHexListTable=mscExampleHexOfHexListTable, mscExampleHexProvStructHexVectorEntry=mscExampleHexProvStructHexVectorEntry, mscExampleEnumIndicesProvisionedEntry=mscExampleEnumIndicesProvisionedEntry, mscExampleSequenceProvisionalEntry=mscExampleSequenceProvisionalEntry, mscExampleDashedOperationalEntry=mscExampleDashedOperationalEntry, mscExampleOneIndexRowStatusTable=mscExampleOneIndexRowStatusTable, mscExampleSequenceOperFreeSequenceListTable=mscExampleSequenceOperFreeSequenceListTable, mscExampleStringProvFreeStrListEntry=mscExampleStringProvFreeStrListEntry, mscExampleIpAddressProvStructIpAddressVectorValue=mscExampleIpAddressProvStructIpAddressVectorValue, mscExampleEnumProvisionalEntry=mscExampleEnumProvisionalEntry, mscExampleIpAddressProvFreeIpAddressList1RowStatus=mscExampleIpAddressProvFreeIpAddressList1RowStatus, mscExampleDecimalIndices=mscExampleDecimalIndices, mscExampleStringOperFreeStrReplicatedTable=mscExampleStringOperFreeStrReplicatedTable, mscExampleDashedOfDashedArrayValue=mscExampleDashedOfDashedArrayValue, mscExampleExtendedOperStructExtendedArrayValue=mscExampleExtendedOperStructExtendedArrayValue, mscExampleEnumOperStructEnumArrayValue=mscExampleEnumOperStructEnumArrayValue, mscExampleBcdIndicesComponentName=mscExampleBcdIndicesComponentName, mscFriPfListUnsignedTable=mscFriPfListUnsignedTable, mscExampleWildBcdOperStructWildBcdVectorEntry=mscExampleWildBcdOperStructWildBcdVectorEntry, mscExampleIpAddressOperFreeIpAddressReplicatedValue=mscExampleIpAddressOperFreeIpAddressReplicatedValue, mscExampleEnumProvStructEnumVectorEntry=mscExampleEnumProvStructEnumVectorEntry, mscExampleBcdOperStructBcdArrayTable=mscExampleBcdOperStructBcdArrayTable, mscExampleRowStatusEntry=mscExampleRowStatusEntry, mscExampleFixedPtOperStructFixedPtArrayValue=mscExampleFixedPtOperStructFixedPtArrayValue, mscExampleMiscellaneousProvisionalEntry=mscExampleMiscellaneousProvisionalEntry, mscExampleEnumIndicesOneIndex=mscExampleEnumIndicesOneIndex, mscExampleSignedOperStructSignedVectorValue=mscExampleSignedOperStructSignedVectorValue, mscExampleFixedPtOperFreeFixedPtListRowStatus=mscExampleFixedPtOperFreeFixedPtListRowStatus, mscExampleDashedProvFreeDashedArrayValue=mscExampleDashedProvFreeDashedArrayValue, mscExampleThreeIndicesOneIndex=mscExampleThreeIndicesOneIndex, mscExampleHexOsHexArrayEntry=mscExampleHexOsHexArrayEntry, mscExampleMiscellaneousIndex=mscExampleMiscellaneousIndex, mscExampleIpAddressProvFreeIpAddressListEntry=mscExampleIpAddressProvFreeIpAddressListEntry, mscExampleOneIndex=mscExampleOneIndex, mscExampleFixedPtProvStructFixedPtArrayEntry=mscExampleFixedPtProvStructFixedPtArrayEntry) mibBuilder.exportSymbols('Nortel-MsCarrier-MscPassport-CasTestMIB', mscExampleMiscellaneousOperFreeLongListValue=mscExampleMiscellaneousOperFreeLongListValue, mscExampleFixedPtOperFreeFixedPtVectorValue=mscExampleFixedPtOperFreeFixedPtVectorValue, mscExampleDashedRowStatusEntry=mscExampleDashedRowStatusEntry, mscExampleStringProvFreeHexOnly=mscExampleStringProvFreeHexOnly, mscExampleHexOfHexVectorValue=mscExampleHexOfHexVectorValue, mscFriRegisteredRowStatus=mscFriRegisteredRowStatus, mscExampleHexProvFreeHexReplicated1Table=mscExampleHexProvFreeHexReplicated1Table, mscFriOfListComponentTable=mscFriOfListComponentTable, mscExampleFixedPtStorageType=mscExampleFixedPtStorageType, mscExampleDashedComponentName=mscExampleDashedComponentName, mscExampleStringOperationalTable=mscExampleStringOperationalTable, mscExampleHexStrIndicesProvAttribute=mscExampleHexStrIndicesProvAttribute, mscExampleHexIndicesProvisionedTable=mscExampleHexIndicesProvisionedTable, mscExampleEnumIndex=mscExampleEnumIndex, mscExampleDecimalPfIntReplicatedRowStatus=mscExampleDecimalPfIntReplicatedRowStatus, mscExampleBcdOperFreeBcdListTable=mscExampleBcdOperFreeBcdListTable, mscExampleMiscellaneousRowStatus=mscExampleMiscellaneousRowStatus, mscExampleHexOfHexReplicatedValue=mscExampleHexOfHexReplicatedValue, mscExampleEnumOperStructEnumArrayEntry=mscExampleEnumOperStructEnumArrayEntry, mscExampleHexOfHexReplicatedIndex=mscExampleHexOfHexReplicatedIndex, mscExampleHexProvFreeHexArrayTable=mscExampleHexProvFreeHexArrayTable, mscExampleFixedPtProvisionalTable=mscExampleFixedPtProvisionalTable, mscFriRegisteredAttribute=mscFriRegisteredAttribute, mscFriDynOpOptionalRowStatusTable=mscFriDynOpOptionalRowStatusTable, mscFriEventRowStatus=mscFriEventRowStatus, mscExampleFixedPtProvFreeFixedPtArrayColumnIndex=mscExampleFixedPtProvFreeFixedPtArrayColumnIndex, mscExampleBcdProvStructBcdArrayRowIndex=mscExampleBcdProvStructBcdArrayRowIndex, mscExampleDashedOsDashedVectorEntry=mscExampleDashedOsDashedVectorEntry, mscExampleDashedOsDashedVectorIndex=mscExampleDashedOsDashedVectorIndex, mscExampleDecimalOfIntReplicatedValue=mscExampleDecimalOfIntReplicatedValue, mscFriDynOpDynamicRowStatus=mscFriDynOpDynamicRowStatus, mscExampleDecimalIndicesRowStatusTable=mscExampleDecimalIndicesRowStatusTable, mscExampleThreeIndicesRowStatusTable=mscExampleThreeIndicesRowStatusTable, mscExampleDashed=mscExampleDashed, mscExampleSignedProvFreeSignedArrayValue=mscExampleSignedProvFreeSignedArrayValue, mscFriDynOpDynOpJrOperationalTable=mscFriDynOpDynOpJrOperationalTable, mscExampleSignedProvFreeSignedArrayTable=mscExampleSignedProvFreeSignedArrayTable, mscExampleMiscellaneous=mscExampleMiscellaneous, mscExampleExtendedProvStructExtendedVectorTable=mscExampleExtendedProvStructExtendedVectorTable, mscExampleObjectIdProvFreeObjIdListRowStatus=mscExampleObjectIdProvFreeObjIdListRowStatus, mscExampleSequenceIndicesProvisionedEntry=mscExampleSequenceIndicesProvisionedEntry, mscExampleRequiredIndicesStorageType=mscExampleRequiredIndicesStorageType, mscExampleExtendedOperFreeExtendedListRowStatus=mscExampleExtendedOperFreeExtendedListRowStatus, mscExampleIpAddressProvFreeIpAddressVector1Index=mscExampleIpAddressProvFreeIpAddressVector1Index, mscExampleIpAddressProvFreeIpAddress=mscExampleIpAddressProvFreeIpAddress, mscExampleIpAddressProvFreeIpAddressArray1Value=mscExampleIpAddressProvFreeIpAddressArray1Value, mscExampleStringProvFreeStrVectorIndex=mscExampleStringProvFreeStrVectorIndex, mscExampleOperSignedSubCreatedRowStatus=mscExampleOperSignedSubCreatedRowStatus, mscFriDnaOperationalEntry=mscFriDnaOperationalEntry, mscExampleIpAddrIndicesRowStatusTable=mscExampleIpAddrIndicesRowStatusTable, mscFriRegisteredStorageType=mscFriRegisteredStorageType, mscExampleEnumProvStructEnum=mscExampleEnumProvStructEnum, mscFriDynOpDynOpJrRowStatusTable=mscFriDynOpDynOpJrRowStatusTable, mscExampleDecimalRowStatusTable=mscExampleDecimalRowStatusTable, mscExampleIpAddressOperStructIpAddressArrayColumnIndex=mscExampleIpAddressOperStructIpAddressArrayColumnIndex, mscExampleSignedOperFreeSignedArrayTable=mscExampleSignedOperFreeSignedArrayTable, mscExampleIpAddressOperFreeIpAddress=mscExampleIpAddressOperFreeIpAddress, mscExampleAsciiIndicesThreeIndex=mscExampleAsciiIndicesThreeIndex, mscExampleExtendedProvStructExtendedArrayColumnIndex=mscExampleExtendedProvStructExtendedArrayColumnIndex, mscExampleEnumOperFreeEnumReplicatedRowStatus=mscExampleEnumOperFreeEnumReplicatedRowStatus, mscFriRowStatusEntry=mscFriRowStatusEntry, mscExampleStringProvStructStrArrayValue=mscExampleStringProvStructStrArrayValue, mscExampleSignedOperStructSignedVectorEntry=mscExampleSignedOperStructSignedVectorEntry, mscExampleBcdOperStructBcdArrayColumnIndex=mscExampleBcdOperStructBcdArrayColumnIndex, mscExampleDashedProvFreeDashedReplicatedIndex=mscExampleDashedProvFreeDashedReplicatedIndex, mscFriOfListComponentEntry=mscFriOfListComponentEntry, mscFriProvisionalStructSetEnumeration=mscFriProvisionalStructSetEnumeration, mscExampleDashedIndicesOneIndex=mscExampleDashedIndicesOneIndex, mscFriDnaIndex=mscFriDnaIndex, mscExampleExtendedProvisionalTable=mscExampleExtendedProvisionalTable, mscExampleMiscellaneousProvFreeTimeListValue=mscExampleMiscellaneousProvFreeTimeListValue, mscExampleDashedOfDashedVectorEntry=mscExampleDashedOfDashedVectorEntry, mscExampleOperSignedSubCreatedEntry=mscExampleOperSignedSubCreatedEntry, mscExampleEnum=mscExampleEnum, mscExampleMiscellaneousOperFreeTimeListValue=mscExampleMiscellaneousOperFreeTimeListValue, mscExampleIpAddressOperFreeIpAddressListRowStatus=mscExampleIpAddressOperFreeIpAddressListRowStatus, mscExampleThreeIndicesProvisionedEntry=mscExampleThreeIndicesProvisionedEntry, mscExampleStringProvFreeStrVectorValue=mscExampleStringProvFreeStrVectorValue, mscExampleDashedOsDashedArrayEntry=mscExampleDashedOsDashedArrayEntry, mscExampleIpAddressOperFreeIpAddressListEntry=mscExampleIpAddressOperFreeIpAddressListEntry, mscExampleFixedPtProvFreeFixedPtVectorValue=mscExampleFixedPtProvFreeFixedPtVectorValue, mscExampleHexIndicesTwoIndex=mscExampleHexIndicesTwoIndex, mscFriDynamicOperationalEntry=mscFriDynamicOperationalEntry, mscExampleBcdProvStructBcdArrayValue=mscExampleBcdProvStructBcdArrayValue, mscExampleOperStringSubCreatedRowStatus=mscExampleOperStringSubCreatedRowStatus, mscExampleHexProvFreeHexList1Entry=mscExampleHexProvFreeHexList1Entry, mscExampleStringProvFreeStrVectorTable=mscExampleStringProvFreeStrVectorTable, mscFriRegisteredComponentName=mscFriRegisteredComponentName, mscExampleObjIdIndicesThreeIndex=mscExampleObjIdIndicesThreeIndex, mscExampleBcdProvFreeBcdArrayTable=mscExampleBcdProvFreeBcdArrayTable, mscExampleHexOsHexVectorEntry=mscExampleHexOsHexVectorEntry, mscFriDynOpOptionalRowStatusEntry=mscFriDynOpOptionalRowStatusEntry, mscFriDynamicAttribute=mscFriDynamicAttribute, mscExampleIpAddressProvFreeIpAddressArray1ColumnIndex=mscExampleIpAddressProvFreeIpAddressArray1ColumnIndex, mscExampleWildBcdRowStatusTable=mscExampleWildBcdRowStatusTable, mscExampleOneIndexProvisionedTable=mscExampleOneIndexProvisionedTable, mscExampleDashedIndicesTwoIndex=mscExampleDashedIndicesTwoIndex, mscExampleDecimalOfIntArrayRowIndex=mscExampleDecimalOfIntArrayRowIndex, mscExampleEnumProvFreeEnumList1RowStatus=mscExampleEnumProvFreeEnumList1RowStatus, mscExampleMiscellaneousProvFreeTimeReplicatedTable=mscExampleMiscellaneousProvFreeTimeReplicatedTable, mscExampleWildBcdProvStructWildBcdArrayColumnIndex=mscExampleWildBcdProvStructWildBcdArrayColumnIndex, mscExampleStorageType=mscExampleStorageType, mscExampleStringOperFreeAsciiOnly=mscExampleStringOperFreeAsciiOnly, mscExampleBcdProvFreeBcdArray1Value=mscExampleBcdProvFreeBcdArray1Value, mscExampleEnumRowStatusTable=mscExampleEnumRowStatusTable, mscExampleFixedPtProvStructFixedPtArrayValue=mscExampleFixedPtProvStructFixedPtArrayValue, mscExampleIpAddressProvFreeIpAddressList1Entry=mscExampleIpAddressProvFreeIpAddressList1Entry, mscExampleMiscellaneousComponentName=mscExampleMiscellaneousComponentName, mscExampleFixedPtOperFreeFixedPtVectorIndex=mscExampleFixedPtOperFreeFixedPtVectorIndex, mscExampleIpAddressProvFreeIpAddressList1Table=mscExampleIpAddressProvFreeIpAddressList1Table, mscFriDynOpDynamicComponentName=mscFriDynOpDynamicComponentName, mscExampleBcdOperFreeBcdArrayRowIndex=mscExampleBcdOperFreeBcdArrayRowIndex, mscExampleHexProvFreeHex1=mscExampleHexProvFreeHex1, mscExampleFixedPtRowStatusEntry=mscExampleFixedPtRowStatusEntry, mscExampleSignedProvFreeSignedVectorEntry=mscExampleSignedProvFreeSignedVectorEntry, mscFriStateEntry=mscFriStateEntry, mscExampleHexProvFreeHexVectorEntry=mscExampleHexProvFreeHexVectorEntry, mscExampleSequenceRowStatusTable=mscExampleSequenceRowStatusTable, mscExampleHexOperStructHex=mscExampleHexOperStructHex, mscExampleNsapNativeTable=mscExampleNsapNativeTable, mscExampleEnumProvFreeEnumList1Table=mscExampleEnumProvFreeEnumList1Table, mscFriProvisionalFreeSimpleSigned=mscFriProvisionalFreeSimpleSigned, mscExampleSignedOperationalTable=mscExampleSignedOperationalTable, mscExampleRequiredIndicesProvisionedTable=mscExampleRequiredIndicesProvisionedTable, mscExampleIpAddressProvisionalTable=mscExampleIpAddressProvisionalTable, mscExampleSignedOperFreeSignedArrayValue=mscExampleSignedOperFreeSignedArrayValue, mscExampleFixedPtOperStructFixedPtVectorIndex=mscExampleFixedPtOperStructFixedPtVectorIndex, mscExampleSignedOperFreeSignedArrayEntry=mscExampleSignedOperFreeSignedArrayEntry, mscRegisteredRowStatusTable=mscRegisteredRowStatusTable, mscExampleExtendedRowStatusEntry=mscExampleExtendedRowStatusEntry, mscExampleWildBcdOperStructWildBcdArrayRowIndex=mscExampleWildBcdOperStructWildBcdArrayRowIndex, mscExampleSequenceOperFreeSequenceListRowStatus=mscExampleSequenceOperFreeSequenceListRowStatus, mscExampleEnumOperFreeEnumVectorIndex=mscExampleEnumOperFreeEnumVectorIndex, mscExampleSignedProvFreeSignedReplicatedTable=mscExampleSignedProvFreeSignedReplicatedTable, mscExampleAsciiIndicesProvisionedTable=mscExampleAsciiIndicesProvisionedTable, mscFriDynOpOptionalProvisionedTable=mscFriDynOpOptionalProvisionedTable, mscExampleWildBcdOperFreeWildBcdListRowStatus=mscExampleWildBcdOperFreeWildBcdListRowStatus, mscExampleEnumProvStructEnumSet=mscExampleEnumProvStructEnumSet, mscExampleObjectIdProvFreeObjIdReplicatedEntry=mscExampleObjectIdProvFreeObjIdReplicatedEntry, mscExampleDecimalPfIntList1RowStatus=mscExampleDecimalPfIntList1RowStatus, mscExampleIpAddressOperFreeIpAddressArrayTable=mscExampleIpAddressOperFreeIpAddressArrayTable, mscExampleMiscellaneousProvisionalTable=mscExampleMiscellaneousProvisionalTable, mscExampleDecimalPfIntVectorTable=mscExampleDecimalPfIntVectorTable, mscExampleStringProvStructStrArrayRowIndex=mscExampleStringProvStructStrArrayRowIndex, mscExampleHexProvFreeHexVector2Value=mscExampleHexProvFreeHexVector2Value, mscExampleStringOperFreeStrVectorIndex=mscExampleStringOperFreeStrVectorIndex, mscExampleDecimalProvFreeInteger1=mscExampleDecimalProvFreeInteger1, mscExampleWildBcdIndex=mscExampleWildBcdIndex, mscExampleHexOsHexVectorIndex=mscExampleHexOsHexVectorIndex, mscExampleOneIndexProvAttribute=mscExampleOneIndexProvAttribute, mscExampleSignedOperStructSignedVectorIndex=mscExampleSignedOperStructSignedVectorIndex, mscFriEscapeCopyComponent=mscFriEscapeCopyComponent, mscFriEscapeDefaultsGroup=mscFriEscapeDefaultsGroup, mscExampleBcdProvFreeBcdArrayColumnIndex=mscExampleBcdProvFreeBcdArrayColumnIndex, mscExampleDecimalOfIntVectorTable=mscExampleDecimalOfIntVectorTable, mscExampleMiscellaneousProvFreeTimeDateOnly1=mscExampleMiscellaneousProvFreeTimeDateOnly1, mscFriStateTable=mscFriStateTable, mscExampleWildBcdProvFreeWildBcdReplicatedEntry=mscExampleWildBcdProvFreeWildBcdReplicatedEntry, mscExampleMiscellaneousOperFreeLongReplicatedRowStatus=mscExampleMiscellaneousOperFreeLongReplicatedRowStatus, mscExampleWildBcdProvStructWildBcdVectorEntry=mscExampleWildBcdProvStructWildBcdVectorEntry, mscExampleWildBcdOperFreeWildBcdReplicatedTable=mscExampleWildBcdOperFreeWildBcdReplicatedTable, mscExampleEnumProvStructEnumArrayEntry=mscExampleEnumProvStructEnumArrayEntry, mscExampleFixedPt=mscExampleFixedPt, mscExampleEnumProvStructEnumArrayValue=mscExampleEnumProvStructEnumArrayValue, mscExampleExtendedOperStructExtendedVectorIndex=mscExampleExtendedOperStructExtendedVectorIndex, mscFriRegisteredDataTable=mscFriRegisteredDataTable, mscExampleDecimalPfIntListRowStatus=mscExampleDecimalPfIntListRowStatus, mscExampleDecimalOperFreeCounter32=mscExampleDecimalOperFreeCounter32, mscExampleDashedIndicesThreeIndex=mscExampleDashedIndicesThreeIndex, mscFriDynOpInitialProvisionedTable=mscFriDynOpInitialProvisionedTable, mscExampleWildBcdOperFreeWildBcdVectorEntry=mscExampleWildBcdOperFreeWildBcdVectorEntry, mscExampleTwoIndicesComponentName=mscExampleTwoIndicesComponentName, mscFriEventComponentName=mscFriEventComponentName, mscExampleDashedOsDashedVectorTable=mscExampleDashedOsDashedVectorTable, mscRegisteredRowStatus=mscRegisteredRowStatus, mscExampleOneIndexStorageType=mscExampleOneIndexStorageType, mscExampleDashedIndicesComponentName=mscExampleDashedIndicesComponentName, mscFriOperationalFreeSimpleHex=mscFriOperationalFreeSimpleHex, mscExampleDashedOsDashedArrayTable=mscExampleDashedOsDashedArrayTable, mscExampleHexProvStructHexVectorIndex=mscExampleHexProvStructHexVectorIndex, mscExampleMiscellaneousProvFreeTimeDateOnly=mscExampleMiscellaneousProvFreeTimeDateOnly, mscExampleBcdOperFreeBcdVectorTable=mscExampleBcdOperFreeBcdVectorTable, mscExampleDecimalPfIntArray1ColumnIndex=mscExampleDecimalPfIntArray1ColumnIndex, mscExampleHexOperFreeHex=mscExampleHexOperFreeHex, mscExampleTwoIndicesProvAttribute=mscExampleTwoIndicesProvAttribute, mscExampleHexProvFreeHexArray2ColumnIndex=mscExampleHexProvFreeHexArray2ColumnIndex, mscExampleExtendedOperStructExtendedVectorValue=mscExampleExtendedOperStructExtendedVectorValue, mscExampleSequenceOperStructSequence=mscExampleSequenceOperStructSequence, mscExampleIpAddrIndicesThreeIndex=mscExampleIpAddrIndicesThreeIndex, mscExampleObjIdIndicesProvisionedEntry=mscExampleObjIdIndicesProvisionedEntry, mscExampleIpAddressProvEnumSub=mscExampleIpAddressProvEnumSub, mscFriDynOpOptionalProvisionedEntry=mscFriDynOpOptionalProvisionedEntry, mscExampleIpAddressProvFreeIpAddressArray1Table=mscExampleIpAddressProvFreeIpAddressArray1Table, mscExampleEnumProvFreeEnumListTable=mscExampleEnumProvFreeEnumListTable, mscExampleDecimalPfIntReplicated1Index=mscExampleDecimalPfIntReplicated1Index, mscExampleDashedOsDashedArrayValue=mscExampleDashedOsDashedArrayValue, mscFriDynOpDynOpJrIndex=mscFriDynOpDynOpJrIndex, mscExampleObjIdIndicesRowStatusTable=mscExampleObjIdIndicesRowStatusTable, mscExampleStringProvFreeStrArray1Entry=mscExampleStringProvFreeStrArray1Entry, mscExampleBcdProvFreeBcdVectorEntry=mscExampleBcdProvFreeBcdVectorEntry, mscExampleWildBcdComponentName=mscExampleWildBcdComponentName, mscExampleEnumOperFreeEnumVectorTable=mscExampleEnumOperFreeEnumVectorTable, mscExampleStringRowStatusEntry=mscExampleStringRowStatusEntry, mscExampleOperFixedPtSubcomponentsCreatedRowStatus=mscExampleOperFixedPtSubcomponentsCreatedRowStatus, mscExampleStringIndex=mscExampleStringIndex, mscExampleDecimalComponentName=mscExampleDecimalComponentName, mscExampleStringOperFreeStrArrayValue=mscExampleStringOperFreeStrArrayValue, mscExampleDecimalPfIntReplicated1Value=mscExampleDecimalPfIntReplicated1Value, mscExampleIpAddrIndicesOneIndex=mscExampleIpAddrIndicesOneIndex, mscFriPfListAsciiRowStatus=mscFriPfListAsciiRowStatus, mscExampleDecimalOsIntVectorEntry=mscExampleDecimalOsIntVectorEntry, mscExampleDashedIndicesProvAttribute=mscExampleDashedIndicesProvAttribute, mscExampleDecimalProvStructIntSet=mscExampleDecimalProvStructIntSet, mscExampleStringProvFreeStrList1Value=mscExampleStringProvFreeStrList1Value, mscExampleStringProvStructStrVectorEntry=mscExampleStringProvStructStrVectorEntry, mscFriIndex=mscFriIndex, mscFriOperationalStructSimpleSigned=mscFriOperationalStructSimpleSigned, mscFriDynOpDynamicStorageType=mscFriDynOpDynamicStorageType, mscExampleWildBcdOperStructWildBcd=mscExampleWildBcdOperStructWildBcd, mscExampleIpAddressProvFreeIpAddressVector1Value=mscExampleIpAddressProvFreeIpAddressVector1Value, mscExampleNsap=mscExampleNsap, mscExampleOperDecimalSubCreatedValue=mscExampleOperDecimalSubCreatedValue, mscExampleWildBcdOperFreeWildBcdArrayTable=mscExampleWildBcdOperFreeWildBcdArrayTable, mscFriDynOpDynamic=mscFriDynOpDynamic, casTestGroupCA02A=casTestGroupCA02A, mscExampleExtendedProvFreeExtendedVectorIndex=mscExampleExtendedProvFreeExtendedVectorIndex, mscExampleBcdProvFreeBcdReplicated1Value=mscExampleBcdProvFreeBcdReplicated1Value, mscFriOfListEnumerationEntry=mscFriOfListEnumerationEntry, mscExampleMiscellaneousProvFreeTimeReplicatedRowStatus=mscExampleMiscellaneousProvFreeTimeReplicatedRowStatus, mscExampleEnumOperFreeEnumVectorValue=mscExampleEnumOperFreeEnumVectorValue, mscExampleSignedProvFreeSignedVector1Index=mscExampleSignedProvFreeSignedVector1Index, mscExampleBcdProvStructBcdVectorTable=mscExampleBcdProvStructBcdVectorTable, mscExampleDecimalIndicesProvisionedEntry=mscExampleDecimalIndicesProvisionedEntry, mscExampleEnumOperStructEnumVectorIndex=mscExampleEnumOperStructEnumVectorIndex, mscExampleHexProvFreeHexReplicatedIndex=mscExampleHexProvFreeHexReplicatedIndex)
def solution(N, A): ret = [0] * N if sum(A)/len(A) == N + 1: return ret _max = 0 for a in A: if 1 <= a <= N: ret[a - 1] += 1 if ret[a - 1] > _max: _max = ret[a - 1] elif a == N + 1: ret = [_max] * N return ret def test_example1(): assert [3, 2, 2, 4, 2] == solution(5, [3, 4, 4, 6, 1, 4, 4]) def test_extreme_min(): assert [1, 0, 0, 0, 0] == solution(5, [1]) def test_extreme_max(): assert [0, 0, 0, 0, 1] == solution(5, [5]) def test_extreme_max_plus_one(): assert [0, 0, 0, 0, 0] == solution(5, [6]) def test_single(): assert [0, 0, 1, 0, 0] == solution(5, [3]) def test_extreme_large(): assert [0] * 100000 == solution(100000, [100001] * 100000)
def solution(N, A): ret = [0] * N if sum(A) / len(A) == N + 1: return ret _max = 0 for a in A: if 1 <= a <= N: ret[a - 1] += 1 if ret[a - 1] > _max: _max = ret[a - 1] elif a == N + 1: ret = [_max] * N return ret def test_example1(): assert [3, 2, 2, 4, 2] == solution(5, [3, 4, 4, 6, 1, 4, 4]) def test_extreme_min(): assert [1, 0, 0, 0, 0] == solution(5, [1]) def test_extreme_max(): assert [0, 0, 0, 0, 1] == solution(5, [5]) def test_extreme_max_plus_one(): assert [0, 0, 0, 0, 0] == solution(5, [6]) def test_single(): assert [0, 0, 1, 0, 0] == solution(5, [3]) def test_extreme_large(): assert [0] * 100000 == solution(100000, [100001] * 100000)
## N-th Power ## 8 kyu ## https://www.codewars.com/kata/57d814e4950d8489720008db def index(array, n): if len(array) > n: return array[n] ** n return -1
def index(array, n): if len(array) > n: return array[n] ** n return -1
def useGenerator(gen): gen(1, "Cocoa") gen(2, "Chino") gen(3, "Rize") gen(4, "Chiya") gen(5, "Sharo") gen(6, "Daydream Cafe") gen(7, "No Poi!") gen(8, "Tenkuu Cafeteria") gen(9, "Sekai ga Cafe ni Natchatta") gen(10, "Nikkori Cafe no Mahou Tsukai")
def use_generator(gen): gen(1, 'Cocoa') gen(2, 'Chino') gen(3, 'Rize') gen(4, 'Chiya') gen(5, 'Sharo') gen(6, 'Daydream Cafe') gen(7, 'No Poi!') gen(8, 'Tenkuu Cafeteria') gen(9, 'Sekai ga Cafe ni Natchatta') gen(10, 'Nikkori Cafe no Mahou Tsukai')
class Solution: def twoSum(self, nums: List[int], target: int) -> List[int]: len_nums = len(nums) for i in range(len_nums): for j in range(i+1,len_nums): if nums[i]+nums[j] == target: return [i,j] return [None,None]
class Solution: def two_sum(self, nums: List[int], target: int) -> List[int]: len_nums = len(nums) for i in range(len_nums): for j in range(i + 1, len_nums): if nums[i] + nums[j] == target: return [i, j] return [None, None]
class Solution: def canThreePartsEqualSum(self, A: List[int]) -> bool: s = sum(A) if s % 3 != 0: return False s //= 3 cum = 0 total = 0 for a in A: cum += a if cum == s: total += 1 cum = 0 if total == 3 and cum == 0: return True return False
class Solution: def can_three_parts_equal_sum(self, A: List[int]) -> bool: s = sum(A) if s % 3 != 0: return False s //= 3 cum = 0 total = 0 for a in A: cum += a if cum == s: total += 1 cum = 0 if total == 3 and cum == 0: return True return False
""" exceptions.py: PostcodeSearchBuilder Custom Exceptions """ class Error(Exception): """ Base Exception Class """ pass class StopSubjectBuilderErrorException(Error): """ An error is raised during the ETL Pipeline """ pass
""" 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())
def calculate(): a = float(input('Enter 1st number:')) b = float(input('Enter 2nd number:')) c = float(input('Enter 3rd number:')) sum = a + b + c if a == b == c: return 3 * sum else: return sum print(calculate())
#This program used nested loops to display this pattern for rows in range(6): print('#',end ='') for colums in range(rows): print(' ',end='') print('#')
for rows in range(6): print('#', end='') for colums in range(rows): print(' ', end='') print('#')
def isVowel(c): return c == "a" or c == "e" or c == "i" or c == "o" or c == "u" # Function to return the count of sub-strings # that contain every vowel at least # once and no consonant def countSubstringsUtil(s): count = 0 # Map is used to store count of each vowel mp = dict.fromkeys(s, 0) n = len(s) # Start index is set to 0 initially start = 0 for i in range(n): mp[s[i]] += 1 # If substring till now have all vowels # atleast once increment start index until # there are all vowels present between # (start, i) and add n - i each time while mp["a"] > 0 and mp["e"] > 0 and mp["i"] > 0 and mp["o"] > 0 and mp["u"] > 0: count += n - i mp[s[start]] -= 1 start += 1 return count # Function to extract all maximum length # sub-strings in s that contain only vowels # and then calls the countSubstringsUtil() to find # the count of valid sub-strings in that string def countSubstrings(s): count = 0 temp = "" for i in range(len(s)): # If current character is a vowel then # append it to the temp string if isVowel(s[i]): temp += s[i] # The sub-string containing all vowels ends here else: # If there was a valid sub-string if len(temp) > 0: count += countSubstringsUtil(temp) # Reset temp string temp = "" # For the last valid sub-string if len(temp) > 0: count += countSubstringsUtil(temp) return count # Driver code if __name__ == "__main__": s = "aeouisddaaeeiouua" print(countSubstrings(s)) # This code is contributed by AnkitRai01 def is_vowel(c): return c in "aeiou" # Function to return the count of sub-strings # that contain every vowel at least # once and no consonant def count_substring_help(s): count = 0 mp = dict.fromkeys(s, 0) n = len(s) start = 0 for i in range(n): mp[s[i]] += 1 while mp["a"] > 0 and mp["e"] > 0 and mp["i"] > 0 and mp["o"] > 0 and mp["u"] > 0: count += n - i mp[s[start]] -= 1 start += 1 return count # Function to extract all maximum length # sub-strings in s that contain only vowels # and then calls the countSubstringsUtil() to find # the count of valid sub-strings in that string def countSubstrings(s): count = 0 temp = "" for i in range(len(s)): if isVowel(s[i]): temp += s[i] else: if len(temp) > 0: count += count_substring_help(temp) temp = "" if len(temp) > 0: count += count_substring_help(temp) return count def sequence_sum(a, n, d): return int((n * (2 * a + (n - 1) * d)) / 2) def getSequenceSum(i, j, k): a_1 = i n_1 = abs(j - i + 1) d_1 = 1 a_2 = j - 1 n_2 = abs(k - j) d_2 = -1 return sequence_sum(a_1, n_1, d_1) + sequence_sum(a_2, n_2, d_2) # SELECT f.name FROM families f WHERE f.bill_id IN () # SELECT b.id as bill_sum FROM bills b HAVING MAX(sum(b.amount)) GROUP BY b.id ORDER BY bill_sum DESC
def is_vowel(c): return c == 'a' or c == 'e' or c == 'i' or (c == 'o') or (c == 'u') def count_substrings_util(s): count = 0 mp = dict.fromkeys(s, 0) n = len(s) start = 0 for i in range(n): mp[s[i]] += 1 while mp['a'] > 0 and mp['e'] > 0 and (mp['i'] > 0) and (mp['o'] > 0) and (mp['u'] > 0): count += n - i mp[s[start]] -= 1 start += 1 return count def count_substrings(s): count = 0 temp = '' for i in range(len(s)): if is_vowel(s[i]): temp += s[i] else: if len(temp) > 0: count += count_substrings_util(temp) temp = '' if len(temp) > 0: count += count_substrings_util(temp) return count if __name__ == '__main__': s = 'aeouisddaaeeiouua' print(count_substrings(s)) def is_vowel(c): return c in 'aeiou' def count_substring_help(s): count = 0 mp = dict.fromkeys(s, 0) n = len(s) start = 0 for i in range(n): mp[s[i]] += 1 while mp['a'] > 0 and mp['e'] > 0 and (mp['i'] > 0) and (mp['o'] > 0) and (mp['u'] > 0): count += n - i mp[s[start]] -= 1 start += 1 return count def count_substrings(s): count = 0 temp = '' for i in range(len(s)): if is_vowel(s[i]): temp += s[i] else: if len(temp) > 0: count += count_substring_help(temp) temp = '' if len(temp) > 0: count += count_substring_help(temp) return count def sequence_sum(a, n, d): return int(n * (2 * a + (n - 1) * d) / 2) def get_sequence_sum(i, j, k): a_1 = i n_1 = abs(j - i + 1) d_1 = 1 a_2 = j - 1 n_2 = abs(k - j) d_2 = -1 return sequence_sum(a_1, n_1, d_1) + sequence_sum(a_2, n_2, d_2)
_verbose = False def set_verbose(verbose): global _verbose _verbose = verbose
_verbose = False def set_verbose(verbose): global _verbose _verbose = verbose
def rule(event): return event.get("action") == "repo.create" def title(event): return f"Repository [{event.get('repo', '<UNKNOWN_REPO>')}] created."
def rule(event): return event.get('action') == 'repo.create' def title(event): return f"Repository [{event.get('repo', '<UNKNOWN_REPO>')}] created."
class Event: def __init__(self, eventType, playerId, timeStamp): self.type = type(self).__name__ self.eventType = eventType self.playerId = playerId self.timeStamp = timeStamp
class Event: def __init__(self, eventType, playerId, timeStamp): self.type = type(self).__name__ self.eventType = eventType self.playerId = playerId self.timeStamp = timeStamp
def iter(n, prev, curr): if n == 0: return curr return iter(n-1, curr, prev + curr) def fibonacci(n): return iter(n, 1, 0) if __name__ == '__main__': print(fibonacci(int(input())))
def iter(n, prev, curr): if n == 0: return curr return iter(n - 1, curr, prev + curr) def fibonacci(n): return iter(n, 1, 0) if __name__ == '__main__': print(fibonacci(int(input())))
txt = 'input' with open(txt) as f: lines = f.readlines() aim = 0 depth = 0 horPos = 0 for line in lines: line = line.strip() line = line.split() line[1] = int(line[1]) if line[0] == 'forward': horPos += line[1] depth += aim * line[1] elif line[0] == 'down': aim += line[1] elif line[0] == 'up': aim -= line[1] else: print('Something went wrong!') print(aim) print(depth) print(horPos) mult = horPos * depth print('Answer is: ',mult)
txt = 'input' with open(txt) as f: lines = f.readlines() aim = 0 depth = 0 hor_pos = 0 for line in lines: line = line.strip() line = line.split() line[1] = int(line[1]) if line[0] == 'forward': hor_pos += line[1] depth += aim * line[1] elif line[0] == 'down': aim += line[1] elif line[0] == 'up': aim -= line[1] else: print('Something went wrong!') print(aim) print(depth) print(horPos) mult = horPos * depth print('Answer is: ', mult)
""" The constants used for Lobe Connect local API """ IMAGE_INPUT = 'image' PREDICTIONS = 'predictions' LABEL = 'label' CONFIDENCE = 'confidence'
""" 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)
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()}
""" @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
ros_queue_size = 10 pathfinder_node_id = 'pathfinder' pathfinder_server_node = 'action' pathfinder_server = '%s/%s' % (PATHFINDER_NODE_ID, PATHFINDER_SERVER_NODE) pathfinder_input_topic = '%s/input' % PATHFINDER_NODE_ID pathfinder_debug_topic = '%s/debug' % PATHFINDER_NODE_ID submit_problem_service = '%s/submitProblem' % PATHFINDER_NODE_ID step_problem_service = '%s/stepProblem' % PATHFINDER_NODE_ID
# dictionaries CustomerData={ 'Name': 'SAM', 'AGE':15,'ADDRESS':'Falastine St' } CustomerData['Name']='Ameer' CustomerData['AGE']=17 CustomerData['ADDRESS']='Al-Mansour' print(CustomerData.get('ADDRESS','ADDRESS Not Found')) print(CustomerData.get('Name','Name Not Found')) print(CustomerData.get('AGE','AGE Not Found'))
customer_data = {'Name': 'SAM', 'AGE': 15, 'ADDRESS': 'Falastine St'} CustomerData['Name'] = 'Ameer' CustomerData['AGE'] = 17 CustomerData['ADDRESS'] = 'Al-Mansour' print(CustomerData.get('ADDRESS', 'ADDRESS Not Found')) print(CustomerData.get('Name', 'Name Not Found')) print(CustomerData.get('AGE', 'AGE Not Found'))
""" 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
""" Wypisz spiralnie liste dwuwymiarowa. """ 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 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)
"""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 """ 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 }
""" SPDX document formatting """ 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}' 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"
author = 'Jens Muecke (ryd)' description = 'This module will install/update dnscat2' install_type = 'GIT' repository_location = 'https://github.com/iagox86/dnscat2.git' install_location = 'dnscat2' debian = 'git ruby ruby-dev git-core build-essential make bundler' fedora = 'git,make,gcc,gcc-c++,ruby-irb,rubygems,rubygem-bundler,ruby-devel,git' after_commands = 'cd {INSTALL_LOCATION}client,sudo make,cd {INSTALL_LOCATION}server/, bundle install, ln -s {INSTALL_LOCATION}client/dnscat {INSTALL_LOCATION}dnscat' launcher = 'dnscat'
def insertShiftArray (arr, num) : if len(arr) % 2 == 0 : middle = len(arr) / 2 else : middle = int(len(arr) / 2) + 1 newArr = [] i = 0 while (i < len(arr)) : if i == middle and newArr[len(newArr) - 1] != num: newArr.append(num) else : newArr.append(arr[i]) i+=1 return newArr
def insert_shift_array(arr, num): if len(arr) % 2 == 0: middle = len(arr) / 2 else: middle = int(len(arr) / 2) + 1 new_arr = [] i = 0 while i < len(arr): if i == middle and newArr[len(newArr) - 1] != num: newArr.append(num) else: newArr.append(arr[i]) i += 1 return newArr
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', '')
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): self.id = data.get('id', 0) self.login = data.get('login', '') self.avatar_url = data.get('avatar_url', '') 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[ ]:
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)
""" 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)
""" 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 """ '\nThe basic idea is to use DFS to remove any possible word from the word dictionary that exists in the begining of the string, \nand then the remainder of each resultant string will have the same procedure recursively applied to it.\n\nAt 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.\n\nUsed a memo table to store previously seen postfix strings, so we don\'t have to go down the route of calculating already tabulated words.\n' 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 word_break(self, s, wordDict): found = {} return self.dfs(s, wordDict, found) class Solution: def __init__(self): self.trie = [{}] 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: 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 word_break(self, s, wordDict): self.make_trie(wordDict) return self.dfs(s)
""" Version """ __version__ = "1.17" RELEASE = "V01_17"
""" 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)
largest = None smallest = None while True: n_str = input('Enter a number: ') try: if nStr == 'done': break n = float(nStr) if largest is None or largest < n: largest = n if smallest is None or smallest > n: smallest = n except: print('Invalid input') continue print('Largest: ', largest) print('Smallest: ', smallest)
# Create dummy variables: df_region df_region = pd.get_dummies(df) # Print the columns of df_region print(df_region.columns) # Create dummy variables with drop_first=True: df_region df_region = pd.get_dummies(df, drop_first=True) # Print the new columns of df_region print(df_region.columns)
df_region = pd.get_dummies(df) print(df_region.columns) df_region = pd.get_dummies(df, drop_first=True) print(df_region.columns)
access_key = 'xxx' business_id = 1337 document_hash = 'xxx' signer_email = 'test@example.com' template_id = 'xxx' field_identifier = 'xxx' oauth_client_id = 'xxx' oauth_client_secret = 'xxx' code = '' state = ''
access_key = 'xxx' business_id = 1337 document_hash = 'xxx' signer_email = 'test@example.com' template_id = 'xxx' field_identifier = 'xxx' oauth_client_id = 'xxx' oauth_client_secret = 'xxx' code = '' state = ''
# 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]
class Treenode(object): def __init__(self, x): self.val = x self.left = None self.right = None class Solution(object): def smallest_from_leaf(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]
def from_prefix_suffix(text, n, less=operator.__lt__): def equal(a, b): return not less(a, b) and (not less(b, a)) (b, t, out) = ([-1] + [0] * n, -1, 1) for i in range(1, n + 1): while t >= 0 and less(text[out + t], text[i]): (out, t) = (i - t, B[t]) while t >= 0 and (not equal(text[out + t], text[i])): t = B[t] t = t + 1 B[i - out + 1] = t return (out, n + 1 - out - B[n + 1 - out])
class DeltaLake(object): class LandingZone: def __init__(self, source_dataframe, file_path, stream_query): self.source_dataframe = source_dataframe self.file_path = file_path self.stream_query = stream_query def write_stream(self): try: (self.source_dataframe \ .writeStream.format('delta') \ .option('checkpointLocation', self.file_path + '/_checkpoint') \ .queryName(self.stream_query) \ .outputMode('append') \ .start(self.file_path) \ .awaitTermination()) return except ValueError as e: return print(e)
class Deltalake(object): class Landingzone: def __init__(self, source_dataframe, file_path, stream_query): self.source_dataframe = source_dataframe self.file_path = file_path self.stream_query = stream_query def write_stream(self): try: self.source_dataframe.writeStream.format('delta').option('checkpointLocation', self.file_path + '/_checkpoint').queryName(self.stream_query).outputMode('append').start(self.file_path).awaitTermination() return except ValueError as e: return print(e)
a = 1 b = 1.0 c = 4 d = 4.0 print (b / d)
a = 1 b = 1.0 c = 4 d = 4.0 print(b / d)
# This is a string object name = 'Swaroop' if name.startswith('Swa'): print('Yes, the string starts with "Swa"') if 'a' in name: print('Yes, it contains the string "a"') if name.find('war') != -1: print('Yes, it contains the string "war"') delimiter = '_*_' mylist = ['Brazil', 'Russia', 'India', 'China'] print(delimiter.join(mylist))
name = 'Swaroop' if name.startswith('Swa'): print('Yes, the string starts with "Swa"') if 'a' in name: print('Yes, it contains the string "a"') if name.find('war') != -1: print('Yes, it contains the string "war"') delimiter = '_*_' mylist = ['Brazil', 'Russia', 'India', 'China'] print(delimiter.join(mylist))
class 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 Solution: def judge_circle(self, moves: str) -> bool: return moves.count('U') == moves.count('D') and moves.count('R') == moves.count('L') "\nclass Solution:\n def judgeCircle(self, moves: str) -> bool:\n v,h=0,0\n for c in moves:\n if c=='U':\n v += 1\n elif c=='D':\n v -= 1\n elif c=='R':\n h += 1\n else:\n h -= 1\n return v==0 and h==0\n"