content
stringlengths
7
1.05M
fixed_cases
stringlengths
1
1.28M
''' Author: He,Yifan Date: 2022-02-16 21:46:19 LastEditors: He,Yifan LastEditTime: 2022-02-16 21:52:34 ''' __version__ = "0.0.0"
""" Author: He,Yifan Date: 2022-02-16 21:46:19 LastEditors: He,Yifan LastEditTime: 2022-02-16 21:52:34 """ __version__ = '0.0.0'
def countSumOfTwoRepresentations2(n, l, r): noWays = 0 for x in range(l, r + 1): if (n - x >= x) and (n - x <= r): noWays += 1 return noWays
def count_sum_of_two_representations2(n, l, r): no_ways = 0 for x in range(l, r + 1): if n - x >= x and n - x <= r: no_ways += 1 return noWays
__author__ = 'jkm4ca' def greeting(msg): print(msg)
__author__ = 'jkm4ca' def greeting(msg): print(msg)
#help(object) #the object will be the built-in functions #it returns the object details clearly print(help('print'))
print(help('print'))
# # PySNMP MIB module AI198CLC-MIB (http://snmplabs.com/pysmi) # ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/AI198CLC-MIB # Produced by pysmi-0.3.4 at Wed May 1 11:15:57 2019 # On host DAVWANG4-M-1475 platform Darwin version 18.5.0 by user davwang4 # Using Python version 3.7.3 (default, Mar 27 2019, 09:23:15) # Integer, OctetString, ObjectIdentifier = mibBuilder.importSymbols("ASN1", "Integer", "OctetString", "ObjectIdentifier") NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues") ConstraintsIntersection, ValueRangeConstraint, ConstraintsUnion, SingleValueConstraint, ValueSizeConstraint = mibBuilder.importSymbols("ASN1-REFINEMENT", "ConstraintsIntersection", "ValueRangeConstraint", "ConstraintsUnion", "SingleValueConstraint", "ValueSizeConstraint") ModuleCompliance, NotificationGroup = mibBuilder.importSymbols("SNMPv2-CONF", "ModuleCompliance", "NotificationGroup") ModuleIdentity, MibIdentifier, ObjectIdentity, TimeTicks, Unsigned32, IpAddress, Counter64, NotificationType, Gauge32, MibScalar, MibTable, MibTableRow, MibTableColumn, Counter32, Integer32, iso, enterprises, Bits = mibBuilder.importSymbols("SNMPv2-SMI", "ModuleIdentity", "MibIdentifier", "ObjectIdentity", "TimeTicks", "Unsigned32", "IpAddress", "Counter64", "NotificationType", "Gauge32", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "Counter32", "Integer32", "iso", "enterprises", "Bits") DateAndTime, DisplayString, TextualConvention = mibBuilder.importSymbols("SNMPv2-TC", "DateAndTime", "DisplayString", "TextualConvention") aii = MibIdentifier((1, 3, 6, 1, 4, 1, 539)) aiSystemOID = MibIdentifier((1, 3, 6, 1, 4, 1, 539, 2)) aiCLC = ModuleIdentity((1, 3, 6, 1, 4, 1, 539, 9)) if mibBuilder.loadTexts: aiCLC.setLastUpdated('9505081700Z') if mibBuilder.loadTexts: aiCLC.setOrganization('Applied Innovation Incorporated') if mibBuilder.loadTexts: aiCLC.setContactInfo(' Engineering MIB Administrator Postal: Applied Innovation Inc. 5800 Innovation Drive Dublin, OH 43016 Tel: 614/798-2000 Fax: 614/798-1770 E-mail: snmp@aiinet.com') if mibBuilder.loadTexts: aiCLC.setDescription('The MIB Module for Series 1 Common Logic Controllers (CLC)') aiCLCSystem = MibIdentifier((1, 3, 6, 1, 4, 1, 539, 9, 1)) ai198 = MibIdentifier((1, 3, 6, 1, 4, 1, 539, 2, 198)) ai198Ver1 = MibIdentifier((1, 3, 6, 1, 4, 1, 539, 2, 198, 1)) ai198Ver10 = MibIdentifier((1, 3, 6, 1, 4, 1, 539, 2, 198, 1, 0)) ai198Ver102 = MibIdentifier((1, 3, 6, 1, 4, 1, 539, 2, 198, 1, 0, 2)) ai198Ver103 = MibIdentifier((1, 3, 6, 1, 4, 1, 539, 2, 198, 1, 0, 3)) ai198Ver104 = MibIdentifier((1, 3, 6, 1, 4, 1, 539, 2, 198, 1, 0, 4)) ai198Ver12 = MibIdentifier((1, 3, 6, 1, 4, 1, 539, 2, 198, 1, 2)) ai198Ver120 = MibIdentifier((1, 3, 6, 1, 4, 1, 539, 2, 198, 1, 2, 0)) ai198Ver13 = MibIdentifier((1, 3, 6, 1, 4, 1, 539, 2, 198, 1, 3)) ai198Ver130 = MibIdentifier((1, 3, 6, 1, 4, 1, 539, 2, 198, 1, 3, 0)) aiCLCBox1DensAdmin = MibScalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 4, 8, 16, 32))).clone(namedValues=NamedValues(("disabled", 1), ("four", 4), ("eight", 8), ("sixteen", 16), ("thirtytwo", 32))).clone(16)).setMaxAccess("readwrite") if mibBuilder.loadTexts: aiCLCBox1DensAdmin.setStatus('current') if mibBuilder.loadTexts: aiCLCBox1DensAdmin.setDescription('The administration value for the slot density for Chassis 1 of and AISwitch.') aiCLCBox2DensAdmin = MibScalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 4, 8, 16, 32))).clone(namedValues=NamedValues(("disabled", 1), ("four", 4), ("eight", 8), ("sixteen", 16), ("thirtytwo", 32))).clone(16)).setMaxAccess("readwrite") if mibBuilder.loadTexts: aiCLCBox2DensAdmin.setStatus('current') if mibBuilder.loadTexts: aiCLCBox2DensAdmin.setDescription('The administration value for the slot density for Chassis 2 of and AISwitch.') aiCLCBox3DensAdmin = MibScalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 4, 8, 16, 32))).clone(namedValues=NamedValues(("disabled", 1), ("four", 4), ("eight", 8), ("sixteen", 16), ("thirtytwo", 32))).clone(1)).setMaxAccess("readwrite") if mibBuilder.loadTexts: aiCLCBox3DensAdmin.setStatus('current') if mibBuilder.loadTexts: aiCLCBox3DensAdmin.setDescription('The administration value for the slot density for Chassis 3 of and AISwitch.') aiCLCBox4DensAdmin = MibScalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 4, 8, 16, 32))).clone(namedValues=NamedValues(("disabled", 1), ("four", 4), ("eight", 8), ("sixteen", 16), ("thirtytwo", 32))).clone(1)).setMaxAccess("readwrite") if mibBuilder.loadTexts: aiCLCBox4DensAdmin.setStatus('current') if mibBuilder.loadTexts: aiCLCBox4DensAdmin.setDescription('The administration value for the slot density for Chassis 4 of and AISwitch.') aiCLCBox5DensAdmin = MibScalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 4, 8, 16, 32))).clone(namedValues=NamedValues(("disabled", 1), ("four", 4), ("eight", 8), ("sixteen", 16), ("thirtytwo", 32))).clone(1)).setMaxAccess("readwrite") if mibBuilder.loadTexts: aiCLCBox5DensAdmin.setStatus('current') if mibBuilder.loadTexts: aiCLCBox5DensAdmin.setDescription('The administration value for the slot density for Chassis 5 of and AISwitch.') aiCLCBox6DensAdmin = MibScalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 4, 8, 16, 32))).clone(namedValues=NamedValues(("disabled", 1), ("four", 4), ("eight", 8), ("sixteen", 16), ("thirtytwo", 32))).clone(1)).setMaxAccess("readwrite") if mibBuilder.loadTexts: aiCLCBox6DensAdmin.setStatus('current') if mibBuilder.loadTexts: aiCLCBox6DensAdmin.setDescription('The administration value for the slot density for Chassis 6 of and AISwitch.') aiCLCBox7DensAdmin = MibScalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 4, 8, 16, 32))).clone(namedValues=NamedValues(("disabled", 1), ("four", 4), ("eight", 8), ("sixteen", 16), ("thirtytwo", 32))).clone(1)).setMaxAccess("readwrite") if mibBuilder.loadTexts: aiCLCBox7DensAdmin.setStatus('current') if mibBuilder.loadTexts: aiCLCBox7DensAdmin.setDescription('The administration value for the slot density for Chassis 7 of and AISwitch.') aiCLCBox8DensAdmin = MibScalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 4, 8, 16, 32))).clone(namedValues=NamedValues(("disabled", 1), ("four", 4), ("eight", 8), ("sixteen", 16), ("thirtytwo", 32))).clone(1)).setMaxAccess("readwrite") if mibBuilder.loadTexts: aiCLCBox8DensAdmin.setStatus('current') if mibBuilder.loadTexts: aiCLCBox8DensAdmin.setDescription('The administration value for the slot density for Chassis 8 of and AISwitch.') aiCLCNodeName = MibScalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 9), DisplayString().subtype(subtypeSpec=ValueRangeConstraint(0, 29)).clone('NODE-XXX')).setMaxAccess("readwrite") if mibBuilder.loadTexts: aiCLCNodeName.setStatus('current') if mibBuilder.loadTexts: aiCLCNodeName.setDescription('This associates a name with an AI Switch. This string is part of the prompt for a user port.') aiCLCLogPortEnable = MibScalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 10), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("on", 1), ("off", 2))).clone(1)).setMaxAccess("readwrite") if mibBuilder.loadTexts: aiCLCLogPortEnable.setStatus('current') if mibBuilder.loadTexts: aiCLCLogPortEnable.setDescription('Enable/Disable the display of Alarm and Activity Information.') aiCLCAlmLogPort = MibScalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 11), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 255))).setMaxAccess("readwrite") if mibBuilder.loadTexts: aiCLCAlmLogPort.setStatus('current') if mibBuilder.loadTexts: aiCLCAlmLogPort.setDescription('The Alarm and Activity Log Port Number.') aiCLCActLogLvl = MibScalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 12), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 9)).clone(1)).setMaxAccess("readwrite") if mibBuilder.loadTexts: aiCLCActLogLvl.setStatus('current') if mibBuilder.loadTexts: aiCLCActLogLvl.setDescription('The alarm level which when met or exceeded will cause messages to be printed on the log port.') aiCLCMinorAlmMin = MibScalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 13), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 9)).clone(2)).setMaxAccess("readwrite") if mibBuilder.loadTexts: aiCLCMinorAlmMin.setStatus('current') if mibBuilder.loadTexts: aiCLCMinorAlmMin.setDescription('The alarm level which when met or exceeded will cause a minor alarm to be reported.') aiCLCMinorAlmMax = MibScalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 14), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 9)).clone(4)).setMaxAccess("readwrite") if mibBuilder.loadTexts: aiCLCMinorAlmMax.setStatus('current') if mibBuilder.loadTexts: aiCLCMinorAlmMax.setDescription('The alarm level which when exceeded will not cause a minor alarm to be reported.') aiCLCMajorAlmMin = MibScalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 15), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 9)).clone(5)).setMaxAccess("readwrite") if mibBuilder.loadTexts: aiCLCMajorAlmMin.setStatus('current') if mibBuilder.loadTexts: aiCLCMajorAlmMin.setDescription('The alarm level which when met or exceeded will cause a major alarm to be reported.') aiCLCMajorAlmMax = MibScalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 16), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 9)).clone(9)).setMaxAccess("readwrite") if mibBuilder.loadTexts: aiCLCMajorAlmMax.setStatus('current') if mibBuilder.loadTexts: aiCLCMajorAlmMax.setDescription('The alarm level which when exceeded will not cause a major alarm to be reported.') aiCLCCraftLogEcho = MibScalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 17), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("on", 1), ("off", 2))).clone(1)).setMaxAccess("readwrite") if mibBuilder.loadTexts: aiCLCCraftLogEcho.setStatus('current') if mibBuilder.loadTexts: aiCLCCraftLogEcho.setDescription('Echo Alarm and Activity information on the craft port.') aiCLCCaamlRoute = MibScalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 18), DisplayString().subtype(subtypeSpec=ValueRangeConstraint(0, 200))).setMaxAccess("readwrite") if mibBuilder.loadTexts: aiCLCCaamlRoute.setStatus('current') if mibBuilder.loadTexts: aiCLCCaamlRoute.setDescription('Name of the destination used for the CAAML Log.') aiCLCCaamlIdleTmr = MibScalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 19), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 255)).clone(10)).setMaxAccess("readwrite") if mibBuilder.loadTexts: aiCLCCaamlIdleTmr.setStatus('current') if mibBuilder.loadTexts: aiCLCCaamlIdleTmr.setDescription('The number of seconds that must pass without any messages being printed on CAAML, before the CAAML connection is torn down.') aiCLCCaamlRetryTmr = MibScalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 20), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 255)).clone(10)).setMaxAccess("readwrite") if mibBuilder.loadTexts: aiCLCCaamlRetryTmr.setStatus('current') if mibBuilder.loadTexts: aiCLCCaamlRetryTmr.setDescription('The number of seconds that must pass after an unsuccessful attempt at bringing the CAAML connection up before a retry will occur.') aiCLCConnInfo = MibScalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 21), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("on", 1), ("off", 2))).clone(1)).setMaxAccess("readwrite") if mibBuilder.loadTexts: aiCLCConnInfo.setStatus('current') if mibBuilder.loadTexts: aiCLCConnInfo.setDescription('Print connection information on user terminals.') aiCLCLongBrkLen = MibScalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 22), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1875, 50000)).clone(1875)).setMaxAccess("readwrite") if mibBuilder.loadTexts: aiCLCLongBrkLen.setStatus('current') if mibBuilder.loadTexts: aiCLCLongBrkLen.setDescription('Long Break length in milliseconds rounded to the nearest 1/64th second.') aiCLCDestMenu = MibScalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 23), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("on", 1), ("off", 2))).clone(1)).setMaxAccess("readwrite") if mibBuilder.loadTexts: aiCLCDestMenu.setStatus('current') if mibBuilder.loadTexts: aiCLCDestMenu.setDescription('Print Destination Menu on user terminals.') aiCLCDownSpd = MibScalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 24), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("on", 1), ("off", 2))).clone(1)).setMaxAccess("readwrite") if mibBuilder.loadTexts: aiCLCDownSpd.setStatus('current') if mibBuilder.loadTexts: aiCLCDownSpd.setDescription('Allow ports of different speeds to be connected.') aiCLCFaultSwitch = MibScalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 25), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("on", 1), ("off", 2))).clone(1)).setMaxAccess("readwrite") if mibBuilder.loadTexts: aiCLCFaultSwitch.setStatus('current') if mibBuilder.loadTexts: aiCLCFaultSwitch.setDescription('In dual CLC systems, a fault on the active CLC will cause automatic switchover from the faulted CLC to the backup CLC.') aiCLCDestMenuFmt = MibScalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 26), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 4))).clone(namedValues=NamedValues(("oneCol", 1), ("fourCol", 4))).clone(1)).setMaxAccess("readwrite") if mibBuilder.loadTexts: aiCLCDestMenuFmt.setStatus('current') if mibBuilder.loadTexts: aiCLCDestMenuFmt.setDescription('The number of columns used to print the destination menu.') aiCLCAutoCLCUpdate = MibScalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 27), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("on", 1), ("off", 2))).clone(2)).setMaxAccess("readwrite") if mibBuilder.loadTexts: aiCLCAutoCLCUpdate.setStatus('current') if mibBuilder.loadTexts: aiCLCAutoCLCUpdate.setDescription("Automatic configuration of the backup CLC when the active CLC's configuration changes.") aiCLCAlarmLvl = MibScalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 28), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 9))).setMaxAccess("readwrite") if mibBuilder.loadTexts: aiCLCAlarmLvl.setStatus('current') if mibBuilder.loadTexts: aiCLCAlarmLvl.setDescription('Current Alarm Level. A write clears the alarms. A read returns the current alarm level.') aiCLCTimeDate = MibScalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 29), DateAndTime()).setMaxAccess("readwrite") if mibBuilder.loadTexts: aiCLCTimeDate.setStatus('current') if mibBuilder.loadTexts: aiCLCTimeDate.setDescription('This is the Current Time and Date. The DateAndTime type is a structured OCTET STRING, defined in v2-tc.my (SNMPv2 Textual Conventions).') aiCLCRstTimeDate = MibScalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 30), DateAndTime()).setMaxAccess("readonly") if mibBuilder.loadTexts: aiCLCRstTimeDate.setStatus('current') if mibBuilder.loadTexts: aiCLCRstTimeDate.setDescription('This is the Time and Date of Last Reset. The DateAndTime type is a structured OCTET STRING, defined in v2-tc.my (SNMPv2 Textual Conventions).') aiCLCHoldConn = MibScalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 31), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65536))).setMaxAccess("readonly") if mibBuilder.loadTexts: aiCLCHoldConn.setStatus('current') if mibBuilder.loadTexts: aiCLCHoldConn.setDescription('Number of connections placed on hold ') aiCLCNumPorts = MibScalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 32), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 256))).setMaxAccess("readonly") if mibBuilder.loadTexts: aiCLCNumPorts.setStatus('current') if mibBuilder.loadTexts: aiCLCNumPorts.setDescription('Number of ports detected ') aiCLCQueuedPorts = MibScalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 33), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 255))).setMaxAccess("readonly") if mibBuilder.loadTexts: aiCLCQueuedPorts.setStatus('current') if mibBuilder.loadTexts: aiCLCQueuedPorts.setDescription('Number of ports in wait queue ') aiCLCEEPromFaults = MibScalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 34), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65536))).setMaxAccess("readonly") if mibBuilder.loadTexts: aiCLCEEPromFaults.setStatus('current') if mibBuilder.loadTexts: aiCLCEEPromFaults.setDescription('Number of EEProm failures') aiCLCFreeEE = MibScalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 35), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 1048576))).setMaxAccess("readonly") if mibBuilder.loadTexts: aiCLCFreeEE.setStatus('current') if mibBuilder.loadTexts: aiCLCFreeEE.setDescription('Number of free EEProm bytes ') aiCLCBuffers = MibScalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 36), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65536))).setMaxAccess("readonly") if mibBuilder.loadTexts: aiCLCBuffers.setStatus('current') if mibBuilder.loadTexts: aiCLCBuffers.setDescription('Number of buffers created ') aiCLCFreeBuffers = MibScalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 37), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65536))).setMaxAccess("readonly") if mibBuilder.loadTexts: aiCLCFreeBuffers.setStatus('current') if mibBuilder.loadTexts: aiCLCFreeBuffers.setDescription('Number of free buffers ') aiCLCBufAllocErr = MibScalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 38), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65536))).setMaxAccess("readonly") if mibBuilder.loadTexts: aiCLCBufAllocErr.setStatus('current') if mibBuilder.loadTexts: aiCLCBufAllocErr.setDescription('Number of buffer allocation errors ') aiCLCBufAlign = MibScalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 39), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65536))).setMaxAccess("readonly") if mibBuilder.loadTexts: aiCLCBufAlign.setStatus('current') if mibBuilder.loadTexts: aiCLCBufAlign.setDescription('Number of buffer re-alignments ') aiCLCCpuXacts = MibScalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 40), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65536))).setMaxAccess("readonly") if mibBuilder.loadTexts: aiCLCCpuXacts.setStatus('current') if mibBuilder.loadTexts: aiCLCCpuXacts.setDescription('Number of inter-cpu transactions') aiCLCSLCXacts = MibScalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 41), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65536))).setMaxAccess("readonly") if mibBuilder.loadTexts: aiCLCSLCXacts.setStatus('current') if mibBuilder.loadTexts: aiCLCSLCXacts.setDescription('Number of SLC Window transactions ') aiCLCConnectionsPlaced = MibScalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 42), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65536))).setMaxAccess("readonly") if mibBuilder.loadTexts: aiCLCConnectionsPlaced.setStatus('current') if mibBuilder.loadTexts: aiCLCConnectionsPlaced.setDescription('Number of connections placed') aiCLCTxTail = MibScalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 43), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65536))).setMaxAccess("readonly") if mibBuilder.loadTexts: aiCLCTxTail.setStatus('current') if mibBuilder.loadTexts: aiCLCTxTail.setDescription('Number of TXTail misses ') aiCLCEECRC = MibScalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 44), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 4294967295))).setMaxAccess("readonly") if mibBuilder.loadTexts: aiCLCEECRC.setStatus('current') if mibBuilder.loadTexts: aiCLCEECRC.setDescription('Configuration EEPROM CRC.') aiCLCVersion = MibScalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 45), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: aiCLCVersion.setStatus('current') if mibBuilder.loadTexts: aiCLCVersion.setDescription('Software version, time, and date of currently executing software') aiCLCBackupCLC = MibScalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 46), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("present", 1), ("notPresent", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: aiCLCBackupCLC.setStatus('current') if mibBuilder.loadTexts: aiCLCBackupCLC.setDescription('Status of the Backup CLC.') aiCLCCpu = MibScalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 47), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("slotA", 1), ("slotB", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: aiCLCCpu.setStatus('current') if mibBuilder.loadTexts: aiCLCCpu.setDescription('The location of the active CLC.') aiCLCCpyConfig = MibScalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 48), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("none", 1), ("copy", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: aiCLCCpyConfig.setStatus('current') if mibBuilder.loadTexts: aiCLCCpyConfig.setDescription('Copy configuration from active CLC to backup CLC. A write of copy(2) causes the transfer to begin. A read will return copy(2) if a transfer is in progress and a none(1) if idle. A write of none(1) is not permitted and is flagged as an error.') aiCLCDLWinVerbose = MibScalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 49), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("on", 1), ("off", 2))).clone(2)).setMaxAccess("readwrite") if mibBuilder.loadTexts: aiCLCDLWinVerbose.setStatus('current') if mibBuilder.loadTexts: aiCLCDLWinVerbose.setDescription('Verbose report of Window Transactions.') aiCLCDLWinIn = MibScalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 50), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("on", 1), ("off", 2))).clone(2)).setMaxAccess("readwrite") if mibBuilder.loadTexts: aiCLCDLWinIn.setStatus('current') if mibBuilder.loadTexts: aiCLCDLWinIn.setDescription('Verbose report of incoming Window Transactions.') aiCLCDLWinOut = MibScalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 51), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("on", 1), ("off", 2))).clone(2)).setMaxAccess("readwrite") if mibBuilder.loadTexts: aiCLCDLWinOut.setStatus('current') if mibBuilder.loadTexts: aiCLCDLWinOut.setDescription('Verbose report of outgoing Window Transactions.') aiCLCDLWinUni = MibScalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 52), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("on", 1), ("off", 2))).clone(2)).setMaxAccess("readwrite") if mibBuilder.loadTexts: aiCLCDLWinUni.setStatus('current') if mibBuilder.loadTexts: aiCLCDLWinUni.setDescription('Verbose report of unified Window Transactions.') aiCLCDLMsgAll = MibScalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 53), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("on", 1), ("off", 2))).clone(2)).setMaxAccess("readwrite") if mibBuilder.loadTexts: aiCLCDLMsgAll.setStatus('current') if mibBuilder.loadTexts: aiCLCDLMsgAll.setDescription('Verbose report of log messages.') aiCLCDLNoBody = MibScalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 54), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("on", 1), ("off", 2))).clone(2)).setMaxAccess("readwrite") if mibBuilder.loadTexts: aiCLCDLNoBody.setStatus('current') if mibBuilder.loadTexts: aiCLCDLNoBody.setDescription('Report log messages headers only.') aiCLCDLAlias = MibScalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 55), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("on", 1), ("off", 2))).clone(2)).setMaxAccess("readwrite") if mibBuilder.loadTexts: aiCLCDLAlias.setStatus('current') if mibBuilder.loadTexts: aiCLCDLAlias.setDescription('Verbose report of alias translations.') aiCLCDebugVal = MibScalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 56), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 143))).setMaxAccess("readwrite") if mibBuilder.loadTexts: aiCLCDebugVal.setStatus('current') if mibBuilder.loadTexts: aiCLCDebugVal.setDescription('Value of the debug variable representing all debug combinations.') aiCLCSwitchRestart = MibScalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 57), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5))).clone(namedValues=NamedValues(("restart", 1), ("restartCfg", 2), ("nextCLC", 3), ("reset", 4), ("resetSLC", 5)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: aiCLCSwitchRestart.setStatus('current') if mibBuilder.loadTexts: aiCLCSwitchRestart.setDescription('A write of this object causes the switch to be restarted in the designated mode. A read of this object always returns the value restart(1), which has no particular significance.') aiCLCInitStrings = MibScalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 58), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("good", 1), ("bad", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: aiCLCInitStrings.setStatus('current') if mibBuilder.loadTexts: aiCLCInitStrings.setDescription('This object is used to test the condition of the strings on the CLC. A read of this object causes the test to be performed and then reports the outcome.') aiCLCCopyFlash = MibScalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 59), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8, 9))).clone(namedValues=NamedValues(("none", 1), ("apbs", 2), ("apas", 3), ("asbs", 4), ("asap", 5), ("bpas", 6), ("bpbs", 7), ("bsbp", 8), ("bsas", 9)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: aiCLCCopyFlash.setStatus('current') if mibBuilder.loadTexts: aiCLCCopyFlash.setDescription('Copy Flash from one bank to another. AP - Active Primary AS - Active Secondary BP - Backup Primary BS - Backup Secondary A read returns a value corresponding to the activity in progress. A write causes the requested transfer to begin. A write of none(1) is not permitted and is flagged as an error.') aiCLCCopyFlashToSLC = MibScalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 60), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 256))).setMaxAccess("readwrite") if mibBuilder.loadTexts: aiCLCCopyFlashToSLC.setStatus('current') if mibBuilder.loadTexts: aiCLCCopyFlashToSLC.setDescription("This object is used to begin or obtain the status of the SLC Download process. Writing a SLC base port to this object will cause the SLC at that baseport to search for new firmware on the active or backup CLC. If a valid SLC image is located, then the SLC will download that code and begin to run. A read of this variable will return the value 1 if a SLC download is in process, or a 0 if there aren't downloads in progress.") aiCLCReadCommunity = MibScalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 61), DisplayString().subtype(subtypeSpec=ValueRangeConstraint(0, 32))).setMaxAccess("readwrite") if mibBuilder.loadTexts: aiCLCReadCommunity.setStatus('current') if mibBuilder.loadTexts: aiCLCReadCommunity.setDescription('The read community string for the CLC.') aiCLCWriteCommunity = MibScalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 62), DisplayString().subtype(subtypeSpec=ValueRangeConstraint(1, 32))).setMaxAccess("readwrite") if mibBuilder.loadTexts: aiCLCWriteCommunity.setStatus('current') if mibBuilder.loadTexts: aiCLCWriteCommunity.setDescription('The write community string for the CLC.') aiCLCIPAdrs = MibScalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 63), IpAddress()).setMaxAccess("readwrite") if mibBuilder.loadTexts: aiCLCIPAdrs.setStatus('current') if mibBuilder.loadTexts: aiCLCIPAdrs.setDescription('The IP address for the CLC.') aiCLCRouterIPAdrs = MibScalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 64), IpAddress()).setMaxAccess("readwrite") if mibBuilder.loadTexts: aiCLCRouterIPAdrs.setStatus('current') if mibBuilder.loadTexts: aiCLCRouterIPAdrs.setDescription('The router ip address for the CLC.') aiCLCSubnetIPAdrs = MibScalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 65), IpAddress()).setMaxAccess("readwrite") if mibBuilder.loadTexts: aiCLCSubnetIPAdrs.setStatus('current') if mibBuilder.loadTexts: aiCLCSubnetIPAdrs.setDescription('The subnet mask for the CLC. ') aiCLCTrapTable = MibTable((1, 3, 6, 1, 4, 1, 539, 9, 1, 66), ) if mibBuilder.loadTexts: aiCLCTrapTable.setStatus('current') if mibBuilder.loadTexts: aiCLCTrapTable.setDescription('A table of Trap destination IP addresses.') aiCLCLastTrapMsgText = MibScalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 67), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 512))).setMaxAccess("readonly") if mibBuilder.loadTexts: aiCLCLastTrapMsgText.setStatus('current') if mibBuilder.loadTexts: aiCLCLastTrapMsgText.setDescription('This is the message text associated with the last generated trap.') aiCLCLastTrapMsgNum = MibScalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 68), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readonly") if mibBuilder.loadTexts: aiCLCLastTrapMsgNum.setStatus('current') if mibBuilder.loadTexts: aiCLCLastTrapMsgNum.setDescription('This is the message number of the last generated trap log message.') aiCLCCrashMsgText = MibScalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 69), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 1024))).setMaxAccess("readonly") if mibBuilder.loadTexts: aiCLCCrashMsgText.setStatus('current') if mibBuilder.loadTexts: aiCLCCrashMsgText.setDescription('This is a place holder. It is required to allow verification of OID of trap crash message object. A read of this object will return an empty string.') aiCLCNumEventsSinceLastTrap = MibScalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 70), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readonly") if mibBuilder.loadTexts: aiCLCNumEventsSinceLastTrap.setStatus('current') if mibBuilder.loadTexts: aiCLCNumEventsSinceLastTrap.setDescription('This is the number of times an event that would generate a trap has occurred since the last time that trap was transmitted. The traps are not transmitted while the aiCLCTrapTimer is running. This number will accompany the next transmitted trap. This object is really a place holder. It is required to allow verification of the OID of this information in a trap (var-bind). A read of this object will result in an error from the snmp agent.') aiCLCTrapTimer = MibScalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 71), Integer32().subtype(subtypeSpec=ValueRangeConstraint(5, 65535)).clone(300)).setMaxAccess("readwrite") if mibBuilder.loadTexts: aiCLCTrapTimer.setStatus('current') if mibBuilder.loadTexts: aiCLCTrapTimer.setDescription('After a trap is generated, a timer is started. If the event that generated the trap occurs while the timer is running, no trap will be generated for the event. The value of this object is the duration of the timer in SECONDS.') aiCLCAsyncTrap = MibScalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 72), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2))).clone('disabled')).setMaxAccess("readwrite") if mibBuilder.loadTexts: aiCLCAsyncTrap.setStatus('current') if mibBuilder.loadTexts: aiCLCAsyncTrap.setDescription('When this object is enabled, link up/link down traps are sent to managers listed in the trap table. The traps are normally not used and must specifically be enabled by a manager.') aiCLCTelnetServerPort = MibScalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 73), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535)).clone(23)).setMaxAccess("readwrite") if mibBuilder.loadTexts: aiCLCTelnetServerPort.setStatus('current') if mibBuilder.loadTexts: aiCLCTelnetServerPort.setDescription('The tcp port number used by the telnet server may be configured using the aiCLCTelnetServerPort object. By default this object uses the well known port number 23.') aiCLCColdStartTrapDelay = MibScalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 74), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 600))).setMaxAccess("readwrite") if mibBuilder.loadTexts: aiCLCColdStartTrapDelay.setStatus('current') if mibBuilder.loadTexts: aiCLCColdStartTrapDelay.setDescription('The sending of the cold start trap may be delayed to allow system startup and link startup to occur. This will typically be done on systems using IP over X.25 links. This value is specified in seconds.') aiCLCFtpCtrlPort = MibScalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 75), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535)).clone(21)).setMaxAccess("readwrite") if mibBuilder.loadTexts: aiCLCFtpCtrlPort.setStatus('current') if mibBuilder.loadTexts: aiCLCFtpCtrlPort.setDescription('The FTP Server control port number. New values for this object take affect after a reset. The FTP Server data port is automatically selected to be one less than the control port.') aiCLCBackupCLCHealth = MibScalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 76), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("present", 1), ("notPresent", 2), ("presentFaulted", 3)))).setMaxAccess("readonly") if mibBuilder.loadTexts: aiCLCBackupCLCHealth.setStatus('current') if mibBuilder.loadTexts: aiCLCBackupCLCHealth.setDescription('Health status of the Backup CLC.') aiCLCBanner = MibScalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 77), DisplayString().subtype(subtypeSpec=ValueRangeConstraint(0, 1170))).setMaxAccess("readwrite") if mibBuilder.loadTexts: aiCLCBanner.setStatus('current') if mibBuilder.loadTexts: aiCLCBanner.setDescription('The banner for the CLC. There is a maximum 15 lines with 76 characters allowed per line.') aiCLCTimeZone = MibScalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 78), Integer32().subtype(subtypeSpec=ValueRangeConstraint(-720, 720))).setMaxAccess("readwrite") if mibBuilder.loadTexts: aiCLCTimeZone.setStatus('current') if mibBuilder.loadTexts: aiCLCTimeZone.setDescription('The time zone offset for the CLC in minutes.') aiCLCDaylightSavings = MibScalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 79), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("on", 1), ("off", 2))).clone(1)).setMaxAccess("readwrite") if mibBuilder.loadTexts: aiCLCDaylightSavings.setStatus('current') if mibBuilder.loadTexts: aiCLCDaylightSavings.setDescription('Daylight Savings') aiCLCSNTP = MibScalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 80), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("on", 1), ("off", 2))).clone(1)).setMaxAccess("readwrite") if mibBuilder.loadTexts: aiCLCSNTP.setStatus('current') if mibBuilder.loadTexts: aiCLCSNTP.setDescription('SNTP') aiCLCSNTPPrimaryServer = MibScalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 81), IpAddress()).setMaxAccess("readwrite") if mibBuilder.loadTexts: aiCLCSNTPPrimaryServer.setStatus('current') if mibBuilder.loadTexts: aiCLCSNTPPrimaryServer.setDescription('The IP address for the Primary SNTP Server.') aiCLCSNTPSecondaryServer = MibScalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 82), IpAddress()).setMaxAccess("readwrite") if mibBuilder.loadTexts: aiCLCSNTPSecondaryServer.setStatus('current') if mibBuilder.loadTexts: aiCLCSNTPSecondaryServer.setDescription('The IP address for the Secondary SNTP Server.') aiCLCSNTPPollInterval = MibScalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 83), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readwrite") if mibBuilder.loadTexts: aiCLCSNTPPollInterval.setStatus('current') if mibBuilder.loadTexts: aiCLCSNTPPollInterval.setDescription('SNTP Poll Interval') aiCLCRadiusEnabled = MibScalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 84), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("disabled", 0), ("enabled", 1), ("localFallback", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: aiCLCRadiusEnabled.setStatus('current') if mibBuilder.loadTexts: aiCLCRadiusEnabled.setDescription('RADIUS enabled/disabled state.') aiCLCRadiusAddr1 = MibScalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 85), IpAddress()).setMaxAccess("readwrite") if mibBuilder.loadTexts: aiCLCRadiusAddr1.setStatus('current') if mibBuilder.loadTexts: aiCLCRadiusAddr1.setDescription('The IP address for the Primary RADIUS Server.') aiCLCRadiusPort1 = MibScalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 86), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535)).clone(1812)).setMaxAccess("readwrite") if mibBuilder.loadTexts: aiCLCRadiusPort1.setStatus('current') if mibBuilder.loadTexts: aiCLCRadiusPort1.setDescription('The port number associated with the Primary RADIUS Server.') aiCLCRadiusSecret1 = MibScalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 87), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 24)).clone('applied')).setMaxAccess("readwrite") if mibBuilder.loadTexts: aiCLCRadiusSecret1.setStatus('current') if mibBuilder.loadTexts: aiCLCRadiusSecret1.setDescription('The Secret for the Primary RADIUS Server.') aiCLCRadiusAddr2 = MibScalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 88), IpAddress()).setMaxAccess("readwrite") if mibBuilder.loadTexts: aiCLCRadiusAddr2.setStatus('current') if mibBuilder.loadTexts: aiCLCRadiusAddr2.setDescription('The IP address for the Secondary RADIUS Server.') aiCLCRadiusPort2 = MibScalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 89), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535)).clone(1812)).setMaxAccess("readwrite") if mibBuilder.loadTexts: aiCLCRadiusPort2.setStatus('current') if mibBuilder.loadTexts: aiCLCRadiusPort2.setDescription('The port number associated with the Secondary RADIUS Server.') aiCLCRadiusSecret2 = MibScalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 90), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 24)).clone('applied')).setMaxAccess("readwrite") if mibBuilder.loadTexts: aiCLCRadiusSecret2.setStatus('current') if mibBuilder.loadTexts: aiCLCRadiusSecret2.setDescription('The Secret for the Secondary RADIUS Server.') aiCLCTrapInterval = MibScalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 91), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite") if mibBuilder.loadTexts: aiCLCTrapInterval.setStatus('current') if mibBuilder.loadTexts: aiCLCTrapInterval.setDescription('The interval of the faulted primary CLC trap. If the primary CLC was faulted and the interval was set between 1 and 65535 minutes, the backup CLC will repeatedly send the faulted primary CLC trap. To disable this trap, set the interval to 0. If reset the interval to 0 after the primary CLC has been faulted, the backup CLC will stop sending the trap. New value for this object will take affect without rebooting the switch. This object has no effect on other traps.') aiCLCTacacsEnabled = MibScalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 92), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("disabled", 0), ("enabled", 1), ("localFallback", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: aiCLCTacacsEnabled.setStatus('current') if mibBuilder.loadTexts: aiCLCTacacsEnabled.setDescription('TACACS+ enabled/disabled state.') aiCLCTacacsAddr1 = MibScalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 93), IpAddress()).setMaxAccess("readwrite") if mibBuilder.loadTexts: aiCLCTacacsAddr1.setStatus('current') if mibBuilder.loadTexts: aiCLCTacacsAddr1.setDescription('The IP address for the Primary TACACS Server.') aiCLCTacacsPort1 = MibScalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 94), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535)).clone(49)).setMaxAccess("readwrite") if mibBuilder.loadTexts: aiCLCTacacsPort1.setStatus('current') if mibBuilder.loadTexts: aiCLCTacacsPort1.setDescription('The port number associated with the Primary TACACS Server.') aiCLCTacacsSecret1 = MibScalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 95), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 24)).clone('applied')).setMaxAccess("readwrite") if mibBuilder.loadTexts: aiCLCTacacsSecret1.setStatus('current') if mibBuilder.loadTexts: aiCLCTacacsSecret1.setDescription('The Secret for the Primary TACACS Server.') aiCLCTacacsAddr2 = MibScalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 96), IpAddress()).setMaxAccess("readwrite") if mibBuilder.loadTexts: aiCLCTacacsAddr2.setStatus('current') if mibBuilder.loadTexts: aiCLCTacacsAddr2.setDescription('The IP address for the Secondary TACACS Server.') aiCLCTacacsPort2 = MibScalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 97), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535)).clone(49)).setMaxAccess("readwrite") if mibBuilder.loadTexts: aiCLCTacacsPort2.setStatus('current') if mibBuilder.loadTexts: aiCLCTacacsPort2.setDescription('The port number associated with the Secondary TACACS Server.') aiCLCTacacsSecret2 = MibScalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 98), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 24)).clone('applied')).setMaxAccess("readwrite") if mibBuilder.loadTexts: aiCLCTacacsSecret2.setStatus('current') if mibBuilder.loadTexts: aiCLCTacacsSecret2.setDescription('The Secret for the Secondary TACACS Server.') aiCLCTrapTableEntry = MibTableRow((1, 3, 6, 1, 4, 1, 539, 9, 1, 66, 1), ).setIndexNames((0, "AI198CLC-MIB", "aiCLCTrapIPAdrs")) if mibBuilder.loadTexts: aiCLCTrapTableEntry.setStatus('current') if mibBuilder.loadTexts: aiCLCTrapTableEntry.setDescription('Information about a particular Trap destination.') aiCLCTrapIPAdrs = MibTableColumn((1, 3, 6, 1, 4, 1, 539, 9, 1, 66, 1, 1), IpAddress()).setMaxAccess("readcreate") if mibBuilder.loadTexts: aiCLCTrapIPAdrs.setStatus('current') if mibBuilder.loadTexts: aiCLCTrapIPAdrs.setDescription('The IP Address of the destination to which SNMP Traps will be sent.') aiCLCTrapRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 539, 9, 1, 66, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6))).clone(namedValues=NamedValues(("active", 1), ("notInService", 2), ("notReady", 3), ("createAndGo", 4), ("createAndWait", 5), ("destroy", 6)))).setMaxAccess("readcreate") if mibBuilder.loadTexts: aiCLCTrapRowStatus.setStatus('current') if mibBuilder.loadTexts: aiCLCTrapRowStatus.setDescription('The aiCLC Trap Table entry row status.') aiCLCCardTable = MibTable((1, 3, 6, 1, 4, 1, 539, 9, 2), ) if mibBuilder.loadTexts: aiCLCCardTable.setStatus('current') if mibBuilder.loadTexts: aiCLCCardTable.setDescription('A table of line cards contained in an AISwitch.') aiCLCCardTableEntry = MibTableRow((1, 3, 6, 1, 4, 1, 539, 9, 2, 1), ).setIndexNames((0, "AI198CLC-MIB", "aiCLCCTIndex")) if mibBuilder.loadTexts: aiCLCCardTableEntry.setStatus('current') if mibBuilder.loadTexts: aiCLCCardTableEntry.setDescription('Information about a particular line card.') aiCLCCTIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 539, 9, 2, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 64))).setMaxAccess("readwrite") if mibBuilder.loadTexts: aiCLCCTIndex.setStatus('current') if mibBuilder.loadTexts: aiCLCCTIndex.setDescription('The card table index.') aiCLCCTAdminStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 539, 9, 2, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("up", 1), ("down", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: aiCLCCTAdminStatus.setStatus('current') if mibBuilder.loadTexts: aiCLCCTAdminStatus.setDescription('This represents the state of the card and may be used to change the state of the card. For DUMB cards if one port on the card is up, then the entire card is considered to be up. ') aiCLCCTBasePort = MibTableColumn((1, 3, 6, 1, 4, 1, 539, 9, 2, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 255))).setMaxAccess("readwrite") if mibBuilder.loadTexts: aiCLCCTBasePort.setStatus('current') if mibBuilder.loadTexts: aiCLCCTBasePort.setDescription('The base port number for the line card.') aiCLCCTHighPort = MibTableColumn((1, 3, 6, 1, 4, 1, 539, 9, 2, 1, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 255))).setMaxAccess("readonly") if mibBuilder.loadTexts: aiCLCCTHighPort.setStatus('current') if mibBuilder.loadTexts: aiCLCCTHighPort.setDescription('The highest port number accessible by the line card.') aiCLCCTRdCommStr = MibTableColumn((1, 3, 6, 1, 4, 1, 539, 9, 2, 1, 5), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: aiCLCCTRdCommStr.setStatus('current') if mibBuilder.loadTexts: aiCLCCTRdCommStr.setDescription('The SNMP read community string by which this card is known.') aiCLCCTWrCommStr = MibTableColumn((1, 3, 6, 1, 4, 1, 539, 9, 2, 1, 6), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: aiCLCCTWrCommStr.setStatus('current') if mibBuilder.loadTexts: aiCLCCTWrCommStr.setDescription('The SNMP write community string by which this card is known.') aiCLCCTCardSnmpState = MibTableColumn((1, 3, 6, 1, 4, 1, 539, 9, 2, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("nosnmp", 1), ("snmpProxy", 2), ("snmpDirect", 3)))).setMaxAccess("readonly") if mibBuilder.loadTexts: aiCLCCTCardSnmpState.setStatus('current') if mibBuilder.loadTexts: aiCLCCTCardSnmpState.setDescription("This field describes the capabilities of the card. A card may not be snmp capable and will have the value nosnmp(1). A card may be snmp capable but isn't present on the IP network. This card is may proxied for and will have the type snmpProxy(2). The last type of snmp capability is where are card is present on the IP network and can be managed directly. This card will have a type of snmpDirect(3). ") aiCLCCTCardType = MibTableColumn((1, 3, 6, 1, 4, 1, 539, 9, 2, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24))).clone(namedValues=NamedValues(("asynch", 1), ("aslc", 2), ("ethernet", 3), ("x25", 4), ("asp", 5), ("islc", 6), ("ai2524", 7), ("ai294", 8), ("ai196im", 9), ("x25m", 10), ("islc1", 11), ("ai296", 12), ("ai285", 13), ("ai232", 14), ("ai196ILEG", 15), ("aimod", 16), ("aiflx", 17), ("empty", 18), ("ai120", 19), ("aie1", 20), ("aitc", 21), ("aifocus", 22), ("wanE1", 23), ("wanT1", 24))).clone(1)).setMaxAccess("readwrite") if mibBuilder.loadTexts: aiCLCCTCardType.setStatus('current') if mibBuilder.loadTexts: aiCLCCTCardType.setDescription('The line card type.') aiCLCCTSlotExp = MibTableColumn((1, 3, 6, 1, 4, 1, 539, 9, 2, 1, 9), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 7))).setMaxAccess("readwrite") if mibBuilder.loadTexts: aiCLCCTSlotExp.setStatus('current') if mibBuilder.loadTexts: aiCLCCTSlotExp.setDescription('The number of slots the line card is to logically occupy.') aiCLCCTIPAdrs = MibTableColumn((1, 3, 6, 1, 4, 1, 539, 9, 2, 1, 10), IpAddress()).setMaxAccess("readwrite") if mibBuilder.loadTexts: aiCLCCTIPAdrs.setStatus('current') if mibBuilder.loadTexts: aiCLCCTIPAdrs.setDescription('The IP address associated with the line card.') aiCLCCTRtrIPAdrs = MibTableColumn((1, 3, 6, 1, 4, 1, 539, 9, 2, 1, 11), IpAddress()).setMaxAccess("readwrite") if mibBuilder.loadTexts: aiCLCCTRtrIPAdrs.setStatus('current') if mibBuilder.loadTexts: aiCLCCTRtrIPAdrs.setDescription('The router ip address for this line card.') aiCLCCTSubnetMask = MibTableColumn((1, 3, 6, 1, 4, 1, 539, 9, 2, 1, 12), IpAddress()).setMaxAccess("readwrite") if mibBuilder.loadTexts: aiCLCCTSubnetMask.setStatus('current') if mibBuilder.loadTexts: aiCLCCTSubnetMask.setDescription('The subnet mask for this line card. ') aiCLCCTAutoIdIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 539, 9, 2, 1, 13), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 128))).setMaxAccess("readonly") if mibBuilder.loadTexts: aiCLCCTAutoIdIndex.setStatus('current') if mibBuilder.loadTexts: aiCLCCTAutoIdIndex.setDescription('The index into the Auto Id table associated with this line card.') aiCLCCTSysOID = MibTableColumn((1, 3, 6, 1, 4, 1, 539, 9, 2, 1, 14), ObjectIdentifier()).setMaxAccess("readonly") if mibBuilder.loadTexts: aiCLCCTSysOID.setStatus('current') if mibBuilder.loadTexts: aiCLCCTSysOID.setDescription('The SNMP System OID associated with this line card.') aiCLCCTRealCardType = MibTableColumn((1, 3, 6, 1, 4, 1, 539, 9, 2, 1, 15), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24))).clone(namedValues=NamedValues(("asynch", 1), ("aslc", 2), ("ethernet", 3), ("x25", 4), ("asp", 5), ("islc", 6), ("ai2524", 7), ("ai294", 8), ("ai196im", 9), ("x25m", 10), ("islc1", 11), ("ai296", 12), ("ai285", 13), ("ai232", 14), ("ai196ILEG", 15), ("aimod", 16), ("aiflx", 17), ("empty", 18), ("ai120", 19), ("aie1", 20), ("aitc", 21), ("aifocus", 22), ("wanE1", 23), ("wanT1", 24))).clone(1)).setMaxAccess("readonly") if mibBuilder.loadTexts: aiCLCCTRealCardType.setStatus('current') if mibBuilder.loadTexts: aiCLCCTRealCardType.setDescription('The real line card type.') aiCLCCTIPRange = MibTableColumn((1, 3, 6, 1, 4, 1, 539, 9, 2, 1, 16), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 255))).setMaxAccess("readwrite") if mibBuilder.loadTexts: aiCLCCTIPRange.setStatus('current') if mibBuilder.loadTexts: aiCLCCTIPRange.setDescription('The IP address range of this line card.') aiCLCCTTelnetPort = MibTableColumn((1, 3, 6, 1, 4, 1, 539, 9, 2, 1, 17), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65534))).setMaxAccess("readwrite") if mibBuilder.loadTexts: aiCLCCTTelnetPort.setStatus('current') if mibBuilder.loadTexts: aiCLCCTTelnetPort.setDescription('The telnet port of this line card.') aiCLCCTCardReset = MibTableColumn((1, 3, 6, 1, 4, 1, 539, 9, 2, 1, 18), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("on", 1), ("off", 2), ("na", 3)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: aiCLCCTCardReset.setStatus('current') if mibBuilder.loadTexts: aiCLCCTCardReset.setDescription('Card is included when * is used with STPSLC, DISABL, or ENABL.') aiCLCCTLastSequenceNumber = MibTableColumn((1, 3, 6, 1, 4, 1, 539, 9, 2, 1, 19), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: aiCLCCTLastSequenceNumber.setStatus('current') if mibBuilder.loadTexts: aiCLCCTLastSequenceNumber.setDescription('This is the sequence number of the last trap sent by this card. The sequence number starts at zero following a hardware reset or power-up. When the sequence number reaches 0xffffffff, it rolls over to 0 on the next trap.') aiCLCCTRtr2IPAdrs = MibTableColumn((1, 3, 6, 1, 4, 1, 539, 9, 2, 1, 20), IpAddress()).setMaxAccess("readwrite") if mibBuilder.loadTexts: aiCLCCTRtr2IPAdrs.setStatus('current') if mibBuilder.loadTexts: aiCLCCTRtr2IPAdrs.setDescription('The secondary router ip address for this line card.') aiCLCPortTable = MibTable((1, 3, 6, 1, 4, 1, 539, 9, 3), ) if mibBuilder.loadTexts: aiCLCPortTable.setStatus('current') if mibBuilder.loadTexts: aiCLCPortTable.setDescription('A table of port information.') aiCLCPortTableEntry = MibTableRow((1, 3, 6, 1, 4, 1, 539, 9, 3, 1), ).setIndexNames((0, "AI198CLC-MIB", "aiCLCPortNumber")) if mibBuilder.loadTexts: aiCLCPortTableEntry.setStatus('current') if mibBuilder.loadTexts: aiCLCPortTableEntry.setDescription('Information unique to a particular port.') aiCLCPortNumber = MibTableColumn((1, 3, 6, 1, 4, 1, 539, 9, 3, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 255))).setMaxAccess("readonly") if mibBuilder.loadTexts: aiCLCPortNumber.setStatus('current') if mibBuilder.loadTexts: aiCLCPortNumber.setDescription('The AISwitch Port Number associated with the entry.') aiCLCPortType = MibTableColumn((1, 3, 6, 1, 4, 1, 539, 9, 3, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))).clone(namedValues=NamedValues(("user", 1), ("destination", 2), ("actConn", 3), ("dedicated", 4))).clone(1)).setMaxAccess("readwrite") if mibBuilder.loadTexts: aiCLCPortType.setStatus('current') if mibBuilder.loadTexts: aiCLCPortType.setDescription('This is used to configure how the port is being used.') aiCLCPortDedicated = MibTableColumn((1, 3, 6, 1, 4, 1, 539, 9, 3, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 255))).setMaxAccess("readwrite") if mibBuilder.loadTexts: aiCLCPortDedicated.setStatus('current') if mibBuilder.loadTexts: aiCLCPortDedicated.setDescription("The port number to which this port is dedicated when the type is 'dedicated'.") aiCLCPortDestName = MibTableColumn((1, 3, 6, 1, 4, 1, 539, 9, 3, 1, 4), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 8))).setMaxAccess("readwrite") if mibBuilder.loadTexts: aiCLCPortDestName.setStatus('current') if mibBuilder.loadTexts: aiCLCPortDestName.setDescription('The destination to which this port is assigned.') aiCLCPortEcho = MibTableColumn((1, 3, 6, 1, 4, 1, 539, 9, 3, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("on", 1), ("off", 2))).clone(1)).setMaxAccess("readwrite") if mibBuilder.loadTexts: aiCLCPortEcho.setStatus('current') if mibBuilder.loadTexts: aiCLCPortEcho.setDescription('This determines whether echoing is on when the port is connected to the AISwitch.') aiCLCPortDestMenu = MibTableColumn((1, 3, 6, 1, 4, 1, 539, 9, 3, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("on", 1), ("off", 2))).clone(1)).setMaxAccess("readwrite") if mibBuilder.loadTexts: aiCLCPortDestMenu.setStatus('current') if mibBuilder.loadTexts: aiCLCPortDestMenu.setDescription("This determines whether the destination menu is displayed when the port type is 'user'.") aiCLCPortQueue = MibTableColumn((1, 3, 6, 1, 4, 1, 539, 9, 3, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("on", 1), ("off", 2))).clone(2)).setMaxAccess("readwrite") if mibBuilder.loadTexts: aiCLCPortQueue.setStatus('current') if mibBuilder.loadTexts: aiCLCPortQueue.setDescription('This determines whether the port is allowed to be put on hold when the destination port is busy.') aiCLCSLCProtocolCode = MibTableColumn((1, 3, 6, 1, 4, 1, 539, 9, 3, 1, 8), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 255))).setMaxAccess("readwrite") if mibBuilder.loadTexts: aiCLCSLCProtocolCode.setStatus('current') if mibBuilder.loadTexts: aiCLCSLCProtocolCode.setDescription('This is the slc protocol processing code.') aiCLCPortState = MibTableColumn((1, 3, 6, 1, 4, 1, 539, 9, 3, 1, 9), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: aiCLCPortState.setStatus('current') if mibBuilder.loadTexts: aiCLCPortState.setDescription('This is used to determine whether the port is enabled or disabled.') aiCLCPortStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 539, 9, 3, 1, 10), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20))).clone(namedValues=NamedValues(("idle", 1), ("selcos", 2), ("pswd", 3), ("uname", 4), ("dna", 5), ("tcp", 6), ("queue", 7), ("holdq", 8), ("waitq", 9), ("ai", 10), ("conn", 11), ("preconn", 12), ("predisc", 13), ("hold", 14), ("netconn", 15), ("file", 16), ("inact", 17), ("swdwn", 18), ("telnetClient", 19), ("unknown", 20)))).setMaxAccess("readonly") if mibBuilder.loadTexts: aiCLCPortStatus.setStatus('current') if mibBuilder.loadTexts: aiCLCPortStatus.setDescription("This value is the port status which include the following values; idle(1), selecting class of service selcos(2), entering password pswd(3), entering username(4), entering destination network address dna(5), entering a TCP address tcp(6), answering 'wish to queue' queue(7), answering 'wish to hold' holdq(8), connected to switch ai(9), connected conn(10), in the process of connecting preconn(11), in the process of disconnecting predisc(12), hold(13), network connect pending netconn(14), performing a file transfer file(15), inactive inact(16), slc is receiving software download swdwn(17), port is using a telnet client telnetClient(18), unknown(20).") aiCLCPortAlm = MibTableColumn((1, 3, 6, 1, 4, 1, 539, 9, 3, 1, 11), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 9))).setMaxAccess("readonly") if mibBuilder.loadTexts: aiCLCPortAlm.setStatus('current') if mibBuilder.loadTexts: aiCLCPortAlm.setDescription('The current alarm value for the port.') aiCLCPortDesc = MibTableColumn((1, 3, 6, 1, 4, 1, 539, 9, 3, 1, 12), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 29))).setMaxAccess("readwrite") if mibBuilder.loadTexts: aiCLCPortDesc.setStatus('current') if mibBuilder.loadTexts: aiCLCPortDesc.setDescription('This is used to describe the port in textual form.') aiCLCPortReset = MibTableColumn((1, 3, 6, 1, 4, 1, 539, 9, 3, 1, 13), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("on", 1), ("off", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: aiCLCPortReset.setStatus('current') if mibBuilder.loadTexts: aiCLCPortReset.setDescription('Port is included when * is used with DISABL or ENABL.') aiCLCAliasTable = MibTable((1, 3, 6, 1, 4, 1, 539, 9, 4), ) if mibBuilder.loadTexts: aiCLCAliasTable.setStatus('current') if mibBuilder.loadTexts: aiCLCAliasTable.setDescription('A table of call alias information.') aiCLCAliasTableEntry = MibTableRow((1, 3, 6, 1, 4, 1, 539, 9, 4, 1), ).setIndexNames((1, "AI198CLC-MIB", "aiCLCAliasIndex")) if mibBuilder.loadTexts: aiCLCAliasTableEntry.setStatus('current') if mibBuilder.loadTexts: aiCLCAliasTableEntry.setDescription('Information unique to a particular alias.') aiCLCAliasIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 539, 9, 4, 1, 1), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(1, 200))).setMaxAccess("readcreate") if mibBuilder.loadTexts: aiCLCAliasIndex.setStatus('current') if mibBuilder.loadTexts: aiCLCAliasIndex.setDescription('The alias name in the form of a DisplayString. This is the key field for the Alias Table.') aiCLCAliasRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 539, 9, 4, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6))).clone(namedValues=NamedValues(("active", 1), ("notInService", 2), ("notReady", 3), ("createAndGo", 4), ("createAndWait", 5), ("destroy", 6)))).setMaxAccess("readcreate") if mibBuilder.loadTexts: aiCLCAliasRowStatus.setStatus('current') if mibBuilder.loadTexts: aiCLCAliasRowStatus.setDescription('The Alias Table Entry row status.') aiCLCXlatType = MibTableColumn((1, 3, 6, 1, 4, 1, 539, 9, 4, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))).clone(namedValues=NamedValues(("simple", 1), ("muxconn", 2), ("muxxlat", 3), ("slcroute", 4))).clone(1)).setMaxAccess("readwrite") if mibBuilder.loadTexts: aiCLCXlatType.setStatus('current') if mibBuilder.loadTexts: aiCLCXlatType.setDescription('The type of alias translation to be performed.') aiCLCAliasDestName = MibTableColumn((1, 3, 6, 1, 4, 1, 539, 9, 4, 1, 4), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: aiCLCAliasDestName.setStatus('current') if mibBuilder.loadTexts: aiCLCAliasDestName.setDescription('The destination to be used for the alias.') aiCLCCalledAdrs = MibTableColumn((1, 3, 6, 1, 4, 1, 539, 9, 4, 1, 5), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: aiCLCCalledAdrs.setStatus('current') if mibBuilder.loadTexts: aiCLCCalledAdrs.setDescription('The called address used in the macro.') aiCLCAliasDestMenu = MibTableColumn((1, 3, 6, 1, 4, 1, 539, 9, 4, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("on", 1), ("off", 2))).clone(1)).setMaxAccess("readwrite") if mibBuilder.loadTexts: aiCLCAliasDestMenu.setStatus('current') if mibBuilder.loadTexts: aiCLCAliasDestMenu.setDescription('This determines whether the alias appears on the destination menu.') aiCLCLinkNum = MibTableColumn((1, 3, 6, 1, 4, 1, 539, 9, 4, 1, 7), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: aiCLCLinkNum.setStatus('current') if mibBuilder.loadTexts: aiCLCLinkNum.setDescription('The link number or alias macro used for the link number.') aiCLCCallerAdrs = MibTableColumn((1, 3, 6, 1, 4, 1, 539, 9, 4, 1, 8), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: aiCLCCallerAdrs.setStatus('current') if mibBuilder.loadTexts: aiCLCCallerAdrs.setDescription('The caller address used in the macro.') aiCLCCallData = MibTableColumn((1, 3, 6, 1, 4, 1, 539, 9, 4, 1, 9), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: aiCLCCallData.setStatus('current') if mibBuilder.loadTexts: aiCLCCallData.setDescription('The call data which may be a destination or an alias macro.') aiCLCApplicString = MibTableColumn((1, 3, 6, 1, 4, 1, 539, 9, 4, 1, 10), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: aiCLCApplicString.setStatus('current') if mibBuilder.loadTexts: aiCLCApplicString.setDescription('The application string which may be a string or an alias macro.') aiCLCCalledProtoStr = MibTableColumn((1, 3, 6, 1, 4, 1, 539, 9, 4, 1, 11), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: aiCLCCalledProtoStr.setStatus('current') if mibBuilder.loadTexts: aiCLCCalledProtoStr.setDescription('The string that may specify the called protocol for a call using the alias macro.') aiCLCCallerProtoStr = MibTableColumn((1, 3, 6, 1, 4, 1, 539, 9, 4, 1, 12), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: aiCLCCallerProtoStr.setStatus('current') if mibBuilder.loadTexts: aiCLCCallerProtoStr.setDescription('The string that may specify the calling protocol for a call using the alias macro.') aiCLCAlternRoute = MibTableColumn((1, 3, 6, 1, 4, 1, 539, 9, 4, 1, 13), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: aiCLCAlternRoute.setStatus('current') if mibBuilder.loadTexts: aiCLCAlternRoute.setDescription('The string may specify a destination or an alias macro that is used as an alternate route.') aiCLCAliasPosition = MibTableColumn((1, 3, 6, 1, 4, 1, 539, 9, 4, 1, 14), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(1, 5)).clone(1)).setMaxAccess("readwrite") if mibBuilder.loadTexts: aiCLCAliasPosition.setStatus('current') if mibBuilder.loadTexts: aiCLCAliasPosition.setDescription("The position of the alias in the alias list. When 'set' a new or an existing alias, this value can be used as a flag to request a saving to the beginning (0) or to the end (99999) of the alias list. As default, the CLC always saves a new alias to the end and a modified alias to its old position.") aiCLCDestTable = MibTable((1, 3, 6, 1, 4, 1, 539, 9, 5), ) if mibBuilder.loadTexts: aiCLCDestTable.setStatus('current') if mibBuilder.loadTexts: aiCLCDestTable.setDescription('This table contains information pertaining to destinations and their attributes.') aiCLCDestTableEntry = MibTableRow((1, 3, 6, 1, 4, 1, 539, 9, 5, 1), ).setIndexNames((1, "AI198CLC-MIB", "aiCLCDestName")) if mibBuilder.loadTexts: aiCLCDestTableEntry.setStatus('current') if mibBuilder.loadTexts: aiCLCDestTableEntry.setDescription('This information pertains to one entry in the destination table.') aiCLCDestName = MibTableColumn((1, 3, 6, 1, 4, 1, 539, 9, 5, 1, 1), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(1, 8))).setMaxAccess("readcreate") if mibBuilder.loadTexts: aiCLCDestName.setStatus('current') if mibBuilder.loadTexts: aiCLCDestName.setDescription('The name of the destination in the form of an OCTET STRING.') aiCLCDestRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 539, 9, 5, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6))).clone(namedValues=NamedValues(("active", 1), ("notInService", 2), ("notReady", 3), ("createAndGo", 4), ("createAndWait", 5), ("destroy", 6)))).setMaxAccess("readcreate") if mibBuilder.loadTexts: aiCLCDestRowStatus.setStatus('current') if mibBuilder.loadTexts: aiCLCDestRowStatus.setDescription('The key field for the Destination table entry.') aiCLCDestCallInit = MibTableColumn((1, 3, 6, 1, 4, 1, 539, 9, 5, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("on", 1), ("off", 2))).clone(2)).setMaxAccess("readwrite") if mibBuilder.loadTexts: aiCLCDestCallInit.setStatus('current') if mibBuilder.loadTexts: aiCLCDestCallInit.setDescription('This is used to turn on or turn off call initiation on ports assigned to this destination.') aiCLCDestDisc = MibTableColumn((1, 3, 6, 1, 4, 1, 539, 9, 5, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("on", 1), ("off", 2))).clone(2)).setMaxAccess("readwrite") if mibBuilder.loadTexts: aiCLCDestDisc.setStatus('current') if mibBuilder.loadTexts: aiCLCDestDisc.setDescription("This is used to turn on or turn off the user's disconnect keys when connected to this destination.") aiCLCDestDispMenu = MibTableColumn((1, 3, 6, 1, 4, 1, 539, 9, 5, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("on", 1), ("off", 2))).clone(1)).setMaxAccess("readwrite") if mibBuilder.loadTexts: aiCLCDestDispMenu.setStatus('current') if mibBuilder.loadTexts: aiCLCDestDispMenu.setDescription('This is used to turn on or turn off the display of the destination name on the destination menu.') aiCLCDestBaud = MibTableColumn((1, 3, 6, 1, 4, 1, 539, 9, 5, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("on", 1), ("off", 2))).clone(1)).setMaxAccess("readwrite") if mibBuilder.loadTexts: aiCLCDestBaud.setStatus('current') if mibBuilder.loadTexts: aiCLCDestBaud.setDescription('This is used to turn on or turn off whether the baud rate is checked before connecting to the destination.') aiCLCDestIsSwitch = MibTableColumn((1, 3, 6, 1, 4, 1, 539, 9, 5, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("yes", 1), ("no", 2))).clone(2)).setMaxAccess("readwrite") if mibBuilder.loadTexts: aiCLCDestIsSwitch.setStatus('current') if mibBuilder.loadTexts: aiCLCDestIsSwitch.setDescription('This is used to indicate that the destination is another AI switch.') aiCLCDestTmrType = MibTableColumn((1, 3, 6, 1, 4, 1, 539, 9, 5, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("actTmr", 1), ("sessTmr", 2))).clone(2)).setMaxAccess("readwrite") if mibBuilder.loadTexts: aiCLCDestTmrType.setStatus('current') if mibBuilder.loadTexts: aiCLCDestTmrType.setDescription('This is used to set the type of timer associated with the destination.') aiCLCDestTmrVal = MibTableColumn((1, 3, 6, 1, 4, 1, 539, 9, 5, 1, 9), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 4368000)).clone(1)).setMaxAccess("readwrite") if mibBuilder.loadTexts: aiCLCDestTmrVal.setStatus('current') if mibBuilder.loadTexts: aiCLCDestTmrVal.setDescription('This value is the timer duration in milliseconds ranging from 1mS to 4368000mS or about 72 hours.') aiCLCDestTmrDelay = MibTableColumn((1, 3, 6, 1, 4, 1, 539, 9, 5, 1, 10), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 4368000)).clone(1)).setMaxAccess("readwrite") if mibBuilder.loadTexts: aiCLCDestTmrDelay.setStatus('current') if mibBuilder.loadTexts: aiCLCDestTmrDelay.setDescription('This value is the delay in milliseconds before allowing further calls on the destination after a call terminates. The range is 1mS to 4368000mS or about 72 hours.') aiCLCDestPswd = MibTableColumn((1, 3, 6, 1, 4, 1, 539, 9, 5, 1, 11), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 8))).setMaxAccess("readwrite") if mibBuilder.loadTexts: aiCLCDestPswd.setStatus('current') if mibBuilder.loadTexts: aiCLCDestPswd.setDescription('This is password associated with the destination.') aiCLCDestQPswd = MibTableColumn((1, 3, 6, 1, 4, 1, 539, 9, 5, 1, 12), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 8))).setMaxAccess("readwrite") if mibBuilder.loadTexts: aiCLCDestQPswd.setStatus('current') if mibBuilder.loadTexts: aiCLCDestQPswd.setDescription('This is password used to control access to the queue management functions associated with the destination.') aiCLCDestMenuMsg = MibTableColumn((1, 3, 6, 1, 4, 1, 539, 9, 5, 1, 13), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: aiCLCDestMenuMsg.setStatus('current') if mibBuilder.loadTexts: aiCLCDestMenuMsg.setDescription('This string is displayed next to the destination in the destination menu.') aiCLCDestConnMsg = MibTableColumn((1, 3, 6, 1, 4, 1, 539, 9, 5, 1, 14), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: aiCLCDestConnMsg.setStatus('current') if mibBuilder.loadTexts: aiCLCDestConnMsg.setDescription('This string is forced out the destination port when a connection begins.') aiCLCDestDiscMsg = MibTableColumn((1, 3, 6, 1, 4, 1, 539, 9, 5, 1, 15), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: aiCLCDestDiscMsg.setStatus('current') if mibBuilder.loadTexts: aiCLCDestDiscMsg.setDescription('This string is forced out the destination port when a connection terminates.') aiCLCDestState = MibTableColumn((1, 3, 6, 1, 4, 1, 539, 9, 5, 1, 16), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2))).clone(1)).setMaxAccess("readwrite") if mibBuilder.loadTexts: aiCLCDestState.setStatus('current') if mibBuilder.loadTexts: aiCLCDestState.setDescription('This is used to enable or disable the destination.') aiCLCDestNumPorts = MibTableColumn((1, 3, 6, 1, 4, 1, 539, 9, 5, 1, 17), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 256))).setMaxAccess("readonly") if mibBuilder.loadTexts: aiCLCDestNumPorts.setStatus('current') if mibBuilder.loadTexts: aiCLCDestNumPorts.setDescription('This is used to determine the number of ports assigned to this destination.') aiCLCDestNumUsed = MibTableColumn((1, 3, 6, 1, 4, 1, 539, 9, 5, 1, 18), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 256))).setMaxAccess("readonly") if mibBuilder.loadTexts: aiCLCDestNumUsed.setStatus('current') if mibBuilder.loadTexts: aiCLCDestNumUsed.setDescription('This is used to determine the number of ports in use for this destination.') aiCLCDestNumFree = MibTableColumn((1, 3, 6, 1, 4, 1, 539, 9, 5, 1, 19), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 256))).setMaxAccess("readonly") if mibBuilder.loadTexts: aiCLCDestNumFree.setStatus('current') if mibBuilder.loadTexts: aiCLCDestNumFree.setDescription('This is used to determine the number of ports that are free for this destination.') aiCLCDestQHigh = MibTableColumn((1, 3, 6, 1, 4, 1, 539, 9, 5, 1, 20), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65536))).setMaxAccess("readonly") if mibBuilder.loadTexts: aiCLCDestQHigh.setStatus('current') if mibBuilder.loadTexts: aiCLCDestQHigh.setDescription('This is used to determine the maximum number of ports that were queued to this destination.') aiCLCDestPortList = MibTableColumn((1, 3, 6, 1, 4, 1, 539, 9, 5, 1, 21), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: aiCLCDestPortList.setStatus('current') if mibBuilder.loadTexts: aiCLCDestPortList.setDescription('This string contains a list of port numbers assigned to this destination.') aiCLCDestWaitForPort = MibTableColumn((1, 3, 6, 1, 4, 1, 539, 9, 5, 1, 22), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("on", 1), ("off", 2))).clone(1)).setMaxAccess("readwrite") if mibBuilder.loadTexts: aiCLCDestWaitForPort.setStatus('current') if mibBuilder.loadTexts: aiCLCDestWaitForPort.setDescription('This is used to allow the user to wait for a port when all ports for the destination are busy.') aiCLCAsyncTable = MibTable((1, 3, 6, 1, 4, 1, 539, 9, 6), ) if mibBuilder.loadTexts: aiCLCAsyncTable.setStatus('current') if mibBuilder.loadTexts: aiCLCAsyncTable.setDescription('The Async Table.') aiCLCAsyncTableEntry = MibTableRow((1, 3, 6, 1, 4, 1, 539, 9, 6, 1), ).setIndexNames((0, "AI198CLC-MIB", "aiCLCAsyncifIndex")) if mibBuilder.loadTexts: aiCLCAsyncTableEntry.setStatus('current') if mibBuilder.loadTexts: aiCLCAsyncTableEntry.setDescription('An Async Table entry.') aiCLCAsyncifIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 539, 9, 6, 1, 1), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: aiCLCAsyncifIndex.setStatus('current') if mibBuilder.loadTexts: aiCLCAsyncifIndex.setDescription('The ifIndex from the interfaces table.') aiCLCAsyncPort = MibTableColumn((1, 3, 6, 1, 4, 1, 539, 9, 6, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 255))).setMaxAccess("readonly") if mibBuilder.loadTexts: aiCLCAsyncPort.setStatus('current') if mibBuilder.loadTexts: aiCLCAsyncPort.setDescription('The AISwitch port number.') aiCLCAsyncAdminStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 539, 9, 6, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("up", 1), ("down", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: aiCLCAsyncAdminStatus.setStatus('current') if mibBuilder.loadTexts: aiCLCAsyncAdminStatus.setDescription('The key field for the Async table entry.') aiCLCAsyncDiscType = MibTableColumn((1, 3, 6, 1, 4, 1, 539, 9, 6, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("nobrkdisc", 1), ("brkdisc", 2), ("longbrkdisc", 3))).clone(2)).setMaxAccess("readwrite") if mibBuilder.loadTexts: aiCLCAsyncDiscType.setStatus('current') if mibBuilder.loadTexts: aiCLCAsyncDiscType.setDescription('The disconnect type for the async port.') aiCLCEIASignals = MibTableColumn((1, 3, 6, 1, 4, 1, 539, 9, 6, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6))).clone(namedValues=NamedValues(("eiaDisabled", 1), ("dsrRtsPass", 2), ("dsrOffDisc", 3), ("dsrOnOffDisc", 4), ("dcdOffDisc", 5), ("dcdOnOffDisc", 6))).clone(1)).setMaxAccess("readwrite") if mibBuilder.loadTexts: aiCLCEIASignals.setStatus('current') if mibBuilder.loadTexts: aiCLCEIASignals.setDescription('The EIA signals may be disabled (eiaDisabled(1)) or configured for pass through (dsrRtsPass(2)). Additionally the port can be configured to disconnect on loss of DSR (dsrOffDisc(3)), disconnect on change of state of DSR (dsrOnOffDisc(4)), disconnect on loss of DCD (dcdOffDisc(5)), or disconnect on change of state of DCD (dcdOnOffDisc(6)).') aiCLCEIARtsDisc = MibTableColumn((1, 3, 6, 1, 4, 1, 539, 9, 6, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("on", 1), ("off", 2))).clone(1)).setMaxAccess("readwrite") if mibBuilder.loadTexts: aiCLCEIARtsDisc.setStatus('current') if mibBuilder.loadTexts: aiCLCEIARtsDisc.setDescription('Upon disconnect RTS may be configured to be on(1), or off(2).') aiCLCEIADtrDisc = MibTableColumn((1, 3, 6, 1, 4, 1, 539, 9, 6, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("on", 1), ("off", 2))).clone(1)).setMaxAccess("readwrite") if mibBuilder.loadTexts: aiCLCEIADtrDisc.setStatus('current') if mibBuilder.loadTexts: aiCLCEIADtrDisc.setDescription('Upon disconnect DTR may be configured to be on(1), or off(2).') aiCLCEIARtsConn = MibTableColumn((1, 3, 6, 1, 4, 1, 539, 9, 6, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("on", 1), ("off", 2))).clone(1)).setMaxAccess("readwrite") if mibBuilder.loadTexts: aiCLCEIARtsConn.setStatus('current') if mibBuilder.loadTexts: aiCLCEIARtsConn.setDescription('Upon connect RTS may be configured to be on(1), or off(2).') aiCLCEIADtrConn = MibTableColumn((1, 3, 6, 1, 4, 1, 539, 9, 6, 1, 9), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("on", 1), ("off", 2))).clone(1)).setMaxAccess("readwrite") if mibBuilder.loadTexts: aiCLCEIADtrConn.setStatus('current') if mibBuilder.loadTexts: aiCLCEIADtrConn.setDescription('Upon connect DTR may be configured to be on(1), or off(2).') aiCLCEIARtsToggle = MibTableColumn((1, 3, 6, 1, 4, 1, 539, 9, 6, 1, 10), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("on", 1), ("off", 2))).clone(2)).setMaxAccess("readwrite") if mibBuilder.loadTexts: aiCLCEIARtsToggle.setStatus('current') if mibBuilder.loadTexts: aiCLCEIARtsToggle.setDescription('Upon disconnect RTS may be configured to toggle (on(1)) or not (off(2)).') aiCLCEIADtrToggle = MibTableColumn((1, 3, 6, 1, 4, 1, 539, 9, 6, 1, 11), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("on", 1), ("off", 2))).clone(2)).setMaxAccess("readwrite") if mibBuilder.loadTexts: aiCLCEIADtrToggle.setStatus('current') if mibBuilder.loadTexts: aiCLCEIADtrToggle.setDescription('Upon disconnect DTR may be configured to toggle (on(1)) or not (off(2)).') aiCLCAutoIDTable = MibTable((1, 3, 6, 1, 4, 1, 539, 9, 7), ) if mibBuilder.loadTexts: aiCLCAutoIDTable.setStatus('current') if mibBuilder.loadTexts: aiCLCAutoIDTable.setDescription('A table of board identification information for an AISwitch.') aiCLCAutoIDTableEntry = MibTableRow((1, 3, 6, 1, 4, 1, 539, 9, 7, 1), ).setIndexNames((0, "AI198CLC-MIB", "aiCLCAIDIndex")) if mibBuilder.loadTexts: aiCLCAutoIDTableEntry.setStatus('current') if mibBuilder.loadTexts: aiCLCAutoIDTableEntry.setDescription('Board Identification information for a particular card.') aiCLCAIDIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 539, 9, 7, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 64))).setMaxAccess("readonly") if mibBuilder.loadTexts: aiCLCAIDIndex.setStatus('current') if mibBuilder.loadTexts: aiCLCAIDIndex.setDescription('The Auto ID Table index.') aiCLCAIDPort = MibTableColumn((1, 3, 6, 1, 4, 1, 539, 9, 7, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 256))).setMaxAccess("readonly") if mibBuilder.loadTexts: aiCLCAIDPort.setStatus('current') if mibBuilder.loadTexts: aiCLCAIDPort.setDescription('The port number where the card resides. If the port number is not valid then 256 will be reported.') aiCLCAIDProduct = MibTableColumn((1, 3, 6, 1, 4, 1, 539, 9, 7, 1, 3), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: aiCLCAIDProduct.setStatus('current') if mibBuilder.loadTexts: aiCLCAIDProduct.setDescription('The product name for the card.') aiCLCAIDSerialNumber = MibTableColumn((1, 3, 6, 1, 4, 1, 539, 9, 7, 1, 4), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: aiCLCAIDSerialNumber.setStatus('current') if mibBuilder.loadTexts: aiCLCAIDSerialNumber.setDescription('The serial number for the card.') aiCLCAIDManufDate = MibTableColumn((1, 3, 6, 1, 4, 1, 539, 9, 7, 1, 5), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: aiCLCAIDManufDate.setStatus('current') if mibBuilder.loadTexts: aiCLCAIDManufDate.setDescription('The date of manufacture for the card.') aiCLCAIDMACAdrs = MibTableColumn((1, 3, 6, 1, 4, 1, 539, 9, 7, 1, 6), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: aiCLCAIDMACAdrs.setStatus('current') if mibBuilder.loadTexts: aiCLCAIDMACAdrs.setDescription('The MAC address for the card.') aiCLCAI2524LinkTable = MibTable((1, 3, 6, 1, 4, 1, 539, 9, 8), ) if mibBuilder.loadTexts: aiCLCAI2524LinkTable.setStatus('current') if mibBuilder.loadTexts: aiCLCAI2524LinkTable.setDescription('A table of link status for AI2524 Router Cards.') aiCLCAI2524LinkTableEntry = MibTableRow((1, 3, 6, 1, 4, 1, 539, 9, 8, 1), ).setIndexNames((0, "AI198CLC-MIB", "aiCLCAI2524Port")) if mibBuilder.loadTexts: aiCLCAI2524LinkTableEntry.setStatus('current') if mibBuilder.loadTexts: aiCLCAI2524LinkTableEntry.setDescription('Link information particular to AI2524 Router Cards.') aiCLCAI2524Port = MibTableColumn((1, 3, 6, 1, 4, 1, 539, 9, 8, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 255))).setMaxAccess("readonly") if mibBuilder.loadTexts: aiCLCAI2524Port.setStatus('current') if mibBuilder.loadTexts: aiCLCAI2524Port.setDescription('The port number for the AI2524 Router Card. ') aiCLCAI2524LinkStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 539, 9, 8, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("up", 1), ("down", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: aiCLCAI2524LinkStatus.setStatus('current') if mibBuilder.loadTexts: aiCLCAI2524LinkStatus.setDescription('The 10BT link status for the AI2524 Router Card.') mibBuilder.exportSymbols("AI198CLC-MIB", aiCLCActLogLvl=aiCLCActLogLvl, aiCLCRadiusPort2=aiCLCRadiusPort2, aiCLCCTCardType=aiCLCCTCardType, aiCLCCpu=aiCLCCpu, aiCLCLastTrapMsgText=aiCLCLastTrapMsgText, ai198Ver103=ai198Ver103, aiCLCCTIPAdrs=aiCLCCTIPAdrs, aiCLCAliasPosition=aiCLCAliasPosition, aiCLCDestTmrVal=aiCLCDestTmrVal, aiCLCAsyncTable=aiCLCAsyncTable, aii=aii, aiCLCRadiusAddr1=aiCLCRadiusAddr1, aiCLCEIADtrConn=aiCLCEIADtrConn, ai198Ver102=ai198Ver102, aiCLCSystem=aiCLCSystem, aiCLCNodeName=aiCLCNodeName, aiCLCCopyFlash=aiCLCCopyFlash, aiCLCBox3DensAdmin=aiCLCBox3DensAdmin, aiCLCPortEcho=aiCLCPortEcho, aiCLCLongBrkLen=aiCLCLongBrkLen, aiCLCCpuXacts=aiCLCCpuXacts, aiCLCDebugVal=aiCLCDebugVal, aiCLCCrashMsgText=aiCLCCrashMsgText, aiCLCAI2524Port=aiCLCAI2524Port, aiCLCCTBasePort=aiCLCCTBasePort, aiCLCPortType=aiCLCPortType, aiCLCDestRowStatus=aiCLCDestRowStatus, aiCLCTacacsSecret2=aiCLCTacacsSecret2, aiCLCSNTPPollInterval=aiCLCSNTPPollInterval, aiCLCAsyncAdminStatus=aiCLCAsyncAdminStatus, aiCLCEIADtrToggle=aiCLCEIADtrToggle, aiCLCXlatType=aiCLCXlatType, aiCLCTacacsAddr1=aiCLCTacacsAddr1, aiCLC=aiCLC, aiCLCTrapTableEntry=aiCLCTrapTableEntry, aiCLCDLAlias=aiCLCDLAlias, aiCLCIPAdrs=aiCLCIPAdrs, aiCLCBox7DensAdmin=aiCLCBox7DensAdmin, aiCLCSNTP=aiCLCSNTP, aiCLCTrapIPAdrs=aiCLCTrapIPAdrs, aiCLCCalledAdrs=aiCLCCalledAdrs, ai198Ver130=ai198Ver130, aiCLCCpyConfig=aiCLCCpyConfig, aiCLCFreeEE=aiCLCFreeEE, aiCLCBufAllocErr=aiCLCBufAllocErr, aiCLCCTAdminStatus=aiCLCCTAdminStatus, aiCLCAliasDestMenu=aiCLCAliasDestMenu, aiCLCDestQHigh=aiCLCDestQHigh, ai198Ver104=ai198Ver104, aiCLCSLCXacts=aiCLCSLCXacts, aiCLCCardTableEntry=aiCLCCardTableEntry, aiCLCQueuedPorts=aiCLCQueuedPorts, aiCLCMajorAlmMax=aiCLCMajorAlmMax, aiCLCDestDispMenu=aiCLCDestDispMenu, aiCLCPortReset=aiCLCPortReset, aiCLCBox1DensAdmin=aiCLCBox1DensAdmin, aiCLCAutoCLCUpdate=aiCLCAutoCLCUpdate, aiCLCAsyncPort=aiCLCAsyncPort, aiCLCPortStatus=aiCLCPortStatus, aiCLCPortDestName=aiCLCPortDestName, aiCLCAliasIndex=aiCLCAliasIndex, aiCLCTrapTimer=aiCLCTrapTimer, PYSNMP_MODULE_ID=aiCLC, aiCLCAsyncDiscType=aiCLCAsyncDiscType, aiCLCRadiusAddr2=aiCLCRadiusAddr2, aiCLCCTSysOID=aiCLCCTSysOID, aiCLCColdStartTrapDelay=aiCLCColdStartTrapDelay, aiCLCDestWaitForPort=aiCLCDestWaitForPort, aiCLCBox6DensAdmin=aiCLCBox6DensAdmin, aiCLCAIDPort=aiCLCAIDPort, aiCLCAliasTableEntry=aiCLCAliasTableEntry, aiCLCTacacsEnabled=aiCLCTacacsEnabled, ai198Ver1=ai198Ver1, aiCLCPortQueue=aiCLCPortQueue, aiCLCAIDSerialNumber=aiCLCAIDSerialNumber, aiCLCTrapRowStatus=aiCLCTrapRowStatus, aiCLCPortAlm=aiCLCPortAlm, aiCLCAliasRowStatus=aiCLCAliasRowStatus, aiCLCAutoIDTableEntry=aiCLCAutoIDTableEntry, ai198Ver120=ai198Ver120, aiCLCCTIndex=aiCLCCTIndex, aiCLCRadiusSecret1=aiCLCRadiusSecret1, aiCLCVersion=aiCLCVersion, aiCLCCTRtr2IPAdrs=aiCLCCTRtr2IPAdrs, aiCLCCardTable=aiCLCCardTable, aiCLCEIARtsDisc=aiCLCEIARtsDisc, ai198Ver13=ai198Ver13, aiCLCDownSpd=aiCLCDownSpd, aiCLCSLCProtocolCode=aiCLCSLCProtocolCode, aiCLCCallerProtoStr=aiCLCCallerProtoStr, aiCLCCTSubnetMask=aiCLCCTSubnetMask, ai198Ver12=ai198Ver12, aiCLCSubnetIPAdrs=aiCLCSubnetIPAdrs, aiCLCFaultSwitch=aiCLCFaultSwitch, aiCLCTacacsSecret1=aiCLCTacacsSecret1, aiCLCConnInfo=aiCLCConnInfo, aiCLCTacacsPort2=aiCLCTacacsPort2, aiCLCSNTPSecondaryServer=aiCLCSNTPSecondaryServer, aiCLCAliasDestName=aiCLCAliasDestName, aiCLCAutoIDTable=aiCLCAutoIDTable, aiCLCMajorAlmMin=aiCLCMajorAlmMin, aiCLCRadiusEnabled=aiCLCRadiusEnabled, aiCLCDestNumPorts=aiCLCDestNumPorts, aiCLCDestMenuFmt=aiCLCDestMenuFmt, aiCLCBuffers=aiCLCBuffers, aiCLCCallerAdrs=aiCLCCallerAdrs, aiCLCDestPortList=aiCLCDestPortList, aiCLCDestCallInit=aiCLCDestCallInit, aiCLCReadCommunity=aiCLCReadCommunity, ai198=ai198, aiCLCDestTmrDelay=aiCLCDestTmrDelay, aiCLCAIDMACAdrs=aiCLCAIDMACAdrs, aiCLCCTCardReset=aiCLCCTCardReset, aiCLCAlternRoute=aiCLCAlternRoute, aiCLCCaamlRetryTmr=aiCLCCaamlRetryTmr, aiCLCAIDIndex=aiCLCAIDIndex, aiCLCCTWrCommStr=aiCLCCTWrCommStr, aiCLCPortTable=aiCLCPortTable, aiCLCDestDiscMsg=aiCLCDestDiscMsg, aiCLCCTRealCardType=aiCLCCTRealCardType, aiCLCTacacsPort1=aiCLCTacacsPort1, aiCLCEIASignals=aiCLCEIASignals, aiCLCBanner=aiCLCBanner, aiCLCLogPortEnable=aiCLCLogPortEnable, aiCLCEIARtsConn=aiCLCEIARtsConn, aiCLCHoldConn=aiCLCHoldConn, aiCLCEECRC=aiCLCEECRC, aiCLCDestBaud=aiCLCDestBaud, aiCLCCaamlIdleTmr=aiCLCCaamlIdleTmr, aiCLCBox2DensAdmin=aiCLCBox2DensAdmin, aiCLCDLWinIn=aiCLCDLWinIn, aiCLCDLNoBody=aiCLCDLNoBody, aiCLCCTRtrIPAdrs=aiCLCCTRtrIPAdrs, aiCLCApplicString=aiCLCApplicString, aiCLCAIDManufDate=aiCLCAIDManufDate, aiCLCAI2524LinkTable=aiCLCAI2524LinkTable, aiCLCEIADtrDisc=aiCLCEIADtrDisc, aiCLCDLMsgAll=aiCLCDLMsgAll, aiCLCMinorAlmMin=aiCLCMinorAlmMin, aiCLCDLWinOut=aiCLCDLWinOut, aiCLCLastTrapMsgNum=aiCLCLastTrapMsgNum, aiCLCDestName=aiCLCDestName, aiCLCRadiusSecret2=aiCLCRadiusSecret2, aiCLCPortDestMenu=aiCLCPortDestMenu, aiCLCBox8DensAdmin=aiCLCBox8DensAdmin, aiCLCDestPswd=aiCLCDestPswd, aiCLCFreeBuffers=aiCLCFreeBuffers, aiCLCPortTableEntry=aiCLCPortTableEntry, aiCLCRouterIPAdrs=aiCLCRouterIPAdrs, aiCLCDestTableEntry=aiCLCDestTableEntry, aiCLCDestTmrType=aiCLCDestTmrType, aiCLCCaamlRoute=aiCLCCaamlRoute, aiCLCCraftLogEcho=aiCLCCraftLogEcho, aiCLCDLWinVerbose=aiCLCDLWinVerbose, aiCLCWriteCommunity=aiCLCWriteCommunity, aiCLCDaylightSavings=aiCLCDaylightSavings, aiCLCCTRdCommStr=aiCLCCTRdCommStr, aiCLCDestDisc=aiCLCDestDisc, aiCLCPortDesc=aiCLCPortDesc, aiCLCFtpCtrlPort=aiCLCFtpCtrlPort, aiCLCAlmLogPort=aiCLCAlmLogPort, aiCLCTimeDate=aiCLCTimeDate, aiCLCCTLastSequenceNumber=aiCLCCTLastSequenceNumber, aiCLCAIDProduct=aiCLCAIDProduct, aiCLCCTIPRange=aiCLCCTIPRange, aiCLCCTTelnetPort=aiCLCCTTelnetPort, aiCLCRstTimeDate=aiCLCRstTimeDate, aiCLCConnectionsPlaced=aiCLCConnectionsPlaced, aiCLCSNTPPrimaryServer=aiCLCSNTPPrimaryServer, aiCLCEIARtsToggle=aiCLCEIARtsToggle, aiCLCPortDedicated=aiCLCPortDedicated, aiCLCBox5DensAdmin=aiCLCBox5DensAdmin, aiCLCDestNumUsed=aiCLCDestNumUsed, aiCLCMinorAlmMax=aiCLCMinorAlmMax, aiCLCCallData=aiCLCCallData, aiCLCDestMenuMsg=aiCLCDestMenuMsg, aiCLCPortState=aiCLCPortState, aiCLCCopyFlashToSLC=aiCLCCopyFlashToSLC, aiCLCCalledProtoStr=aiCLCCalledProtoStr, aiCLCEEPromFaults=aiCLCEEPromFaults, aiCLCCTHighPort=aiCLCCTHighPort, aiCLCDLWinUni=aiCLCDLWinUni, aiCLCBox4DensAdmin=aiCLCBox4DensAdmin, aiCLCAI2524LinkTableEntry=aiCLCAI2524LinkTableEntry, aiCLCDestTable=aiCLCDestTable, aiCLCAsyncTableEntry=aiCLCAsyncTableEntry, aiCLCNumEventsSinceLastTrap=aiCLCNumEventsSinceLastTrap, aiCLCDestIsSwitch=aiCLCDestIsSwitch, aiCLCSwitchRestart=aiCLCSwitchRestart, aiCLCLinkNum=aiCLCLinkNum, aiCLCBackupCLCHealth=aiCLCBackupCLCHealth, aiCLCCTSlotExp=aiCLCCTSlotExp, aiCLCTacacsAddr2=aiCLCTacacsAddr2, ai198Ver10=ai198Ver10, aiCLCInitStrings=aiCLCInitStrings, aiCLCTrapInterval=aiCLCTrapInterval, aiCLCDestConnMsg=aiCLCDestConnMsg, aiCLCAliasTable=aiCLCAliasTable, aiCLCTxTail=aiCLCTxTail, aiCLCDestQPswd=aiCLCDestQPswd, aiCLCBackupCLC=aiCLCBackupCLC, aiCLCDestNumFree=aiCLCDestNumFree, aiCLCTelnetServerPort=aiCLCTelnetServerPort, aiCLCRadiusPort1=aiCLCRadiusPort1, aiCLCPortNumber=aiCLCPortNumber, aiSystemOID=aiSystemOID, aiCLCDestMenu=aiCLCDestMenu, aiCLCAsyncifIndex=aiCLCAsyncifIndex, aiCLCTrapTable=aiCLCTrapTable, aiCLCAlarmLvl=aiCLCAlarmLvl, aiCLCDestState=aiCLCDestState, aiCLCAsyncTrap=aiCLCAsyncTrap, aiCLCTimeZone=aiCLCTimeZone, aiCLCBufAlign=aiCLCBufAlign, aiCLCAI2524LinkStatus=aiCLCAI2524LinkStatus, aiCLCCTAutoIdIndex=aiCLCCTAutoIdIndex, aiCLCNumPorts=aiCLCNumPorts, aiCLCCTCardSnmpState=aiCLCCTCardSnmpState)
(integer, octet_string, object_identifier) = mibBuilder.importSymbols('ASN1', 'Integer', 'OctetString', 'ObjectIdentifier') (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') (module_compliance, notification_group) = mibBuilder.importSymbols('SNMPv2-CONF', 'ModuleCompliance', 'NotificationGroup') (module_identity, mib_identifier, object_identity, time_ticks, unsigned32, ip_address, counter64, notification_type, gauge32, mib_scalar, mib_table, mib_table_row, mib_table_column, counter32, integer32, iso, enterprises, bits) = mibBuilder.importSymbols('SNMPv2-SMI', 'ModuleIdentity', 'MibIdentifier', 'ObjectIdentity', 'TimeTicks', 'Unsigned32', 'IpAddress', 'Counter64', 'NotificationType', 'Gauge32', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn', 'Counter32', 'Integer32', 'iso', 'enterprises', 'Bits') (date_and_time, display_string, textual_convention) = mibBuilder.importSymbols('SNMPv2-TC', 'DateAndTime', 'DisplayString', 'TextualConvention') aii = mib_identifier((1, 3, 6, 1, 4, 1, 539)) ai_system_oid = mib_identifier((1, 3, 6, 1, 4, 1, 539, 2)) ai_clc = module_identity((1, 3, 6, 1, 4, 1, 539, 9)) if mibBuilder.loadTexts: aiCLC.setLastUpdated('9505081700Z') if mibBuilder.loadTexts: aiCLC.setOrganization('Applied Innovation Incorporated') if mibBuilder.loadTexts: aiCLC.setContactInfo(' Engineering MIB Administrator Postal: Applied Innovation Inc. 5800 Innovation Drive Dublin, OH 43016 Tel: 614/798-2000 Fax: 614/798-1770 E-mail: snmp@aiinet.com') if mibBuilder.loadTexts: aiCLC.setDescription('The MIB Module for Series 1 Common Logic Controllers (CLC)') ai_clc_system = mib_identifier((1, 3, 6, 1, 4, 1, 539, 9, 1)) ai198 = mib_identifier((1, 3, 6, 1, 4, 1, 539, 2, 198)) ai198_ver1 = mib_identifier((1, 3, 6, 1, 4, 1, 539, 2, 198, 1)) ai198_ver10 = mib_identifier((1, 3, 6, 1, 4, 1, 539, 2, 198, 1, 0)) ai198_ver102 = mib_identifier((1, 3, 6, 1, 4, 1, 539, 2, 198, 1, 0, 2)) ai198_ver103 = mib_identifier((1, 3, 6, 1, 4, 1, 539, 2, 198, 1, 0, 3)) ai198_ver104 = mib_identifier((1, 3, 6, 1, 4, 1, 539, 2, 198, 1, 0, 4)) ai198_ver12 = mib_identifier((1, 3, 6, 1, 4, 1, 539, 2, 198, 1, 2)) ai198_ver120 = mib_identifier((1, 3, 6, 1, 4, 1, 539, 2, 198, 1, 2, 0)) ai198_ver13 = mib_identifier((1, 3, 6, 1, 4, 1, 539, 2, 198, 1, 3)) ai198_ver130 = mib_identifier((1, 3, 6, 1, 4, 1, 539, 2, 198, 1, 3, 0)) ai_clc_box1_dens_admin = mib_scalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 4, 8, 16, 32))).clone(namedValues=named_values(('disabled', 1), ('four', 4), ('eight', 8), ('sixteen', 16), ('thirtytwo', 32))).clone(16)).setMaxAccess('readwrite') if mibBuilder.loadTexts: aiCLCBox1DensAdmin.setStatus('current') if mibBuilder.loadTexts: aiCLCBox1DensAdmin.setDescription('The administration value for the slot density for Chassis 1 of and AISwitch.') ai_clc_box2_dens_admin = mib_scalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 4, 8, 16, 32))).clone(namedValues=named_values(('disabled', 1), ('four', 4), ('eight', 8), ('sixteen', 16), ('thirtytwo', 32))).clone(16)).setMaxAccess('readwrite') if mibBuilder.loadTexts: aiCLCBox2DensAdmin.setStatus('current') if mibBuilder.loadTexts: aiCLCBox2DensAdmin.setDescription('The administration value for the slot density for Chassis 2 of and AISwitch.') ai_clc_box3_dens_admin = mib_scalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 4, 8, 16, 32))).clone(namedValues=named_values(('disabled', 1), ('four', 4), ('eight', 8), ('sixteen', 16), ('thirtytwo', 32))).clone(1)).setMaxAccess('readwrite') if mibBuilder.loadTexts: aiCLCBox3DensAdmin.setStatus('current') if mibBuilder.loadTexts: aiCLCBox3DensAdmin.setDescription('The administration value for the slot density for Chassis 3 of and AISwitch.') ai_clc_box4_dens_admin = mib_scalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 4, 8, 16, 32))).clone(namedValues=named_values(('disabled', 1), ('four', 4), ('eight', 8), ('sixteen', 16), ('thirtytwo', 32))).clone(1)).setMaxAccess('readwrite') if mibBuilder.loadTexts: aiCLCBox4DensAdmin.setStatus('current') if mibBuilder.loadTexts: aiCLCBox4DensAdmin.setDescription('The administration value for the slot density for Chassis 4 of and AISwitch.') ai_clc_box5_dens_admin = mib_scalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 4, 8, 16, 32))).clone(namedValues=named_values(('disabled', 1), ('four', 4), ('eight', 8), ('sixteen', 16), ('thirtytwo', 32))).clone(1)).setMaxAccess('readwrite') if mibBuilder.loadTexts: aiCLCBox5DensAdmin.setStatus('current') if mibBuilder.loadTexts: aiCLCBox5DensAdmin.setDescription('The administration value for the slot density for Chassis 5 of and AISwitch.') ai_clc_box6_dens_admin = mib_scalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 4, 8, 16, 32))).clone(namedValues=named_values(('disabled', 1), ('four', 4), ('eight', 8), ('sixteen', 16), ('thirtytwo', 32))).clone(1)).setMaxAccess('readwrite') if mibBuilder.loadTexts: aiCLCBox6DensAdmin.setStatus('current') if mibBuilder.loadTexts: aiCLCBox6DensAdmin.setDescription('The administration value for the slot density for Chassis 6 of and AISwitch.') ai_clc_box7_dens_admin = mib_scalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 4, 8, 16, 32))).clone(namedValues=named_values(('disabled', 1), ('four', 4), ('eight', 8), ('sixteen', 16), ('thirtytwo', 32))).clone(1)).setMaxAccess('readwrite') if mibBuilder.loadTexts: aiCLCBox7DensAdmin.setStatus('current') if mibBuilder.loadTexts: aiCLCBox7DensAdmin.setDescription('The administration value for the slot density for Chassis 7 of and AISwitch.') ai_clc_box8_dens_admin = mib_scalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 4, 8, 16, 32))).clone(namedValues=named_values(('disabled', 1), ('four', 4), ('eight', 8), ('sixteen', 16), ('thirtytwo', 32))).clone(1)).setMaxAccess('readwrite') if mibBuilder.loadTexts: aiCLCBox8DensAdmin.setStatus('current') if mibBuilder.loadTexts: aiCLCBox8DensAdmin.setDescription('The administration value for the slot density for Chassis 8 of and AISwitch.') ai_clc_node_name = mib_scalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 9), display_string().subtype(subtypeSpec=value_range_constraint(0, 29)).clone('NODE-XXX')).setMaxAccess('readwrite') if mibBuilder.loadTexts: aiCLCNodeName.setStatus('current') if mibBuilder.loadTexts: aiCLCNodeName.setDescription('This associates a name with an AI Switch. This string is part of the prompt for a user port.') ai_clc_log_port_enable = mib_scalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 10), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('on', 1), ('off', 2))).clone(1)).setMaxAccess('readwrite') if mibBuilder.loadTexts: aiCLCLogPortEnable.setStatus('current') if mibBuilder.loadTexts: aiCLCLogPortEnable.setDescription('Enable/Disable the display of Alarm and Activity Information.') ai_clc_alm_log_port = mib_scalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 11), integer32().subtype(subtypeSpec=value_range_constraint(0, 255))).setMaxAccess('readwrite') if mibBuilder.loadTexts: aiCLCAlmLogPort.setStatus('current') if mibBuilder.loadTexts: aiCLCAlmLogPort.setDescription('The Alarm and Activity Log Port Number.') ai_clc_act_log_lvl = mib_scalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 12), integer32().subtype(subtypeSpec=value_range_constraint(0, 9)).clone(1)).setMaxAccess('readwrite') if mibBuilder.loadTexts: aiCLCActLogLvl.setStatus('current') if mibBuilder.loadTexts: aiCLCActLogLvl.setDescription('The alarm level which when met or exceeded will cause messages to be printed on the log port.') ai_clc_minor_alm_min = mib_scalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 13), integer32().subtype(subtypeSpec=value_range_constraint(0, 9)).clone(2)).setMaxAccess('readwrite') if mibBuilder.loadTexts: aiCLCMinorAlmMin.setStatus('current') if mibBuilder.loadTexts: aiCLCMinorAlmMin.setDescription('The alarm level which when met or exceeded will cause a minor alarm to be reported.') ai_clc_minor_alm_max = mib_scalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 14), integer32().subtype(subtypeSpec=value_range_constraint(0, 9)).clone(4)).setMaxAccess('readwrite') if mibBuilder.loadTexts: aiCLCMinorAlmMax.setStatus('current') if mibBuilder.loadTexts: aiCLCMinorAlmMax.setDescription('The alarm level which when exceeded will not cause a minor alarm to be reported.') ai_clc_major_alm_min = mib_scalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 15), integer32().subtype(subtypeSpec=value_range_constraint(0, 9)).clone(5)).setMaxAccess('readwrite') if mibBuilder.loadTexts: aiCLCMajorAlmMin.setStatus('current') if mibBuilder.loadTexts: aiCLCMajorAlmMin.setDescription('The alarm level which when met or exceeded will cause a major alarm to be reported.') ai_clc_major_alm_max = mib_scalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 16), integer32().subtype(subtypeSpec=value_range_constraint(0, 9)).clone(9)).setMaxAccess('readwrite') if mibBuilder.loadTexts: aiCLCMajorAlmMax.setStatus('current') if mibBuilder.loadTexts: aiCLCMajorAlmMax.setDescription('The alarm level which when exceeded will not cause a major alarm to be reported.') ai_clc_craft_log_echo = mib_scalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 17), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('on', 1), ('off', 2))).clone(1)).setMaxAccess('readwrite') if mibBuilder.loadTexts: aiCLCCraftLogEcho.setStatus('current') if mibBuilder.loadTexts: aiCLCCraftLogEcho.setDescription('Echo Alarm and Activity information on the craft port.') ai_clc_caaml_route = mib_scalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 18), display_string().subtype(subtypeSpec=value_range_constraint(0, 200))).setMaxAccess('readwrite') if mibBuilder.loadTexts: aiCLCCaamlRoute.setStatus('current') if mibBuilder.loadTexts: aiCLCCaamlRoute.setDescription('Name of the destination used for the CAAML Log.') ai_clc_caaml_idle_tmr = mib_scalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 19), integer32().subtype(subtypeSpec=value_range_constraint(0, 255)).clone(10)).setMaxAccess('readwrite') if mibBuilder.loadTexts: aiCLCCaamlIdleTmr.setStatus('current') if mibBuilder.loadTexts: aiCLCCaamlIdleTmr.setDescription('The number of seconds that must pass without any messages being printed on CAAML, before the CAAML connection is torn down.') ai_clc_caaml_retry_tmr = mib_scalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 20), integer32().subtype(subtypeSpec=value_range_constraint(0, 255)).clone(10)).setMaxAccess('readwrite') if mibBuilder.loadTexts: aiCLCCaamlRetryTmr.setStatus('current') if mibBuilder.loadTexts: aiCLCCaamlRetryTmr.setDescription('The number of seconds that must pass after an unsuccessful attempt at bringing the CAAML connection up before a retry will occur.') ai_clc_conn_info = mib_scalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 21), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('on', 1), ('off', 2))).clone(1)).setMaxAccess('readwrite') if mibBuilder.loadTexts: aiCLCConnInfo.setStatus('current') if mibBuilder.loadTexts: aiCLCConnInfo.setDescription('Print connection information on user terminals.') ai_clc_long_brk_len = mib_scalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 22), integer32().subtype(subtypeSpec=value_range_constraint(1875, 50000)).clone(1875)).setMaxAccess('readwrite') if mibBuilder.loadTexts: aiCLCLongBrkLen.setStatus('current') if mibBuilder.loadTexts: aiCLCLongBrkLen.setDescription('Long Break length in milliseconds rounded to the nearest 1/64th second.') ai_clc_dest_menu = mib_scalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 23), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('on', 1), ('off', 2))).clone(1)).setMaxAccess('readwrite') if mibBuilder.loadTexts: aiCLCDestMenu.setStatus('current') if mibBuilder.loadTexts: aiCLCDestMenu.setDescription('Print Destination Menu on user terminals.') ai_clc_down_spd = mib_scalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 24), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('on', 1), ('off', 2))).clone(1)).setMaxAccess('readwrite') if mibBuilder.loadTexts: aiCLCDownSpd.setStatus('current') if mibBuilder.loadTexts: aiCLCDownSpd.setDescription('Allow ports of different speeds to be connected.') ai_clc_fault_switch = mib_scalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 25), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('on', 1), ('off', 2))).clone(1)).setMaxAccess('readwrite') if mibBuilder.loadTexts: aiCLCFaultSwitch.setStatus('current') if mibBuilder.loadTexts: aiCLCFaultSwitch.setDescription('In dual CLC systems, a fault on the active CLC will cause automatic switchover from the faulted CLC to the backup CLC.') ai_clc_dest_menu_fmt = mib_scalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 26), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 4))).clone(namedValues=named_values(('oneCol', 1), ('fourCol', 4))).clone(1)).setMaxAccess('readwrite') if mibBuilder.loadTexts: aiCLCDestMenuFmt.setStatus('current') if mibBuilder.loadTexts: aiCLCDestMenuFmt.setDescription('The number of columns used to print the destination menu.') ai_clc_auto_clc_update = mib_scalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 27), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('on', 1), ('off', 2))).clone(2)).setMaxAccess('readwrite') if mibBuilder.loadTexts: aiCLCAutoCLCUpdate.setStatus('current') if mibBuilder.loadTexts: aiCLCAutoCLCUpdate.setDescription("Automatic configuration of the backup CLC when the active CLC's configuration changes.") ai_clc_alarm_lvl = mib_scalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 28), integer32().subtype(subtypeSpec=value_range_constraint(0, 9))).setMaxAccess('readwrite') if mibBuilder.loadTexts: aiCLCAlarmLvl.setStatus('current') if mibBuilder.loadTexts: aiCLCAlarmLvl.setDescription('Current Alarm Level. A write clears the alarms. A read returns the current alarm level.') ai_clc_time_date = mib_scalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 29), date_and_time()).setMaxAccess('readwrite') if mibBuilder.loadTexts: aiCLCTimeDate.setStatus('current') if mibBuilder.loadTexts: aiCLCTimeDate.setDescription('This is the Current Time and Date. The DateAndTime type is a structured OCTET STRING, defined in v2-tc.my (SNMPv2 Textual Conventions).') ai_clc_rst_time_date = mib_scalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 30), date_and_time()).setMaxAccess('readonly') if mibBuilder.loadTexts: aiCLCRstTimeDate.setStatus('current') if mibBuilder.loadTexts: aiCLCRstTimeDate.setDescription('This is the Time and Date of Last Reset. The DateAndTime type is a structured OCTET STRING, defined in v2-tc.my (SNMPv2 Textual Conventions).') ai_clc_hold_conn = mib_scalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 31), integer32().subtype(subtypeSpec=value_range_constraint(0, 65536))).setMaxAccess('readonly') if mibBuilder.loadTexts: aiCLCHoldConn.setStatus('current') if mibBuilder.loadTexts: aiCLCHoldConn.setDescription('Number of connections placed on hold ') ai_clc_num_ports = mib_scalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 32), integer32().subtype(subtypeSpec=value_range_constraint(0, 256))).setMaxAccess('readonly') if mibBuilder.loadTexts: aiCLCNumPorts.setStatus('current') if mibBuilder.loadTexts: aiCLCNumPorts.setDescription('Number of ports detected ') ai_clc_queued_ports = mib_scalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 33), integer32().subtype(subtypeSpec=value_range_constraint(0, 255))).setMaxAccess('readonly') if mibBuilder.loadTexts: aiCLCQueuedPorts.setStatus('current') if mibBuilder.loadTexts: aiCLCQueuedPorts.setDescription('Number of ports in wait queue ') ai_clcee_prom_faults = mib_scalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 34), integer32().subtype(subtypeSpec=value_range_constraint(0, 65536))).setMaxAccess('readonly') if mibBuilder.loadTexts: aiCLCEEPromFaults.setStatus('current') if mibBuilder.loadTexts: aiCLCEEPromFaults.setDescription('Number of EEProm failures') ai_clc_free_ee = mib_scalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 35), integer32().subtype(subtypeSpec=value_range_constraint(0, 1048576))).setMaxAccess('readonly') if mibBuilder.loadTexts: aiCLCFreeEE.setStatus('current') if mibBuilder.loadTexts: aiCLCFreeEE.setDescription('Number of free EEProm bytes ') ai_clc_buffers = mib_scalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 36), integer32().subtype(subtypeSpec=value_range_constraint(0, 65536))).setMaxAccess('readonly') if mibBuilder.loadTexts: aiCLCBuffers.setStatus('current') if mibBuilder.loadTexts: aiCLCBuffers.setDescription('Number of buffers created ') ai_clc_free_buffers = mib_scalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 37), integer32().subtype(subtypeSpec=value_range_constraint(0, 65536))).setMaxAccess('readonly') if mibBuilder.loadTexts: aiCLCFreeBuffers.setStatus('current') if mibBuilder.loadTexts: aiCLCFreeBuffers.setDescription('Number of free buffers ') ai_clc_buf_alloc_err = mib_scalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 38), integer32().subtype(subtypeSpec=value_range_constraint(0, 65536))).setMaxAccess('readonly') if mibBuilder.loadTexts: aiCLCBufAllocErr.setStatus('current') if mibBuilder.loadTexts: aiCLCBufAllocErr.setDescription('Number of buffer allocation errors ') ai_clc_buf_align = mib_scalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 39), integer32().subtype(subtypeSpec=value_range_constraint(0, 65536))).setMaxAccess('readonly') if mibBuilder.loadTexts: aiCLCBufAlign.setStatus('current') if mibBuilder.loadTexts: aiCLCBufAlign.setDescription('Number of buffer re-alignments ') ai_clc_cpu_xacts = mib_scalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 40), integer32().subtype(subtypeSpec=value_range_constraint(0, 65536))).setMaxAccess('readonly') if mibBuilder.loadTexts: aiCLCCpuXacts.setStatus('current') if mibBuilder.loadTexts: aiCLCCpuXacts.setDescription('Number of inter-cpu transactions') ai_clcslc_xacts = mib_scalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 41), integer32().subtype(subtypeSpec=value_range_constraint(0, 65536))).setMaxAccess('readonly') if mibBuilder.loadTexts: aiCLCSLCXacts.setStatus('current') if mibBuilder.loadTexts: aiCLCSLCXacts.setDescription('Number of SLC Window transactions ') ai_clc_connections_placed = mib_scalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 42), integer32().subtype(subtypeSpec=value_range_constraint(0, 65536))).setMaxAccess('readonly') if mibBuilder.loadTexts: aiCLCConnectionsPlaced.setStatus('current') if mibBuilder.loadTexts: aiCLCConnectionsPlaced.setDescription('Number of connections placed') ai_clc_tx_tail = mib_scalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 43), integer32().subtype(subtypeSpec=value_range_constraint(0, 65536))).setMaxAccess('readonly') if mibBuilder.loadTexts: aiCLCTxTail.setStatus('current') if mibBuilder.loadTexts: aiCLCTxTail.setDescription('Number of TXTail misses ') ai_clceecrc = mib_scalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 44), integer32().subtype(subtypeSpec=value_range_constraint(0, 4294967295))).setMaxAccess('readonly') if mibBuilder.loadTexts: aiCLCEECRC.setStatus('current') if mibBuilder.loadTexts: aiCLCEECRC.setDescription('Configuration EEPROM CRC.') ai_clc_version = mib_scalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 45), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: aiCLCVersion.setStatus('current') if mibBuilder.loadTexts: aiCLCVersion.setDescription('Software version, time, and date of currently executing software') ai_clc_backup_clc = mib_scalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 46), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('present', 1), ('notPresent', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: aiCLCBackupCLC.setStatus('current') if mibBuilder.loadTexts: aiCLCBackupCLC.setDescription('Status of the Backup CLC.') ai_clc_cpu = mib_scalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 47), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('slotA', 1), ('slotB', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: aiCLCCpu.setStatus('current') if mibBuilder.loadTexts: aiCLCCpu.setDescription('The location of the active CLC.') ai_clc_cpy_config = mib_scalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 48), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('none', 1), ('copy', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: aiCLCCpyConfig.setStatus('current') if mibBuilder.loadTexts: aiCLCCpyConfig.setDescription('Copy configuration from active CLC to backup CLC. A write of copy(2) causes the transfer to begin. A read will return copy(2) if a transfer is in progress and a none(1) if idle. A write of none(1) is not permitted and is flagged as an error.') ai_clcdl_win_verbose = mib_scalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 49), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('on', 1), ('off', 2))).clone(2)).setMaxAccess('readwrite') if mibBuilder.loadTexts: aiCLCDLWinVerbose.setStatus('current') if mibBuilder.loadTexts: aiCLCDLWinVerbose.setDescription('Verbose report of Window Transactions.') ai_clcdl_win_in = mib_scalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 50), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('on', 1), ('off', 2))).clone(2)).setMaxAccess('readwrite') if mibBuilder.loadTexts: aiCLCDLWinIn.setStatus('current') if mibBuilder.loadTexts: aiCLCDLWinIn.setDescription('Verbose report of incoming Window Transactions.') ai_clcdl_win_out = mib_scalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 51), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('on', 1), ('off', 2))).clone(2)).setMaxAccess('readwrite') if mibBuilder.loadTexts: aiCLCDLWinOut.setStatus('current') if mibBuilder.loadTexts: aiCLCDLWinOut.setDescription('Verbose report of outgoing Window Transactions.') ai_clcdl_win_uni = mib_scalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 52), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('on', 1), ('off', 2))).clone(2)).setMaxAccess('readwrite') if mibBuilder.loadTexts: aiCLCDLWinUni.setStatus('current') if mibBuilder.loadTexts: aiCLCDLWinUni.setDescription('Verbose report of unified Window Transactions.') ai_clcdl_msg_all = mib_scalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 53), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('on', 1), ('off', 2))).clone(2)).setMaxAccess('readwrite') if mibBuilder.loadTexts: aiCLCDLMsgAll.setStatus('current') if mibBuilder.loadTexts: aiCLCDLMsgAll.setDescription('Verbose report of log messages.') ai_clcdl_no_body = mib_scalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 54), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('on', 1), ('off', 2))).clone(2)).setMaxAccess('readwrite') if mibBuilder.loadTexts: aiCLCDLNoBody.setStatus('current') if mibBuilder.loadTexts: aiCLCDLNoBody.setDescription('Report log messages headers only.') ai_clcdl_alias = mib_scalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 55), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('on', 1), ('off', 2))).clone(2)).setMaxAccess('readwrite') if mibBuilder.loadTexts: aiCLCDLAlias.setStatus('current') if mibBuilder.loadTexts: aiCLCDLAlias.setDescription('Verbose report of alias translations.') ai_clc_debug_val = mib_scalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 56), integer32().subtype(subtypeSpec=value_range_constraint(0, 143))).setMaxAccess('readwrite') if mibBuilder.loadTexts: aiCLCDebugVal.setStatus('current') if mibBuilder.loadTexts: aiCLCDebugVal.setDescription('Value of the debug variable representing all debug combinations.') ai_clc_switch_restart = mib_scalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 57), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5))).clone(namedValues=named_values(('restart', 1), ('restartCfg', 2), ('nextCLC', 3), ('reset', 4), ('resetSLC', 5)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: aiCLCSwitchRestart.setStatus('current') if mibBuilder.loadTexts: aiCLCSwitchRestart.setDescription('A write of this object causes the switch to be restarted in the designated mode. A read of this object always returns the value restart(1), which has no particular significance.') ai_clc_init_strings = mib_scalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 58), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('good', 1), ('bad', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: aiCLCInitStrings.setStatus('current') if mibBuilder.loadTexts: aiCLCInitStrings.setDescription('This object is used to test the condition of the strings on the CLC. A read of this object causes the test to be performed and then reports the outcome.') ai_clc_copy_flash = mib_scalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 59), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 8, 9))).clone(namedValues=named_values(('none', 1), ('apbs', 2), ('apas', 3), ('asbs', 4), ('asap', 5), ('bpas', 6), ('bpbs', 7), ('bsbp', 8), ('bsas', 9)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: aiCLCCopyFlash.setStatus('current') if mibBuilder.loadTexts: aiCLCCopyFlash.setDescription('Copy Flash from one bank to another. AP - Active Primary AS - Active Secondary BP - Backup Primary BS - Backup Secondary A read returns a value corresponding to the activity in progress. A write causes the requested transfer to begin. A write of none(1) is not permitted and is flagged as an error.') ai_clc_copy_flash_to_slc = mib_scalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 60), integer32().subtype(subtypeSpec=value_range_constraint(0, 256))).setMaxAccess('readwrite') if mibBuilder.loadTexts: aiCLCCopyFlashToSLC.setStatus('current') if mibBuilder.loadTexts: aiCLCCopyFlashToSLC.setDescription("This object is used to begin or obtain the status of the SLC Download process. Writing a SLC base port to this object will cause the SLC at that baseport to search for new firmware on the active or backup CLC. If a valid SLC image is located, then the SLC will download that code and begin to run. A read of this variable will return the value 1 if a SLC download is in process, or a 0 if there aren't downloads in progress.") ai_clc_read_community = mib_scalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 61), display_string().subtype(subtypeSpec=value_range_constraint(0, 32))).setMaxAccess('readwrite') if mibBuilder.loadTexts: aiCLCReadCommunity.setStatus('current') if mibBuilder.loadTexts: aiCLCReadCommunity.setDescription('The read community string for the CLC.') ai_clc_write_community = mib_scalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 62), display_string().subtype(subtypeSpec=value_range_constraint(1, 32))).setMaxAccess('readwrite') if mibBuilder.loadTexts: aiCLCWriteCommunity.setStatus('current') if mibBuilder.loadTexts: aiCLCWriteCommunity.setDescription('The write community string for the CLC.') ai_clcip_adrs = mib_scalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 63), ip_address()).setMaxAccess('readwrite') if mibBuilder.loadTexts: aiCLCIPAdrs.setStatus('current') if mibBuilder.loadTexts: aiCLCIPAdrs.setDescription('The IP address for the CLC.') ai_clc_router_ip_adrs = mib_scalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 64), ip_address()).setMaxAccess('readwrite') if mibBuilder.loadTexts: aiCLCRouterIPAdrs.setStatus('current') if mibBuilder.loadTexts: aiCLCRouterIPAdrs.setDescription('The router ip address for the CLC.') ai_clc_subnet_ip_adrs = mib_scalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 65), ip_address()).setMaxAccess('readwrite') if mibBuilder.loadTexts: aiCLCSubnetIPAdrs.setStatus('current') if mibBuilder.loadTexts: aiCLCSubnetIPAdrs.setDescription('The subnet mask for the CLC. ') ai_clc_trap_table = mib_table((1, 3, 6, 1, 4, 1, 539, 9, 1, 66)) if mibBuilder.loadTexts: aiCLCTrapTable.setStatus('current') if mibBuilder.loadTexts: aiCLCTrapTable.setDescription('A table of Trap destination IP addresses.') ai_clc_last_trap_msg_text = mib_scalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 67), display_string().subtype(subtypeSpec=value_size_constraint(0, 512))).setMaxAccess('readonly') if mibBuilder.loadTexts: aiCLCLastTrapMsgText.setStatus('current') if mibBuilder.loadTexts: aiCLCLastTrapMsgText.setDescription('This is the message text associated with the last generated trap.') ai_clc_last_trap_msg_num = mib_scalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 68), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readonly') if mibBuilder.loadTexts: aiCLCLastTrapMsgNum.setStatus('current') if mibBuilder.loadTexts: aiCLCLastTrapMsgNum.setDescription('This is the message number of the last generated trap log message.') ai_clc_crash_msg_text = mib_scalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 69), display_string().subtype(subtypeSpec=value_size_constraint(0, 1024))).setMaxAccess('readonly') if mibBuilder.loadTexts: aiCLCCrashMsgText.setStatus('current') if mibBuilder.loadTexts: aiCLCCrashMsgText.setDescription('This is a place holder. It is required to allow verification of OID of trap crash message object. A read of this object will return an empty string.') ai_clc_num_events_since_last_trap = mib_scalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 70), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readonly') if mibBuilder.loadTexts: aiCLCNumEventsSinceLastTrap.setStatus('current') if mibBuilder.loadTexts: aiCLCNumEventsSinceLastTrap.setDescription('This is the number of times an event that would generate a trap has occurred since the last time that trap was transmitted. The traps are not transmitted while the aiCLCTrapTimer is running. This number will accompany the next transmitted trap. This object is really a place holder. It is required to allow verification of the OID of this information in a trap (var-bind). A read of this object will result in an error from the snmp agent.') ai_clc_trap_timer = mib_scalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 71), integer32().subtype(subtypeSpec=value_range_constraint(5, 65535)).clone(300)).setMaxAccess('readwrite') if mibBuilder.loadTexts: aiCLCTrapTimer.setStatus('current') if mibBuilder.loadTexts: aiCLCTrapTimer.setDescription('After a trap is generated, a timer is started. If the event that generated the trap occurs while the timer is running, no trap will be generated for the event. The value of this object is the duration of the timer in SECONDS.') ai_clc_async_trap = mib_scalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 72), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2))).clone('disabled')).setMaxAccess('readwrite') if mibBuilder.loadTexts: aiCLCAsyncTrap.setStatus('current') if mibBuilder.loadTexts: aiCLCAsyncTrap.setDescription('When this object is enabled, link up/link down traps are sent to managers listed in the trap table. The traps are normally not used and must specifically be enabled by a manager.') ai_clc_telnet_server_port = mib_scalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 73), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535)).clone(23)).setMaxAccess('readwrite') if mibBuilder.loadTexts: aiCLCTelnetServerPort.setStatus('current') if mibBuilder.loadTexts: aiCLCTelnetServerPort.setDescription('The tcp port number used by the telnet server may be configured using the aiCLCTelnetServerPort object. By default this object uses the well known port number 23.') ai_clc_cold_start_trap_delay = mib_scalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 74), integer32().subtype(subtypeSpec=value_range_constraint(0, 600))).setMaxAccess('readwrite') if mibBuilder.loadTexts: aiCLCColdStartTrapDelay.setStatus('current') if mibBuilder.loadTexts: aiCLCColdStartTrapDelay.setDescription('The sending of the cold start trap may be delayed to allow system startup and link startup to occur. This will typically be done on systems using IP over X.25 links. This value is specified in seconds.') ai_clc_ftp_ctrl_port = mib_scalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 75), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535)).clone(21)).setMaxAccess('readwrite') if mibBuilder.loadTexts: aiCLCFtpCtrlPort.setStatus('current') if mibBuilder.loadTexts: aiCLCFtpCtrlPort.setDescription('The FTP Server control port number. New values for this object take affect after a reset. The FTP Server data port is automatically selected to be one less than the control port.') ai_clc_backup_clc_health = mib_scalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 76), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('present', 1), ('notPresent', 2), ('presentFaulted', 3)))).setMaxAccess('readonly') if mibBuilder.loadTexts: aiCLCBackupCLCHealth.setStatus('current') if mibBuilder.loadTexts: aiCLCBackupCLCHealth.setDescription('Health status of the Backup CLC.') ai_clc_banner = mib_scalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 77), display_string().subtype(subtypeSpec=value_range_constraint(0, 1170))).setMaxAccess('readwrite') if mibBuilder.loadTexts: aiCLCBanner.setStatus('current') if mibBuilder.loadTexts: aiCLCBanner.setDescription('The banner for the CLC. There is a maximum 15 lines with 76 characters allowed per line.') ai_clc_time_zone = mib_scalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 78), integer32().subtype(subtypeSpec=value_range_constraint(-720, 720))).setMaxAccess('readwrite') if mibBuilder.loadTexts: aiCLCTimeZone.setStatus('current') if mibBuilder.loadTexts: aiCLCTimeZone.setDescription('The time zone offset for the CLC in minutes.') ai_clc_daylight_savings = mib_scalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 79), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('on', 1), ('off', 2))).clone(1)).setMaxAccess('readwrite') if mibBuilder.loadTexts: aiCLCDaylightSavings.setStatus('current') if mibBuilder.loadTexts: aiCLCDaylightSavings.setDescription('Daylight Savings') ai_clcsntp = mib_scalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 80), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('on', 1), ('off', 2))).clone(1)).setMaxAccess('readwrite') if mibBuilder.loadTexts: aiCLCSNTP.setStatus('current') if mibBuilder.loadTexts: aiCLCSNTP.setDescription('SNTP') ai_clcsntp_primary_server = mib_scalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 81), ip_address()).setMaxAccess('readwrite') if mibBuilder.loadTexts: aiCLCSNTPPrimaryServer.setStatus('current') if mibBuilder.loadTexts: aiCLCSNTPPrimaryServer.setDescription('The IP address for the Primary SNTP Server.') ai_clcsntp_secondary_server = mib_scalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 82), ip_address()).setMaxAccess('readwrite') if mibBuilder.loadTexts: aiCLCSNTPSecondaryServer.setStatus('current') if mibBuilder.loadTexts: aiCLCSNTPSecondaryServer.setDescription('The IP address for the Secondary SNTP Server.') ai_clcsntp_poll_interval = mib_scalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 83), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: aiCLCSNTPPollInterval.setStatus('current') if mibBuilder.loadTexts: aiCLCSNTPPollInterval.setDescription('SNTP Poll Interval') ai_clc_radius_enabled = mib_scalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 84), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('disabled', 0), ('enabled', 1), ('localFallback', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: aiCLCRadiusEnabled.setStatus('current') if mibBuilder.loadTexts: aiCLCRadiusEnabled.setDescription('RADIUS enabled/disabled state.') ai_clc_radius_addr1 = mib_scalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 85), ip_address()).setMaxAccess('readwrite') if mibBuilder.loadTexts: aiCLCRadiusAddr1.setStatus('current') if mibBuilder.loadTexts: aiCLCRadiusAddr1.setDescription('The IP address for the Primary RADIUS Server.') ai_clc_radius_port1 = mib_scalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 86), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535)).clone(1812)).setMaxAccess('readwrite') if mibBuilder.loadTexts: aiCLCRadiusPort1.setStatus('current') if mibBuilder.loadTexts: aiCLCRadiusPort1.setDescription('The port number associated with the Primary RADIUS Server.') ai_clc_radius_secret1 = mib_scalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 87), display_string().subtype(subtypeSpec=value_size_constraint(0, 24)).clone('applied')).setMaxAccess('readwrite') if mibBuilder.loadTexts: aiCLCRadiusSecret1.setStatus('current') if mibBuilder.loadTexts: aiCLCRadiusSecret1.setDescription('The Secret for the Primary RADIUS Server.') ai_clc_radius_addr2 = mib_scalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 88), ip_address()).setMaxAccess('readwrite') if mibBuilder.loadTexts: aiCLCRadiusAddr2.setStatus('current') if mibBuilder.loadTexts: aiCLCRadiusAddr2.setDescription('The IP address for the Secondary RADIUS Server.') ai_clc_radius_port2 = mib_scalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 89), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535)).clone(1812)).setMaxAccess('readwrite') if mibBuilder.loadTexts: aiCLCRadiusPort2.setStatus('current') if mibBuilder.loadTexts: aiCLCRadiusPort2.setDescription('The port number associated with the Secondary RADIUS Server.') ai_clc_radius_secret2 = mib_scalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 90), display_string().subtype(subtypeSpec=value_size_constraint(0, 24)).clone('applied')).setMaxAccess('readwrite') if mibBuilder.loadTexts: aiCLCRadiusSecret2.setStatus('current') if mibBuilder.loadTexts: aiCLCRadiusSecret2.setDescription('The Secret for the Secondary RADIUS Server.') ai_clc_trap_interval = mib_scalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 91), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: aiCLCTrapInterval.setStatus('current') if mibBuilder.loadTexts: aiCLCTrapInterval.setDescription('The interval of the faulted primary CLC trap. If the primary CLC was faulted and the interval was set between 1 and 65535 minutes, the backup CLC will repeatedly send the faulted primary CLC trap. To disable this trap, set the interval to 0. If reset the interval to 0 after the primary CLC has been faulted, the backup CLC will stop sending the trap. New value for this object will take affect without rebooting the switch. This object has no effect on other traps.') ai_clc_tacacs_enabled = mib_scalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 92), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('disabled', 0), ('enabled', 1), ('localFallback', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: aiCLCTacacsEnabled.setStatus('current') if mibBuilder.loadTexts: aiCLCTacacsEnabled.setDescription('TACACS+ enabled/disabled state.') ai_clc_tacacs_addr1 = mib_scalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 93), ip_address()).setMaxAccess('readwrite') if mibBuilder.loadTexts: aiCLCTacacsAddr1.setStatus('current') if mibBuilder.loadTexts: aiCLCTacacsAddr1.setDescription('The IP address for the Primary TACACS Server.') ai_clc_tacacs_port1 = mib_scalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 94), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535)).clone(49)).setMaxAccess('readwrite') if mibBuilder.loadTexts: aiCLCTacacsPort1.setStatus('current') if mibBuilder.loadTexts: aiCLCTacacsPort1.setDescription('The port number associated with the Primary TACACS Server.') ai_clc_tacacs_secret1 = mib_scalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 95), display_string().subtype(subtypeSpec=value_size_constraint(0, 24)).clone('applied')).setMaxAccess('readwrite') if mibBuilder.loadTexts: aiCLCTacacsSecret1.setStatus('current') if mibBuilder.loadTexts: aiCLCTacacsSecret1.setDescription('The Secret for the Primary TACACS Server.') ai_clc_tacacs_addr2 = mib_scalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 96), ip_address()).setMaxAccess('readwrite') if mibBuilder.loadTexts: aiCLCTacacsAddr2.setStatus('current') if mibBuilder.loadTexts: aiCLCTacacsAddr2.setDescription('The IP address for the Secondary TACACS Server.') ai_clc_tacacs_port2 = mib_scalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 97), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535)).clone(49)).setMaxAccess('readwrite') if mibBuilder.loadTexts: aiCLCTacacsPort2.setStatus('current') if mibBuilder.loadTexts: aiCLCTacacsPort2.setDescription('The port number associated with the Secondary TACACS Server.') ai_clc_tacacs_secret2 = mib_scalar((1, 3, 6, 1, 4, 1, 539, 9, 1, 98), display_string().subtype(subtypeSpec=value_size_constraint(0, 24)).clone('applied')).setMaxAccess('readwrite') if mibBuilder.loadTexts: aiCLCTacacsSecret2.setStatus('current') if mibBuilder.loadTexts: aiCLCTacacsSecret2.setDescription('The Secret for the Secondary TACACS Server.') ai_clc_trap_table_entry = mib_table_row((1, 3, 6, 1, 4, 1, 539, 9, 1, 66, 1)).setIndexNames((0, 'AI198CLC-MIB', 'aiCLCTrapIPAdrs')) if mibBuilder.loadTexts: aiCLCTrapTableEntry.setStatus('current') if mibBuilder.loadTexts: aiCLCTrapTableEntry.setDescription('Information about a particular Trap destination.') ai_clc_trap_ip_adrs = mib_table_column((1, 3, 6, 1, 4, 1, 539, 9, 1, 66, 1, 1), ip_address()).setMaxAccess('readcreate') if mibBuilder.loadTexts: aiCLCTrapIPAdrs.setStatus('current') if mibBuilder.loadTexts: aiCLCTrapIPAdrs.setDescription('The IP Address of the destination to which SNMP Traps will be sent.') ai_clc_trap_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 539, 9, 1, 66, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6))).clone(namedValues=named_values(('active', 1), ('notInService', 2), ('notReady', 3), ('createAndGo', 4), ('createAndWait', 5), ('destroy', 6)))).setMaxAccess('readcreate') if mibBuilder.loadTexts: aiCLCTrapRowStatus.setStatus('current') if mibBuilder.loadTexts: aiCLCTrapRowStatus.setDescription('The aiCLC Trap Table entry row status.') ai_clc_card_table = mib_table((1, 3, 6, 1, 4, 1, 539, 9, 2)) if mibBuilder.loadTexts: aiCLCCardTable.setStatus('current') if mibBuilder.loadTexts: aiCLCCardTable.setDescription('A table of line cards contained in an AISwitch.') ai_clc_card_table_entry = mib_table_row((1, 3, 6, 1, 4, 1, 539, 9, 2, 1)).setIndexNames((0, 'AI198CLC-MIB', 'aiCLCCTIndex')) if mibBuilder.loadTexts: aiCLCCardTableEntry.setStatus('current') if mibBuilder.loadTexts: aiCLCCardTableEntry.setDescription('Information about a particular line card.') ai_clcct_index = mib_table_column((1, 3, 6, 1, 4, 1, 539, 9, 2, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 64))).setMaxAccess('readwrite') if mibBuilder.loadTexts: aiCLCCTIndex.setStatus('current') if mibBuilder.loadTexts: aiCLCCTIndex.setDescription('The card table index.') ai_clcct_admin_status = mib_table_column((1, 3, 6, 1, 4, 1, 539, 9, 2, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('up', 1), ('down', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: aiCLCCTAdminStatus.setStatus('current') if mibBuilder.loadTexts: aiCLCCTAdminStatus.setDescription('This represents the state of the card and may be used to change the state of the card. For DUMB cards if one port on the card is up, then the entire card is considered to be up. ') ai_clcct_base_port = mib_table_column((1, 3, 6, 1, 4, 1, 539, 9, 2, 1, 3), integer32().subtype(subtypeSpec=value_range_constraint(0, 255))).setMaxAccess('readwrite') if mibBuilder.loadTexts: aiCLCCTBasePort.setStatus('current') if mibBuilder.loadTexts: aiCLCCTBasePort.setDescription('The base port number for the line card.') ai_clcct_high_port = mib_table_column((1, 3, 6, 1, 4, 1, 539, 9, 2, 1, 4), integer32().subtype(subtypeSpec=value_range_constraint(0, 255))).setMaxAccess('readonly') if mibBuilder.loadTexts: aiCLCCTHighPort.setStatus('current') if mibBuilder.loadTexts: aiCLCCTHighPort.setDescription('The highest port number accessible by the line card.') ai_clcct_rd_comm_str = mib_table_column((1, 3, 6, 1, 4, 1, 539, 9, 2, 1, 5), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: aiCLCCTRdCommStr.setStatus('current') if mibBuilder.loadTexts: aiCLCCTRdCommStr.setDescription('The SNMP read community string by which this card is known.') ai_clcct_wr_comm_str = mib_table_column((1, 3, 6, 1, 4, 1, 539, 9, 2, 1, 6), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: aiCLCCTWrCommStr.setStatus('current') if mibBuilder.loadTexts: aiCLCCTWrCommStr.setDescription('The SNMP write community string by which this card is known.') ai_clcct_card_snmp_state = mib_table_column((1, 3, 6, 1, 4, 1, 539, 9, 2, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('nosnmp', 1), ('snmpProxy', 2), ('snmpDirect', 3)))).setMaxAccess('readonly') if mibBuilder.loadTexts: aiCLCCTCardSnmpState.setStatus('current') if mibBuilder.loadTexts: aiCLCCTCardSnmpState.setDescription("This field describes the capabilities of the card. A card may not be snmp capable and will have the value nosnmp(1). A card may be snmp capable but isn't present on the IP network. This card is may proxied for and will have the type snmpProxy(2). The last type of snmp capability is where are card is present on the IP network and can be managed directly. This card will have a type of snmpDirect(3). ") ai_clcct_card_type = mib_table_column((1, 3, 6, 1, 4, 1, 539, 9, 2, 1, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24))).clone(namedValues=named_values(('asynch', 1), ('aslc', 2), ('ethernet', 3), ('x25', 4), ('asp', 5), ('islc', 6), ('ai2524', 7), ('ai294', 8), ('ai196im', 9), ('x25m', 10), ('islc1', 11), ('ai296', 12), ('ai285', 13), ('ai232', 14), ('ai196ILEG', 15), ('aimod', 16), ('aiflx', 17), ('empty', 18), ('ai120', 19), ('aie1', 20), ('aitc', 21), ('aifocus', 22), ('wanE1', 23), ('wanT1', 24))).clone(1)).setMaxAccess('readwrite') if mibBuilder.loadTexts: aiCLCCTCardType.setStatus('current') if mibBuilder.loadTexts: aiCLCCTCardType.setDescription('The line card type.') ai_clcct_slot_exp = mib_table_column((1, 3, 6, 1, 4, 1, 539, 9, 2, 1, 9), integer32().subtype(subtypeSpec=value_range_constraint(0, 7))).setMaxAccess('readwrite') if mibBuilder.loadTexts: aiCLCCTSlotExp.setStatus('current') if mibBuilder.loadTexts: aiCLCCTSlotExp.setDescription('The number of slots the line card is to logically occupy.') ai_clcctip_adrs = mib_table_column((1, 3, 6, 1, 4, 1, 539, 9, 2, 1, 10), ip_address()).setMaxAccess('readwrite') if mibBuilder.loadTexts: aiCLCCTIPAdrs.setStatus('current') if mibBuilder.loadTexts: aiCLCCTIPAdrs.setDescription('The IP address associated with the line card.') ai_clcct_rtr_ip_adrs = mib_table_column((1, 3, 6, 1, 4, 1, 539, 9, 2, 1, 11), ip_address()).setMaxAccess('readwrite') if mibBuilder.loadTexts: aiCLCCTRtrIPAdrs.setStatus('current') if mibBuilder.loadTexts: aiCLCCTRtrIPAdrs.setDescription('The router ip address for this line card.') ai_clcct_subnet_mask = mib_table_column((1, 3, 6, 1, 4, 1, 539, 9, 2, 1, 12), ip_address()).setMaxAccess('readwrite') if mibBuilder.loadTexts: aiCLCCTSubnetMask.setStatus('current') if mibBuilder.loadTexts: aiCLCCTSubnetMask.setDescription('The subnet mask for this line card. ') ai_clcct_auto_id_index = mib_table_column((1, 3, 6, 1, 4, 1, 539, 9, 2, 1, 13), integer32().subtype(subtypeSpec=value_range_constraint(0, 128))).setMaxAccess('readonly') if mibBuilder.loadTexts: aiCLCCTAutoIdIndex.setStatus('current') if mibBuilder.loadTexts: aiCLCCTAutoIdIndex.setDescription('The index into the Auto Id table associated with this line card.') ai_clcct_sys_oid = mib_table_column((1, 3, 6, 1, 4, 1, 539, 9, 2, 1, 14), object_identifier()).setMaxAccess('readonly') if mibBuilder.loadTexts: aiCLCCTSysOID.setStatus('current') if mibBuilder.loadTexts: aiCLCCTSysOID.setDescription('The SNMP System OID associated with this line card.') ai_clcct_real_card_type = mib_table_column((1, 3, 6, 1, 4, 1, 539, 9, 2, 1, 15), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24))).clone(namedValues=named_values(('asynch', 1), ('aslc', 2), ('ethernet', 3), ('x25', 4), ('asp', 5), ('islc', 6), ('ai2524', 7), ('ai294', 8), ('ai196im', 9), ('x25m', 10), ('islc1', 11), ('ai296', 12), ('ai285', 13), ('ai232', 14), ('ai196ILEG', 15), ('aimod', 16), ('aiflx', 17), ('empty', 18), ('ai120', 19), ('aie1', 20), ('aitc', 21), ('aifocus', 22), ('wanE1', 23), ('wanT1', 24))).clone(1)).setMaxAccess('readonly') if mibBuilder.loadTexts: aiCLCCTRealCardType.setStatus('current') if mibBuilder.loadTexts: aiCLCCTRealCardType.setDescription('The real line card type.') ai_clcctip_range = mib_table_column((1, 3, 6, 1, 4, 1, 539, 9, 2, 1, 16), integer32().subtype(subtypeSpec=value_range_constraint(1, 255))).setMaxAccess('readwrite') if mibBuilder.loadTexts: aiCLCCTIPRange.setStatus('current') if mibBuilder.loadTexts: aiCLCCTIPRange.setDescription('The IP address range of this line card.') ai_clcct_telnet_port = mib_table_column((1, 3, 6, 1, 4, 1, 539, 9, 2, 1, 17), integer32().subtype(subtypeSpec=value_range_constraint(1, 65534))).setMaxAccess('readwrite') if mibBuilder.loadTexts: aiCLCCTTelnetPort.setStatus('current') if mibBuilder.loadTexts: aiCLCCTTelnetPort.setDescription('The telnet port of this line card.') ai_clcct_card_reset = mib_table_column((1, 3, 6, 1, 4, 1, 539, 9, 2, 1, 18), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('on', 1), ('off', 2), ('na', 3)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: aiCLCCTCardReset.setStatus('current') if mibBuilder.loadTexts: aiCLCCTCardReset.setDescription('Card is included when * is used with STPSLC, DISABL, or ENABL.') ai_clcct_last_sequence_number = mib_table_column((1, 3, 6, 1, 4, 1, 539, 9, 2, 1, 19), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: aiCLCCTLastSequenceNumber.setStatus('current') if mibBuilder.loadTexts: aiCLCCTLastSequenceNumber.setDescription('This is the sequence number of the last trap sent by this card. The sequence number starts at zero following a hardware reset or power-up. When the sequence number reaches 0xffffffff, it rolls over to 0 on the next trap.') ai_clcct_rtr2_ip_adrs = mib_table_column((1, 3, 6, 1, 4, 1, 539, 9, 2, 1, 20), ip_address()).setMaxAccess('readwrite') if mibBuilder.loadTexts: aiCLCCTRtr2IPAdrs.setStatus('current') if mibBuilder.loadTexts: aiCLCCTRtr2IPAdrs.setDescription('The secondary router ip address for this line card.') ai_clc_port_table = mib_table((1, 3, 6, 1, 4, 1, 539, 9, 3)) if mibBuilder.loadTexts: aiCLCPortTable.setStatus('current') if mibBuilder.loadTexts: aiCLCPortTable.setDescription('A table of port information.') ai_clc_port_table_entry = mib_table_row((1, 3, 6, 1, 4, 1, 539, 9, 3, 1)).setIndexNames((0, 'AI198CLC-MIB', 'aiCLCPortNumber')) if mibBuilder.loadTexts: aiCLCPortTableEntry.setStatus('current') if mibBuilder.loadTexts: aiCLCPortTableEntry.setDescription('Information unique to a particular port.') ai_clc_port_number = mib_table_column((1, 3, 6, 1, 4, 1, 539, 9, 3, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 255))).setMaxAccess('readonly') if mibBuilder.loadTexts: aiCLCPortNumber.setStatus('current') if mibBuilder.loadTexts: aiCLCPortNumber.setDescription('The AISwitch Port Number associated with the entry.') ai_clc_port_type = mib_table_column((1, 3, 6, 1, 4, 1, 539, 9, 3, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4))).clone(namedValues=named_values(('user', 1), ('destination', 2), ('actConn', 3), ('dedicated', 4))).clone(1)).setMaxAccess('readwrite') if mibBuilder.loadTexts: aiCLCPortType.setStatus('current') if mibBuilder.loadTexts: aiCLCPortType.setDescription('This is used to configure how the port is being used.') ai_clc_port_dedicated = mib_table_column((1, 3, 6, 1, 4, 1, 539, 9, 3, 1, 3), integer32().subtype(subtypeSpec=value_range_constraint(0, 255))).setMaxAccess('readwrite') if mibBuilder.loadTexts: aiCLCPortDedicated.setStatus('current') if mibBuilder.loadTexts: aiCLCPortDedicated.setDescription("The port number to which this port is dedicated when the type is 'dedicated'.") ai_clc_port_dest_name = mib_table_column((1, 3, 6, 1, 4, 1, 539, 9, 3, 1, 4), display_string().subtype(subtypeSpec=value_size_constraint(0, 8))).setMaxAccess('readwrite') if mibBuilder.loadTexts: aiCLCPortDestName.setStatus('current') if mibBuilder.loadTexts: aiCLCPortDestName.setDescription('The destination to which this port is assigned.') ai_clc_port_echo = mib_table_column((1, 3, 6, 1, 4, 1, 539, 9, 3, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('on', 1), ('off', 2))).clone(1)).setMaxAccess('readwrite') if mibBuilder.loadTexts: aiCLCPortEcho.setStatus('current') if mibBuilder.loadTexts: aiCLCPortEcho.setDescription('This determines whether echoing is on when the port is connected to the AISwitch.') ai_clc_port_dest_menu = mib_table_column((1, 3, 6, 1, 4, 1, 539, 9, 3, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('on', 1), ('off', 2))).clone(1)).setMaxAccess('readwrite') if mibBuilder.loadTexts: aiCLCPortDestMenu.setStatus('current') if mibBuilder.loadTexts: aiCLCPortDestMenu.setDescription("This determines whether the destination menu is displayed when the port type is 'user'.") ai_clc_port_queue = mib_table_column((1, 3, 6, 1, 4, 1, 539, 9, 3, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('on', 1), ('off', 2))).clone(2)).setMaxAccess('readwrite') if mibBuilder.loadTexts: aiCLCPortQueue.setStatus('current') if mibBuilder.loadTexts: aiCLCPortQueue.setDescription('This determines whether the port is allowed to be put on hold when the destination port is busy.') ai_clcslc_protocol_code = mib_table_column((1, 3, 6, 1, 4, 1, 539, 9, 3, 1, 8), integer32().subtype(subtypeSpec=value_range_constraint(0, 255))).setMaxAccess('readwrite') if mibBuilder.loadTexts: aiCLCSLCProtocolCode.setStatus('current') if mibBuilder.loadTexts: aiCLCSLCProtocolCode.setDescription('This is the slc protocol processing code.') ai_clc_port_state = mib_table_column((1, 3, 6, 1, 4, 1, 539, 9, 3, 1, 9), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: aiCLCPortState.setStatus('current') if mibBuilder.loadTexts: aiCLCPortState.setDescription('This is used to determine whether the port is enabled or disabled.') ai_clc_port_status = mib_table_column((1, 3, 6, 1, 4, 1, 539, 9, 3, 1, 10), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20))).clone(namedValues=named_values(('idle', 1), ('selcos', 2), ('pswd', 3), ('uname', 4), ('dna', 5), ('tcp', 6), ('queue', 7), ('holdq', 8), ('waitq', 9), ('ai', 10), ('conn', 11), ('preconn', 12), ('predisc', 13), ('hold', 14), ('netconn', 15), ('file', 16), ('inact', 17), ('swdwn', 18), ('telnetClient', 19), ('unknown', 20)))).setMaxAccess('readonly') if mibBuilder.loadTexts: aiCLCPortStatus.setStatus('current') if mibBuilder.loadTexts: aiCLCPortStatus.setDescription("This value is the port status which include the following values; idle(1), selecting class of service selcos(2), entering password pswd(3), entering username(4), entering destination network address dna(5), entering a TCP address tcp(6), answering 'wish to queue' queue(7), answering 'wish to hold' holdq(8), connected to switch ai(9), connected conn(10), in the process of connecting preconn(11), in the process of disconnecting predisc(12), hold(13), network connect pending netconn(14), performing a file transfer file(15), inactive inact(16), slc is receiving software download swdwn(17), port is using a telnet client telnetClient(18), unknown(20).") ai_clc_port_alm = mib_table_column((1, 3, 6, 1, 4, 1, 539, 9, 3, 1, 11), integer32().subtype(subtypeSpec=value_range_constraint(0, 9))).setMaxAccess('readonly') if mibBuilder.loadTexts: aiCLCPortAlm.setStatus('current') if mibBuilder.loadTexts: aiCLCPortAlm.setDescription('The current alarm value for the port.') ai_clc_port_desc = mib_table_column((1, 3, 6, 1, 4, 1, 539, 9, 3, 1, 12), display_string().subtype(subtypeSpec=value_size_constraint(0, 29))).setMaxAccess('readwrite') if mibBuilder.loadTexts: aiCLCPortDesc.setStatus('current') if mibBuilder.loadTexts: aiCLCPortDesc.setDescription('This is used to describe the port in textual form.') ai_clc_port_reset = mib_table_column((1, 3, 6, 1, 4, 1, 539, 9, 3, 1, 13), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('on', 1), ('off', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: aiCLCPortReset.setStatus('current') if mibBuilder.loadTexts: aiCLCPortReset.setDescription('Port is included when * is used with DISABL or ENABL.') ai_clc_alias_table = mib_table((1, 3, 6, 1, 4, 1, 539, 9, 4)) if mibBuilder.loadTexts: aiCLCAliasTable.setStatus('current') if mibBuilder.loadTexts: aiCLCAliasTable.setDescription('A table of call alias information.') ai_clc_alias_table_entry = mib_table_row((1, 3, 6, 1, 4, 1, 539, 9, 4, 1)).setIndexNames((1, 'AI198CLC-MIB', 'aiCLCAliasIndex')) if mibBuilder.loadTexts: aiCLCAliasTableEntry.setStatus('current') if mibBuilder.loadTexts: aiCLCAliasTableEntry.setDescription('Information unique to a particular alias.') ai_clc_alias_index = mib_table_column((1, 3, 6, 1, 4, 1, 539, 9, 4, 1, 1), display_string().subtype(subtypeSpec=value_size_constraint(1, 200))).setMaxAccess('readcreate') if mibBuilder.loadTexts: aiCLCAliasIndex.setStatus('current') if mibBuilder.loadTexts: aiCLCAliasIndex.setDescription('The alias name in the form of a DisplayString. This is the key field for the Alias Table.') ai_clc_alias_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 539, 9, 4, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6))).clone(namedValues=named_values(('active', 1), ('notInService', 2), ('notReady', 3), ('createAndGo', 4), ('createAndWait', 5), ('destroy', 6)))).setMaxAccess('readcreate') if mibBuilder.loadTexts: aiCLCAliasRowStatus.setStatus('current') if mibBuilder.loadTexts: aiCLCAliasRowStatus.setDescription('The Alias Table Entry row status.') ai_clc_xlat_type = mib_table_column((1, 3, 6, 1, 4, 1, 539, 9, 4, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4))).clone(namedValues=named_values(('simple', 1), ('muxconn', 2), ('muxxlat', 3), ('slcroute', 4))).clone(1)).setMaxAccess('readwrite') if mibBuilder.loadTexts: aiCLCXlatType.setStatus('current') if mibBuilder.loadTexts: aiCLCXlatType.setDescription('The type of alias translation to be performed.') ai_clc_alias_dest_name = mib_table_column((1, 3, 6, 1, 4, 1, 539, 9, 4, 1, 4), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: aiCLCAliasDestName.setStatus('current') if mibBuilder.loadTexts: aiCLCAliasDestName.setDescription('The destination to be used for the alias.') ai_clc_called_adrs = mib_table_column((1, 3, 6, 1, 4, 1, 539, 9, 4, 1, 5), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: aiCLCCalledAdrs.setStatus('current') if mibBuilder.loadTexts: aiCLCCalledAdrs.setDescription('The called address used in the macro.') ai_clc_alias_dest_menu = mib_table_column((1, 3, 6, 1, 4, 1, 539, 9, 4, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('on', 1), ('off', 2))).clone(1)).setMaxAccess('readwrite') if mibBuilder.loadTexts: aiCLCAliasDestMenu.setStatus('current') if mibBuilder.loadTexts: aiCLCAliasDestMenu.setDescription('This determines whether the alias appears on the destination menu.') ai_clc_link_num = mib_table_column((1, 3, 6, 1, 4, 1, 539, 9, 4, 1, 7), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: aiCLCLinkNum.setStatus('current') if mibBuilder.loadTexts: aiCLCLinkNum.setDescription('The link number or alias macro used for the link number.') ai_clc_caller_adrs = mib_table_column((1, 3, 6, 1, 4, 1, 539, 9, 4, 1, 8), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: aiCLCCallerAdrs.setStatus('current') if mibBuilder.loadTexts: aiCLCCallerAdrs.setDescription('The caller address used in the macro.') ai_clc_call_data = mib_table_column((1, 3, 6, 1, 4, 1, 539, 9, 4, 1, 9), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: aiCLCCallData.setStatus('current') if mibBuilder.loadTexts: aiCLCCallData.setDescription('The call data which may be a destination or an alias macro.') ai_clc_applic_string = mib_table_column((1, 3, 6, 1, 4, 1, 539, 9, 4, 1, 10), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: aiCLCApplicString.setStatus('current') if mibBuilder.loadTexts: aiCLCApplicString.setDescription('The application string which may be a string or an alias macro.') ai_clc_called_proto_str = mib_table_column((1, 3, 6, 1, 4, 1, 539, 9, 4, 1, 11), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: aiCLCCalledProtoStr.setStatus('current') if mibBuilder.loadTexts: aiCLCCalledProtoStr.setDescription('The string that may specify the called protocol for a call using the alias macro.') ai_clc_caller_proto_str = mib_table_column((1, 3, 6, 1, 4, 1, 539, 9, 4, 1, 12), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: aiCLCCallerProtoStr.setStatus('current') if mibBuilder.loadTexts: aiCLCCallerProtoStr.setDescription('The string that may specify the calling protocol for a call using the alias macro.') ai_clc_altern_route = mib_table_column((1, 3, 6, 1, 4, 1, 539, 9, 4, 1, 13), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: aiCLCAlternRoute.setStatus('current') if mibBuilder.loadTexts: aiCLCAlternRoute.setDescription('The string may specify a destination or an alias macro that is used as an alternate route.') ai_clc_alias_position = mib_table_column((1, 3, 6, 1, 4, 1, 539, 9, 4, 1, 14), display_string().subtype(subtypeSpec=value_size_constraint(1, 5)).clone(1)).setMaxAccess('readwrite') if mibBuilder.loadTexts: aiCLCAliasPosition.setStatus('current') if mibBuilder.loadTexts: aiCLCAliasPosition.setDescription("The position of the alias in the alias list. When 'set' a new or an existing alias, this value can be used as a flag to request a saving to the beginning (0) or to the end (99999) of the alias list. As default, the CLC always saves a new alias to the end and a modified alias to its old position.") ai_clc_dest_table = mib_table((1, 3, 6, 1, 4, 1, 539, 9, 5)) if mibBuilder.loadTexts: aiCLCDestTable.setStatus('current') if mibBuilder.loadTexts: aiCLCDestTable.setDescription('This table contains information pertaining to destinations and their attributes.') ai_clc_dest_table_entry = mib_table_row((1, 3, 6, 1, 4, 1, 539, 9, 5, 1)).setIndexNames((1, 'AI198CLC-MIB', 'aiCLCDestName')) if mibBuilder.loadTexts: aiCLCDestTableEntry.setStatus('current') if mibBuilder.loadTexts: aiCLCDestTableEntry.setDescription('This information pertains to one entry in the destination table.') ai_clc_dest_name = mib_table_column((1, 3, 6, 1, 4, 1, 539, 9, 5, 1, 1), display_string().subtype(subtypeSpec=value_size_constraint(1, 8))).setMaxAccess('readcreate') if mibBuilder.loadTexts: aiCLCDestName.setStatus('current') if mibBuilder.loadTexts: aiCLCDestName.setDescription('The name of the destination in the form of an OCTET STRING.') ai_clc_dest_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 539, 9, 5, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6))).clone(namedValues=named_values(('active', 1), ('notInService', 2), ('notReady', 3), ('createAndGo', 4), ('createAndWait', 5), ('destroy', 6)))).setMaxAccess('readcreate') if mibBuilder.loadTexts: aiCLCDestRowStatus.setStatus('current') if mibBuilder.loadTexts: aiCLCDestRowStatus.setDescription('The key field for the Destination table entry.') ai_clc_dest_call_init = mib_table_column((1, 3, 6, 1, 4, 1, 539, 9, 5, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('on', 1), ('off', 2))).clone(2)).setMaxAccess('readwrite') if mibBuilder.loadTexts: aiCLCDestCallInit.setStatus('current') if mibBuilder.loadTexts: aiCLCDestCallInit.setDescription('This is used to turn on or turn off call initiation on ports assigned to this destination.') ai_clc_dest_disc = mib_table_column((1, 3, 6, 1, 4, 1, 539, 9, 5, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('on', 1), ('off', 2))).clone(2)).setMaxAccess('readwrite') if mibBuilder.loadTexts: aiCLCDestDisc.setStatus('current') if mibBuilder.loadTexts: aiCLCDestDisc.setDescription("This is used to turn on or turn off the user's disconnect keys when connected to this destination.") ai_clc_dest_disp_menu = mib_table_column((1, 3, 6, 1, 4, 1, 539, 9, 5, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('on', 1), ('off', 2))).clone(1)).setMaxAccess('readwrite') if mibBuilder.loadTexts: aiCLCDestDispMenu.setStatus('current') if mibBuilder.loadTexts: aiCLCDestDispMenu.setDescription('This is used to turn on or turn off the display of the destination name on the destination menu.') ai_clc_dest_baud = mib_table_column((1, 3, 6, 1, 4, 1, 539, 9, 5, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('on', 1), ('off', 2))).clone(1)).setMaxAccess('readwrite') if mibBuilder.loadTexts: aiCLCDestBaud.setStatus('current') if mibBuilder.loadTexts: aiCLCDestBaud.setDescription('This is used to turn on or turn off whether the baud rate is checked before connecting to the destination.') ai_clc_dest_is_switch = mib_table_column((1, 3, 6, 1, 4, 1, 539, 9, 5, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('yes', 1), ('no', 2))).clone(2)).setMaxAccess('readwrite') if mibBuilder.loadTexts: aiCLCDestIsSwitch.setStatus('current') if mibBuilder.loadTexts: aiCLCDestIsSwitch.setDescription('This is used to indicate that the destination is another AI switch.') ai_clc_dest_tmr_type = mib_table_column((1, 3, 6, 1, 4, 1, 539, 9, 5, 1, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('actTmr', 1), ('sessTmr', 2))).clone(2)).setMaxAccess('readwrite') if mibBuilder.loadTexts: aiCLCDestTmrType.setStatus('current') if mibBuilder.loadTexts: aiCLCDestTmrType.setDescription('This is used to set the type of timer associated with the destination.') ai_clc_dest_tmr_val = mib_table_column((1, 3, 6, 1, 4, 1, 539, 9, 5, 1, 9), integer32().subtype(subtypeSpec=value_range_constraint(0, 4368000)).clone(1)).setMaxAccess('readwrite') if mibBuilder.loadTexts: aiCLCDestTmrVal.setStatus('current') if mibBuilder.loadTexts: aiCLCDestTmrVal.setDescription('This value is the timer duration in milliseconds ranging from 1mS to 4368000mS or about 72 hours.') ai_clc_dest_tmr_delay = mib_table_column((1, 3, 6, 1, 4, 1, 539, 9, 5, 1, 10), integer32().subtype(subtypeSpec=value_range_constraint(0, 4368000)).clone(1)).setMaxAccess('readwrite') if mibBuilder.loadTexts: aiCLCDestTmrDelay.setStatus('current') if mibBuilder.loadTexts: aiCLCDestTmrDelay.setDescription('This value is the delay in milliseconds before allowing further calls on the destination after a call terminates. The range is 1mS to 4368000mS or about 72 hours.') ai_clc_dest_pswd = mib_table_column((1, 3, 6, 1, 4, 1, 539, 9, 5, 1, 11), display_string().subtype(subtypeSpec=value_size_constraint(0, 8))).setMaxAccess('readwrite') if mibBuilder.loadTexts: aiCLCDestPswd.setStatus('current') if mibBuilder.loadTexts: aiCLCDestPswd.setDescription('This is password associated with the destination.') ai_clc_dest_q_pswd = mib_table_column((1, 3, 6, 1, 4, 1, 539, 9, 5, 1, 12), display_string().subtype(subtypeSpec=value_size_constraint(0, 8))).setMaxAccess('readwrite') if mibBuilder.loadTexts: aiCLCDestQPswd.setStatus('current') if mibBuilder.loadTexts: aiCLCDestQPswd.setDescription('This is password used to control access to the queue management functions associated with the destination.') ai_clc_dest_menu_msg = mib_table_column((1, 3, 6, 1, 4, 1, 539, 9, 5, 1, 13), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: aiCLCDestMenuMsg.setStatus('current') if mibBuilder.loadTexts: aiCLCDestMenuMsg.setDescription('This string is displayed next to the destination in the destination menu.') ai_clc_dest_conn_msg = mib_table_column((1, 3, 6, 1, 4, 1, 539, 9, 5, 1, 14), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: aiCLCDestConnMsg.setStatus('current') if mibBuilder.loadTexts: aiCLCDestConnMsg.setDescription('This string is forced out the destination port when a connection begins.') ai_clc_dest_disc_msg = mib_table_column((1, 3, 6, 1, 4, 1, 539, 9, 5, 1, 15), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: aiCLCDestDiscMsg.setStatus('current') if mibBuilder.loadTexts: aiCLCDestDiscMsg.setDescription('This string is forced out the destination port when a connection terminates.') ai_clc_dest_state = mib_table_column((1, 3, 6, 1, 4, 1, 539, 9, 5, 1, 16), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2))).clone(1)).setMaxAccess('readwrite') if mibBuilder.loadTexts: aiCLCDestState.setStatus('current') if mibBuilder.loadTexts: aiCLCDestState.setDescription('This is used to enable or disable the destination.') ai_clc_dest_num_ports = mib_table_column((1, 3, 6, 1, 4, 1, 539, 9, 5, 1, 17), integer32().subtype(subtypeSpec=value_range_constraint(0, 256))).setMaxAccess('readonly') if mibBuilder.loadTexts: aiCLCDestNumPorts.setStatus('current') if mibBuilder.loadTexts: aiCLCDestNumPorts.setDescription('This is used to determine the number of ports assigned to this destination.') ai_clc_dest_num_used = mib_table_column((1, 3, 6, 1, 4, 1, 539, 9, 5, 1, 18), integer32().subtype(subtypeSpec=value_range_constraint(0, 256))).setMaxAccess('readonly') if mibBuilder.loadTexts: aiCLCDestNumUsed.setStatus('current') if mibBuilder.loadTexts: aiCLCDestNumUsed.setDescription('This is used to determine the number of ports in use for this destination.') ai_clc_dest_num_free = mib_table_column((1, 3, 6, 1, 4, 1, 539, 9, 5, 1, 19), integer32().subtype(subtypeSpec=value_range_constraint(0, 256))).setMaxAccess('readonly') if mibBuilder.loadTexts: aiCLCDestNumFree.setStatus('current') if mibBuilder.loadTexts: aiCLCDestNumFree.setDescription('This is used to determine the number of ports that are free for this destination.') ai_clc_dest_q_high = mib_table_column((1, 3, 6, 1, 4, 1, 539, 9, 5, 1, 20), integer32().subtype(subtypeSpec=value_range_constraint(0, 65536))).setMaxAccess('readonly') if mibBuilder.loadTexts: aiCLCDestQHigh.setStatus('current') if mibBuilder.loadTexts: aiCLCDestQHigh.setDescription('This is used to determine the maximum number of ports that were queued to this destination.') ai_clc_dest_port_list = mib_table_column((1, 3, 6, 1, 4, 1, 539, 9, 5, 1, 21), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: aiCLCDestPortList.setStatus('current') if mibBuilder.loadTexts: aiCLCDestPortList.setDescription('This string contains a list of port numbers assigned to this destination.') ai_clc_dest_wait_for_port = mib_table_column((1, 3, 6, 1, 4, 1, 539, 9, 5, 1, 22), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('on', 1), ('off', 2))).clone(1)).setMaxAccess('readwrite') if mibBuilder.loadTexts: aiCLCDestWaitForPort.setStatus('current') if mibBuilder.loadTexts: aiCLCDestWaitForPort.setDescription('This is used to allow the user to wait for a port when all ports for the destination are busy.') ai_clc_async_table = mib_table((1, 3, 6, 1, 4, 1, 539, 9, 6)) if mibBuilder.loadTexts: aiCLCAsyncTable.setStatus('current') if mibBuilder.loadTexts: aiCLCAsyncTable.setDescription('The Async Table.') ai_clc_async_table_entry = mib_table_row((1, 3, 6, 1, 4, 1, 539, 9, 6, 1)).setIndexNames((0, 'AI198CLC-MIB', 'aiCLCAsyncifIndex')) if mibBuilder.loadTexts: aiCLCAsyncTableEntry.setStatus('current') if mibBuilder.loadTexts: aiCLCAsyncTableEntry.setDescription('An Async Table entry.') ai_clc_asyncif_index = mib_table_column((1, 3, 6, 1, 4, 1, 539, 9, 6, 1, 1), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: aiCLCAsyncifIndex.setStatus('current') if mibBuilder.loadTexts: aiCLCAsyncifIndex.setDescription('The ifIndex from the interfaces table.') ai_clc_async_port = mib_table_column((1, 3, 6, 1, 4, 1, 539, 9, 6, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 255))).setMaxAccess('readonly') if mibBuilder.loadTexts: aiCLCAsyncPort.setStatus('current') if mibBuilder.loadTexts: aiCLCAsyncPort.setDescription('The AISwitch port number.') ai_clc_async_admin_status = mib_table_column((1, 3, 6, 1, 4, 1, 539, 9, 6, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('up', 1), ('down', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: aiCLCAsyncAdminStatus.setStatus('current') if mibBuilder.loadTexts: aiCLCAsyncAdminStatus.setDescription('The key field for the Async table entry.') ai_clc_async_disc_type = mib_table_column((1, 3, 6, 1, 4, 1, 539, 9, 6, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('nobrkdisc', 1), ('brkdisc', 2), ('longbrkdisc', 3))).clone(2)).setMaxAccess('readwrite') if mibBuilder.loadTexts: aiCLCAsyncDiscType.setStatus('current') if mibBuilder.loadTexts: aiCLCAsyncDiscType.setDescription('The disconnect type for the async port.') ai_clceia_signals = mib_table_column((1, 3, 6, 1, 4, 1, 539, 9, 6, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6))).clone(namedValues=named_values(('eiaDisabled', 1), ('dsrRtsPass', 2), ('dsrOffDisc', 3), ('dsrOnOffDisc', 4), ('dcdOffDisc', 5), ('dcdOnOffDisc', 6))).clone(1)).setMaxAccess('readwrite') if mibBuilder.loadTexts: aiCLCEIASignals.setStatus('current') if mibBuilder.loadTexts: aiCLCEIASignals.setDescription('The EIA signals may be disabled (eiaDisabled(1)) or configured for pass through (dsrRtsPass(2)). Additionally the port can be configured to disconnect on loss of DSR (dsrOffDisc(3)), disconnect on change of state of DSR (dsrOnOffDisc(4)), disconnect on loss of DCD (dcdOffDisc(5)), or disconnect on change of state of DCD (dcdOnOffDisc(6)).') ai_clceia_rts_disc = mib_table_column((1, 3, 6, 1, 4, 1, 539, 9, 6, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('on', 1), ('off', 2))).clone(1)).setMaxAccess('readwrite') if mibBuilder.loadTexts: aiCLCEIARtsDisc.setStatus('current') if mibBuilder.loadTexts: aiCLCEIARtsDisc.setDescription('Upon disconnect RTS may be configured to be on(1), or off(2).') ai_clceia_dtr_disc = mib_table_column((1, 3, 6, 1, 4, 1, 539, 9, 6, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('on', 1), ('off', 2))).clone(1)).setMaxAccess('readwrite') if mibBuilder.loadTexts: aiCLCEIADtrDisc.setStatus('current') if mibBuilder.loadTexts: aiCLCEIADtrDisc.setDescription('Upon disconnect DTR may be configured to be on(1), or off(2).') ai_clceia_rts_conn = mib_table_column((1, 3, 6, 1, 4, 1, 539, 9, 6, 1, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('on', 1), ('off', 2))).clone(1)).setMaxAccess('readwrite') if mibBuilder.loadTexts: aiCLCEIARtsConn.setStatus('current') if mibBuilder.loadTexts: aiCLCEIARtsConn.setDescription('Upon connect RTS may be configured to be on(1), or off(2).') ai_clceia_dtr_conn = mib_table_column((1, 3, 6, 1, 4, 1, 539, 9, 6, 1, 9), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('on', 1), ('off', 2))).clone(1)).setMaxAccess('readwrite') if mibBuilder.loadTexts: aiCLCEIADtrConn.setStatus('current') if mibBuilder.loadTexts: aiCLCEIADtrConn.setDescription('Upon connect DTR may be configured to be on(1), or off(2).') ai_clceia_rts_toggle = mib_table_column((1, 3, 6, 1, 4, 1, 539, 9, 6, 1, 10), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('on', 1), ('off', 2))).clone(2)).setMaxAccess('readwrite') if mibBuilder.loadTexts: aiCLCEIARtsToggle.setStatus('current') if mibBuilder.loadTexts: aiCLCEIARtsToggle.setDescription('Upon disconnect RTS may be configured to toggle (on(1)) or not (off(2)).') ai_clceia_dtr_toggle = mib_table_column((1, 3, 6, 1, 4, 1, 539, 9, 6, 1, 11), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('on', 1), ('off', 2))).clone(2)).setMaxAccess('readwrite') if mibBuilder.loadTexts: aiCLCEIADtrToggle.setStatus('current') if mibBuilder.loadTexts: aiCLCEIADtrToggle.setDescription('Upon disconnect DTR may be configured to toggle (on(1)) or not (off(2)).') ai_clc_auto_id_table = mib_table((1, 3, 6, 1, 4, 1, 539, 9, 7)) if mibBuilder.loadTexts: aiCLCAutoIDTable.setStatus('current') if mibBuilder.loadTexts: aiCLCAutoIDTable.setDescription('A table of board identification information for an AISwitch.') ai_clc_auto_id_table_entry = mib_table_row((1, 3, 6, 1, 4, 1, 539, 9, 7, 1)).setIndexNames((0, 'AI198CLC-MIB', 'aiCLCAIDIndex')) if mibBuilder.loadTexts: aiCLCAutoIDTableEntry.setStatus('current') if mibBuilder.loadTexts: aiCLCAutoIDTableEntry.setDescription('Board Identification information for a particular card.') ai_clcaid_index = mib_table_column((1, 3, 6, 1, 4, 1, 539, 9, 7, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 64))).setMaxAccess('readonly') if mibBuilder.loadTexts: aiCLCAIDIndex.setStatus('current') if mibBuilder.loadTexts: aiCLCAIDIndex.setDescription('The Auto ID Table index.') ai_clcaid_port = mib_table_column((1, 3, 6, 1, 4, 1, 539, 9, 7, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 256))).setMaxAccess('readonly') if mibBuilder.loadTexts: aiCLCAIDPort.setStatus('current') if mibBuilder.loadTexts: aiCLCAIDPort.setDescription('The port number where the card resides. If the port number is not valid then 256 will be reported.') ai_clcaid_product = mib_table_column((1, 3, 6, 1, 4, 1, 539, 9, 7, 1, 3), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: aiCLCAIDProduct.setStatus('current') if mibBuilder.loadTexts: aiCLCAIDProduct.setDescription('The product name for the card.') ai_clcaid_serial_number = mib_table_column((1, 3, 6, 1, 4, 1, 539, 9, 7, 1, 4), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: aiCLCAIDSerialNumber.setStatus('current') if mibBuilder.loadTexts: aiCLCAIDSerialNumber.setDescription('The serial number for the card.') ai_clcaid_manuf_date = mib_table_column((1, 3, 6, 1, 4, 1, 539, 9, 7, 1, 5), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: aiCLCAIDManufDate.setStatus('current') if mibBuilder.loadTexts: aiCLCAIDManufDate.setDescription('The date of manufacture for the card.') ai_clcaidmac_adrs = mib_table_column((1, 3, 6, 1, 4, 1, 539, 9, 7, 1, 6), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: aiCLCAIDMACAdrs.setStatus('current') if mibBuilder.loadTexts: aiCLCAIDMACAdrs.setDescription('The MAC address for the card.') ai_clcai2524_link_table = mib_table((1, 3, 6, 1, 4, 1, 539, 9, 8)) if mibBuilder.loadTexts: aiCLCAI2524LinkTable.setStatus('current') if mibBuilder.loadTexts: aiCLCAI2524LinkTable.setDescription('A table of link status for AI2524 Router Cards.') ai_clcai2524_link_table_entry = mib_table_row((1, 3, 6, 1, 4, 1, 539, 9, 8, 1)).setIndexNames((0, 'AI198CLC-MIB', 'aiCLCAI2524Port')) if mibBuilder.loadTexts: aiCLCAI2524LinkTableEntry.setStatus('current') if mibBuilder.loadTexts: aiCLCAI2524LinkTableEntry.setDescription('Link information particular to AI2524 Router Cards.') ai_clcai2524_port = mib_table_column((1, 3, 6, 1, 4, 1, 539, 9, 8, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 255))).setMaxAccess('readonly') if mibBuilder.loadTexts: aiCLCAI2524Port.setStatus('current') if mibBuilder.loadTexts: aiCLCAI2524Port.setDescription('The port number for the AI2524 Router Card. ') ai_clcai2524_link_status = mib_table_column((1, 3, 6, 1, 4, 1, 539, 9, 8, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('up', 1), ('down', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: aiCLCAI2524LinkStatus.setStatus('current') if mibBuilder.loadTexts: aiCLCAI2524LinkStatus.setDescription('The 10BT link status for the AI2524 Router Card.') mibBuilder.exportSymbols('AI198CLC-MIB', aiCLCActLogLvl=aiCLCActLogLvl, aiCLCRadiusPort2=aiCLCRadiusPort2, aiCLCCTCardType=aiCLCCTCardType, aiCLCCpu=aiCLCCpu, aiCLCLastTrapMsgText=aiCLCLastTrapMsgText, ai198Ver103=ai198Ver103, aiCLCCTIPAdrs=aiCLCCTIPAdrs, aiCLCAliasPosition=aiCLCAliasPosition, aiCLCDestTmrVal=aiCLCDestTmrVal, aiCLCAsyncTable=aiCLCAsyncTable, aii=aii, aiCLCRadiusAddr1=aiCLCRadiusAddr1, aiCLCEIADtrConn=aiCLCEIADtrConn, ai198Ver102=ai198Ver102, aiCLCSystem=aiCLCSystem, aiCLCNodeName=aiCLCNodeName, aiCLCCopyFlash=aiCLCCopyFlash, aiCLCBox3DensAdmin=aiCLCBox3DensAdmin, aiCLCPortEcho=aiCLCPortEcho, aiCLCLongBrkLen=aiCLCLongBrkLen, aiCLCCpuXacts=aiCLCCpuXacts, aiCLCDebugVal=aiCLCDebugVal, aiCLCCrashMsgText=aiCLCCrashMsgText, aiCLCAI2524Port=aiCLCAI2524Port, aiCLCCTBasePort=aiCLCCTBasePort, aiCLCPortType=aiCLCPortType, aiCLCDestRowStatus=aiCLCDestRowStatus, aiCLCTacacsSecret2=aiCLCTacacsSecret2, aiCLCSNTPPollInterval=aiCLCSNTPPollInterval, aiCLCAsyncAdminStatus=aiCLCAsyncAdminStatus, aiCLCEIADtrToggle=aiCLCEIADtrToggle, aiCLCXlatType=aiCLCXlatType, aiCLCTacacsAddr1=aiCLCTacacsAddr1, aiCLC=aiCLC, aiCLCTrapTableEntry=aiCLCTrapTableEntry, aiCLCDLAlias=aiCLCDLAlias, aiCLCIPAdrs=aiCLCIPAdrs, aiCLCBox7DensAdmin=aiCLCBox7DensAdmin, aiCLCSNTP=aiCLCSNTP, aiCLCTrapIPAdrs=aiCLCTrapIPAdrs, aiCLCCalledAdrs=aiCLCCalledAdrs, ai198Ver130=ai198Ver130, aiCLCCpyConfig=aiCLCCpyConfig, aiCLCFreeEE=aiCLCFreeEE, aiCLCBufAllocErr=aiCLCBufAllocErr, aiCLCCTAdminStatus=aiCLCCTAdminStatus, aiCLCAliasDestMenu=aiCLCAliasDestMenu, aiCLCDestQHigh=aiCLCDestQHigh, ai198Ver104=ai198Ver104, aiCLCSLCXacts=aiCLCSLCXacts, aiCLCCardTableEntry=aiCLCCardTableEntry, aiCLCQueuedPorts=aiCLCQueuedPorts, aiCLCMajorAlmMax=aiCLCMajorAlmMax, aiCLCDestDispMenu=aiCLCDestDispMenu, aiCLCPortReset=aiCLCPortReset, aiCLCBox1DensAdmin=aiCLCBox1DensAdmin, aiCLCAutoCLCUpdate=aiCLCAutoCLCUpdate, aiCLCAsyncPort=aiCLCAsyncPort, aiCLCPortStatus=aiCLCPortStatus, aiCLCPortDestName=aiCLCPortDestName, aiCLCAliasIndex=aiCLCAliasIndex, aiCLCTrapTimer=aiCLCTrapTimer, PYSNMP_MODULE_ID=aiCLC, aiCLCAsyncDiscType=aiCLCAsyncDiscType, aiCLCRadiusAddr2=aiCLCRadiusAddr2, aiCLCCTSysOID=aiCLCCTSysOID, aiCLCColdStartTrapDelay=aiCLCColdStartTrapDelay, aiCLCDestWaitForPort=aiCLCDestWaitForPort, aiCLCBox6DensAdmin=aiCLCBox6DensAdmin, aiCLCAIDPort=aiCLCAIDPort, aiCLCAliasTableEntry=aiCLCAliasTableEntry, aiCLCTacacsEnabled=aiCLCTacacsEnabled, ai198Ver1=ai198Ver1, aiCLCPortQueue=aiCLCPortQueue, aiCLCAIDSerialNumber=aiCLCAIDSerialNumber, aiCLCTrapRowStatus=aiCLCTrapRowStatus, aiCLCPortAlm=aiCLCPortAlm, aiCLCAliasRowStatus=aiCLCAliasRowStatus, aiCLCAutoIDTableEntry=aiCLCAutoIDTableEntry, ai198Ver120=ai198Ver120, aiCLCCTIndex=aiCLCCTIndex, aiCLCRadiusSecret1=aiCLCRadiusSecret1, aiCLCVersion=aiCLCVersion, aiCLCCTRtr2IPAdrs=aiCLCCTRtr2IPAdrs, aiCLCCardTable=aiCLCCardTable, aiCLCEIARtsDisc=aiCLCEIARtsDisc, ai198Ver13=ai198Ver13, aiCLCDownSpd=aiCLCDownSpd, aiCLCSLCProtocolCode=aiCLCSLCProtocolCode, aiCLCCallerProtoStr=aiCLCCallerProtoStr, aiCLCCTSubnetMask=aiCLCCTSubnetMask, ai198Ver12=ai198Ver12, aiCLCSubnetIPAdrs=aiCLCSubnetIPAdrs, aiCLCFaultSwitch=aiCLCFaultSwitch, aiCLCTacacsSecret1=aiCLCTacacsSecret1, aiCLCConnInfo=aiCLCConnInfo, aiCLCTacacsPort2=aiCLCTacacsPort2, aiCLCSNTPSecondaryServer=aiCLCSNTPSecondaryServer, aiCLCAliasDestName=aiCLCAliasDestName, aiCLCAutoIDTable=aiCLCAutoIDTable, aiCLCMajorAlmMin=aiCLCMajorAlmMin, aiCLCRadiusEnabled=aiCLCRadiusEnabled, aiCLCDestNumPorts=aiCLCDestNumPorts, aiCLCDestMenuFmt=aiCLCDestMenuFmt, aiCLCBuffers=aiCLCBuffers, aiCLCCallerAdrs=aiCLCCallerAdrs, aiCLCDestPortList=aiCLCDestPortList, aiCLCDestCallInit=aiCLCDestCallInit, aiCLCReadCommunity=aiCLCReadCommunity, ai198=ai198, aiCLCDestTmrDelay=aiCLCDestTmrDelay, aiCLCAIDMACAdrs=aiCLCAIDMACAdrs, aiCLCCTCardReset=aiCLCCTCardReset, aiCLCAlternRoute=aiCLCAlternRoute, aiCLCCaamlRetryTmr=aiCLCCaamlRetryTmr, aiCLCAIDIndex=aiCLCAIDIndex, aiCLCCTWrCommStr=aiCLCCTWrCommStr, aiCLCPortTable=aiCLCPortTable, aiCLCDestDiscMsg=aiCLCDestDiscMsg, aiCLCCTRealCardType=aiCLCCTRealCardType, aiCLCTacacsPort1=aiCLCTacacsPort1, aiCLCEIASignals=aiCLCEIASignals, aiCLCBanner=aiCLCBanner, aiCLCLogPortEnable=aiCLCLogPortEnable, aiCLCEIARtsConn=aiCLCEIARtsConn, aiCLCHoldConn=aiCLCHoldConn, aiCLCEECRC=aiCLCEECRC, aiCLCDestBaud=aiCLCDestBaud, aiCLCCaamlIdleTmr=aiCLCCaamlIdleTmr, aiCLCBox2DensAdmin=aiCLCBox2DensAdmin, aiCLCDLWinIn=aiCLCDLWinIn, aiCLCDLNoBody=aiCLCDLNoBody, aiCLCCTRtrIPAdrs=aiCLCCTRtrIPAdrs, aiCLCApplicString=aiCLCApplicString, aiCLCAIDManufDate=aiCLCAIDManufDate, aiCLCAI2524LinkTable=aiCLCAI2524LinkTable, aiCLCEIADtrDisc=aiCLCEIADtrDisc, aiCLCDLMsgAll=aiCLCDLMsgAll, aiCLCMinorAlmMin=aiCLCMinorAlmMin, aiCLCDLWinOut=aiCLCDLWinOut, aiCLCLastTrapMsgNum=aiCLCLastTrapMsgNum, aiCLCDestName=aiCLCDestName, aiCLCRadiusSecret2=aiCLCRadiusSecret2, aiCLCPortDestMenu=aiCLCPortDestMenu, aiCLCBox8DensAdmin=aiCLCBox8DensAdmin, aiCLCDestPswd=aiCLCDestPswd, aiCLCFreeBuffers=aiCLCFreeBuffers, aiCLCPortTableEntry=aiCLCPortTableEntry, aiCLCRouterIPAdrs=aiCLCRouterIPAdrs, aiCLCDestTableEntry=aiCLCDestTableEntry, aiCLCDestTmrType=aiCLCDestTmrType, aiCLCCaamlRoute=aiCLCCaamlRoute, aiCLCCraftLogEcho=aiCLCCraftLogEcho, aiCLCDLWinVerbose=aiCLCDLWinVerbose, aiCLCWriteCommunity=aiCLCWriteCommunity, aiCLCDaylightSavings=aiCLCDaylightSavings, aiCLCCTRdCommStr=aiCLCCTRdCommStr, aiCLCDestDisc=aiCLCDestDisc, aiCLCPortDesc=aiCLCPortDesc, aiCLCFtpCtrlPort=aiCLCFtpCtrlPort, aiCLCAlmLogPort=aiCLCAlmLogPort, aiCLCTimeDate=aiCLCTimeDate, aiCLCCTLastSequenceNumber=aiCLCCTLastSequenceNumber, aiCLCAIDProduct=aiCLCAIDProduct, aiCLCCTIPRange=aiCLCCTIPRange, aiCLCCTTelnetPort=aiCLCCTTelnetPort, aiCLCRstTimeDate=aiCLCRstTimeDate, aiCLCConnectionsPlaced=aiCLCConnectionsPlaced, aiCLCSNTPPrimaryServer=aiCLCSNTPPrimaryServer, aiCLCEIARtsToggle=aiCLCEIARtsToggle, aiCLCPortDedicated=aiCLCPortDedicated, aiCLCBox5DensAdmin=aiCLCBox5DensAdmin, aiCLCDestNumUsed=aiCLCDestNumUsed, aiCLCMinorAlmMax=aiCLCMinorAlmMax, aiCLCCallData=aiCLCCallData, aiCLCDestMenuMsg=aiCLCDestMenuMsg, aiCLCPortState=aiCLCPortState, aiCLCCopyFlashToSLC=aiCLCCopyFlashToSLC, aiCLCCalledProtoStr=aiCLCCalledProtoStr, aiCLCEEPromFaults=aiCLCEEPromFaults, aiCLCCTHighPort=aiCLCCTHighPort, aiCLCDLWinUni=aiCLCDLWinUni, aiCLCBox4DensAdmin=aiCLCBox4DensAdmin, aiCLCAI2524LinkTableEntry=aiCLCAI2524LinkTableEntry, aiCLCDestTable=aiCLCDestTable, aiCLCAsyncTableEntry=aiCLCAsyncTableEntry, aiCLCNumEventsSinceLastTrap=aiCLCNumEventsSinceLastTrap, aiCLCDestIsSwitch=aiCLCDestIsSwitch, aiCLCSwitchRestart=aiCLCSwitchRestart, aiCLCLinkNum=aiCLCLinkNum, aiCLCBackupCLCHealth=aiCLCBackupCLCHealth, aiCLCCTSlotExp=aiCLCCTSlotExp, aiCLCTacacsAddr2=aiCLCTacacsAddr2, ai198Ver10=ai198Ver10, aiCLCInitStrings=aiCLCInitStrings, aiCLCTrapInterval=aiCLCTrapInterval, aiCLCDestConnMsg=aiCLCDestConnMsg, aiCLCAliasTable=aiCLCAliasTable, aiCLCTxTail=aiCLCTxTail, aiCLCDestQPswd=aiCLCDestQPswd, aiCLCBackupCLC=aiCLCBackupCLC, aiCLCDestNumFree=aiCLCDestNumFree, aiCLCTelnetServerPort=aiCLCTelnetServerPort, aiCLCRadiusPort1=aiCLCRadiusPort1, aiCLCPortNumber=aiCLCPortNumber, aiSystemOID=aiSystemOID, aiCLCDestMenu=aiCLCDestMenu, aiCLCAsyncifIndex=aiCLCAsyncifIndex, aiCLCTrapTable=aiCLCTrapTable, aiCLCAlarmLvl=aiCLCAlarmLvl, aiCLCDestState=aiCLCDestState, aiCLCAsyncTrap=aiCLCAsyncTrap, aiCLCTimeZone=aiCLCTimeZone, aiCLCBufAlign=aiCLCBufAlign, aiCLCAI2524LinkStatus=aiCLCAI2524LinkStatus, aiCLCCTAutoIdIndex=aiCLCCTAutoIdIndex, aiCLCNumPorts=aiCLCNumPorts, aiCLCCTCardSnmpState=aiCLCCTCardSnmpState)
def lineplot(x_data, y_data, x_label="", y_label="", title=""): # Create the plot object _, ax = plt.subplots() # Plot the best fit line, set the linewidth (lw), color and # transparency (alpha) of the line ax.plot(x_data, y_data, lw = 2, color = '#539caf', alpha = 1) # Label the axes and provide a title ax.set_title(title) ax.set_xlabel(x_label) ax.set_ylabel(y_label)
def lineplot(x_data, y_data, x_label='', y_label='', title=''): (_, ax) = plt.subplots() ax.plot(x_data, y_data, lw=2, color='#539caf', alpha=1) ax.set_title(title) ax.set_xlabel(x_label) ax.set_ylabel(y_label)
# https://app.codesignal.com/arcade/intro/level-2/2mxbGwLzvkTCKAJMG def almostIncreasingSequence(sequence): out_of_place = 0 for i in range(len(sequence) - 1): if sequence[i] >= sequence[i + 1]: out_of_place += 1 if i+2 < len(sequence) and sequence[i] >= sequence[i + 2]: out_of_place += 1 return c < 3
def almost_increasing_sequence(sequence): out_of_place = 0 for i in range(len(sequence) - 1): if sequence[i] >= sequence[i + 1]: out_of_place += 1 if i + 2 < len(sequence) and sequence[i] >= sequence[i + 2]: out_of_place += 1 return c < 3
class ContentIsEmpty(Exception): def __str__(self) -> str: return "No string was passed for content. You must add a text content to a DiscordResponse" def __repr__(self) -> str: return "No string was passed for content. You must add a text content to a DiscordResponse" class InvalidDiscordResponse(Exception): pass class NoResolvedInteractions(Exception): pass
class Contentisempty(Exception): def __str__(self) -> str: return 'No string was passed for content. You must add a text content to a DiscordResponse' def __repr__(self) -> str: return 'No string was passed for content. You must add a text content to a DiscordResponse' class Invaliddiscordresponse(Exception): pass class Noresolvedinteractions(Exception): pass
'''bytes and bytearray both do not supports slicing and repitition''' # Convert a List to bytes lst = [1,2,3,234] # bytes cannot be more than '255' print(lst) print(type(lst)) b = bytes(lst) # Converting a List to create bytes print(b) # OutPut: b'\x01\x02\x03\xea' print(type(b)) # OutPut: <class 'bytes'> # Length of bytes print(len(b)) # Adding or modifying elements to a byte shows an error # b[3] = 22 # TypeError: 'bytes' object does not support item assignment # Convert a List to bytearray b1 = bytearray(lst) print(b1) # OutPut: bytearray(b'\x01\x02\x03\xea') print(type(b1)) # OutPut: <class 'bytearray'> # Adding or modifying elements is allowed in a bytearray b1[3]=22 print(b1) # Length of bytearray print(len(b1)) # b1[5] = 35 # Error: IndexError: bytearray index out of range # Similarly, # b1[8]=45 # This shows an error because we cannot add element at 8th index as bytearray is only of size 4
"""bytes and bytearray both do not supports slicing and repitition""" lst = [1, 2, 3, 234] print(lst) print(type(lst)) b = bytes(lst) print(b) print(type(b)) print(len(b)) b1 = bytearray(lst) print(b1) print(type(b1)) b1[3] = 22 print(b1) print(len(b1))
sampleDict = { "name": "Kelly", "age":25, "salary": 8000, "city": "New york" } sampleDict['location'] = sampleDict.pop('city') print(sampleDict)
sample_dict = {'name': 'Kelly', 'age': 25, 'salary': 8000, 'city': 'New york'} sampleDict['location'] = sampleDict.pop('city') print(sampleDict)
class Solution: def isIsomorphic(self, s: str, t: str) -> bool: x, y = [], [] for i in s: x.append(s.index(i)) for i in t: y.append(t.index(i)) if x == y: return True return False
class Solution: def is_isomorphic(self, s: str, t: str) -> bool: (x, y) = ([], []) for i in s: x.append(s.index(i)) for i in t: y.append(t.index(i)) if x == y: return True return False
def is_paired(input_string): stack = [] for char in input_string: if char in "{([": stack += [char] elif(char == "}"): if (stack[-1:] == ["{"]): stack.pop() else: return False elif(char == ")"): if (stack[-1:] == ["("]): stack.pop() else: return False elif(char == "]"): if (stack[-1:] == ["["]): stack.pop() else: return False if len(stack) < 1: return True return False
def is_paired(input_string): stack = [] for char in input_string: if char in '{([': stack += [char] elif char == '}': if stack[-1:] == ['{']: stack.pop() else: return False elif char == ')': if stack[-1:] == ['(']: stack.pop() else: return False elif char == ']': if stack[-1:] == ['[']: stack.pop() else: return False if len(stack) < 1: return True return False
def test_top_tv_should_contain_100_entries(ia): chart = ia.get_top250_tv() assert len(chart) == 250 def test_top_tv_entries_should_have_rank(ia): movies = ia.get_top250_tv() for rank, movie in enumerate(movies): assert movie['top tv 250 rank'] == rank + 1 def test_top_tv_entries_should_have_movie_id(ia): movies = ia.get_top250_tv() for movie in movies: assert movie.movieID.isdigit() def test_top_tv_entries_should_have_title(ia): movies = ia.get_top250_tv() for movie in movies: assert 'title' in movie def test_top_tv_entries_should_be_movies(ia): movies = ia.get_top250_tv() for movie in movies: assert movie['kind'] == 'movie' def test_top_tv_entries_should_have_year(ia): movies = ia.get_top250_tv() for movie in movies: assert isinstance(movie['year'], int) def test_top_tv_entries_should_have_high_ratings(ia): movies = ia.get_top250_tv() for movie in movies: assert movie['rating'] > 8.0 def test_top_tv_entries_should_have_minimal_number_of_votes(ia): movies = ia.get_top250_tv() for movie in movies: assert movie['votes'] >= 1500 # limit stated by IMDb
def test_top_tv_should_contain_100_entries(ia): chart = ia.get_top250_tv() assert len(chart) == 250 def test_top_tv_entries_should_have_rank(ia): movies = ia.get_top250_tv() for (rank, movie) in enumerate(movies): assert movie['top tv 250 rank'] == rank + 1 def test_top_tv_entries_should_have_movie_id(ia): movies = ia.get_top250_tv() for movie in movies: assert movie.movieID.isdigit() def test_top_tv_entries_should_have_title(ia): movies = ia.get_top250_tv() for movie in movies: assert 'title' in movie def test_top_tv_entries_should_be_movies(ia): movies = ia.get_top250_tv() for movie in movies: assert movie['kind'] == 'movie' def test_top_tv_entries_should_have_year(ia): movies = ia.get_top250_tv() for movie in movies: assert isinstance(movie['year'], int) def test_top_tv_entries_should_have_high_ratings(ia): movies = ia.get_top250_tv() for movie in movies: assert movie['rating'] > 8.0 def test_top_tv_entries_should_have_minimal_number_of_votes(ia): movies = ia.get_top250_tv() for movie in movies: assert movie['votes'] >= 1500
# https://www.hearthpwn.com/news/8230-mysteries-of-the-phoenix-druid-and-hunter-puzzles # Baloon_Merchant 0 # Armor_Vender 1 # Barrens_Blacksmith 2 # Darkshire_Alchemist 3 # Shady_dealer 4 # Master_Swordsmith 5 # Drakkari_Enchanter 6 # dalaran_mage 7 # bloodsail_corsair 8 # violet_apprentice 9 # silver_hand_knight 10 # darnassus_aspirant 11 # windspeaker 12 # defender_of_argus 13 goods_action_list = [(0, 5), (0, 1), (6, 3), (2, 0), (12, 10), (0, 5), (0, 1), (6, 3), (2, 9), (0, 5)] action_list = [5, 1, 3, 0, 10, 5, 1, 3, 9, 5, 3, 2, 8, 11, 1, 6, 13, 1, 3, 12, 6, 8, 1, 6, 1, 4, 11, 4, 3, 2, 1, 13, 3, 11, 3, 5, 5, 1, 10, 2, 5, 7, 2, 5, 8, 1, 3, 13, 1, 3, 6, 10, 0, 1, 12, 5, 0, 4, 7, 0, 1, 3, 11, 5, 3, 2, 9, 0, 1, 3, 5, 12, 5, 3, 2, 0, 13, 6, 3, 8, 0, 1, 4, 7, 5, 6, 11, 5, 0, 4, 9, 4, 7, 1, 6, 1, 10, 3, 5, 8, 0, 1, 3, 12, 3, 10, 5, 3, 2, 0, 9, 5, 12, 2, 7, 2, 4, 9, 0, 13]
goods_action_list = [(0, 5), (0, 1), (6, 3), (2, 0), (12, 10), (0, 5), (0, 1), (6, 3), (2, 9), (0, 5)] action_list = [5, 1, 3, 0, 10, 5, 1, 3, 9, 5, 3, 2, 8, 11, 1, 6, 13, 1, 3, 12, 6, 8, 1, 6, 1, 4, 11, 4, 3, 2, 1, 13, 3, 11, 3, 5, 5, 1, 10, 2, 5, 7, 2, 5, 8, 1, 3, 13, 1, 3, 6, 10, 0, 1, 12, 5, 0, 4, 7, 0, 1, 3, 11, 5, 3, 2, 9, 0, 1, 3, 5, 12, 5, 3, 2, 0, 13, 6, 3, 8, 0, 1, 4, 7, 5, 6, 11, 5, 0, 4, 9, 4, 7, 1, 6, 1, 10, 3, 5, 8, 0, 1, 3, 12, 3, 10, 5, 3, 2, 0, 9, 5, 12, 2, 7, 2, 4, 9, 0, 13]
# 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. DETECT_SYSTEM3_RESULT = [('system', 'product', 'serial', 'Empty'), ('system', 'product', 'name', 'S2915'), ('system', 'product', 'vendor', 'Tyan Computer Corporation'), ('system', 'product', 'version', 'REFERENCE'), ('system', 'product', 'uuid', '83462C81-52BA-11CB-870F'), ('system', 'motherboard', 'name', 'S2915'), ('system', 'motherboard', 'vendor', 'Tyan Computer Corporation'), ('system', 'motherboard', 'version', 'REFERENCE'), ('system', 'motherboard', 'serial', 'Empty'), ('firmware', 'bios', 'version', 'v3.00.2915 (10/10/2008)'), ('firmware', 'bios', 'vendor', 'Phoenix Technologies Ltd.'), ('memory', 'total', 'size', '4294967296'), ('memory', 'bank:0:0', 'description', 'DIMM Synchronous [empty]'), ('memory', 'bank:0:0', 'slot', 'C0_DIMM0'), ('memory', 'bank:0:1', 'description', 'DIMM Synchronous [empty]'), ('memory', 'bank:0:1', 'slot', 'C0_DIMM1'), ('memory', 'bank:0:2', 'size', '1073741824'), ('memory', 'bank:0:2', 'description', 'DIMM Synchronous'), ('memory', 'bank:0:2', 'slot', 'C0_DIMM2'), ('memory', 'bank:0:3', 'size', '1073741824'), ('memory', 'bank:0:3', 'description', 'DIMM Synchronous'), ('memory', 'bank:0:3', 'slot', 'C0_DIMM3'), ('memory', 'bank:0:4', 'description', 'DIMM Synchronous [empty]'), ('memory', 'bank:0:4', 'slot', 'C0_DIMM0'), ('memory', 'bank:0:5', 'description', 'DIMM Synchronous [empty]'), ('memory', 'bank:0:5', 'slot', 'C1_DIMM1'), ('memory', 'bank:0:6', 'size', '1073741824'), ('memory', 'bank:0:6', 'description', 'DIMM Synchronous'), ('memory', 'bank:0:6', 'slot', 'C1_DIMM2'), ('memory', 'bank:0:7', 'size', '1073741824'), ('memory', 'bank:0:7', 'description', 'DIMM Synchronous'), ('memory', 'bank:0:7', 'slot', 'C1_DIMM3'), ('memory', 'banks', 'count', '8'), ('system', 'os', 'vendor', 'Ubuntu'), ('system', 'os', 'version', 'Ubuntu 14.04 LTS'), ('system', 'kernel', 'version', '3.13.0-24-generic'), ('system', 'kernel', 'arch', 'x86_64'), ('system', 'kernel', 'cmdline', 'BOOT_IMAGE=/boot/vmlinuz')] DETECT_SYSTEM2_RESULT = [('system', 'product', 'serial', 'PB4F20N'), ('system', 'product', 'name', '2347GF8 (LENOVO_MT_2347)'), ('system', 'product', 'vendor', 'LENOVO'), ('system', 'product', 'version', 'ThinkPad T430'), ('system', 'product', 'uuid', '83462C81-52BA-11CB-870F'), ('system', 'motherboard', 'name', '2347GF8'), ('system', 'motherboard', 'vendor', 'LENOVO'), ('system', 'motherboard', 'version', 'Not Defined'), ('system', 'motherboard', 'serial', '1ZLMB31B1G6'), ('firmware', 'bios', 'version', 'G1ET73WW (2.09 )'), ('firmware', 'bios', 'date', '10/19/2012'), ('firmware', 'bios', 'vendor', 'LENOVO'), ('memory', 'total', 'size', '8589934592'), ('memory', 'bank:0', 'size', '4294967296'), ('memory', 'bank:0', 'clock', '1600000000'), ('memory', 'bank:0', 'description', 'SODIMM DDR3 Synchrone 1600 MHz (0,6 ns)'), ('memory', 'bank:0', 'vendor', 'Samsung'), ('memory', 'bank:0', 'product', 'M471B5273CH0-CK0'), ('memory', 'bank:0', 'serial', '1222BCCE'), ('memory', 'bank:0', 'slot', 'ChannelA-DIMM0'), ('memory', 'bank:1', 'size', '4294967296'), ('memory', 'bank:1', 'clock', '1600000000'), ('memory', 'bank:1', 'description', 'SODIMM DDR3 Synchrone 1600 MHz (0,6 ns)'), ('memory', 'bank:1', 'vendor', 'Samsung'), ('memory', 'bank:1', 'product', 'M471B5273CH0-CK0'), ('memory', 'bank:1', 'serial', '1222BCA2'), ('memory', 'bank:1', 'slot', 'ChannelB-DIMM0'), ('memory', 'banks', 'count', '2'), ('network', 'eth0', 'businfo', 'pci@0000:00:19.0'), ('network', 'eth0', 'vendor', 'Intel Corporation'), ('network', 'eth0', 'product', '82579LM Gigabit Network Connection'), ('network', 'eth0', 'firmware', '0.13-3'), ('network', 'eth0', 'link', 'no'), ('network', 'eth0', 'driver', 'e1000e'), ('network', 'eth0', 'latency', '0'), ('network', 'eth0', 'autonegotiation', 'on'), ('network', 'eth0', 'serial', '00:21:cc:d9:bf:26'), ('network', 'wlan0', 'businfo', 'pci@0000:03:00.0'), ('network', 'wlan0', 'vendor', 'Intel Corporation'), ('network', 'wlan0', 'product', 'Centrino Advanced-N 6205 [Taylor Peak]'), ('network', 'wlan0', 'firmware', '18.168.6.1'), ('network', 'wlan0', 'ipv4', '192.168.1.185'), ('network', 'wlan0', 'ipv4-netmask', '255.255.255.0'), ('network', 'wlan0', 'ipv4-cidr', '24'), ('network', 'wlan0', 'ipv4-network', '192.168.1.0'), ('network', 'wlan0', 'link', 'yes'), ('network', 'wlan0', 'driver', 'iwlwifi'), ('network', 'wlan0', 'latency', '0'), ('network', 'wlan0', 'serial', '84:3a:4b:33:62:82'), ('network', 'wwan0', 'firmware', 'Mobile Broadband Network Device'), ('network', 'wwan0', 'link', 'no'), ('network', 'wwan0', 'driver', 'cdc_ncm'), ('network', 'wwan0', 'serial', '02:15:e0:ec:01:00'), ('system', 'os', 'vendor', 'Ubuntu'), ('system', 'os', 'version', 'Ubuntu 14.04 LTS'), ('system', 'kernel', 'version', '3.13.0-24-generic'), ('system', 'kernel', 'arch', 'x86_64'), ('system', 'kernel', 'cmdline', 'BOOT_IMAGE=/boot/vmlinuz')] DETECT_SYSTEM_RESULT = [('system', 'product', 'serial', 'C02JR02WF57J'), ('system', 'product', 'name', 'MacBookAir5,2 (System SKU#)'), ('system', 'product', 'vendor', 'Apple Inc.'), ('system', 'product', 'version', '1.0'), ('system', 'product', 'uuid', '83462C81-52BA-11CB-870F'), ('system', 'motherboard', 'name', 'Mac-2E6FAB96566FE58C'), ('system', 'motherboard', 'vendor', 'Apple Inc.'), ('system', 'motherboard', 'version', 'MacBookAir5,2'), ('system', 'motherboard', 'serial', 'C02245301ZFF25WAT'), ('firmware', 'bios', 'version', 'MBA51.88Z.00EF.B01.1207271122'), ('firmware', 'bios', 'date', '07/27/2012'), ('firmware', 'bios', 'vendor', 'Apple Inc.'), ('memory', 'total', 'size', '8589934592'), ('memory', 'bank:0', 'size', '4294967296'), ('memory', 'bank:0', 'clock', '1600000000'), ('memory', 'bank:0', 'description', 'SODIMM DDR3 Synchronous 1600 MHz (0,6 ns)'), ('memory', 'bank:0', 'vendor', 'Hynix Semiconductor (Hyundai Electronics)'), ('memory', 'bank:0', 'product', 'HMT451S6MFR8A-PB'), ('memory', 'bank:0', 'serial', '0x00000000'), ('memory', 'bank:0', 'slot', 'DIMM0'), ('memory', 'bank:1', 'size', '4294967296'), ('memory', 'bank:1', 'clock', '1600000000'), ('memory', 'bank:1', 'description', 'SODIMM DDR3 Synchronous 1600 MHz (0,6 ns)'), ('memory', 'bank:1', 'vendor', 'Hynix Semiconductor (Hyundai Electronics)'), ('memory', 'bank:1', 'product', 'HMT451S6MFR8A-PB'), ('memory', 'bank:1', 'serial', '0x00000000'), ('memory', 'bank:1', 'slot', 'DIMM0'), ('memory', 'banks', 'count', '2'), ('network', 'vnet0', 'size', '10000000'), ('network', 'vnet0', 'link', 'yes'), ('network', 'vnet0', 'driver', 'tun'), ('network', 'vnet0', 'duplex', 'full'), ('network', 'vnet0', 'speed', '10Mbit/s'), ('network', 'vnet0', 'autonegotiation', 'off'), ('network', 'vnet0', 'serial', 'fe:54:00:c1:1a:f7'), ('network', 'tap0', 'size', '10000000'), ('network', 'tap0', 'ipv4', '10.152.18.103'), ('network', 'tap0', 'ipv4-netmask', '255.255.255.0'), ('network', 'tap0', 'ipv4-cidr', '24'), ('network', 'tap0', 'ipv4-network', '10.152.18.0'), ('network', 'tap0', 'link', 'yes'), ('network', 'tap0', 'driver', 'tun'), ('network', 'tap0', 'duplex', 'full'), ('network', 'tap0', 'speed', '10Mbit/s'), ('network', 'tap0', 'autonegotiation', 'off'), ('network', 'tap0', 'serial', 'e2:66:69:22:be:fb'), ('network', 'wlan0', 'firmware', 'N/A'), ('network', 'wlan0', 'ipv4', '192.168.12.13'), ('network', 'wlan0', 'ipv4-netmask', '255.255.255.0'), ('network', 'wlan0', 'ipv4-cidr', '24'), ('network', 'wlan0', 'ipv4-network', '192.168.12.0'), ('network', 'wlan0', 'link', 'yes'), ('network', 'wlan0', 'driver', 'brcmsmac'), ('network', 'wlan0', 'serial', '00:88:65:35:2b:50'), ('system', 'os', 'vendor', 'Ubuntu'), ('system', 'os', 'version', 'Ubuntu 14.04 LTS'), ('system', 'kernel', 'version', '3.13.0-24-generic'), ('system', 'kernel', 'arch', 'x86_64'), ('system', 'kernel', 'cmdline', 'BOOT_IMAGE=/boot/vmlinuz')]
detect_system3_result = [('system', 'product', 'serial', 'Empty'), ('system', 'product', 'name', 'S2915'), ('system', 'product', 'vendor', 'Tyan Computer Corporation'), ('system', 'product', 'version', 'REFERENCE'), ('system', 'product', 'uuid', '83462C81-52BA-11CB-870F'), ('system', 'motherboard', 'name', 'S2915'), ('system', 'motherboard', 'vendor', 'Tyan Computer Corporation'), ('system', 'motherboard', 'version', 'REFERENCE'), ('system', 'motherboard', 'serial', 'Empty'), ('firmware', 'bios', 'version', 'v3.00.2915 (10/10/2008)'), ('firmware', 'bios', 'vendor', 'Phoenix Technologies Ltd.'), ('memory', 'total', 'size', '4294967296'), ('memory', 'bank:0:0', 'description', 'DIMM Synchronous [empty]'), ('memory', 'bank:0:0', 'slot', 'C0_DIMM0'), ('memory', 'bank:0:1', 'description', 'DIMM Synchronous [empty]'), ('memory', 'bank:0:1', 'slot', 'C0_DIMM1'), ('memory', 'bank:0:2', 'size', '1073741824'), ('memory', 'bank:0:2', 'description', 'DIMM Synchronous'), ('memory', 'bank:0:2', 'slot', 'C0_DIMM2'), ('memory', 'bank:0:3', 'size', '1073741824'), ('memory', 'bank:0:3', 'description', 'DIMM Synchronous'), ('memory', 'bank:0:3', 'slot', 'C0_DIMM3'), ('memory', 'bank:0:4', 'description', 'DIMM Synchronous [empty]'), ('memory', 'bank:0:4', 'slot', 'C0_DIMM0'), ('memory', 'bank:0:5', 'description', 'DIMM Synchronous [empty]'), ('memory', 'bank:0:5', 'slot', 'C1_DIMM1'), ('memory', 'bank:0:6', 'size', '1073741824'), ('memory', 'bank:0:6', 'description', 'DIMM Synchronous'), ('memory', 'bank:0:6', 'slot', 'C1_DIMM2'), ('memory', 'bank:0:7', 'size', '1073741824'), ('memory', 'bank:0:7', 'description', 'DIMM Synchronous'), ('memory', 'bank:0:7', 'slot', 'C1_DIMM3'), ('memory', 'banks', 'count', '8'), ('system', 'os', 'vendor', 'Ubuntu'), ('system', 'os', 'version', 'Ubuntu 14.04 LTS'), ('system', 'kernel', 'version', '3.13.0-24-generic'), ('system', 'kernel', 'arch', 'x86_64'), ('system', 'kernel', 'cmdline', 'BOOT_IMAGE=/boot/vmlinuz')] detect_system2_result = [('system', 'product', 'serial', 'PB4F20N'), ('system', 'product', 'name', '2347GF8 (LENOVO_MT_2347)'), ('system', 'product', 'vendor', 'LENOVO'), ('system', 'product', 'version', 'ThinkPad T430'), ('system', 'product', 'uuid', '83462C81-52BA-11CB-870F'), ('system', 'motherboard', 'name', '2347GF8'), ('system', 'motherboard', 'vendor', 'LENOVO'), ('system', 'motherboard', 'version', 'Not Defined'), ('system', 'motherboard', 'serial', '1ZLMB31B1G6'), ('firmware', 'bios', 'version', 'G1ET73WW (2.09 )'), ('firmware', 'bios', 'date', '10/19/2012'), ('firmware', 'bios', 'vendor', 'LENOVO'), ('memory', 'total', 'size', '8589934592'), ('memory', 'bank:0', 'size', '4294967296'), ('memory', 'bank:0', 'clock', '1600000000'), ('memory', 'bank:0', 'description', 'SODIMM DDR3 Synchrone 1600 MHz (0,6 ns)'), ('memory', 'bank:0', 'vendor', 'Samsung'), ('memory', 'bank:0', 'product', 'M471B5273CH0-CK0'), ('memory', 'bank:0', 'serial', '1222BCCE'), ('memory', 'bank:0', 'slot', 'ChannelA-DIMM0'), ('memory', 'bank:1', 'size', '4294967296'), ('memory', 'bank:1', 'clock', '1600000000'), ('memory', 'bank:1', 'description', 'SODIMM DDR3 Synchrone 1600 MHz (0,6 ns)'), ('memory', 'bank:1', 'vendor', 'Samsung'), ('memory', 'bank:1', 'product', 'M471B5273CH0-CK0'), ('memory', 'bank:1', 'serial', '1222BCA2'), ('memory', 'bank:1', 'slot', 'ChannelB-DIMM0'), ('memory', 'banks', 'count', '2'), ('network', 'eth0', 'businfo', 'pci@0000:00:19.0'), ('network', 'eth0', 'vendor', 'Intel Corporation'), ('network', 'eth0', 'product', '82579LM Gigabit Network Connection'), ('network', 'eth0', 'firmware', '0.13-3'), ('network', 'eth0', 'link', 'no'), ('network', 'eth0', 'driver', 'e1000e'), ('network', 'eth0', 'latency', '0'), ('network', 'eth0', 'autonegotiation', 'on'), ('network', 'eth0', 'serial', '00:21:cc:d9:bf:26'), ('network', 'wlan0', 'businfo', 'pci@0000:03:00.0'), ('network', 'wlan0', 'vendor', 'Intel Corporation'), ('network', 'wlan0', 'product', 'Centrino Advanced-N 6205 [Taylor Peak]'), ('network', 'wlan0', 'firmware', '18.168.6.1'), ('network', 'wlan0', 'ipv4', '192.168.1.185'), ('network', 'wlan0', 'ipv4-netmask', '255.255.255.0'), ('network', 'wlan0', 'ipv4-cidr', '24'), ('network', 'wlan0', 'ipv4-network', '192.168.1.0'), ('network', 'wlan0', 'link', 'yes'), ('network', 'wlan0', 'driver', 'iwlwifi'), ('network', 'wlan0', 'latency', '0'), ('network', 'wlan0', 'serial', '84:3a:4b:33:62:82'), ('network', 'wwan0', 'firmware', 'Mobile Broadband Network Device'), ('network', 'wwan0', 'link', 'no'), ('network', 'wwan0', 'driver', 'cdc_ncm'), ('network', 'wwan0', 'serial', '02:15:e0:ec:01:00'), ('system', 'os', 'vendor', 'Ubuntu'), ('system', 'os', 'version', 'Ubuntu 14.04 LTS'), ('system', 'kernel', 'version', '3.13.0-24-generic'), ('system', 'kernel', 'arch', 'x86_64'), ('system', 'kernel', 'cmdline', 'BOOT_IMAGE=/boot/vmlinuz')] detect_system_result = [('system', 'product', 'serial', 'C02JR02WF57J'), ('system', 'product', 'name', 'MacBookAir5,2 (System SKU#)'), ('system', 'product', 'vendor', 'Apple Inc.'), ('system', 'product', 'version', '1.0'), ('system', 'product', 'uuid', '83462C81-52BA-11CB-870F'), ('system', 'motherboard', 'name', 'Mac-2E6FAB96566FE58C'), ('system', 'motherboard', 'vendor', 'Apple Inc.'), ('system', 'motherboard', 'version', 'MacBookAir5,2'), ('system', 'motherboard', 'serial', 'C02245301ZFF25WAT'), ('firmware', 'bios', 'version', 'MBA51.88Z.00EF.B01.1207271122'), ('firmware', 'bios', 'date', '07/27/2012'), ('firmware', 'bios', 'vendor', 'Apple Inc.'), ('memory', 'total', 'size', '8589934592'), ('memory', 'bank:0', 'size', '4294967296'), ('memory', 'bank:0', 'clock', '1600000000'), ('memory', 'bank:0', 'description', 'SODIMM DDR3 Synchronous 1600 MHz (0,6 ns)'), ('memory', 'bank:0', 'vendor', 'Hynix Semiconductor (Hyundai Electronics)'), ('memory', 'bank:0', 'product', 'HMT451S6MFR8A-PB'), ('memory', 'bank:0', 'serial', '0x00000000'), ('memory', 'bank:0', 'slot', 'DIMM0'), ('memory', 'bank:1', 'size', '4294967296'), ('memory', 'bank:1', 'clock', '1600000000'), ('memory', 'bank:1', 'description', 'SODIMM DDR3 Synchronous 1600 MHz (0,6 ns)'), ('memory', 'bank:1', 'vendor', 'Hynix Semiconductor (Hyundai Electronics)'), ('memory', 'bank:1', 'product', 'HMT451S6MFR8A-PB'), ('memory', 'bank:1', 'serial', '0x00000000'), ('memory', 'bank:1', 'slot', 'DIMM0'), ('memory', 'banks', 'count', '2'), ('network', 'vnet0', 'size', '10000000'), ('network', 'vnet0', 'link', 'yes'), ('network', 'vnet0', 'driver', 'tun'), ('network', 'vnet0', 'duplex', 'full'), ('network', 'vnet0', 'speed', '10Mbit/s'), ('network', 'vnet0', 'autonegotiation', 'off'), ('network', 'vnet0', 'serial', 'fe:54:00:c1:1a:f7'), ('network', 'tap0', 'size', '10000000'), ('network', 'tap0', 'ipv4', '10.152.18.103'), ('network', 'tap0', 'ipv4-netmask', '255.255.255.0'), ('network', 'tap0', 'ipv4-cidr', '24'), ('network', 'tap0', 'ipv4-network', '10.152.18.0'), ('network', 'tap0', 'link', 'yes'), ('network', 'tap0', 'driver', 'tun'), ('network', 'tap0', 'duplex', 'full'), ('network', 'tap0', 'speed', '10Mbit/s'), ('network', 'tap0', 'autonegotiation', 'off'), ('network', 'tap0', 'serial', 'e2:66:69:22:be:fb'), ('network', 'wlan0', 'firmware', 'N/A'), ('network', 'wlan0', 'ipv4', '192.168.12.13'), ('network', 'wlan0', 'ipv4-netmask', '255.255.255.0'), ('network', 'wlan0', 'ipv4-cidr', '24'), ('network', 'wlan0', 'ipv4-network', '192.168.12.0'), ('network', 'wlan0', 'link', 'yes'), ('network', 'wlan0', 'driver', 'brcmsmac'), ('network', 'wlan0', 'serial', '00:88:65:35:2b:50'), ('system', 'os', 'vendor', 'Ubuntu'), ('system', 'os', 'version', 'Ubuntu 14.04 LTS'), ('system', 'kernel', 'version', '3.13.0-24-generic'), ('system', 'kernel', 'arch', 'x86_64'), ('system', 'kernel', 'cmdline', 'BOOT_IMAGE=/boot/vmlinuz')]
class Solution: def largestPerimeter(self, A: List[int]) -> int: perimeter = 0 A.sort(reverse=True) for k in range(len(A)-2): if self.fun(A[k], A[k+1], A[k+2]): perimeter = max(perimeter, A[k] + A[k+1] + A[k+2]) return perimeter return perimeter def fun(self, a, b, c): # if a+b>c and a+c>b and b+c>a: if b+c>a: return True else: return False
class Solution: def largest_perimeter(self, A: List[int]) -> int: perimeter = 0 A.sort(reverse=True) for k in range(len(A) - 2): if self.fun(A[k], A[k + 1], A[k + 2]): perimeter = max(perimeter, A[k] + A[k + 1] + A[k + 2]) return perimeter return perimeter def fun(self, a, b, c): if b + c > a: return True else: return False
''' It is important to have some understanding of what commonly-used functions are doing under the hood. Though you may already know how to compute variances, this is a beginner course that does not assume so. In this exercise, we will explicitly compute the variance of the petal length of Iris veriscolor using the equations discussed in the videos. We will then use np.var() to compute it. ''' # Array of differences to mean: differences differences = versicolor_petal_length - np.mean(versicolor_petal_length) # Square the differences: diff_sq diff_sq = differences ** 2 # Compute the mean square difference: variance_explicit variance_explicit = np.mean(diff_sq) # Compute the variance using NumPy: variance_np variance_np = np.var(versicolor_petal_length) # Print the results print(variance_explicit, variance_np)
""" It is important to have some understanding of what commonly-used functions are doing under the hood. Though you may already know how to compute variances, this is a beginner course that does not assume so. In this exercise, we will explicitly compute the variance of the petal length of Iris veriscolor using the equations discussed in the videos. We will then use np.var() to compute it. """ differences = versicolor_petal_length - np.mean(versicolor_petal_length) diff_sq = differences ** 2 variance_explicit = np.mean(diff_sq) variance_np = np.var(versicolor_petal_length) print(variance_explicit, variance_np)
class Singleton: ans = None @staticmethod def instance(): if '_instance' not in Singleton.__dict__: Singleton._instance = Singleton() return Singleton._instance s1 = Singleton.instance() s2 = Singleton.instance() s1.ans = 10 assert s1 is s2 assert s1.ans == s2.ans print("Test Passed")
class Singleton: ans = None @staticmethod def instance(): if '_instance' not in Singleton.__dict__: Singleton._instance = singleton() return Singleton._instance s1 = Singleton.instance() s2 = Singleton.instance() s1.ans = 10 assert s1 is s2 assert s1.ans == s2.ans print('Test Passed')
class Game: def __init__(self, id): # initially player 1's move is false self.p1Went = False # initially player 2's move is false self.p2Went = False self.ready = False # current game's id self.id = id # two players move, initially none[player1's move, player2's move] self.moves = [None, None] # initially palyer1 and player2 both 0 self.wins = [0,0] # if ties self.ties = 0 # get the player's move, either player 1's move or player 2's move def get_player_move(self, p): return self.moves[p] # updates the moves list with that certain player's move def play(self, player, move): self.moves[player] = move # for player 1, if player1 makes a move then p1 went is true that means p1 already made a move if player == 0: self.p1Went = True else: self.p2Went = True # check if the two player's connected to the game or not def connected(self): return self.ready # check if both of the player made a move or not def bothWent(self): return self.p1Went and self.p2Went # deciding the winner def winner(self): # taking only the first letter of the move(R from Rock) p1 = self.moves[0].upper()[0] p2 = self.moves[1].upper()[0] winner = -1 if p1 == "R" and p2 == "S": winner = 0 elif p1 == "S" and p2 == "R": winner = 1 elif p1 == "P" and p2 == "R": winner = 0 elif p1 == "R" and p2 == "P": winner = 1 elif p1 == "S" and p2 == "P": winner = 0 elif p1 == "P" and p2 == "S": winner = 1 return winner # after the game we reset the state of the players def resetWent(self): self.p1Went = False self.p2Went = False
class Game: def __init__(self, id): self.p1Went = False self.p2Went = False self.ready = False self.id = id self.moves = [None, None] self.wins = [0, 0] self.ties = 0 def get_player_move(self, p): return self.moves[p] def play(self, player, move): self.moves[player] = move if player == 0: self.p1Went = True else: self.p2Went = True def connected(self): return self.ready def both_went(self): return self.p1Went and self.p2Went def winner(self): p1 = self.moves[0].upper()[0] p2 = self.moves[1].upper()[0] winner = -1 if p1 == 'R' and p2 == 'S': winner = 0 elif p1 == 'S' and p2 == 'R': winner = 1 elif p1 == 'P' and p2 == 'R': winner = 0 elif p1 == 'R' and p2 == 'P': winner = 1 elif p1 == 'S' and p2 == 'P': winner = 0 elif p1 == 'P' and p2 == 'S': winner = 1 return winner def reset_went(self): self.p1Went = False self.p2Went = False
########################## THE TOON LAND PROJECT ########################## # Filename: _BarkingBoulevard.py # Created by: Cody/Fd Green Cat Fd (February 19th, 2013) #### # Description: # # The Barking Boulevard added Python implementation. #### filepath = __filebase__ + '/toonland/playground/funnyfarm/maps/%s' sidewalkTexture = loader.loadTexture(filepath % 'sidewalkyellow.jpg') for tunnelNode in render.findAllMatches('**/linktunnel*'): tunnelNode.find('**/tunnel_floor*').setTexture(sidewalkTexture, 1) toonHq = render.find('**/tb42:toon_landmark_hqFF_DNARoot') for doorFrameHole in toonHq.findAllMatches('**/doorFrameHole*'): doorFrameHole.hide()
filepath = __filebase__ + '/toonland/playground/funnyfarm/maps/%s' sidewalk_texture = loader.loadTexture(filepath % 'sidewalkyellow.jpg') for tunnel_node in render.findAllMatches('**/linktunnel*'): tunnelNode.find('**/tunnel_floor*').setTexture(sidewalkTexture, 1) toon_hq = render.find('**/tb42:toon_landmark_hqFF_DNARoot') for door_frame_hole in toonHq.findAllMatches('**/doorFrameHole*'): doorFrameHole.hide()
class Node: def __init__(self, data): self.left = None self.right = None self.data = None if isinstance(data, list) and len(data) > 0: self.data = data.pop(0) for item in data: self.AddNode(item) else: self.data = data def __str__(self): return str(self.PostorderTraversal(self)) def __radd__(self, other): return other + self.__str__() def AddNode(self, data): if self.data: if data < self.data: if self.left is None: self.left = Node(data) else: self.left.AddNode(data) else: if self.right is None: self.right = Node(data) else: self.right.AddNode(data) else: self.data = data # postorder traversal # left -> right -> root def PostorderTraversal(self, root): result = [] if root: result = self.PostorderTraversal(root.left) result += self.PostorderTraversal(root.right) result.append(root.data) return result # test printing tree nodes postorder arr = [12,1,3,77,23,23,55,23,19,12] root = Node([i for i in arr]) print("Nodes: ", arr) print("Postorder Traversal: ", root)
class Node: def __init__(self, data): self.left = None self.right = None self.data = None if isinstance(data, list) and len(data) > 0: self.data = data.pop(0) for item in data: self.AddNode(item) else: self.data = data def __str__(self): return str(self.PostorderTraversal(self)) def __radd__(self, other): return other + self.__str__() def add_node(self, data): if self.data: if data < self.data: if self.left is None: self.left = node(data) else: self.left.AddNode(data) elif self.right is None: self.right = node(data) else: self.right.AddNode(data) else: self.data = data def postorder_traversal(self, root): result = [] if root: result = self.PostorderTraversal(root.left) result += self.PostorderTraversal(root.right) result.append(root.data) return result arr = [12, 1, 3, 77, 23, 23, 55, 23, 19, 12] root = node([i for i in arr]) print('Nodes: ', arr) print('Postorder Traversal: ', root)
total_amount = float(input('Enter Groupon payment amount: ')) tickets = round((total_amount * 0.5875), 2) # 58.75% for ticket sales concessions = round((total_amount * 0.4125), 2) # 41.25% for concession sales print() print(f'GL 4005: {tickets}') print(f'GL 4200: {concessions}') input('Press enter to exit: ') # keeps window open
total_amount = float(input('Enter Groupon payment amount: ')) tickets = round(total_amount * 0.5875, 2) concessions = round(total_amount * 0.4125, 2) print() print(f'GL 4005: {tickets}') print(f'GL 4200: {concessions}') input('Press enter to exit: ')
# ECE 486 Project # Ali Saad, Disha Shetty, Pooja # Mips Simulation # Professor Zeshan Chishti # Open memory image file and read it(take it's inputs) # Need to change the numbers in the file from Hex to binary # Then parse it to get Rs, Rt, Rd intaking the correct numbers # To run the correct operation f = open("sample_memory_image.txt", "r") # Open and Read contents inside of file for x in f: # Name The contents in the file x, loop through file line by line scale = 16 # equals to hexaddecimal num_of_bits = 32 # Number of bits is 32 per line y = bin(int(x, scale))[2:].zfill(num_of_bits) #Conver Hex to Binary print(y) # Print to make sure numbers are being converted correcctly ''' this is how you comment out a section # An idea of switch Statement for opcode after parsing opcode = { # Arithmetic Instructions '000000' : ADDRdRsRt, '000001' : ADDRtRsIm, '000010' : SUBRdRsRt, '000011' : SUBRtRsIm, '000100' : MULRdRst, '000101' : MULRtRsIm, # Logical Instructions '000110' : ORRdRsRt, '000111' : ORIRtRsIM, '001000' : ANDRdRsRt, '001001' : ANDIRtRsIM, '001010' : XORRdRsRt, '001011' : XORIRtRsIM, # Memory Access Instructions '001100' : LDWRtRsIm, '001101' : STWRtRsIm, # Control Flow Instructions '001110' : BZRsx, '001111' : BEQRsRtx, '010000' : JRRs, '010001' : HALT } ''' # opcode 000000 is ADD instruction, rest of opcode instructions in Project specs pdf # After we read in instruction goes case statment to decide the formart or if statement # Need to do Arithmetic Instructions # Need to do Logiccal Instructions # Need to do Memory Access Instructions # Need to do Control Flow Instructions # Need to figure out Instruction Format # If statement is R-Type format, first 11 bits unused, 5 for RD, 5 of Rt, 5 for Rs, last 6 opcode # Else I-type format, first 16 bits unused, 5 for Rt, 5 for Rs, last 6 opcode # Need to do memory image # Need to figure out how do stalling and how much to stall for no forwarding/forwarding # Variable Output # All Variables need to be changed to express equation of how to get their content Total_Number_of_Instructions = 638 Arithmetic_Instructions = 333 Logical_Instructions = 50 Memory_Access_Instructions = 103 Control_Transfer_Instructions = 152 Program_Counter = 100 R1 = 1200 # Need to be changed to the equatiion on how to get the contents of R1 R2 = 1400 # Need to be changed to the equatiion on how to get the contents of R2 R3 = 100 # Need to be changed to the equatiion on how to get the contents of R3 R4 = 50 # Need to be changed to the equatiion on how to get the contents of R4 R5 = 50 # Need to be changed to the equatiion on how to get the contents of R5 R6 = 0 # Need to be changed to the equatiion on how to get the contents of R6 R7 = 25 # Need to be changed to the equatiion on how to get the contents of R7 R8 = 2550 # Need to be changed to the equatiion on how to get the contents of R8 R9 = 1275 # Need to be changed to the equatiion on how to get the contents of R9 R10 = 50 # Need to be changed to the equatiion on how to get the contents of R10 R11 = 50 # Need to be changed to the equatiion on how to get the contents of R11 R12 = 32 # Need to be changed to the equatiion on how to get the contents of R12 Address = 1400 Address1 = 1404 Address2 = 1408 Contents = 25 Contents1 = 2550 Contents2 = 1275 # Simulation Output # What needs to be shown after code compliles all instructions print("Instruction Counts: \n") print("Total Number of Instructions:", Total_Number_of_Instructions) print("Arithmetic Instructions:", Arithmetic_Instructions) print("Logical Instructions:", Logical_Instructions) print("Memory Access Instructions:", Memory_Access_Instructions) print("Control Transfer Instructions:", Control_Transfer_Instructions, "\n\n") print("Final Register State: \n") print("(Contents shown in decimal number system; not in base 16. In addition, only those registers are shown whose contents change during the program) \n") print("Program Counter:", Program_Counter) print("R1:", R1) print("R2:", R2) print("R3:", R3) print("R4:", R4) print("R5:", R5) print("R6:", R6) print("R7:", R7) print("R8:", R8) print("R9:", R9) print("R10:", R10) print("R11:", R11) print("R12:", R12, "\n") print("Final Memory State: \n") print("(Contents shown in decimal number system; not in base 16. In addition, only those registers are shown whose contents change during the program) \n") print("Address:", Address, "Contents:", Contents) print("Address:", Address1, "Contents:", Contents1) print("Address:", Address2, "Contents:", Contents2) print("Timing Simulator Output can be provided upon request")
f = open('sample_memory_image.txt', 'r') for x in f: scale = 16 num_of_bits = 32 y = bin(int(x, scale))[2:].zfill(num_of_bits) print(y) " this is how you comment out a section\n# An idea of switch Statement for opcode after parsing \nopcode = {\n # Arithmetic Instructions\n '000000' : ADDRdRsRt,\n '000001' : ADDRtRsIm, \n '000010' : SUBRdRsRt,\n '000011' : SUBRtRsIm,\n '000100' : MULRdRst,\n '000101' : MULRtRsIm,\n # Logical Instructions\n '000110' : ORRdRsRt,\n '000111' : ORIRtRsIM,\n '001000' : ANDRdRsRt,\n '001001' : ANDIRtRsIM,\n '001010' : XORRdRsRt,\n '001011' : XORIRtRsIM,\n # Memory Access Instructions\n '001100' : LDWRtRsIm,\n '001101' : STWRtRsIm,\n # Control Flow Instructions\n '001110' : BZRsx,\n '001111' : BEQRsRtx,\n '010000' : JRRs,\n '010001' : HALT\n }\n" total__number_of__instructions = 638 arithmetic__instructions = 333 logical__instructions = 50 memory__access__instructions = 103 control__transfer__instructions = 152 program__counter = 100 r1 = 1200 r2 = 1400 r3 = 100 r4 = 50 r5 = 50 r6 = 0 r7 = 25 r8 = 2550 r9 = 1275 r10 = 50 r11 = 50 r12 = 32 address = 1400 address1 = 1404 address2 = 1408 contents = 25 contents1 = 2550 contents2 = 1275 print('Instruction Counts: \n') print('Total Number of Instructions:', Total_Number_of_Instructions) print('Arithmetic Instructions:', Arithmetic_Instructions) print('Logical Instructions:', Logical_Instructions) print('Memory Access Instructions:', Memory_Access_Instructions) print('Control Transfer Instructions:', Control_Transfer_Instructions, '\n\n') print('Final Register State: \n') print('(Contents shown in decimal number system; not in base 16. In addition, only those registers are shown whose contents change during the program) \n') print('Program Counter:', Program_Counter) print('R1:', R1) print('R2:', R2) print('R3:', R3) print('R4:', R4) print('R5:', R5) print('R6:', R6) print('R7:', R7) print('R8:', R8) print('R9:', R9) print('R10:', R10) print('R11:', R11) print('R12:', R12, '\n') print('Final Memory State: \n') print('(Contents shown in decimal number system; not in base 16. In addition, only those registers are shown whose contents change during the program) \n') print('Address:', Address, 'Contents:', Contents) print('Address:', Address1, 'Contents:', Contents1) print('Address:', Address2, 'Contents:', Contents2) print('Timing Simulator Output can be provided upon request')
start = int(input('Choose the start of the Aritimetic Progression: ')) rate = int(input('Choose the rate of the Aritimetic Progression: ')) cont = 10 while cont != 0: print(start) start = start + rate cont = cont - 1
start = int(input('Choose the start of the Aritimetic Progression: ')) rate = int(input('Choose the rate of the Aritimetic Progression: ')) cont = 10 while cont != 0: print(start) start = start + rate cont = cont - 1
# coding=utf-8 # *** WARNING: this file was generated by crd2pulumi. *** # *** Do not edit by hand unless you're certain you know what you are doing! *** SNAKE_TO_CAMEL_CASE_TABLE = { "api_key": "apiKey", "api_version": "apiVersion", "binding_from": "bindingFrom", "config_map_key_ref": "configMapKeyRef", "kafka_admin_url": "kafkaAdminUrl", "num_partitions": "numPartitions", "replication_factor": "replicationFactor", "secret_key_ref": "secretKeyRef", "topic_name": "topicName", "value_from": "valueFrom", } CAMEL_TO_SNAKE_CASE_TABLE = { "apiKey": "api_key", "apiVersion": "api_version", "bindingFrom": "binding_from", "configMapKeyRef": "config_map_key_ref", "kafkaAdminUrl": "kafka_admin_url", "numPartitions": "num_partitions", "replicationFactor": "replication_factor", "secretKeyRef": "secret_key_ref", "topicName": "topic_name", "valueFrom": "value_from", }
snake_to_camel_case_table = {'api_key': 'apiKey', 'api_version': 'apiVersion', 'binding_from': 'bindingFrom', 'config_map_key_ref': 'configMapKeyRef', 'kafka_admin_url': 'kafkaAdminUrl', 'num_partitions': 'numPartitions', 'replication_factor': 'replicationFactor', 'secret_key_ref': 'secretKeyRef', 'topic_name': 'topicName', 'value_from': 'valueFrom'} camel_to_snake_case_table = {'apiKey': 'api_key', 'apiVersion': 'api_version', 'bindingFrom': 'binding_from', 'configMapKeyRef': 'config_map_key_ref', 'kafkaAdminUrl': 'kafka_admin_url', 'numPartitions': 'num_partitions', 'replicationFactor': 'replication_factor', 'secretKeyRef': 'secret_key_ref', 'topicName': 'topic_name', 'valueFrom': 'value_from'}
def fibonacci_iterative(n): a = 0 b = 1 if n == 0: return 0 if n == 1: return 1 for i in range(0, n - 1): c = a + b a = b b = c return b for i in range(0, 20): print(fibonacci_iterative(i))
def fibonacci_iterative(n): a = 0 b = 1 if n == 0: return 0 if n == 1: return 1 for i in range(0, n - 1): c = a + b a = b b = c return b for i in range(0, 20): print(fibonacci_iterative(i))
# # PySNMP MIB module PW-STD-MIB (http://snmplabs.com/pysmi) # ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/PW-STD-MIB # Produced by pysmi-0.3.4 at Mon Apr 29 18:30:09 2019 # On host DAVWANG4-M-1475 platform Darwin version 18.5.0 by user davwang4 # Using Python version 3.7.3 (default, Mar 27 2019, 09:23:15) # Integer, OctetString, ObjectIdentifier = mibBuilder.importSymbols("ASN1", "Integer", "OctetString", "ObjectIdentifier") NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues") ConstraintsIntersection, ConstraintsUnion, ValueRangeConstraint, ValueSizeConstraint, SingleValueConstraint = mibBuilder.importSymbols("ASN1-REFINEMENT", "ConstraintsIntersection", "ConstraintsUnion", "ValueRangeConstraint", "ValueSizeConstraint", "SingleValueConstraint") HCPerfCurrentCount, HCPerfTimeElapsed, HCPerfValidIntervals, HCPerfIntervalCount = mibBuilder.importSymbols("HC-PerfHist-TC-MIB", "HCPerfCurrentCount", "HCPerfTimeElapsed", "HCPerfValidIntervals", "HCPerfIntervalCount") IANAPwTypeTC, IANAPwPsnTypeTC, IANAPwCapabilities = mibBuilder.importSymbols("IANA-PWE3-MIB", "IANAPwTypeTC", "IANAPwPsnTypeTC", "IANAPwCapabilities") InterfaceIndexOrZero, = mibBuilder.importSymbols("IF-MIB", "InterfaceIndexOrZero") InetAddress, InetAddressType = mibBuilder.importSymbols("INET-ADDRESS-MIB", "InetAddress", "InetAddressType") PwIDType, PwFragStatus, PwIndexType, PwGroupID, PwGenIdType, PwAttachmentIdentifierType, PwCwStatusTC, PwStatus, PwIndexOrZeroType, PwOperStatusTC, PwFragSize = mibBuilder.importSymbols("PW-TC-STD-MIB", "PwIDType", "PwFragStatus", "PwIndexType", "PwGroupID", "PwGenIdType", "PwAttachmentIdentifierType", "PwCwStatusTC", "PwStatus", "PwIndexOrZeroType", "PwOperStatusTC", "PwFragSize") PerfIntervalCount, PerfCurrentCount = mibBuilder.importSymbols("PerfHist-TC-MIB", "PerfIntervalCount", "PerfCurrentCount") SnmpAdminString, = mibBuilder.importSymbols("SNMP-FRAMEWORK-MIB", "SnmpAdminString") NotificationGroup, ObjectGroup, ModuleCompliance = mibBuilder.importSymbols("SNMPv2-CONF", "NotificationGroup", "ObjectGroup", "ModuleCompliance") MibScalar, MibTable, MibTableRow, MibTableColumn, Counter64, Unsigned32, Gauge32, IpAddress, iso, ModuleIdentity, Counter32, TimeTicks, NotificationType, transmission, Bits, ObjectIdentity, MibIdentifier, Integer32 = mibBuilder.importSymbols("SNMPv2-SMI", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "Counter64", "Unsigned32", "Gauge32", "IpAddress", "iso", "ModuleIdentity", "Counter32", "TimeTicks", "NotificationType", "transmission", "Bits", "ObjectIdentity", "MibIdentifier", "Integer32") TruthValue, TextualConvention, TimeStamp, RowStatus, StorageType, DisplayString = mibBuilder.importSymbols("SNMPv2-TC", "TruthValue", "TextualConvention", "TimeStamp", "RowStatus", "StorageType", "DisplayString") pwStdMIB = ModuleIdentity((1, 3, 6, 1, 2, 1, 10, 246)) pwStdMIB.setRevisions(('2009-06-11 00:00',)) if mibBuilder.loadTexts: pwStdMIB.setLastUpdated('200906110000Z') if mibBuilder.loadTexts: pwStdMIB.setOrganization('Pseudowire Edge-to-Edge Emulation (PWE3) Working Group') pwNotifications = MibIdentifier((1, 3, 6, 1, 2, 1, 10, 246, 0)) pwObjects = MibIdentifier((1, 3, 6, 1, 2, 1, 10, 246, 1)) pwConformance = MibIdentifier((1, 3, 6, 1, 2, 1, 10, 246, 2)) pwIndexNext = MibScalar((1, 3, 6, 1, 2, 1, 10, 246, 1, 1), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: pwIndexNext.setStatus('current') pwTable = MibTable((1, 3, 6, 1, 2, 1, 10, 246, 1, 2), ) if mibBuilder.loadTexts: pwTable.setStatus('current') pwEntry = MibTableRow((1, 3, 6, 1, 2, 1, 10, 246, 1, 2, 1), ).setIndexNames((0, "PW-STD-MIB", "pwIndex")) if mibBuilder.loadTexts: pwEntry.setStatus('current') pwIndex = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 246, 1, 2, 1, 1), PwIndexType()) if mibBuilder.loadTexts: pwIndex.setStatus('current') pwType = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 246, 1, 2, 1, 2), IANAPwTypeTC()).setMaxAccess("readcreate") if mibBuilder.loadTexts: pwType.setStatus('current') pwOwner = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 246, 1, 2, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5))).clone(namedValues=NamedValues(("manual", 1), ("pwIdFecSignaling", 2), ("genFecSignaling", 3), ("l2tpControlProtocol", 4), ("other", 5)))).setMaxAccess("readcreate") if mibBuilder.loadTexts: pwOwner.setStatus('current') pwPsnType = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 246, 1, 2, 1, 4), IANAPwPsnTypeTC()).setMaxAccess("readcreate") if mibBuilder.loadTexts: pwPsnType.setStatus('current') pwSetUpPriority = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 246, 1, 2, 1, 5), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 7))).setMaxAccess("readcreate") if mibBuilder.loadTexts: pwSetUpPriority.setStatus('current') pwHoldingPriority = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 246, 1, 2, 1, 6), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 7))).setMaxAccess("readcreate") if mibBuilder.loadTexts: pwHoldingPriority.setStatus('current') pwPeerAddrType = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 246, 1, 2, 1, 8), InetAddressType().clone('ipv4')).setMaxAccess("readcreate") if mibBuilder.loadTexts: pwPeerAddrType.setStatus('current') pwPeerAddr = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 246, 1, 2, 1, 9), InetAddress()).setMaxAccess("readcreate") if mibBuilder.loadTexts: pwPeerAddr.setStatus('current') pwAttachedPwIndex = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 246, 1, 2, 1, 10), PwIndexOrZeroType()).setMaxAccess("readcreate") if mibBuilder.loadTexts: pwAttachedPwIndex.setStatus('current') pwIfIndex = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 246, 1, 2, 1, 11), InterfaceIndexOrZero()).setMaxAccess("readcreate") if mibBuilder.loadTexts: pwIfIndex.setStatus('current') pwID = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 246, 1, 2, 1, 12), PwIDType()).setMaxAccess("readcreate") if mibBuilder.loadTexts: pwID.setStatus('current') pwLocalGroupID = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 246, 1, 2, 1, 13), PwGroupID()).setMaxAccess("readcreate") if mibBuilder.loadTexts: pwLocalGroupID.setStatus('current') pwGroupAttachmentID = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 246, 1, 2, 1, 14), PwAttachmentIdentifierType()).setMaxAccess("readcreate") if mibBuilder.loadTexts: pwGroupAttachmentID.setStatus('current') pwLocalAttachmentID = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 246, 1, 2, 1, 15), PwAttachmentIdentifierType()).setMaxAccess("readcreate") if mibBuilder.loadTexts: pwLocalAttachmentID.setStatus('current') pwRemoteAttachmentID = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 246, 1, 2, 1, 16), PwAttachmentIdentifierType()).setMaxAccess("readcreate") if mibBuilder.loadTexts: pwRemoteAttachmentID.setStatus('current') pwCwPreference = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 246, 1, 2, 1, 17), TruthValue().clone('false')).setMaxAccess("readcreate") if mibBuilder.loadTexts: pwCwPreference.setStatus('current') pwLocalIfMtu = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 246, 1, 2, 1, 18), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readcreate") if mibBuilder.loadTexts: pwLocalIfMtu.setStatus('current') pwLocalIfString = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 246, 1, 2, 1, 19), TruthValue().clone('false')).setMaxAccess("readcreate") if mibBuilder.loadTexts: pwLocalIfString.setStatus('current') pwLocalCapabAdvert = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 246, 1, 2, 1, 20), IANAPwCapabilities()).setMaxAccess("readcreate") if mibBuilder.loadTexts: pwLocalCapabAdvert.setStatus('current') pwRemoteGroupID = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 246, 1, 2, 1, 21), PwGroupID()).setMaxAccess("readonly") if mibBuilder.loadTexts: pwRemoteGroupID.setStatus('current') pwCwStatus = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 246, 1, 2, 1, 22), PwCwStatusTC()).setMaxAccess("readonly") if mibBuilder.loadTexts: pwCwStatus.setStatus('current') pwRemoteIfMtu = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 246, 1, 2, 1, 23), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: pwRemoteIfMtu.setStatus('current') pwRemoteIfString = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 246, 1, 2, 1, 24), SnmpAdminString().subtype(subtypeSpec=ValueSizeConstraint(0, 80))).setMaxAccess("readonly") if mibBuilder.loadTexts: pwRemoteIfString.setStatus('current') pwRemoteCapabilities = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 246, 1, 2, 1, 25), IANAPwCapabilities()).setMaxAccess("readonly") if mibBuilder.loadTexts: pwRemoteCapabilities.setStatus('current') pwFragmentCfgSize = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 246, 1, 2, 1, 26), PwFragSize()).setUnits('bytes').setMaxAccess("readcreate") if mibBuilder.loadTexts: pwFragmentCfgSize.setStatus('current') pwRmtFragCapability = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 246, 1, 2, 1, 27), PwFragStatus()).setMaxAccess("readonly") if mibBuilder.loadTexts: pwRmtFragCapability.setStatus('current') pwFcsRetentionCfg = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 246, 1, 2, 1, 28), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("fcsRetentionDisable", 1), ("fcsRetentionEnable", 2))).clone('fcsRetentionDisable')).setMaxAccess("readcreate") if mibBuilder.loadTexts: pwFcsRetentionCfg.setStatus('current') pwFcsRetentionStatus = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 246, 1, 2, 1, 29), Bits().clone(namedValues=NamedValues(("remoteIndicationUnknown", 0), ("remoteRequestFcsRetention", 1), ("fcsRetentionEnabled", 2), ("fcsRetentionDisabled", 3), ("localFcsRetentionCfgErr", 4), ("fcsRetentionFcsSizeMismatch", 5)))).setMaxAccess("readonly") if mibBuilder.loadTexts: pwFcsRetentionStatus.setStatus('current') pwOutboundLabel = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 246, 1, 2, 1, 30), Unsigned32()).setMaxAccess("readcreate") if mibBuilder.loadTexts: pwOutboundLabel.setStatus('current') pwInboundLabel = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 246, 1, 2, 1, 31), Unsigned32()).setMaxAccess("readcreate") if mibBuilder.loadTexts: pwInboundLabel.setStatus('current') pwName = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 246, 1, 2, 1, 32), SnmpAdminString()).setMaxAccess("readcreate") if mibBuilder.loadTexts: pwName.setStatus('current') pwDescr = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 246, 1, 2, 1, 33), SnmpAdminString()).setMaxAccess("readcreate") if mibBuilder.loadTexts: pwDescr.setStatus('current') pwCreateTime = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 246, 1, 2, 1, 34), TimeStamp()).setMaxAccess("readonly") if mibBuilder.loadTexts: pwCreateTime.setStatus('current') pwUpTime = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 246, 1, 2, 1, 35), TimeTicks()).setMaxAccess("readonly") if mibBuilder.loadTexts: pwUpTime.setStatus('current') pwLastChange = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 246, 1, 2, 1, 36), TimeTicks()).setMaxAccess("readonly") if mibBuilder.loadTexts: pwLastChange.setStatus('current') pwAdminStatus = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 246, 1, 2, 1, 37), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("up", 1), ("down", 2), ("testing", 3)))).setMaxAccess("readcreate") if mibBuilder.loadTexts: pwAdminStatus.setStatus('current') pwOperStatus = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 246, 1, 2, 1, 38), PwOperStatusTC()).setMaxAccess("readonly") if mibBuilder.loadTexts: pwOperStatus.setStatus('current') pwLocalStatus = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 246, 1, 2, 1, 39), PwStatus()).setMaxAccess("readonly") if mibBuilder.loadTexts: pwLocalStatus.setStatus('current') pwRemoteStatusCapable = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 246, 1, 2, 1, 40), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))).clone(namedValues=NamedValues(("notApplicable", 1), ("notYetKnown", 2), ("remoteCapable", 3), ("remoteNotCapable", 4)))).setMaxAccess("readonly") if mibBuilder.loadTexts: pwRemoteStatusCapable.setStatus('current') pwRemoteStatus = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 246, 1, 2, 1, 41), PwStatus()).setMaxAccess("readonly") if mibBuilder.loadTexts: pwRemoteStatus.setStatus('current') pwTimeElapsed = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 246, 1, 2, 1, 42), HCPerfTimeElapsed()).setMaxAccess("readonly") if mibBuilder.loadTexts: pwTimeElapsed.setStatus('current') pwValidIntervals = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 246, 1, 2, 1, 43), HCPerfValidIntervals()).setMaxAccess("readonly") if mibBuilder.loadTexts: pwValidIntervals.setStatus('current') pwRowStatus = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 246, 1, 2, 1, 44), RowStatus()).setMaxAccess("readcreate") if mibBuilder.loadTexts: pwRowStatus.setStatus('current') pwStorageType = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 246, 1, 2, 1, 45), StorageType().clone('nonVolatile')).setMaxAccess("readcreate") if mibBuilder.loadTexts: pwStorageType.setStatus('current') pwOamEnable = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 246, 1, 2, 1, 46), TruthValue().clone('true')).setMaxAccess("readcreate") if mibBuilder.loadTexts: pwOamEnable.setStatus('current') pwGenAGIType = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 246, 1, 2, 1, 47), PwGenIdType()).setMaxAccess("readcreate") if mibBuilder.loadTexts: pwGenAGIType.setStatus('current') pwGenLocalAIIType = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 246, 1, 2, 1, 48), PwGenIdType()).setMaxAccess("readcreate") if mibBuilder.loadTexts: pwGenLocalAIIType.setStatus('current') pwGenRemoteAIIType = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 246, 1, 2, 1, 49), PwGenIdType()).setMaxAccess("readcreate") if mibBuilder.loadTexts: pwGenRemoteAIIType.setStatus('current') pwPerfCurrentTable = MibTable((1, 3, 6, 1, 2, 1, 10, 246, 1, 3), ) if mibBuilder.loadTexts: pwPerfCurrentTable.setStatus('current') pwPerfCurrentEntry = MibTableRow((1, 3, 6, 1, 2, 1, 10, 246, 1, 3, 1), ).setIndexNames((0, "PW-STD-MIB", "pwIndex")) if mibBuilder.loadTexts: pwPerfCurrentEntry.setStatus('current') pwPerfCurrentInHCPackets = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 246, 1, 3, 1, 1), HCPerfCurrentCount()).setMaxAccess("readonly") if mibBuilder.loadTexts: pwPerfCurrentInHCPackets.setStatus('current') pwPerfCurrentInHCBytes = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 246, 1, 3, 1, 2), HCPerfCurrentCount()).setMaxAccess("readonly") if mibBuilder.loadTexts: pwPerfCurrentInHCBytes.setStatus('current') pwPerfCurrentOutHCPackets = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 246, 1, 3, 1, 3), HCPerfCurrentCount()).setMaxAccess("readonly") if mibBuilder.loadTexts: pwPerfCurrentOutHCPackets.setStatus('current') pwPerfCurrentOutHCBytes = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 246, 1, 3, 1, 4), HCPerfCurrentCount()).setMaxAccess("readonly") if mibBuilder.loadTexts: pwPerfCurrentOutHCBytes.setStatus('current') pwPerfCurrentInPackets = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 246, 1, 3, 1, 5), PerfCurrentCount()).setMaxAccess("readonly") if mibBuilder.loadTexts: pwPerfCurrentInPackets.setStatus('current') pwPerfCurrentInBytes = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 246, 1, 3, 1, 6), PerfCurrentCount()).setMaxAccess("readonly") if mibBuilder.loadTexts: pwPerfCurrentInBytes.setStatus('current') pwPerfCurrentOutPackets = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 246, 1, 3, 1, 7), PerfCurrentCount()).setMaxAccess("readonly") if mibBuilder.loadTexts: pwPerfCurrentOutPackets.setStatus('current') pwPerfCurrentOutBytes = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 246, 1, 3, 1, 8), PerfCurrentCount()).setMaxAccess("readonly") if mibBuilder.loadTexts: pwPerfCurrentOutBytes.setStatus('current') pwPerfIntervalTable = MibTable((1, 3, 6, 1, 2, 1, 10, 246, 1, 4), ) if mibBuilder.loadTexts: pwPerfIntervalTable.setStatus('current') pwPerfIntervalEntry = MibTableRow((1, 3, 6, 1, 2, 1, 10, 246, 1, 4, 1), ).setIndexNames((0, "PW-STD-MIB", "pwIndex"), (0, "PW-STD-MIB", "pwPerfIntervalNumber")) if mibBuilder.loadTexts: pwPerfIntervalEntry.setStatus('current') pwPerfIntervalNumber = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 246, 1, 4, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 96))) if mibBuilder.loadTexts: pwPerfIntervalNumber.setStatus('current') pwPerfIntervalValidData = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 246, 1, 4, 1, 2), TruthValue()).setMaxAccess("readonly") if mibBuilder.loadTexts: pwPerfIntervalValidData.setStatus('current') pwPerfIntervalTimeElapsed = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 246, 1, 4, 1, 3), HCPerfTimeElapsed()).setMaxAccess("readonly") if mibBuilder.loadTexts: pwPerfIntervalTimeElapsed.setStatus('current') pwPerfIntervalInHCPackets = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 246, 1, 4, 1, 4), HCPerfIntervalCount()).setMaxAccess("readonly") if mibBuilder.loadTexts: pwPerfIntervalInHCPackets.setStatus('current') pwPerfIntervalInHCBytes = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 246, 1, 4, 1, 5), HCPerfIntervalCount()).setMaxAccess("readonly") if mibBuilder.loadTexts: pwPerfIntervalInHCBytes.setStatus('current') pwPerfIntervalOutHCPackets = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 246, 1, 4, 1, 6), HCPerfIntervalCount()).setMaxAccess("readonly") if mibBuilder.loadTexts: pwPerfIntervalOutHCPackets.setStatus('current') pwPerfIntervalOutHCBytes = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 246, 1, 4, 1, 7), HCPerfIntervalCount()).setMaxAccess("readonly") if mibBuilder.loadTexts: pwPerfIntervalOutHCBytes.setStatus('current') pwPerfIntervalInPackets = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 246, 1, 4, 1, 8), PerfIntervalCount()).setMaxAccess("readonly") if mibBuilder.loadTexts: pwPerfIntervalInPackets.setStatus('current') pwPerfIntervalInBytes = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 246, 1, 4, 1, 9), PerfIntervalCount()).setMaxAccess("readonly") if mibBuilder.loadTexts: pwPerfIntervalInBytes.setStatus('current') pwPerfIntervalOutPackets = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 246, 1, 4, 1, 10), PerfIntervalCount()).setMaxAccess("readonly") if mibBuilder.loadTexts: pwPerfIntervalOutPackets.setStatus('current') pwPerfIntervalOutBytes = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 246, 1, 4, 1, 11), PerfIntervalCount()).setMaxAccess("readonly") if mibBuilder.loadTexts: pwPerfIntervalOutBytes.setStatus('current') pwPerf1DayIntervalTable = MibTable((1, 3, 6, 1, 2, 1, 10, 246, 1, 5), ) if mibBuilder.loadTexts: pwPerf1DayIntervalTable.setStatus('current') pwPerf1DayIntervalEntry = MibTableRow((1, 3, 6, 1, 2, 1, 10, 246, 1, 5, 1), ).setIndexNames((0, "PW-STD-MIB", "pwIndex"), (0, "PW-STD-MIB", "pwPerf1DayIntervalNumber")) if mibBuilder.loadTexts: pwPerf1DayIntervalEntry.setStatus('current') pwPerf1DayIntervalNumber = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 246, 1, 5, 1, 1), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(1, 31))) if mibBuilder.loadTexts: pwPerf1DayIntervalNumber.setStatus('current') pwPerf1DayIntervalValidData = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 246, 1, 5, 1, 2), TruthValue()).setMaxAccess("readonly") if mibBuilder.loadTexts: pwPerf1DayIntervalValidData.setStatus('current') pwPerf1DayIntervalTimeElapsed = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 246, 1, 5, 1, 3), HCPerfTimeElapsed()).setUnits('seconds').setMaxAccess("readonly") if mibBuilder.loadTexts: pwPerf1DayIntervalTimeElapsed.setStatus('current') pwPerf1DayIntervalInHCPackets = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 246, 1, 5, 1, 4), Counter64()).setMaxAccess("readonly") if mibBuilder.loadTexts: pwPerf1DayIntervalInHCPackets.setStatus('current') pwPerf1DayIntervalInHCBytes = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 246, 1, 5, 1, 5), Counter64()).setMaxAccess("readonly") if mibBuilder.loadTexts: pwPerf1DayIntervalInHCBytes.setStatus('current') pwPerf1DayIntervalOutHCPackets = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 246, 1, 5, 1, 6), Counter64()).setMaxAccess("readonly") if mibBuilder.loadTexts: pwPerf1DayIntervalOutHCPackets.setStatus('current') pwPerf1DayIntervalOutHCBytes = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 246, 1, 5, 1, 7), Counter64()).setMaxAccess("readonly") if mibBuilder.loadTexts: pwPerf1DayIntervalOutHCBytes.setStatus('current') pwPerfTotalErrorPackets = MibScalar((1, 3, 6, 1, 2, 1, 10, 246, 1, 6), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: pwPerfTotalErrorPackets.setStatus('current') pwIndexMappingTable = MibTable((1, 3, 6, 1, 2, 1, 10, 246, 1, 7), ) if mibBuilder.loadTexts: pwIndexMappingTable.setStatus('current') pwIndexMappingEntry = MibTableRow((1, 3, 6, 1, 2, 1, 10, 246, 1, 7, 1), ).setIndexNames((0, "PW-STD-MIB", "pwIndexMappingPwType"), (0, "PW-STD-MIB", "pwIndexMappingPwID"), (0, "PW-STD-MIB", "pwIndexMappingPeerAddrType"), (0, "PW-STD-MIB", "pwIndexMappingPeerAddr")) if mibBuilder.loadTexts: pwIndexMappingEntry.setStatus('current') pwIndexMappingPwType = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 246, 1, 7, 1, 1), IANAPwTypeTC()) if mibBuilder.loadTexts: pwIndexMappingPwType.setStatus('current') pwIndexMappingPwID = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 246, 1, 7, 1, 2), PwIDType()) if mibBuilder.loadTexts: pwIndexMappingPwID.setStatus('current') pwIndexMappingPeerAddrType = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 246, 1, 7, 1, 3), InetAddressType()) if mibBuilder.loadTexts: pwIndexMappingPeerAddrType.setStatus('current') pwIndexMappingPeerAddr = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 246, 1, 7, 1, 4), InetAddress()) if mibBuilder.loadTexts: pwIndexMappingPeerAddr.setStatus('current') pwIndexMappingPwIndex = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 246, 1, 7, 1, 5), PwIndexType()).setMaxAccess("readonly") if mibBuilder.loadTexts: pwIndexMappingPwIndex.setStatus('current') pwPeerMappingTable = MibTable((1, 3, 6, 1, 2, 1, 10, 246, 1, 8), ) if mibBuilder.loadTexts: pwPeerMappingTable.setStatus('current') pwPeerMappingEntry = MibTableRow((1, 3, 6, 1, 2, 1, 10, 246, 1, 8, 1), ).setIndexNames((0, "PW-STD-MIB", "pwPeerMappingPeerAddrType"), (0, "PW-STD-MIB", "pwPeerMappingPeerAddr"), (0, "PW-STD-MIB", "pwPeerMappingPwType"), (0, "PW-STD-MIB", "pwPeerMappingPwID")) if mibBuilder.loadTexts: pwPeerMappingEntry.setStatus('current') pwPeerMappingPeerAddrType = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 246, 1, 8, 1, 1), InetAddressType()) if mibBuilder.loadTexts: pwPeerMappingPeerAddrType.setStatus('current') pwPeerMappingPeerAddr = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 246, 1, 8, 1, 2), InetAddress()) if mibBuilder.loadTexts: pwPeerMappingPeerAddr.setStatus('current') pwPeerMappingPwType = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 246, 1, 8, 1, 3), IANAPwTypeTC()) if mibBuilder.loadTexts: pwPeerMappingPwType.setStatus('current') pwPeerMappingPwID = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 246, 1, 8, 1, 4), PwIDType()) if mibBuilder.loadTexts: pwPeerMappingPwID.setStatus('current') pwPeerMappingPwIndex = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 246, 1, 8, 1, 5), PwIndexType()).setMaxAccess("readonly") if mibBuilder.loadTexts: pwPeerMappingPwIndex.setStatus('current') pwUpDownNotifEnable = MibScalar((1, 3, 6, 1, 2, 1, 10, 246, 1, 9), TruthValue().clone('false')).setMaxAccess("readwrite") if mibBuilder.loadTexts: pwUpDownNotifEnable.setStatus('current') pwDeletedNotifEnable = MibScalar((1, 3, 6, 1, 2, 1, 10, 246, 1, 10), TruthValue().clone('false')).setMaxAccess("readwrite") if mibBuilder.loadTexts: pwDeletedNotifEnable.setStatus('current') pwNotifRate = MibScalar((1, 3, 6, 1, 2, 1, 10, 246, 1, 11), Unsigned32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: pwNotifRate.setStatus('current') pwGenFecIndexMappingTable = MibTable((1, 3, 6, 1, 2, 1, 10, 246, 1, 12), ) if mibBuilder.loadTexts: pwGenFecIndexMappingTable.setStatus('current') pwGenFecIndexMappingEntry = MibTableRow((1, 3, 6, 1, 2, 1, 10, 246, 1, 12, 1), ).setIndexNames((0, "PW-STD-MIB", "pwGenFecIndexMappingAGIType"), (0, "PW-STD-MIB", "pwGenFecIndexMappingAGI"), (0, "PW-STD-MIB", "pwGenFecIndexMappingLocalAIIType"), (0, "PW-STD-MIB", "pwGenFecIndexMappingLocalAII"), (0, "PW-STD-MIB", "pwGenFecIndexMappingRemoteAIIType"), (0, "PW-STD-MIB", "pwGenFecIndexMappingRemoteAII")) if mibBuilder.loadTexts: pwGenFecIndexMappingEntry.setStatus('current') pwGenFecIndexMappingAGIType = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 246, 1, 12, 1, 1), PwGenIdType()) if mibBuilder.loadTexts: pwGenFecIndexMappingAGIType.setStatus('current') pwGenFecIndexMappingAGI = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 246, 1, 12, 1, 2), PwAttachmentIdentifierType()) if mibBuilder.loadTexts: pwGenFecIndexMappingAGI.setStatus('current') pwGenFecIndexMappingLocalAIIType = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 246, 1, 12, 1, 3), PwGenIdType()) if mibBuilder.loadTexts: pwGenFecIndexMappingLocalAIIType.setStatus('current') pwGenFecIndexMappingLocalAII = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 246, 1, 12, 1, 4), PwAttachmentIdentifierType()) if mibBuilder.loadTexts: pwGenFecIndexMappingLocalAII.setStatus('current') pwGenFecIndexMappingRemoteAIIType = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 246, 1, 12, 1, 5), PwGenIdType()) if mibBuilder.loadTexts: pwGenFecIndexMappingRemoteAIIType.setStatus('current') pwGenFecIndexMappingRemoteAII = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 246, 1, 12, 1, 6), PwAttachmentIdentifierType()) if mibBuilder.loadTexts: pwGenFecIndexMappingRemoteAII.setStatus('current') pwGenFecIndexMappingPwIndex = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 246, 1, 12, 1, 7), PwIndexType()).setMaxAccess("readonly") if mibBuilder.loadTexts: pwGenFecIndexMappingPwIndex.setStatus('current') pwDown = NotificationType((1, 3, 6, 1, 2, 1, 10, 246, 0, 1)).setObjects(("PW-STD-MIB", "pwOperStatus"), ("PW-STD-MIB", "pwOperStatus")) if mibBuilder.loadTexts: pwDown.setStatus('current') pwUp = NotificationType((1, 3, 6, 1, 2, 1, 10, 246, 0, 2)).setObjects(("PW-STD-MIB", "pwOperStatus"), ("PW-STD-MIB", "pwOperStatus")) if mibBuilder.loadTexts: pwUp.setStatus('current') pwDeleted = NotificationType((1, 3, 6, 1, 2, 1, 10, 246, 0, 3)).setObjects(("PW-STD-MIB", "pwType"), ("PW-STD-MIB", "pwID"), ("PW-STD-MIB", "pwPeerAddrType"), ("PW-STD-MIB", "pwPeerAddr")) if mibBuilder.loadTexts: pwDeleted.setStatus('current') pwGroups = MibIdentifier((1, 3, 6, 1, 2, 1, 10, 246, 2, 1)) pwCompliances = MibIdentifier((1, 3, 6, 1, 2, 1, 10, 246, 2, 2)) pwModuleFullCompliance = ModuleCompliance((1, 3, 6, 1, 2, 1, 10, 246, 2, 2, 1)).setObjects(("PW-STD-MIB", "pwBasicGroup"), ("PW-STD-MIB", "pwPerformanceGeneralGroup"), ("PW-STD-MIB", "pwNotificationGroup"), ("PW-STD-MIB", "pwPwIdGroup"), ("PW-STD-MIB", "pwGeneralizedFecGroup"), ("PW-STD-MIB", "pwFcsGroup"), ("PW-STD-MIB", "pwFragGroup"), ("PW-STD-MIB", "pwPwStatusGroup"), ("PW-STD-MIB", "pwGetNextGroup"), ("PW-STD-MIB", "pwPriorityGroup"), ("PW-STD-MIB", "pwAttachmentGroup"), ("PW-STD-MIB", "pwPeformance1DayIntervalGroup"), ("PW-STD-MIB", "pwPerformanceIntervalGeneralGroup"), ("PW-STD-MIB", "pwPeformanceIntervalGroup"), ("PW-STD-MIB", "pwHCPeformanceIntervalGroup"), ("PW-STD-MIB", "pwMappingTablesGroup"), ("PW-STD-MIB", "pwSignalingGroup"), ("PW-STD-MIB", "pwNotificationControlGroup")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): pwModuleFullCompliance = pwModuleFullCompliance.setStatus('current') pwModuleReadOnlyCompliance = ModuleCompliance((1, 3, 6, 1, 2, 1, 10, 246, 2, 2, 2)).setObjects(("PW-STD-MIB", "pwBasicGroup"), ("PW-STD-MIB", "pwNotificationGroup"), ("PW-STD-MIB", "pwPwIdGroup"), ("PW-STD-MIB", "pwGeneralizedFecGroup"), ("PW-STD-MIB", "pwFcsGroup"), ("PW-STD-MIB", "pwFragGroup"), ("PW-STD-MIB", "pwPwStatusGroup"), ("PW-STD-MIB", "pwGetNextGroup"), ("PW-STD-MIB", "pwPriorityGroup"), ("PW-STD-MIB", "pwAttachmentGroup"), ("PW-STD-MIB", "pwPeformance1DayIntervalGroup"), ("PW-STD-MIB", "pwPerformanceIntervalGeneralGroup"), ("PW-STD-MIB", "pwPeformanceIntervalGroup"), ("PW-STD-MIB", "pwHCPeformanceIntervalGroup"), ("PW-STD-MIB", "pwMappingTablesGroup"), ("PW-STD-MIB", "pwSignalingGroup"), ("PW-STD-MIB", "pwNotificationControlGroup")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): pwModuleReadOnlyCompliance = pwModuleReadOnlyCompliance.setStatus('current') pwBasicGroup = ObjectGroup((1, 3, 6, 1, 2, 1, 10, 246, 2, 1, 1)).setObjects(("PW-STD-MIB", "pwType"), ("PW-STD-MIB", "pwOwner"), ("PW-STD-MIB", "pwPsnType"), ("PW-STD-MIB", "pwIfIndex"), ("PW-STD-MIB", "pwCwPreference"), ("PW-STD-MIB", "pwLocalIfMtu"), ("PW-STD-MIB", "pwOutboundLabel"), ("PW-STD-MIB", "pwInboundLabel"), ("PW-STD-MIB", "pwName"), ("PW-STD-MIB", "pwDescr"), ("PW-STD-MIB", "pwCreateTime"), ("PW-STD-MIB", "pwUpTime"), ("PW-STD-MIB", "pwLastChange"), ("PW-STD-MIB", "pwAdminStatus"), ("PW-STD-MIB", "pwOperStatus"), ("PW-STD-MIB", "pwLocalStatus"), ("PW-STD-MIB", "pwRowStatus"), ("PW-STD-MIB", "pwStorageType"), ("PW-STD-MIB", "pwOamEnable")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): pwBasicGroup = pwBasicGroup.setStatus('current') pwPwIdGroup = ObjectGroup((1, 3, 6, 1, 2, 1, 10, 246, 2, 1, 2)).setObjects(("PW-STD-MIB", "pwID")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): pwPwIdGroup = pwPwIdGroup.setStatus('current') pwGeneralizedFecGroup = ObjectGroup((1, 3, 6, 1, 2, 1, 10, 246, 2, 1, 3)).setObjects(("PW-STD-MIB", "pwGroupAttachmentID"), ("PW-STD-MIB", "pwLocalAttachmentID"), ("PW-STD-MIB", "pwRemoteAttachmentID"), ("PW-STD-MIB", "pwGenAGIType"), ("PW-STD-MIB", "pwGenLocalAIIType"), ("PW-STD-MIB", "pwGenRemoteAIIType")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): pwGeneralizedFecGroup = pwGeneralizedFecGroup.setStatus('current') pwFcsGroup = ObjectGroup((1, 3, 6, 1, 2, 1, 10, 246, 2, 1, 4)).setObjects(("PW-STD-MIB", "pwFcsRetentionCfg"), ("PW-STD-MIB", "pwFcsRetentionStatus")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): pwFcsGroup = pwFcsGroup.setStatus('current') pwFragGroup = ObjectGroup((1, 3, 6, 1, 2, 1, 10, 246, 2, 1, 5)).setObjects(("PW-STD-MIB", "pwFragmentCfgSize"), ("PW-STD-MIB", "pwRmtFragCapability")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): pwFragGroup = pwFragGroup.setStatus('current') pwPwStatusGroup = ObjectGroup((1, 3, 6, 1, 2, 1, 10, 246, 2, 1, 6)).setObjects(("PW-STD-MIB", "pwRemoteCapabilities"), ("PW-STD-MIB", "pwRemoteStatusCapable"), ("PW-STD-MIB", "pwRemoteStatus")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): pwPwStatusGroup = pwPwStatusGroup.setStatus('current') pwGetNextGroup = ObjectGroup((1, 3, 6, 1, 2, 1, 10, 246, 2, 1, 7)).setObjects(("PW-STD-MIB", "pwIndexNext")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): pwGetNextGroup = pwGetNextGroup.setStatus('current') pwPriorityGroup = ObjectGroup((1, 3, 6, 1, 2, 1, 10, 246, 2, 1, 8)).setObjects(("PW-STD-MIB", "pwSetUpPriority"), ("PW-STD-MIB", "pwHoldingPriority")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): pwPriorityGroup = pwPriorityGroup.setStatus('current') pwAttachmentGroup = ObjectGroup((1, 3, 6, 1, 2, 1, 10, 246, 2, 1, 9)).setObjects(("PW-STD-MIB", "pwAttachedPwIndex")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): pwAttachmentGroup = pwAttachmentGroup.setStatus('current') pwPerformanceGeneralGroup = ObjectGroup((1, 3, 6, 1, 2, 1, 10, 246, 2, 1, 10)).setObjects(("PW-STD-MIB", "pwPerfTotalErrorPackets")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): pwPerformanceGeneralGroup = pwPerformanceGeneralGroup.setStatus('current') pwPeformance1DayIntervalGroup = ObjectGroup((1, 3, 6, 1, 2, 1, 10, 246, 2, 1, 11)).setObjects(("PW-STD-MIB", "pwPerf1DayIntervalValidData"), ("PW-STD-MIB", "pwPerf1DayIntervalTimeElapsed"), ("PW-STD-MIB", "pwPerf1DayIntervalInHCPackets"), ("PW-STD-MIB", "pwPerf1DayIntervalInHCBytes"), ("PW-STD-MIB", "pwPerf1DayIntervalOutHCPackets"), ("PW-STD-MIB", "pwPerf1DayIntervalOutHCBytes")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): pwPeformance1DayIntervalGroup = pwPeformance1DayIntervalGroup.setStatus('current') pwPerformanceIntervalGeneralGroup = ObjectGroup((1, 3, 6, 1, 2, 1, 10, 246, 2, 1, 12)).setObjects(("PW-STD-MIB", "pwTimeElapsed"), ("PW-STD-MIB", "pwValidIntervals"), ("PW-STD-MIB", "pwPerfIntervalValidData"), ("PW-STD-MIB", "pwPerfIntervalTimeElapsed")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): pwPerformanceIntervalGeneralGroup = pwPerformanceIntervalGeneralGroup.setStatus('current') pwPeformanceIntervalGroup = ObjectGroup((1, 3, 6, 1, 2, 1, 10, 246, 2, 1, 13)).setObjects(("PW-STD-MIB", "pwPerfCurrentInPackets"), ("PW-STD-MIB", "pwPerfCurrentInBytes"), ("PW-STD-MIB", "pwPerfCurrentOutPackets"), ("PW-STD-MIB", "pwPerfCurrentOutBytes"), ("PW-STD-MIB", "pwPerfIntervalInPackets"), ("PW-STD-MIB", "pwPerfIntervalInBytes"), ("PW-STD-MIB", "pwPerfIntervalOutPackets"), ("PW-STD-MIB", "pwPerfIntervalOutBytes")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): pwPeformanceIntervalGroup = pwPeformanceIntervalGroup.setStatus('current') pwHCPeformanceIntervalGroup = ObjectGroup((1, 3, 6, 1, 2, 1, 10, 246, 2, 1, 14)).setObjects(("PW-STD-MIB", "pwPerfCurrentInHCPackets"), ("PW-STD-MIB", "pwPerfCurrentInHCBytes"), ("PW-STD-MIB", "pwPerfCurrentOutHCPackets"), ("PW-STD-MIB", "pwPerfCurrentOutHCBytes"), ("PW-STD-MIB", "pwPerfIntervalInHCPackets"), ("PW-STD-MIB", "pwPerfIntervalInHCBytes"), ("PW-STD-MIB", "pwPerfIntervalOutHCPackets"), ("PW-STD-MIB", "pwPerfIntervalOutHCBytes")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): pwHCPeformanceIntervalGroup = pwHCPeformanceIntervalGroup.setStatus('current') pwMappingTablesGroup = ObjectGroup((1, 3, 6, 1, 2, 1, 10, 246, 2, 1, 15)).setObjects(("PW-STD-MIB", "pwIndexMappingPwIndex"), ("PW-STD-MIB", "pwPeerMappingPwIndex"), ("PW-STD-MIB", "pwGenFecIndexMappingPwIndex")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): pwMappingTablesGroup = pwMappingTablesGroup.setStatus('current') pwNotificationControlGroup = ObjectGroup((1, 3, 6, 1, 2, 1, 10, 246, 2, 1, 16)).setObjects(("PW-STD-MIB", "pwUpDownNotifEnable"), ("PW-STD-MIB", "pwDeletedNotifEnable"), ("PW-STD-MIB", "pwNotifRate")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): pwNotificationControlGroup = pwNotificationControlGroup.setStatus('current') pwNotificationGroup = NotificationGroup((1, 3, 6, 1, 2, 1, 10, 246, 2, 1, 17)).setObjects(("PW-STD-MIB", "pwUp"), ("PW-STD-MIB", "pwDown"), ("PW-STD-MIB", "pwDeleted")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): pwNotificationGroup = pwNotificationGroup.setStatus('current') pwSignalingGroup = ObjectGroup((1, 3, 6, 1, 2, 1, 10, 246, 2, 1, 18)).setObjects(("PW-STD-MIB", "pwPeerAddrType"), ("PW-STD-MIB", "pwPeerAddr"), ("PW-STD-MIB", "pwLocalGroupID"), ("PW-STD-MIB", "pwLocalIfString"), ("PW-STD-MIB", "pwLocalCapabAdvert"), ("PW-STD-MIB", "pwRemoteGroupID"), ("PW-STD-MIB", "pwCwStatus"), ("PW-STD-MIB", "pwRemoteIfMtu"), ("PW-STD-MIB", "pwRemoteIfString")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): pwSignalingGroup = pwSignalingGroup.setStatus('current') mibBuilder.exportSymbols("PW-STD-MIB", pwGenFecIndexMappingPwIndex=pwGenFecIndexMappingPwIndex, pwGenFecIndexMappingRemoteAII=pwGenFecIndexMappingRemoteAII, pwIndexNext=pwIndexNext, pwFcsRetentionCfg=pwFcsRetentionCfg, pwPeerAddr=pwPeerAddr, pwConformance=pwConformance, pwIndexMappingTable=pwIndexMappingTable, pwGenFecIndexMappingEntry=pwGenFecIndexMappingEntry, pwPerf1DayIntervalInHCBytes=pwPerf1DayIntervalInHCBytes, PYSNMP_MODULE_ID=pwStdMIB, pwPerf1DayIntervalTimeElapsed=pwPerf1DayIntervalTimeElapsed, pwPerfIntervalInHCPackets=pwPerfIntervalInHCPackets, pwMappingTablesGroup=pwMappingTablesGroup, pwInboundLabel=pwInboundLabel, pwGenLocalAIIType=pwGenLocalAIIType, pwAdminStatus=pwAdminStatus, pwPeerMappingPwType=pwPeerMappingPwType, pwValidIntervals=pwValidIntervals, pwPerfCurrentOutHCBytes=pwPerfCurrentOutHCBytes, pwHoldingPriority=pwHoldingPriority, pwCwPreference=pwCwPreference, pwIndex=pwIndex, pwObjects=pwObjects, pwNotifications=pwNotifications, pwPerf1DayIntervalEntry=pwPerf1DayIntervalEntry, pwRemoteIfString=pwRemoteIfString, pwPerf1DayIntervalNumber=pwPerf1DayIntervalNumber, pwNotifRate=pwNotifRate, pwFragmentCfgSize=pwFragmentCfgSize, pwPerfIntervalOutBytes=pwPerfIntervalOutBytes, pwPerfCurrentInHCPackets=pwPerfCurrentInHCPackets, pwLocalAttachmentID=pwLocalAttachmentID, pwPerfCurrentOutHCPackets=pwPerfCurrentOutHCPackets, pwAttachedPwIndex=pwAttachedPwIndex, pwCwStatus=pwCwStatus, pwPerfIntervalValidData=pwPerfIntervalValidData, pwHCPeformanceIntervalGroup=pwHCPeformanceIntervalGroup, pwNotificationGroup=pwNotificationGroup, pwPerf1DayIntervalOutHCPackets=pwPerf1DayIntervalOutHCPackets, pwPeerMappingPwIndex=pwPeerMappingPwIndex, pwPerf1DayIntervalOutHCBytes=pwPerf1DayIntervalOutHCBytes, pwStorageType=pwStorageType, pwGroups=pwGroups, pwPerf1DayIntervalInHCPackets=pwPerf1DayIntervalInHCPackets, pwRmtFragCapability=pwRmtFragCapability, pwIndexMappingPwID=pwIndexMappingPwID, pwOamEnable=pwOamEnable, pwPerfTotalErrorPackets=pwPerfTotalErrorPackets, pwIndexMappingPwIndex=pwIndexMappingPwIndex, pwPeformanceIntervalGroup=pwPeformanceIntervalGroup, pwAttachmentGroup=pwAttachmentGroup, pwPerfCurrentOutPackets=pwPerfCurrentOutPackets, pwEntry=pwEntry, pwUpDownNotifEnable=pwUpDownNotifEnable, pwPeerMappingTable=pwPeerMappingTable, pwPerfCurrentInHCBytes=pwPerfCurrentInHCBytes, pwPerfIntervalTable=pwPerfIntervalTable, pwModuleReadOnlyCompliance=pwModuleReadOnlyCompliance, pwRowStatus=pwRowStatus, pwRemoteAttachmentID=pwRemoteAttachmentID, pwPerfIntervalEntry=pwPerfIntervalEntry, pwPerfIntervalOutPackets=pwPerfIntervalOutPackets, pwPeformance1DayIntervalGroup=pwPeformance1DayIntervalGroup, pwIndexMappingEntry=pwIndexMappingEntry, pwPeerMappingPeerAddr=pwPeerMappingPeerAddr, pwLocalIfString=pwLocalIfString, pwPerfIntervalInHCBytes=pwPerfIntervalInHCBytes, pwPeerMappingPeerAddrType=pwPeerMappingPeerAddrType, pwGenFecIndexMappingAGI=pwGenFecIndexMappingAGI, pwLocalStatus=pwLocalStatus, pwDeleted=pwDeleted, pwBasicGroup=pwBasicGroup, pwPerfCurrentTable=pwPerfCurrentTable, pwDescr=pwDescr, pwPerfCurrentInBytes=pwPerfCurrentInBytes, pwType=pwType, pwModuleFullCompliance=pwModuleFullCompliance, pwCreateTime=pwCreateTime, pwFcsGroup=pwFcsGroup, pwPeerAddrType=pwPeerAddrType, pwRemoteGroupID=pwRemoteGroupID, pwRemoteStatusCapable=pwRemoteStatusCapable, pwPerf1DayIntervalTable=pwPerf1DayIntervalTable, pwGenFecIndexMappingLocalAIIType=pwGenFecIndexMappingLocalAIIType, pwPerformanceGeneralGroup=pwPerformanceGeneralGroup, pwStdMIB=pwStdMIB, pwOwner=pwOwner, pwLocalGroupID=pwLocalGroupID, pwGroupAttachmentID=pwGroupAttachmentID, pwGenFecIndexMappingLocalAII=pwGenFecIndexMappingLocalAII, pwRemoteIfMtu=pwRemoteIfMtu, pwID=pwID, pwGeneralizedFecGroup=pwGeneralizedFecGroup, pwNotificationControlGroup=pwNotificationControlGroup, pwSignalingGroup=pwSignalingGroup, pwOperStatus=pwOperStatus, pwPerfIntervalInBytes=pwPerfIntervalInBytes, pwUp=pwUp, pwOutboundLabel=pwOutboundLabel, pwDeletedNotifEnable=pwDeletedNotifEnable, pwPerfIntervalOutHCBytes=pwPerfIntervalOutHCBytes, pwLocalIfMtu=pwLocalIfMtu, pwGenAGIType=pwGenAGIType, pwCompliances=pwCompliances, pwIndexMappingPeerAddrType=pwIndexMappingPeerAddrType, pwRemoteCapabilities=pwRemoteCapabilities, pwIndexMappingPwType=pwIndexMappingPwType, pwTable=pwTable, pwFragGroup=pwFragGroup, pwIfIndex=pwIfIndex, pwPerfIntervalNumber=pwPerfIntervalNumber, pwPerformanceIntervalGeneralGroup=pwPerformanceIntervalGeneralGroup, pwIndexMappingPeerAddr=pwIndexMappingPeerAddr, pwDown=pwDown, pwGenRemoteAIIType=pwGenRemoteAIIType, pwPeerMappingEntry=pwPeerMappingEntry, pwPsnType=pwPsnType, pwPriorityGroup=pwPriorityGroup, pwPerfCurrentOutBytes=pwPerfCurrentOutBytes, pwLastChange=pwLastChange, pwPerfIntervalInPackets=pwPerfIntervalInPackets, pwPeerMappingPwID=pwPeerMappingPwID, pwSetUpPriority=pwSetUpPriority, pwName=pwName, pwGenFecIndexMappingAGIType=pwGenFecIndexMappingAGIType, pwPwIdGroup=pwPwIdGroup, pwGenFecIndexMappingRemoteAIIType=pwGenFecIndexMappingRemoteAIIType, pwPerf1DayIntervalValidData=pwPerf1DayIntervalValidData, pwPerfCurrentInPackets=pwPerfCurrentInPackets, pwUpTime=pwUpTime, pwTimeElapsed=pwTimeElapsed, pwRemoteStatus=pwRemoteStatus, pwPwStatusGroup=pwPwStatusGroup, pwPerfIntervalTimeElapsed=pwPerfIntervalTimeElapsed, pwFcsRetentionStatus=pwFcsRetentionStatus, pwGenFecIndexMappingTable=pwGenFecIndexMappingTable, pwGetNextGroup=pwGetNextGroup, pwPerfIntervalOutHCPackets=pwPerfIntervalOutHCPackets, pwPerfCurrentEntry=pwPerfCurrentEntry, pwLocalCapabAdvert=pwLocalCapabAdvert)
(integer, octet_string, object_identifier) = mibBuilder.importSymbols('ASN1', 'Integer', 'OctetString', 'ObjectIdentifier') (named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues') (constraints_intersection, constraints_union, value_range_constraint, value_size_constraint, single_value_constraint) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'ConstraintsIntersection', 'ConstraintsUnion', 'ValueRangeConstraint', 'ValueSizeConstraint', 'SingleValueConstraint') (hc_perf_current_count, hc_perf_time_elapsed, hc_perf_valid_intervals, hc_perf_interval_count) = mibBuilder.importSymbols('HC-PerfHist-TC-MIB', 'HCPerfCurrentCount', 'HCPerfTimeElapsed', 'HCPerfValidIntervals', 'HCPerfIntervalCount') (iana_pw_type_tc, iana_pw_psn_type_tc, iana_pw_capabilities) = mibBuilder.importSymbols('IANA-PWE3-MIB', 'IANAPwTypeTC', 'IANAPwPsnTypeTC', 'IANAPwCapabilities') (interface_index_or_zero,) = mibBuilder.importSymbols('IF-MIB', 'InterfaceIndexOrZero') (inet_address, inet_address_type) = mibBuilder.importSymbols('INET-ADDRESS-MIB', 'InetAddress', 'InetAddressType') (pw_id_type, pw_frag_status, pw_index_type, pw_group_id, pw_gen_id_type, pw_attachment_identifier_type, pw_cw_status_tc, pw_status, pw_index_or_zero_type, pw_oper_status_tc, pw_frag_size) = mibBuilder.importSymbols('PW-TC-STD-MIB', 'PwIDType', 'PwFragStatus', 'PwIndexType', 'PwGroupID', 'PwGenIdType', 'PwAttachmentIdentifierType', 'PwCwStatusTC', 'PwStatus', 'PwIndexOrZeroType', 'PwOperStatusTC', 'PwFragSize') (perf_interval_count, perf_current_count) = mibBuilder.importSymbols('PerfHist-TC-MIB', 'PerfIntervalCount', 'PerfCurrentCount') (snmp_admin_string,) = mibBuilder.importSymbols('SNMP-FRAMEWORK-MIB', 'SnmpAdminString') (notification_group, object_group, module_compliance) = mibBuilder.importSymbols('SNMPv2-CONF', 'NotificationGroup', 'ObjectGroup', 'ModuleCompliance') (mib_scalar, mib_table, mib_table_row, mib_table_column, counter64, unsigned32, gauge32, ip_address, iso, module_identity, counter32, time_ticks, notification_type, transmission, bits, object_identity, mib_identifier, integer32) = mibBuilder.importSymbols('SNMPv2-SMI', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn', 'Counter64', 'Unsigned32', 'Gauge32', 'IpAddress', 'iso', 'ModuleIdentity', 'Counter32', 'TimeTicks', 'NotificationType', 'transmission', 'Bits', 'ObjectIdentity', 'MibIdentifier', 'Integer32') (truth_value, textual_convention, time_stamp, row_status, storage_type, display_string) = mibBuilder.importSymbols('SNMPv2-TC', 'TruthValue', 'TextualConvention', 'TimeStamp', 'RowStatus', 'StorageType', 'DisplayString') pw_std_mib = module_identity((1, 3, 6, 1, 2, 1, 10, 246)) pwStdMIB.setRevisions(('2009-06-11 00:00',)) if mibBuilder.loadTexts: pwStdMIB.setLastUpdated('200906110000Z') if mibBuilder.loadTexts: pwStdMIB.setOrganization('Pseudowire Edge-to-Edge Emulation (PWE3) Working Group') pw_notifications = mib_identifier((1, 3, 6, 1, 2, 1, 10, 246, 0)) pw_objects = mib_identifier((1, 3, 6, 1, 2, 1, 10, 246, 1)) pw_conformance = mib_identifier((1, 3, 6, 1, 2, 1, 10, 246, 2)) pw_index_next = mib_scalar((1, 3, 6, 1, 2, 1, 10, 246, 1, 1), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: pwIndexNext.setStatus('current') pw_table = mib_table((1, 3, 6, 1, 2, 1, 10, 246, 1, 2)) if mibBuilder.loadTexts: pwTable.setStatus('current') pw_entry = mib_table_row((1, 3, 6, 1, 2, 1, 10, 246, 1, 2, 1)).setIndexNames((0, 'PW-STD-MIB', 'pwIndex')) if mibBuilder.loadTexts: pwEntry.setStatus('current') pw_index = mib_table_column((1, 3, 6, 1, 2, 1, 10, 246, 1, 2, 1, 1), pw_index_type()) if mibBuilder.loadTexts: pwIndex.setStatus('current') pw_type = mib_table_column((1, 3, 6, 1, 2, 1, 10, 246, 1, 2, 1, 2), iana_pw_type_tc()).setMaxAccess('readcreate') if mibBuilder.loadTexts: pwType.setStatus('current') pw_owner = mib_table_column((1, 3, 6, 1, 2, 1, 10, 246, 1, 2, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5))).clone(namedValues=named_values(('manual', 1), ('pwIdFecSignaling', 2), ('genFecSignaling', 3), ('l2tpControlProtocol', 4), ('other', 5)))).setMaxAccess('readcreate') if mibBuilder.loadTexts: pwOwner.setStatus('current') pw_psn_type = mib_table_column((1, 3, 6, 1, 2, 1, 10, 246, 1, 2, 1, 4), iana_pw_psn_type_tc()).setMaxAccess('readcreate') if mibBuilder.loadTexts: pwPsnType.setStatus('current') pw_set_up_priority = mib_table_column((1, 3, 6, 1, 2, 1, 10, 246, 1, 2, 1, 5), integer32().subtype(subtypeSpec=value_range_constraint(0, 7))).setMaxAccess('readcreate') if mibBuilder.loadTexts: pwSetUpPriority.setStatus('current') pw_holding_priority = mib_table_column((1, 3, 6, 1, 2, 1, 10, 246, 1, 2, 1, 6), integer32().subtype(subtypeSpec=value_range_constraint(0, 7))).setMaxAccess('readcreate') if mibBuilder.loadTexts: pwHoldingPriority.setStatus('current') pw_peer_addr_type = mib_table_column((1, 3, 6, 1, 2, 1, 10, 246, 1, 2, 1, 8), inet_address_type().clone('ipv4')).setMaxAccess('readcreate') if mibBuilder.loadTexts: pwPeerAddrType.setStatus('current') pw_peer_addr = mib_table_column((1, 3, 6, 1, 2, 1, 10, 246, 1, 2, 1, 9), inet_address()).setMaxAccess('readcreate') if mibBuilder.loadTexts: pwPeerAddr.setStatus('current') pw_attached_pw_index = mib_table_column((1, 3, 6, 1, 2, 1, 10, 246, 1, 2, 1, 10), pw_index_or_zero_type()).setMaxAccess('readcreate') if mibBuilder.loadTexts: pwAttachedPwIndex.setStatus('current') pw_if_index = mib_table_column((1, 3, 6, 1, 2, 1, 10, 246, 1, 2, 1, 11), interface_index_or_zero()).setMaxAccess('readcreate') if mibBuilder.loadTexts: pwIfIndex.setStatus('current') pw_id = mib_table_column((1, 3, 6, 1, 2, 1, 10, 246, 1, 2, 1, 12), pw_id_type()).setMaxAccess('readcreate') if mibBuilder.loadTexts: pwID.setStatus('current') pw_local_group_id = mib_table_column((1, 3, 6, 1, 2, 1, 10, 246, 1, 2, 1, 13), pw_group_id()).setMaxAccess('readcreate') if mibBuilder.loadTexts: pwLocalGroupID.setStatus('current') pw_group_attachment_id = mib_table_column((1, 3, 6, 1, 2, 1, 10, 246, 1, 2, 1, 14), pw_attachment_identifier_type()).setMaxAccess('readcreate') if mibBuilder.loadTexts: pwGroupAttachmentID.setStatus('current') pw_local_attachment_id = mib_table_column((1, 3, 6, 1, 2, 1, 10, 246, 1, 2, 1, 15), pw_attachment_identifier_type()).setMaxAccess('readcreate') if mibBuilder.loadTexts: pwLocalAttachmentID.setStatus('current') pw_remote_attachment_id = mib_table_column((1, 3, 6, 1, 2, 1, 10, 246, 1, 2, 1, 16), pw_attachment_identifier_type()).setMaxAccess('readcreate') if mibBuilder.loadTexts: pwRemoteAttachmentID.setStatus('current') pw_cw_preference = mib_table_column((1, 3, 6, 1, 2, 1, 10, 246, 1, 2, 1, 17), truth_value().clone('false')).setMaxAccess('readcreate') if mibBuilder.loadTexts: pwCwPreference.setStatus('current') pw_local_if_mtu = mib_table_column((1, 3, 6, 1, 2, 1, 10, 246, 1, 2, 1, 18), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readcreate') if mibBuilder.loadTexts: pwLocalIfMtu.setStatus('current') pw_local_if_string = mib_table_column((1, 3, 6, 1, 2, 1, 10, 246, 1, 2, 1, 19), truth_value().clone('false')).setMaxAccess('readcreate') if mibBuilder.loadTexts: pwLocalIfString.setStatus('current') pw_local_capab_advert = mib_table_column((1, 3, 6, 1, 2, 1, 10, 246, 1, 2, 1, 20), iana_pw_capabilities()).setMaxAccess('readcreate') if mibBuilder.loadTexts: pwLocalCapabAdvert.setStatus('current') pw_remote_group_id = mib_table_column((1, 3, 6, 1, 2, 1, 10, 246, 1, 2, 1, 21), pw_group_id()).setMaxAccess('readonly') if mibBuilder.loadTexts: pwRemoteGroupID.setStatus('current') pw_cw_status = mib_table_column((1, 3, 6, 1, 2, 1, 10, 246, 1, 2, 1, 22), pw_cw_status_tc()).setMaxAccess('readonly') if mibBuilder.loadTexts: pwCwStatus.setStatus('current') pw_remote_if_mtu = mib_table_column((1, 3, 6, 1, 2, 1, 10, 246, 1, 2, 1, 23), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: pwRemoteIfMtu.setStatus('current') pw_remote_if_string = mib_table_column((1, 3, 6, 1, 2, 1, 10, 246, 1, 2, 1, 24), snmp_admin_string().subtype(subtypeSpec=value_size_constraint(0, 80))).setMaxAccess('readonly') if mibBuilder.loadTexts: pwRemoteIfString.setStatus('current') pw_remote_capabilities = mib_table_column((1, 3, 6, 1, 2, 1, 10, 246, 1, 2, 1, 25), iana_pw_capabilities()).setMaxAccess('readonly') if mibBuilder.loadTexts: pwRemoteCapabilities.setStatus('current') pw_fragment_cfg_size = mib_table_column((1, 3, 6, 1, 2, 1, 10, 246, 1, 2, 1, 26), pw_frag_size()).setUnits('bytes').setMaxAccess('readcreate') if mibBuilder.loadTexts: pwFragmentCfgSize.setStatus('current') pw_rmt_frag_capability = mib_table_column((1, 3, 6, 1, 2, 1, 10, 246, 1, 2, 1, 27), pw_frag_status()).setMaxAccess('readonly') if mibBuilder.loadTexts: pwRmtFragCapability.setStatus('current') pw_fcs_retention_cfg = mib_table_column((1, 3, 6, 1, 2, 1, 10, 246, 1, 2, 1, 28), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('fcsRetentionDisable', 1), ('fcsRetentionEnable', 2))).clone('fcsRetentionDisable')).setMaxAccess('readcreate') if mibBuilder.loadTexts: pwFcsRetentionCfg.setStatus('current') pw_fcs_retention_status = mib_table_column((1, 3, 6, 1, 2, 1, 10, 246, 1, 2, 1, 29), bits().clone(namedValues=named_values(('remoteIndicationUnknown', 0), ('remoteRequestFcsRetention', 1), ('fcsRetentionEnabled', 2), ('fcsRetentionDisabled', 3), ('localFcsRetentionCfgErr', 4), ('fcsRetentionFcsSizeMismatch', 5)))).setMaxAccess('readonly') if mibBuilder.loadTexts: pwFcsRetentionStatus.setStatus('current') pw_outbound_label = mib_table_column((1, 3, 6, 1, 2, 1, 10, 246, 1, 2, 1, 30), unsigned32()).setMaxAccess('readcreate') if mibBuilder.loadTexts: pwOutboundLabel.setStatus('current') pw_inbound_label = mib_table_column((1, 3, 6, 1, 2, 1, 10, 246, 1, 2, 1, 31), unsigned32()).setMaxAccess('readcreate') if mibBuilder.loadTexts: pwInboundLabel.setStatus('current') pw_name = mib_table_column((1, 3, 6, 1, 2, 1, 10, 246, 1, 2, 1, 32), snmp_admin_string()).setMaxAccess('readcreate') if mibBuilder.loadTexts: pwName.setStatus('current') pw_descr = mib_table_column((1, 3, 6, 1, 2, 1, 10, 246, 1, 2, 1, 33), snmp_admin_string()).setMaxAccess('readcreate') if mibBuilder.loadTexts: pwDescr.setStatus('current') pw_create_time = mib_table_column((1, 3, 6, 1, 2, 1, 10, 246, 1, 2, 1, 34), time_stamp()).setMaxAccess('readonly') if mibBuilder.loadTexts: pwCreateTime.setStatus('current') pw_up_time = mib_table_column((1, 3, 6, 1, 2, 1, 10, 246, 1, 2, 1, 35), time_ticks()).setMaxAccess('readonly') if mibBuilder.loadTexts: pwUpTime.setStatus('current') pw_last_change = mib_table_column((1, 3, 6, 1, 2, 1, 10, 246, 1, 2, 1, 36), time_ticks()).setMaxAccess('readonly') if mibBuilder.loadTexts: pwLastChange.setStatus('current') pw_admin_status = mib_table_column((1, 3, 6, 1, 2, 1, 10, 246, 1, 2, 1, 37), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('up', 1), ('down', 2), ('testing', 3)))).setMaxAccess('readcreate') if mibBuilder.loadTexts: pwAdminStatus.setStatus('current') pw_oper_status = mib_table_column((1, 3, 6, 1, 2, 1, 10, 246, 1, 2, 1, 38), pw_oper_status_tc()).setMaxAccess('readonly') if mibBuilder.loadTexts: pwOperStatus.setStatus('current') pw_local_status = mib_table_column((1, 3, 6, 1, 2, 1, 10, 246, 1, 2, 1, 39), pw_status()).setMaxAccess('readonly') if mibBuilder.loadTexts: pwLocalStatus.setStatus('current') pw_remote_status_capable = mib_table_column((1, 3, 6, 1, 2, 1, 10, 246, 1, 2, 1, 40), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4))).clone(namedValues=named_values(('notApplicable', 1), ('notYetKnown', 2), ('remoteCapable', 3), ('remoteNotCapable', 4)))).setMaxAccess('readonly') if mibBuilder.loadTexts: pwRemoteStatusCapable.setStatus('current') pw_remote_status = mib_table_column((1, 3, 6, 1, 2, 1, 10, 246, 1, 2, 1, 41), pw_status()).setMaxAccess('readonly') if mibBuilder.loadTexts: pwRemoteStatus.setStatus('current') pw_time_elapsed = mib_table_column((1, 3, 6, 1, 2, 1, 10, 246, 1, 2, 1, 42), hc_perf_time_elapsed()).setMaxAccess('readonly') if mibBuilder.loadTexts: pwTimeElapsed.setStatus('current') pw_valid_intervals = mib_table_column((1, 3, 6, 1, 2, 1, 10, 246, 1, 2, 1, 43), hc_perf_valid_intervals()).setMaxAccess('readonly') if mibBuilder.loadTexts: pwValidIntervals.setStatus('current') pw_row_status = mib_table_column((1, 3, 6, 1, 2, 1, 10, 246, 1, 2, 1, 44), row_status()).setMaxAccess('readcreate') if mibBuilder.loadTexts: pwRowStatus.setStatus('current') pw_storage_type = mib_table_column((1, 3, 6, 1, 2, 1, 10, 246, 1, 2, 1, 45), storage_type().clone('nonVolatile')).setMaxAccess('readcreate') if mibBuilder.loadTexts: pwStorageType.setStatus('current') pw_oam_enable = mib_table_column((1, 3, 6, 1, 2, 1, 10, 246, 1, 2, 1, 46), truth_value().clone('true')).setMaxAccess('readcreate') if mibBuilder.loadTexts: pwOamEnable.setStatus('current') pw_gen_agi_type = mib_table_column((1, 3, 6, 1, 2, 1, 10, 246, 1, 2, 1, 47), pw_gen_id_type()).setMaxAccess('readcreate') if mibBuilder.loadTexts: pwGenAGIType.setStatus('current') pw_gen_local_aii_type = mib_table_column((1, 3, 6, 1, 2, 1, 10, 246, 1, 2, 1, 48), pw_gen_id_type()).setMaxAccess('readcreate') if mibBuilder.loadTexts: pwGenLocalAIIType.setStatus('current') pw_gen_remote_aii_type = mib_table_column((1, 3, 6, 1, 2, 1, 10, 246, 1, 2, 1, 49), pw_gen_id_type()).setMaxAccess('readcreate') if mibBuilder.loadTexts: pwGenRemoteAIIType.setStatus('current') pw_perf_current_table = mib_table((1, 3, 6, 1, 2, 1, 10, 246, 1, 3)) if mibBuilder.loadTexts: pwPerfCurrentTable.setStatus('current') pw_perf_current_entry = mib_table_row((1, 3, 6, 1, 2, 1, 10, 246, 1, 3, 1)).setIndexNames((0, 'PW-STD-MIB', 'pwIndex')) if mibBuilder.loadTexts: pwPerfCurrentEntry.setStatus('current') pw_perf_current_in_hc_packets = mib_table_column((1, 3, 6, 1, 2, 1, 10, 246, 1, 3, 1, 1), hc_perf_current_count()).setMaxAccess('readonly') if mibBuilder.loadTexts: pwPerfCurrentInHCPackets.setStatus('current') pw_perf_current_in_hc_bytes = mib_table_column((1, 3, 6, 1, 2, 1, 10, 246, 1, 3, 1, 2), hc_perf_current_count()).setMaxAccess('readonly') if mibBuilder.loadTexts: pwPerfCurrentInHCBytes.setStatus('current') pw_perf_current_out_hc_packets = mib_table_column((1, 3, 6, 1, 2, 1, 10, 246, 1, 3, 1, 3), hc_perf_current_count()).setMaxAccess('readonly') if mibBuilder.loadTexts: pwPerfCurrentOutHCPackets.setStatus('current') pw_perf_current_out_hc_bytes = mib_table_column((1, 3, 6, 1, 2, 1, 10, 246, 1, 3, 1, 4), hc_perf_current_count()).setMaxAccess('readonly') if mibBuilder.loadTexts: pwPerfCurrentOutHCBytes.setStatus('current') pw_perf_current_in_packets = mib_table_column((1, 3, 6, 1, 2, 1, 10, 246, 1, 3, 1, 5), perf_current_count()).setMaxAccess('readonly') if mibBuilder.loadTexts: pwPerfCurrentInPackets.setStatus('current') pw_perf_current_in_bytes = mib_table_column((1, 3, 6, 1, 2, 1, 10, 246, 1, 3, 1, 6), perf_current_count()).setMaxAccess('readonly') if mibBuilder.loadTexts: pwPerfCurrentInBytes.setStatus('current') pw_perf_current_out_packets = mib_table_column((1, 3, 6, 1, 2, 1, 10, 246, 1, 3, 1, 7), perf_current_count()).setMaxAccess('readonly') if mibBuilder.loadTexts: pwPerfCurrentOutPackets.setStatus('current') pw_perf_current_out_bytes = mib_table_column((1, 3, 6, 1, 2, 1, 10, 246, 1, 3, 1, 8), perf_current_count()).setMaxAccess('readonly') if mibBuilder.loadTexts: pwPerfCurrentOutBytes.setStatus('current') pw_perf_interval_table = mib_table((1, 3, 6, 1, 2, 1, 10, 246, 1, 4)) if mibBuilder.loadTexts: pwPerfIntervalTable.setStatus('current') pw_perf_interval_entry = mib_table_row((1, 3, 6, 1, 2, 1, 10, 246, 1, 4, 1)).setIndexNames((0, 'PW-STD-MIB', 'pwIndex'), (0, 'PW-STD-MIB', 'pwPerfIntervalNumber')) if mibBuilder.loadTexts: pwPerfIntervalEntry.setStatus('current') pw_perf_interval_number = mib_table_column((1, 3, 6, 1, 2, 1, 10, 246, 1, 4, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 96))) if mibBuilder.loadTexts: pwPerfIntervalNumber.setStatus('current') pw_perf_interval_valid_data = mib_table_column((1, 3, 6, 1, 2, 1, 10, 246, 1, 4, 1, 2), truth_value()).setMaxAccess('readonly') if mibBuilder.loadTexts: pwPerfIntervalValidData.setStatus('current') pw_perf_interval_time_elapsed = mib_table_column((1, 3, 6, 1, 2, 1, 10, 246, 1, 4, 1, 3), hc_perf_time_elapsed()).setMaxAccess('readonly') if mibBuilder.loadTexts: pwPerfIntervalTimeElapsed.setStatus('current') pw_perf_interval_in_hc_packets = mib_table_column((1, 3, 6, 1, 2, 1, 10, 246, 1, 4, 1, 4), hc_perf_interval_count()).setMaxAccess('readonly') if mibBuilder.loadTexts: pwPerfIntervalInHCPackets.setStatus('current') pw_perf_interval_in_hc_bytes = mib_table_column((1, 3, 6, 1, 2, 1, 10, 246, 1, 4, 1, 5), hc_perf_interval_count()).setMaxAccess('readonly') if mibBuilder.loadTexts: pwPerfIntervalInHCBytes.setStatus('current') pw_perf_interval_out_hc_packets = mib_table_column((1, 3, 6, 1, 2, 1, 10, 246, 1, 4, 1, 6), hc_perf_interval_count()).setMaxAccess('readonly') if mibBuilder.loadTexts: pwPerfIntervalOutHCPackets.setStatus('current') pw_perf_interval_out_hc_bytes = mib_table_column((1, 3, 6, 1, 2, 1, 10, 246, 1, 4, 1, 7), hc_perf_interval_count()).setMaxAccess('readonly') if mibBuilder.loadTexts: pwPerfIntervalOutHCBytes.setStatus('current') pw_perf_interval_in_packets = mib_table_column((1, 3, 6, 1, 2, 1, 10, 246, 1, 4, 1, 8), perf_interval_count()).setMaxAccess('readonly') if mibBuilder.loadTexts: pwPerfIntervalInPackets.setStatus('current') pw_perf_interval_in_bytes = mib_table_column((1, 3, 6, 1, 2, 1, 10, 246, 1, 4, 1, 9), perf_interval_count()).setMaxAccess('readonly') if mibBuilder.loadTexts: pwPerfIntervalInBytes.setStatus('current') pw_perf_interval_out_packets = mib_table_column((1, 3, 6, 1, 2, 1, 10, 246, 1, 4, 1, 10), perf_interval_count()).setMaxAccess('readonly') if mibBuilder.loadTexts: pwPerfIntervalOutPackets.setStatus('current') pw_perf_interval_out_bytes = mib_table_column((1, 3, 6, 1, 2, 1, 10, 246, 1, 4, 1, 11), perf_interval_count()).setMaxAccess('readonly') if mibBuilder.loadTexts: pwPerfIntervalOutBytes.setStatus('current') pw_perf1_day_interval_table = mib_table((1, 3, 6, 1, 2, 1, 10, 246, 1, 5)) if mibBuilder.loadTexts: pwPerf1DayIntervalTable.setStatus('current') pw_perf1_day_interval_entry = mib_table_row((1, 3, 6, 1, 2, 1, 10, 246, 1, 5, 1)).setIndexNames((0, 'PW-STD-MIB', 'pwIndex'), (0, 'PW-STD-MIB', 'pwPerf1DayIntervalNumber')) if mibBuilder.loadTexts: pwPerf1DayIntervalEntry.setStatus('current') pw_perf1_day_interval_number = mib_table_column((1, 3, 6, 1, 2, 1, 10, 246, 1, 5, 1, 1), unsigned32().subtype(subtypeSpec=value_range_constraint(1, 31))) if mibBuilder.loadTexts: pwPerf1DayIntervalNumber.setStatus('current') pw_perf1_day_interval_valid_data = mib_table_column((1, 3, 6, 1, 2, 1, 10, 246, 1, 5, 1, 2), truth_value()).setMaxAccess('readonly') if mibBuilder.loadTexts: pwPerf1DayIntervalValidData.setStatus('current') pw_perf1_day_interval_time_elapsed = mib_table_column((1, 3, 6, 1, 2, 1, 10, 246, 1, 5, 1, 3), hc_perf_time_elapsed()).setUnits('seconds').setMaxAccess('readonly') if mibBuilder.loadTexts: pwPerf1DayIntervalTimeElapsed.setStatus('current') pw_perf1_day_interval_in_hc_packets = mib_table_column((1, 3, 6, 1, 2, 1, 10, 246, 1, 5, 1, 4), counter64()).setMaxAccess('readonly') if mibBuilder.loadTexts: pwPerf1DayIntervalInHCPackets.setStatus('current') pw_perf1_day_interval_in_hc_bytes = mib_table_column((1, 3, 6, 1, 2, 1, 10, 246, 1, 5, 1, 5), counter64()).setMaxAccess('readonly') if mibBuilder.loadTexts: pwPerf1DayIntervalInHCBytes.setStatus('current') pw_perf1_day_interval_out_hc_packets = mib_table_column((1, 3, 6, 1, 2, 1, 10, 246, 1, 5, 1, 6), counter64()).setMaxAccess('readonly') if mibBuilder.loadTexts: pwPerf1DayIntervalOutHCPackets.setStatus('current') pw_perf1_day_interval_out_hc_bytes = mib_table_column((1, 3, 6, 1, 2, 1, 10, 246, 1, 5, 1, 7), counter64()).setMaxAccess('readonly') if mibBuilder.loadTexts: pwPerf1DayIntervalOutHCBytes.setStatus('current') pw_perf_total_error_packets = mib_scalar((1, 3, 6, 1, 2, 1, 10, 246, 1, 6), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: pwPerfTotalErrorPackets.setStatus('current') pw_index_mapping_table = mib_table((1, 3, 6, 1, 2, 1, 10, 246, 1, 7)) if mibBuilder.loadTexts: pwIndexMappingTable.setStatus('current') pw_index_mapping_entry = mib_table_row((1, 3, 6, 1, 2, 1, 10, 246, 1, 7, 1)).setIndexNames((0, 'PW-STD-MIB', 'pwIndexMappingPwType'), (0, 'PW-STD-MIB', 'pwIndexMappingPwID'), (0, 'PW-STD-MIB', 'pwIndexMappingPeerAddrType'), (0, 'PW-STD-MIB', 'pwIndexMappingPeerAddr')) if mibBuilder.loadTexts: pwIndexMappingEntry.setStatus('current') pw_index_mapping_pw_type = mib_table_column((1, 3, 6, 1, 2, 1, 10, 246, 1, 7, 1, 1), iana_pw_type_tc()) if mibBuilder.loadTexts: pwIndexMappingPwType.setStatus('current') pw_index_mapping_pw_id = mib_table_column((1, 3, 6, 1, 2, 1, 10, 246, 1, 7, 1, 2), pw_id_type()) if mibBuilder.loadTexts: pwIndexMappingPwID.setStatus('current') pw_index_mapping_peer_addr_type = mib_table_column((1, 3, 6, 1, 2, 1, 10, 246, 1, 7, 1, 3), inet_address_type()) if mibBuilder.loadTexts: pwIndexMappingPeerAddrType.setStatus('current') pw_index_mapping_peer_addr = mib_table_column((1, 3, 6, 1, 2, 1, 10, 246, 1, 7, 1, 4), inet_address()) if mibBuilder.loadTexts: pwIndexMappingPeerAddr.setStatus('current') pw_index_mapping_pw_index = mib_table_column((1, 3, 6, 1, 2, 1, 10, 246, 1, 7, 1, 5), pw_index_type()).setMaxAccess('readonly') if mibBuilder.loadTexts: pwIndexMappingPwIndex.setStatus('current') pw_peer_mapping_table = mib_table((1, 3, 6, 1, 2, 1, 10, 246, 1, 8)) if mibBuilder.loadTexts: pwPeerMappingTable.setStatus('current') pw_peer_mapping_entry = mib_table_row((1, 3, 6, 1, 2, 1, 10, 246, 1, 8, 1)).setIndexNames((0, 'PW-STD-MIB', 'pwPeerMappingPeerAddrType'), (0, 'PW-STD-MIB', 'pwPeerMappingPeerAddr'), (0, 'PW-STD-MIB', 'pwPeerMappingPwType'), (0, 'PW-STD-MIB', 'pwPeerMappingPwID')) if mibBuilder.loadTexts: pwPeerMappingEntry.setStatus('current') pw_peer_mapping_peer_addr_type = mib_table_column((1, 3, 6, 1, 2, 1, 10, 246, 1, 8, 1, 1), inet_address_type()) if mibBuilder.loadTexts: pwPeerMappingPeerAddrType.setStatus('current') pw_peer_mapping_peer_addr = mib_table_column((1, 3, 6, 1, 2, 1, 10, 246, 1, 8, 1, 2), inet_address()) if mibBuilder.loadTexts: pwPeerMappingPeerAddr.setStatus('current') pw_peer_mapping_pw_type = mib_table_column((1, 3, 6, 1, 2, 1, 10, 246, 1, 8, 1, 3), iana_pw_type_tc()) if mibBuilder.loadTexts: pwPeerMappingPwType.setStatus('current') pw_peer_mapping_pw_id = mib_table_column((1, 3, 6, 1, 2, 1, 10, 246, 1, 8, 1, 4), pw_id_type()) if mibBuilder.loadTexts: pwPeerMappingPwID.setStatus('current') pw_peer_mapping_pw_index = mib_table_column((1, 3, 6, 1, 2, 1, 10, 246, 1, 8, 1, 5), pw_index_type()).setMaxAccess('readonly') if mibBuilder.loadTexts: pwPeerMappingPwIndex.setStatus('current') pw_up_down_notif_enable = mib_scalar((1, 3, 6, 1, 2, 1, 10, 246, 1, 9), truth_value().clone('false')).setMaxAccess('readwrite') if mibBuilder.loadTexts: pwUpDownNotifEnable.setStatus('current') pw_deleted_notif_enable = mib_scalar((1, 3, 6, 1, 2, 1, 10, 246, 1, 10), truth_value().clone('false')).setMaxAccess('readwrite') if mibBuilder.loadTexts: pwDeletedNotifEnable.setStatus('current') pw_notif_rate = mib_scalar((1, 3, 6, 1, 2, 1, 10, 246, 1, 11), unsigned32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: pwNotifRate.setStatus('current') pw_gen_fec_index_mapping_table = mib_table((1, 3, 6, 1, 2, 1, 10, 246, 1, 12)) if mibBuilder.loadTexts: pwGenFecIndexMappingTable.setStatus('current') pw_gen_fec_index_mapping_entry = mib_table_row((1, 3, 6, 1, 2, 1, 10, 246, 1, 12, 1)).setIndexNames((0, 'PW-STD-MIB', 'pwGenFecIndexMappingAGIType'), (0, 'PW-STD-MIB', 'pwGenFecIndexMappingAGI'), (0, 'PW-STD-MIB', 'pwGenFecIndexMappingLocalAIIType'), (0, 'PW-STD-MIB', 'pwGenFecIndexMappingLocalAII'), (0, 'PW-STD-MIB', 'pwGenFecIndexMappingRemoteAIIType'), (0, 'PW-STD-MIB', 'pwGenFecIndexMappingRemoteAII')) if mibBuilder.loadTexts: pwGenFecIndexMappingEntry.setStatus('current') pw_gen_fec_index_mapping_agi_type = mib_table_column((1, 3, 6, 1, 2, 1, 10, 246, 1, 12, 1, 1), pw_gen_id_type()) if mibBuilder.loadTexts: pwGenFecIndexMappingAGIType.setStatus('current') pw_gen_fec_index_mapping_agi = mib_table_column((1, 3, 6, 1, 2, 1, 10, 246, 1, 12, 1, 2), pw_attachment_identifier_type()) if mibBuilder.loadTexts: pwGenFecIndexMappingAGI.setStatus('current') pw_gen_fec_index_mapping_local_aii_type = mib_table_column((1, 3, 6, 1, 2, 1, 10, 246, 1, 12, 1, 3), pw_gen_id_type()) if mibBuilder.loadTexts: pwGenFecIndexMappingLocalAIIType.setStatus('current') pw_gen_fec_index_mapping_local_aii = mib_table_column((1, 3, 6, 1, 2, 1, 10, 246, 1, 12, 1, 4), pw_attachment_identifier_type()) if mibBuilder.loadTexts: pwGenFecIndexMappingLocalAII.setStatus('current') pw_gen_fec_index_mapping_remote_aii_type = mib_table_column((1, 3, 6, 1, 2, 1, 10, 246, 1, 12, 1, 5), pw_gen_id_type()) if mibBuilder.loadTexts: pwGenFecIndexMappingRemoteAIIType.setStatus('current') pw_gen_fec_index_mapping_remote_aii = mib_table_column((1, 3, 6, 1, 2, 1, 10, 246, 1, 12, 1, 6), pw_attachment_identifier_type()) if mibBuilder.loadTexts: pwGenFecIndexMappingRemoteAII.setStatus('current') pw_gen_fec_index_mapping_pw_index = mib_table_column((1, 3, 6, 1, 2, 1, 10, 246, 1, 12, 1, 7), pw_index_type()).setMaxAccess('readonly') if mibBuilder.loadTexts: pwGenFecIndexMappingPwIndex.setStatus('current') pw_down = notification_type((1, 3, 6, 1, 2, 1, 10, 246, 0, 1)).setObjects(('PW-STD-MIB', 'pwOperStatus'), ('PW-STD-MIB', 'pwOperStatus')) if mibBuilder.loadTexts: pwDown.setStatus('current') pw_up = notification_type((1, 3, 6, 1, 2, 1, 10, 246, 0, 2)).setObjects(('PW-STD-MIB', 'pwOperStatus'), ('PW-STD-MIB', 'pwOperStatus')) if mibBuilder.loadTexts: pwUp.setStatus('current') pw_deleted = notification_type((1, 3, 6, 1, 2, 1, 10, 246, 0, 3)).setObjects(('PW-STD-MIB', 'pwType'), ('PW-STD-MIB', 'pwID'), ('PW-STD-MIB', 'pwPeerAddrType'), ('PW-STD-MIB', 'pwPeerAddr')) if mibBuilder.loadTexts: pwDeleted.setStatus('current') pw_groups = mib_identifier((1, 3, 6, 1, 2, 1, 10, 246, 2, 1)) pw_compliances = mib_identifier((1, 3, 6, 1, 2, 1, 10, 246, 2, 2)) pw_module_full_compliance = module_compliance((1, 3, 6, 1, 2, 1, 10, 246, 2, 2, 1)).setObjects(('PW-STD-MIB', 'pwBasicGroup'), ('PW-STD-MIB', 'pwPerformanceGeneralGroup'), ('PW-STD-MIB', 'pwNotificationGroup'), ('PW-STD-MIB', 'pwPwIdGroup'), ('PW-STD-MIB', 'pwGeneralizedFecGroup'), ('PW-STD-MIB', 'pwFcsGroup'), ('PW-STD-MIB', 'pwFragGroup'), ('PW-STD-MIB', 'pwPwStatusGroup'), ('PW-STD-MIB', 'pwGetNextGroup'), ('PW-STD-MIB', 'pwPriorityGroup'), ('PW-STD-MIB', 'pwAttachmentGroup'), ('PW-STD-MIB', 'pwPeformance1DayIntervalGroup'), ('PW-STD-MIB', 'pwPerformanceIntervalGeneralGroup'), ('PW-STD-MIB', 'pwPeformanceIntervalGroup'), ('PW-STD-MIB', 'pwHCPeformanceIntervalGroup'), ('PW-STD-MIB', 'pwMappingTablesGroup'), ('PW-STD-MIB', 'pwSignalingGroup'), ('PW-STD-MIB', 'pwNotificationControlGroup')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): pw_module_full_compliance = pwModuleFullCompliance.setStatus('current') pw_module_read_only_compliance = module_compliance((1, 3, 6, 1, 2, 1, 10, 246, 2, 2, 2)).setObjects(('PW-STD-MIB', 'pwBasicGroup'), ('PW-STD-MIB', 'pwNotificationGroup'), ('PW-STD-MIB', 'pwPwIdGroup'), ('PW-STD-MIB', 'pwGeneralizedFecGroup'), ('PW-STD-MIB', 'pwFcsGroup'), ('PW-STD-MIB', 'pwFragGroup'), ('PW-STD-MIB', 'pwPwStatusGroup'), ('PW-STD-MIB', 'pwGetNextGroup'), ('PW-STD-MIB', 'pwPriorityGroup'), ('PW-STD-MIB', 'pwAttachmentGroup'), ('PW-STD-MIB', 'pwPeformance1DayIntervalGroup'), ('PW-STD-MIB', 'pwPerformanceIntervalGeneralGroup'), ('PW-STD-MIB', 'pwPeformanceIntervalGroup'), ('PW-STD-MIB', 'pwHCPeformanceIntervalGroup'), ('PW-STD-MIB', 'pwMappingTablesGroup'), ('PW-STD-MIB', 'pwSignalingGroup'), ('PW-STD-MIB', 'pwNotificationControlGroup')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): pw_module_read_only_compliance = pwModuleReadOnlyCompliance.setStatus('current') pw_basic_group = object_group((1, 3, 6, 1, 2, 1, 10, 246, 2, 1, 1)).setObjects(('PW-STD-MIB', 'pwType'), ('PW-STD-MIB', 'pwOwner'), ('PW-STD-MIB', 'pwPsnType'), ('PW-STD-MIB', 'pwIfIndex'), ('PW-STD-MIB', 'pwCwPreference'), ('PW-STD-MIB', 'pwLocalIfMtu'), ('PW-STD-MIB', 'pwOutboundLabel'), ('PW-STD-MIB', 'pwInboundLabel'), ('PW-STD-MIB', 'pwName'), ('PW-STD-MIB', 'pwDescr'), ('PW-STD-MIB', 'pwCreateTime'), ('PW-STD-MIB', 'pwUpTime'), ('PW-STD-MIB', 'pwLastChange'), ('PW-STD-MIB', 'pwAdminStatus'), ('PW-STD-MIB', 'pwOperStatus'), ('PW-STD-MIB', 'pwLocalStatus'), ('PW-STD-MIB', 'pwRowStatus'), ('PW-STD-MIB', 'pwStorageType'), ('PW-STD-MIB', 'pwOamEnable')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): pw_basic_group = pwBasicGroup.setStatus('current') pw_pw_id_group = object_group((1, 3, 6, 1, 2, 1, 10, 246, 2, 1, 2)).setObjects(('PW-STD-MIB', 'pwID')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): pw_pw_id_group = pwPwIdGroup.setStatus('current') pw_generalized_fec_group = object_group((1, 3, 6, 1, 2, 1, 10, 246, 2, 1, 3)).setObjects(('PW-STD-MIB', 'pwGroupAttachmentID'), ('PW-STD-MIB', 'pwLocalAttachmentID'), ('PW-STD-MIB', 'pwRemoteAttachmentID'), ('PW-STD-MIB', 'pwGenAGIType'), ('PW-STD-MIB', 'pwGenLocalAIIType'), ('PW-STD-MIB', 'pwGenRemoteAIIType')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): pw_generalized_fec_group = pwGeneralizedFecGroup.setStatus('current') pw_fcs_group = object_group((1, 3, 6, 1, 2, 1, 10, 246, 2, 1, 4)).setObjects(('PW-STD-MIB', 'pwFcsRetentionCfg'), ('PW-STD-MIB', 'pwFcsRetentionStatus')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): pw_fcs_group = pwFcsGroup.setStatus('current') pw_frag_group = object_group((1, 3, 6, 1, 2, 1, 10, 246, 2, 1, 5)).setObjects(('PW-STD-MIB', 'pwFragmentCfgSize'), ('PW-STD-MIB', 'pwRmtFragCapability')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): pw_frag_group = pwFragGroup.setStatus('current') pw_pw_status_group = object_group((1, 3, 6, 1, 2, 1, 10, 246, 2, 1, 6)).setObjects(('PW-STD-MIB', 'pwRemoteCapabilities'), ('PW-STD-MIB', 'pwRemoteStatusCapable'), ('PW-STD-MIB', 'pwRemoteStatus')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): pw_pw_status_group = pwPwStatusGroup.setStatus('current') pw_get_next_group = object_group((1, 3, 6, 1, 2, 1, 10, 246, 2, 1, 7)).setObjects(('PW-STD-MIB', 'pwIndexNext')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): pw_get_next_group = pwGetNextGroup.setStatus('current') pw_priority_group = object_group((1, 3, 6, 1, 2, 1, 10, 246, 2, 1, 8)).setObjects(('PW-STD-MIB', 'pwSetUpPriority'), ('PW-STD-MIB', 'pwHoldingPriority')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): pw_priority_group = pwPriorityGroup.setStatus('current') pw_attachment_group = object_group((1, 3, 6, 1, 2, 1, 10, 246, 2, 1, 9)).setObjects(('PW-STD-MIB', 'pwAttachedPwIndex')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): pw_attachment_group = pwAttachmentGroup.setStatus('current') pw_performance_general_group = object_group((1, 3, 6, 1, 2, 1, 10, 246, 2, 1, 10)).setObjects(('PW-STD-MIB', 'pwPerfTotalErrorPackets')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): pw_performance_general_group = pwPerformanceGeneralGroup.setStatus('current') pw_peformance1_day_interval_group = object_group((1, 3, 6, 1, 2, 1, 10, 246, 2, 1, 11)).setObjects(('PW-STD-MIB', 'pwPerf1DayIntervalValidData'), ('PW-STD-MIB', 'pwPerf1DayIntervalTimeElapsed'), ('PW-STD-MIB', 'pwPerf1DayIntervalInHCPackets'), ('PW-STD-MIB', 'pwPerf1DayIntervalInHCBytes'), ('PW-STD-MIB', 'pwPerf1DayIntervalOutHCPackets'), ('PW-STD-MIB', 'pwPerf1DayIntervalOutHCBytes')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): pw_peformance1_day_interval_group = pwPeformance1DayIntervalGroup.setStatus('current') pw_performance_interval_general_group = object_group((1, 3, 6, 1, 2, 1, 10, 246, 2, 1, 12)).setObjects(('PW-STD-MIB', 'pwTimeElapsed'), ('PW-STD-MIB', 'pwValidIntervals'), ('PW-STD-MIB', 'pwPerfIntervalValidData'), ('PW-STD-MIB', 'pwPerfIntervalTimeElapsed')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): pw_performance_interval_general_group = pwPerformanceIntervalGeneralGroup.setStatus('current') pw_peformance_interval_group = object_group((1, 3, 6, 1, 2, 1, 10, 246, 2, 1, 13)).setObjects(('PW-STD-MIB', 'pwPerfCurrentInPackets'), ('PW-STD-MIB', 'pwPerfCurrentInBytes'), ('PW-STD-MIB', 'pwPerfCurrentOutPackets'), ('PW-STD-MIB', 'pwPerfCurrentOutBytes'), ('PW-STD-MIB', 'pwPerfIntervalInPackets'), ('PW-STD-MIB', 'pwPerfIntervalInBytes'), ('PW-STD-MIB', 'pwPerfIntervalOutPackets'), ('PW-STD-MIB', 'pwPerfIntervalOutBytes')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): pw_peformance_interval_group = pwPeformanceIntervalGroup.setStatus('current') pw_hc_peformance_interval_group = object_group((1, 3, 6, 1, 2, 1, 10, 246, 2, 1, 14)).setObjects(('PW-STD-MIB', 'pwPerfCurrentInHCPackets'), ('PW-STD-MIB', 'pwPerfCurrentInHCBytes'), ('PW-STD-MIB', 'pwPerfCurrentOutHCPackets'), ('PW-STD-MIB', 'pwPerfCurrentOutHCBytes'), ('PW-STD-MIB', 'pwPerfIntervalInHCPackets'), ('PW-STD-MIB', 'pwPerfIntervalInHCBytes'), ('PW-STD-MIB', 'pwPerfIntervalOutHCPackets'), ('PW-STD-MIB', 'pwPerfIntervalOutHCBytes')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): pw_hc_peformance_interval_group = pwHCPeformanceIntervalGroup.setStatus('current') pw_mapping_tables_group = object_group((1, 3, 6, 1, 2, 1, 10, 246, 2, 1, 15)).setObjects(('PW-STD-MIB', 'pwIndexMappingPwIndex'), ('PW-STD-MIB', 'pwPeerMappingPwIndex'), ('PW-STD-MIB', 'pwGenFecIndexMappingPwIndex')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): pw_mapping_tables_group = pwMappingTablesGroup.setStatus('current') pw_notification_control_group = object_group((1, 3, 6, 1, 2, 1, 10, 246, 2, 1, 16)).setObjects(('PW-STD-MIB', 'pwUpDownNotifEnable'), ('PW-STD-MIB', 'pwDeletedNotifEnable'), ('PW-STD-MIB', 'pwNotifRate')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): pw_notification_control_group = pwNotificationControlGroup.setStatus('current') pw_notification_group = notification_group((1, 3, 6, 1, 2, 1, 10, 246, 2, 1, 17)).setObjects(('PW-STD-MIB', 'pwUp'), ('PW-STD-MIB', 'pwDown'), ('PW-STD-MIB', 'pwDeleted')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): pw_notification_group = pwNotificationGroup.setStatus('current') pw_signaling_group = object_group((1, 3, 6, 1, 2, 1, 10, 246, 2, 1, 18)).setObjects(('PW-STD-MIB', 'pwPeerAddrType'), ('PW-STD-MIB', 'pwPeerAddr'), ('PW-STD-MIB', 'pwLocalGroupID'), ('PW-STD-MIB', 'pwLocalIfString'), ('PW-STD-MIB', 'pwLocalCapabAdvert'), ('PW-STD-MIB', 'pwRemoteGroupID'), ('PW-STD-MIB', 'pwCwStatus'), ('PW-STD-MIB', 'pwRemoteIfMtu'), ('PW-STD-MIB', 'pwRemoteIfString')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): pw_signaling_group = pwSignalingGroup.setStatus('current') mibBuilder.exportSymbols('PW-STD-MIB', pwGenFecIndexMappingPwIndex=pwGenFecIndexMappingPwIndex, pwGenFecIndexMappingRemoteAII=pwGenFecIndexMappingRemoteAII, pwIndexNext=pwIndexNext, pwFcsRetentionCfg=pwFcsRetentionCfg, pwPeerAddr=pwPeerAddr, pwConformance=pwConformance, pwIndexMappingTable=pwIndexMappingTable, pwGenFecIndexMappingEntry=pwGenFecIndexMappingEntry, pwPerf1DayIntervalInHCBytes=pwPerf1DayIntervalInHCBytes, PYSNMP_MODULE_ID=pwStdMIB, pwPerf1DayIntervalTimeElapsed=pwPerf1DayIntervalTimeElapsed, pwPerfIntervalInHCPackets=pwPerfIntervalInHCPackets, pwMappingTablesGroup=pwMappingTablesGroup, pwInboundLabel=pwInboundLabel, pwGenLocalAIIType=pwGenLocalAIIType, pwAdminStatus=pwAdminStatus, pwPeerMappingPwType=pwPeerMappingPwType, pwValidIntervals=pwValidIntervals, pwPerfCurrentOutHCBytes=pwPerfCurrentOutHCBytes, pwHoldingPriority=pwHoldingPriority, pwCwPreference=pwCwPreference, pwIndex=pwIndex, pwObjects=pwObjects, pwNotifications=pwNotifications, pwPerf1DayIntervalEntry=pwPerf1DayIntervalEntry, pwRemoteIfString=pwRemoteIfString, pwPerf1DayIntervalNumber=pwPerf1DayIntervalNumber, pwNotifRate=pwNotifRate, pwFragmentCfgSize=pwFragmentCfgSize, pwPerfIntervalOutBytes=pwPerfIntervalOutBytes, pwPerfCurrentInHCPackets=pwPerfCurrentInHCPackets, pwLocalAttachmentID=pwLocalAttachmentID, pwPerfCurrentOutHCPackets=pwPerfCurrentOutHCPackets, pwAttachedPwIndex=pwAttachedPwIndex, pwCwStatus=pwCwStatus, pwPerfIntervalValidData=pwPerfIntervalValidData, pwHCPeformanceIntervalGroup=pwHCPeformanceIntervalGroup, pwNotificationGroup=pwNotificationGroup, pwPerf1DayIntervalOutHCPackets=pwPerf1DayIntervalOutHCPackets, pwPeerMappingPwIndex=pwPeerMappingPwIndex, pwPerf1DayIntervalOutHCBytes=pwPerf1DayIntervalOutHCBytes, pwStorageType=pwStorageType, pwGroups=pwGroups, pwPerf1DayIntervalInHCPackets=pwPerf1DayIntervalInHCPackets, pwRmtFragCapability=pwRmtFragCapability, pwIndexMappingPwID=pwIndexMappingPwID, pwOamEnable=pwOamEnable, pwPerfTotalErrorPackets=pwPerfTotalErrorPackets, pwIndexMappingPwIndex=pwIndexMappingPwIndex, pwPeformanceIntervalGroup=pwPeformanceIntervalGroup, pwAttachmentGroup=pwAttachmentGroup, pwPerfCurrentOutPackets=pwPerfCurrentOutPackets, pwEntry=pwEntry, pwUpDownNotifEnable=pwUpDownNotifEnable, pwPeerMappingTable=pwPeerMappingTable, pwPerfCurrentInHCBytes=pwPerfCurrentInHCBytes, pwPerfIntervalTable=pwPerfIntervalTable, pwModuleReadOnlyCompliance=pwModuleReadOnlyCompliance, pwRowStatus=pwRowStatus, pwRemoteAttachmentID=pwRemoteAttachmentID, pwPerfIntervalEntry=pwPerfIntervalEntry, pwPerfIntervalOutPackets=pwPerfIntervalOutPackets, pwPeformance1DayIntervalGroup=pwPeformance1DayIntervalGroup, pwIndexMappingEntry=pwIndexMappingEntry, pwPeerMappingPeerAddr=pwPeerMappingPeerAddr, pwLocalIfString=pwLocalIfString, pwPerfIntervalInHCBytes=pwPerfIntervalInHCBytes, pwPeerMappingPeerAddrType=pwPeerMappingPeerAddrType, pwGenFecIndexMappingAGI=pwGenFecIndexMappingAGI, pwLocalStatus=pwLocalStatus, pwDeleted=pwDeleted, pwBasicGroup=pwBasicGroup, pwPerfCurrentTable=pwPerfCurrentTable, pwDescr=pwDescr, pwPerfCurrentInBytes=pwPerfCurrentInBytes, pwType=pwType, pwModuleFullCompliance=pwModuleFullCompliance, pwCreateTime=pwCreateTime, pwFcsGroup=pwFcsGroup, pwPeerAddrType=pwPeerAddrType, pwRemoteGroupID=pwRemoteGroupID, pwRemoteStatusCapable=pwRemoteStatusCapable, pwPerf1DayIntervalTable=pwPerf1DayIntervalTable, pwGenFecIndexMappingLocalAIIType=pwGenFecIndexMappingLocalAIIType, pwPerformanceGeneralGroup=pwPerformanceGeneralGroup, pwStdMIB=pwStdMIB, pwOwner=pwOwner, pwLocalGroupID=pwLocalGroupID, pwGroupAttachmentID=pwGroupAttachmentID, pwGenFecIndexMappingLocalAII=pwGenFecIndexMappingLocalAII, pwRemoteIfMtu=pwRemoteIfMtu, pwID=pwID, pwGeneralizedFecGroup=pwGeneralizedFecGroup, pwNotificationControlGroup=pwNotificationControlGroup, pwSignalingGroup=pwSignalingGroup, pwOperStatus=pwOperStatus, pwPerfIntervalInBytes=pwPerfIntervalInBytes, pwUp=pwUp, pwOutboundLabel=pwOutboundLabel, pwDeletedNotifEnable=pwDeletedNotifEnable, pwPerfIntervalOutHCBytes=pwPerfIntervalOutHCBytes, pwLocalIfMtu=pwLocalIfMtu, pwGenAGIType=pwGenAGIType, pwCompliances=pwCompliances, pwIndexMappingPeerAddrType=pwIndexMappingPeerAddrType, pwRemoteCapabilities=pwRemoteCapabilities, pwIndexMappingPwType=pwIndexMappingPwType, pwTable=pwTable, pwFragGroup=pwFragGroup, pwIfIndex=pwIfIndex, pwPerfIntervalNumber=pwPerfIntervalNumber, pwPerformanceIntervalGeneralGroup=pwPerformanceIntervalGeneralGroup, pwIndexMappingPeerAddr=pwIndexMappingPeerAddr, pwDown=pwDown, pwGenRemoteAIIType=pwGenRemoteAIIType, pwPeerMappingEntry=pwPeerMappingEntry, pwPsnType=pwPsnType, pwPriorityGroup=pwPriorityGroup, pwPerfCurrentOutBytes=pwPerfCurrentOutBytes, pwLastChange=pwLastChange, pwPerfIntervalInPackets=pwPerfIntervalInPackets, pwPeerMappingPwID=pwPeerMappingPwID, pwSetUpPriority=pwSetUpPriority, pwName=pwName, pwGenFecIndexMappingAGIType=pwGenFecIndexMappingAGIType, pwPwIdGroup=pwPwIdGroup, pwGenFecIndexMappingRemoteAIIType=pwGenFecIndexMappingRemoteAIIType, pwPerf1DayIntervalValidData=pwPerf1DayIntervalValidData, pwPerfCurrentInPackets=pwPerfCurrentInPackets, pwUpTime=pwUpTime, pwTimeElapsed=pwTimeElapsed, pwRemoteStatus=pwRemoteStatus, pwPwStatusGroup=pwPwStatusGroup, pwPerfIntervalTimeElapsed=pwPerfIntervalTimeElapsed, pwFcsRetentionStatus=pwFcsRetentionStatus, pwGenFecIndexMappingTable=pwGenFecIndexMappingTable, pwGetNextGroup=pwGetNextGroup, pwPerfIntervalOutHCPackets=pwPerfIntervalOutHCPackets, pwPerfCurrentEntry=pwPerfCurrentEntry, pwLocalCapabAdvert=pwLocalCapabAdvert)
numbers=[0, 1, 153, 370, 371, 407] def is_sum_of_cubes(s): res=[] temp="" for i in s: if i.isdigit(): temp+=i else: res.extend([temp[i:i+3] for i in range(0, len(temp), 3) if int(temp[i:i+3]) in numbers]) temp="" res.extend([temp[i:i+3] for i in range(0, len(temp), 3) if int(temp[i:i+3]) in numbers]) return " ".join(res)+f" {sum(int(i) for i in res)} Lucky" if res else "Unlucky"
numbers = [0, 1, 153, 370, 371, 407] def is_sum_of_cubes(s): res = [] temp = '' for i in s: if i.isdigit(): temp += i else: res.extend([temp[i:i + 3] for i in range(0, len(temp), 3) if int(temp[i:i + 3]) in numbers]) temp = '' res.extend([temp[i:i + 3] for i in range(0, len(temp), 3) if int(temp[i:i + 3]) in numbers]) return ' '.join(res) + f' {sum((int(i) for i in res))} Lucky' if res else 'Unlucky'
############################################### # Main UI component sizes ############################################### COLS = 6 ROWS = 6 CELL_WIDTH = 50 CELL_HEIGHT = CELL_WIDTH TOTAL_DICE = 7 WINDOW_WIDTH = CELL_WIDTH * TOTAL_DICE ROLL_DICE_LABEL_WIDTH = WINDOW_WIDTH ROLL_DICE_LABEL_HEIGHT = CELL_HEIGHT DICE_STRIP_TOP = ROLL_DICE_LABEL_HEIGHT DICE_STRIP_WIDTH = WINDOW_WIDTH DICE_STRIP_HEIGHT = CELL_HEIGHT COL_LABEL_STRIP_TOP = DICE_STRIP_TOP + CELL_HEIGHT SOLVE_LABEL_TOP = COL_LABEL_STRIP_TOP + CELL_HEIGHT + (ROWS * CELL_HEIGHT) SOLVE_LABEL_WIDTH = WINDOW_WIDTH SOLVE_LABEL_HEIGHT = CELL_HEIGHT GRID_TOP = ROLL_DICE_LABEL_HEIGHT + DICE_STRIP_HEIGHT + CELL_HEIGHT GRID_LEFT = CELL_WIDTH WINDOW_HEIGHT = ROLL_DICE_LABEL_HEIGHT + DICE_STRIP_HEIGHT + CELL_HEIGHT + (CELL_HEIGHT * ROWS ) + SOLVE_LABEL_HEIGHT FONT_SIZE = 20 BORDER_SIZE = 2 ############################################### # RGB Colors ############################################### BLACK = (0, 0, 0) WHITE = (255, 255, 255) RED = (255, 0, 0) GREEN = (0, 255, 0) BLUE = (0, 0, 255) YELLOW = (255, 255, 0) BROWN = (210, 105, 30) ORANGE = (255, 165, 0) DARK_GRAY = (140, 140, 140) PURPLE = (128, 0, 128) CYAN = (0, 255, 255) TAN = (220, 202, 152) ############################################### # Dice properties ############################################### DICE_COLUMN_IDS = "123456" DICE_ROW_IDS = "ABCDEF" DICE_CELL_BORDER_COLOR = BLACK DICE_CELL_COLOR = WHITE DICE_CELL_BORDER_SIZE = BORDER_SIZE DICE_CELL_FONT_COLOR = BLACK DICE_CELL_FONT_SIZE = FONT_SIZE # Dice values DICE_VALUES = [[(0, 0), (0, 2), (0, 3), (1, 3), (1, 4), (2, 5)], [(4, 0), (1, 5), (4, 0), (1, 5), (5, 1), (0, 4)], [(3, 0), (4, 1), (4, 2), (5, 2), (5, 3), (5, 5)], [(4, 5), (4, 4), (3, 5), (4, 3), (3, 4), (5, 4)], [(2, 2), (3, 2), (2, 3), (3, 1), (3, 3), (2, 4)], [(1, 1), (1, 0), (2, 0), (0, 1), (2, 1), (1, 2)], [(0, 5), (5, 0), (5, 0), (5, 0), (0, 5), (0, 5)]] ############################################### # Label properties ############################################### LABEL_BORDER_COLOR = WHITE LABEL_COLOR = BLACK LABEL_BORDER_SIZE = BORDER_SIZE LABEL_FONT_COLOR = WHITE LABEL_FONT_SIZE = FONT_SIZE ############################################### # Cell types ############################################### CELL_COLORS = [BLACK, # Empty cell BLUE, # Single-cell blue piece BROWN, # Double-cell brown piece ORANGE, # Straight triple-cell orange piece PURPLE, # Corner triple-cell purple piece DARK_GRAY, # Staight four-cell gray piece RED, # Zig-zag four-cell red piece YELLOW, # T-shape four-cell yellow piece CYAN, # L-shape four-cell cyan piece GREEN] # Green four-cell square CELL_BLOCKED = -1 CELL_EMPTY = 0 # Single-cell blue piece CELL_TYPE_1 = [[[1]]] # Double-cell brown piece CELL_TYPE_2 = [[[2], [2]], [[2, 2]]] # Straight triple-cell orange piece CELL_TYPE_3 = [[[3], [3], [3]], [[3, 3, 3]]] # Corner triple-cell purple piece CELL_TYPE_4 = [[[4, 4], [4, 0]], [[4, 4], [0, 4]], [[4, 0], [4, 4]], [[0, 4], [4, 4]]] # Staight four-cell gray piece CELL_TYPE_5 = [[[5], [5], [5], [5]], [[5, 5, 5, 5]]] # Zig-zag four-cell red piece CELL_TYPE_6 = [[[0, 6, 6], [6, 6, 0]], [[6, 6, 0], [0, 6, 6]], [[6, 0], [6, 6], [0, 6]], [[0, 6], [6, 6], [6, 0]]] # T-shape four-cell yellow piece CELL_TYPE_7 = [[[7, 0], [7, 7], [7, 0]], [[0, 7], [7, 7], [0, 7]], [[7, 7, 7], [0, 7, 0]], [[0, 7, 0], [7, 7, 7]]] # L-shape four-cell cyan piece CELL_TYPE_8 = [[[8, 0], [8, 0], [8, 8]], [[0, 8], [0, 8], [8, 8]], [[8, 8], [8, 0], [8, 0]], [[8, 8], [0, 8], [0, 8]], [[8, 8, 8], [8, 0, 0]], [[8, 8, 8], [0, 0, 8]], [[8, 0, 0], [8, 8, 8]], [[0, 0, 8], [8, 8, 8]]] # Green four-cell square CELL_TYPE_9 = [[[9, 9], [9, 9]]] # All the pieces in ascending order of size PIECE_SHAPES = [CELL_TYPE_1, CELL_TYPE_2, CELL_TYPE_3, CELL_TYPE_4, CELL_TYPE_5, CELL_TYPE_6, CELL_TYPE_7, CELL_TYPE_8, CELL_TYPE_9] ############################################### # PyGame ############################################### CLOCK_TICK = 30 SLEEP_DELAY = 0.01
cols = 6 rows = 6 cell_width = 50 cell_height = CELL_WIDTH total_dice = 7 window_width = CELL_WIDTH * TOTAL_DICE roll_dice_label_width = WINDOW_WIDTH roll_dice_label_height = CELL_HEIGHT dice_strip_top = ROLL_DICE_LABEL_HEIGHT dice_strip_width = WINDOW_WIDTH dice_strip_height = CELL_HEIGHT col_label_strip_top = DICE_STRIP_TOP + CELL_HEIGHT solve_label_top = COL_LABEL_STRIP_TOP + CELL_HEIGHT + ROWS * CELL_HEIGHT solve_label_width = WINDOW_WIDTH solve_label_height = CELL_HEIGHT grid_top = ROLL_DICE_LABEL_HEIGHT + DICE_STRIP_HEIGHT + CELL_HEIGHT grid_left = CELL_WIDTH window_height = ROLL_DICE_LABEL_HEIGHT + DICE_STRIP_HEIGHT + CELL_HEIGHT + CELL_HEIGHT * ROWS + SOLVE_LABEL_HEIGHT font_size = 20 border_size = 2 black = (0, 0, 0) white = (255, 255, 255) red = (255, 0, 0) green = (0, 255, 0) blue = (0, 0, 255) yellow = (255, 255, 0) brown = (210, 105, 30) orange = (255, 165, 0) dark_gray = (140, 140, 140) purple = (128, 0, 128) cyan = (0, 255, 255) tan = (220, 202, 152) dice_column_ids = '123456' dice_row_ids = 'ABCDEF' dice_cell_border_color = BLACK dice_cell_color = WHITE dice_cell_border_size = BORDER_SIZE dice_cell_font_color = BLACK dice_cell_font_size = FONT_SIZE dice_values = [[(0, 0), (0, 2), (0, 3), (1, 3), (1, 4), (2, 5)], [(4, 0), (1, 5), (4, 0), (1, 5), (5, 1), (0, 4)], [(3, 0), (4, 1), (4, 2), (5, 2), (5, 3), (5, 5)], [(4, 5), (4, 4), (3, 5), (4, 3), (3, 4), (5, 4)], [(2, 2), (3, 2), (2, 3), (3, 1), (3, 3), (2, 4)], [(1, 1), (1, 0), (2, 0), (0, 1), (2, 1), (1, 2)], [(0, 5), (5, 0), (5, 0), (5, 0), (0, 5), (0, 5)]] label_border_color = WHITE label_color = BLACK label_border_size = BORDER_SIZE label_font_color = WHITE label_font_size = FONT_SIZE cell_colors = [BLACK, BLUE, BROWN, ORANGE, PURPLE, DARK_GRAY, RED, YELLOW, CYAN, GREEN] cell_blocked = -1 cell_empty = 0 cell_type_1 = [[[1]]] cell_type_2 = [[[2], [2]], [[2, 2]]] cell_type_3 = [[[3], [3], [3]], [[3, 3, 3]]] cell_type_4 = [[[4, 4], [4, 0]], [[4, 4], [0, 4]], [[4, 0], [4, 4]], [[0, 4], [4, 4]]] cell_type_5 = [[[5], [5], [5], [5]], [[5, 5, 5, 5]]] cell_type_6 = [[[0, 6, 6], [6, 6, 0]], [[6, 6, 0], [0, 6, 6]], [[6, 0], [6, 6], [0, 6]], [[0, 6], [6, 6], [6, 0]]] cell_type_7 = [[[7, 0], [7, 7], [7, 0]], [[0, 7], [7, 7], [0, 7]], [[7, 7, 7], [0, 7, 0]], [[0, 7, 0], [7, 7, 7]]] cell_type_8 = [[[8, 0], [8, 0], [8, 8]], [[0, 8], [0, 8], [8, 8]], [[8, 8], [8, 0], [8, 0]], [[8, 8], [0, 8], [0, 8]], [[8, 8, 8], [8, 0, 0]], [[8, 8, 8], [0, 0, 8]], [[8, 0, 0], [8, 8, 8]], [[0, 0, 8], [8, 8, 8]]] cell_type_9 = [[[9, 9], [9, 9]]] piece_shapes = [CELL_TYPE_1, CELL_TYPE_2, CELL_TYPE_3, CELL_TYPE_4, CELL_TYPE_5, CELL_TYPE_6, CELL_TYPE_7, CELL_TYPE_8, CELL_TYPE_9] clock_tick = 30 sleep_delay = 0.01
class FrontMiddleBackQueue: def __init__(self): self.f = deque() self.b = deque() def pushFront(self, val: int) -> None: self.f.appendleft(val) self._balance() def pushMiddle(self, val: int) -> None: if len(self.f) > len(self.b): self.b.appendleft(self.f.pop()) self.f.append(val) def pushBack(self, val: int) -> None: self.b.append(val) self._balance() def popFront(self) -> int: v = self.f.popleft() if self.f else -1 self._balance() return v def popMiddle(self) -> int: v = self.f.pop() if self.f else -1 self._balance() return v def popBack(self) -> int: v = (self.b or self.f or [-1]).pop() self._balance() return v def _balance(self): if len(self.f) > len(self.b) + 1: self.b.appendleft(self.f.pop()) if len(self.f) < len(self.b): self.f.append(self.b.popleft())
class Frontmiddlebackqueue: def __init__(self): self.f = deque() self.b = deque() def push_front(self, val: int) -> None: self.f.appendleft(val) self._balance() def push_middle(self, val: int) -> None: if len(self.f) > len(self.b): self.b.appendleft(self.f.pop()) self.f.append(val) def push_back(self, val: int) -> None: self.b.append(val) self._balance() def pop_front(self) -> int: v = self.f.popleft() if self.f else -1 self._balance() return v def pop_middle(self) -> int: v = self.f.pop() if self.f else -1 self._balance() return v def pop_back(self) -> int: v = (self.b or self.f or [-1]).pop() self._balance() return v def _balance(self): if len(self.f) > len(self.b) + 1: self.b.appendleft(self.f.pop()) if len(self.f) < len(self.b): self.f.append(self.b.popleft())
class Contact: def __init__(self, firstname, middlename, address, mobile, lastname, nickname, title, company, home_phone_number, work_phone_number, fax_number, email_1, email_2, email_3, bday, bmonth, byear, aday, amonth, ayear, address_2, phone_2, notes): self.firstname = firstname self.middlename = middlename self.address = address self.mobile = mobile self.lastname = lastname self.nickname = nickname self.title = title self.company = company self.home = home_phone_number self.work = work_phone_number self.fax = fax_number self.email_1 = email_1 self.email_2 = email_2 self.email_3 = email_3 self.bday = bday self.bmonth = bmonth self.byear = byear self.aday = aday self.amonth = amonth self.ayear = ayear self.address2 = address_2 self.phone2 = phone_2 self.notes = notes
class Contact: def __init__(self, firstname, middlename, address, mobile, lastname, nickname, title, company, home_phone_number, work_phone_number, fax_number, email_1, email_2, email_3, bday, bmonth, byear, aday, amonth, ayear, address_2, phone_2, notes): self.firstname = firstname self.middlename = middlename self.address = address self.mobile = mobile self.lastname = lastname self.nickname = nickname self.title = title self.company = company self.home = home_phone_number self.work = work_phone_number self.fax = fax_number self.email_1 = email_1 self.email_2 = email_2 self.email_3 = email_3 self.bday = bday self.bmonth = bmonth self.byear = byear self.aday = aday self.amonth = amonth self.ayear = ayear self.address2 = address_2 self.phone2 = phone_2 self.notes = notes
n = int(input()) res = 1 f = 1 for i in range(1, n + 1): f *= i res += 1 / f print(res)
n = int(input()) res = 1 f = 1 for i in range(1, n + 1): f *= i res += 1 / f print(res)
class Node: def __init__(self, data): self.left = None self.right = None self.data = data def print_tree(self): if self.left: self.left.print_tree() print(self.data), if self.right: self.right.print_tree() def min_num(node): current = node if current: while current.left is not None: print("current.left:", current.left.data) current = current.left print("current", current.data) return current.data root = Node(12) root.left = Node(11) root.left.left = Node(10) root.left.left.left = Node(8) root.left.right = Node(14) root.right = Node(18) root.right.right = Node(20) root.right.left = Node(15) root.print_tree() print("minimum number in tree is %d" % (min_num(root)))
class Node: def __init__(self, data): self.left = None self.right = None self.data = data def print_tree(self): if self.left: self.left.print_tree() (print(self.data),) if self.right: self.right.print_tree() def min_num(node): current = node if current: while current.left is not None: print('current.left:', current.left.data) current = current.left print('current', current.data) return current.data root = node(12) root.left = node(11) root.left.left = node(10) root.left.left.left = node(8) root.left.right = node(14) root.right = node(18) root.right.right = node(20) root.right.left = node(15) root.print_tree() print('minimum number in tree is %d' % min_num(root))
# pylint: skip-file # flake8: noqa def main(): ''' ansible oc module for project ''' module = AnsibleModule( argument_spec=dict( kubeconfig=dict(default='/etc/origin/master/admin.kubeconfig', type='str'), state=dict(default='present', type='str', choices=['present', 'absent', 'list']), debug=dict(default=False, type='bool'), name=dict(default=None, require=True, type='str'), display_name=dict(default=None, type='str'), node_selector=dict(default=None, type='list'), description=dict(default=None, type='str'), admin=dict(default=None, type='str'), admin_role=dict(default='admin', type='str'), ), supports_check_mode=True, ) rval = OCProject.run_ansible(module.params, module.check_mode) if 'failed' in rval: return module.fail_json(**rval) return module.exit_json(**rval) if __name__ == '__main__': main()
def main(): """ ansible oc module for project """ module = ansible_module(argument_spec=dict(kubeconfig=dict(default='/etc/origin/master/admin.kubeconfig', type='str'), state=dict(default='present', type='str', choices=['present', 'absent', 'list']), debug=dict(default=False, type='bool'), name=dict(default=None, require=True, type='str'), display_name=dict(default=None, type='str'), node_selector=dict(default=None, type='list'), description=dict(default=None, type='str'), admin=dict(default=None, type='str'), admin_role=dict(default='admin', type='str')), supports_check_mode=True) rval = OCProject.run_ansible(module.params, module.check_mode) if 'failed' in rval: return module.fail_json(**rval) return module.exit_json(**rval) if __name__ == '__main__': main()
class Solution: def hasPathSum(self, root: TreeNode, sum: int) -> bool: if not root: return False if root.left is None and root.right is None: return root.val == sum new_sum = sum - root.val return self.hasPathSum(root.left, new_sum) or self.hasPathSum(root.right, new_sum)
class Solution: def has_path_sum(self, root: TreeNode, sum: int) -> bool: if not root: return False if root.left is None and root.right is None: return root.val == sum new_sum = sum - root.val return self.hasPathSum(root.left, new_sum) or self.hasPathSum(root.right, new_sum)
# O(P + S) class Solution(object): def findAnagrams(self, s, p): p_count, cur_count, result = [0]*26, [0]*26, [] for c in p: p_count[self._char2ind(c)] += 1 p_len = len(p) a_start = 0 for i, c in enumerate(s): c_ind = self._char2ind(c) # wrong char, restart from next i + 1 if p_count[c_ind] == 0: cur_count = [0]*26 a_start = i + 1 # good char, count it elif cur_count[c_ind] < p_count[c_ind]: cur_count[c_ind] += 1 # if reached p len save result, move start by 1 pos if i - a_start + 1 == p_len: result.append(a_start) cur_count[self._char2ind(s[a_start])] -= 1 a_start += 1 # good char, but reached its limit already # move start until removed its last encounter else: for j in range(a_start, i): cur_count[self._char2ind(s[j])] -=1 a_start += 1 if s[j] == c: break cur_count[c_ind] +=1 return result def _char2ind(self, c): return ord(c.lower()) - ord('a') if __name__ == '__main__': s = input('s: ') p = input('p: ') print('Anagrams: ', Solution().findAnagrams(s, p))
class Solution(object): def find_anagrams(self, s, p): (p_count, cur_count, result) = ([0] * 26, [0] * 26, []) for c in p: p_count[self._char2ind(c)] += 1 p_len = len(p) a_start = 0 for (i, c) in enumerate(s): c_ind = self._char2ind(c) if p_count[c_ind] == 0: cur_count = [0] * 26 a_start = i + 1 elif cur_count[c_ind] < p_count[c_ind]: cur_count[c_ind] += 1 if i - a_start + 1 == p_len: result.append(a_start) cur_count[self._char2ind(s[a_start])] -= 1 a_start += 1 else: for j in range(a_start, i): cur_count[self._char2ind(s[j])] -= 1 a_start += 1 if s[j] == c: break cur_count[c_ind] += 1 return result def _char2ind(self, c): return ord(c.lower()) - ord('a') if __name__ == '__main__': s = input('s: ') p = input('p: ') print('Anagrams: ', solution().findAnagrams(s, p))
model_raw_data = [ { "Field": "Description", "model_id": "", "host_strain": "", "host_strain_full": "", "engraftment_site": "", "engraftment_type": "", "sample_type": "", "sample_state": "", "passage_number": "", "publications": "" }, { "Field": "Example", "model_id": "", "host_strain": "", "host_strain_full": "", "engraftment_site": "", "engraftment_type": "", "sample_type": "", "sample_state": "", "passage_number": "", "publications": "" }, { "Field": "Description", "model_id": "", "host_strain": "", "host_strain_full": "", "engraftment_site": "", "engraftment_type": "", "sample_type": "", "sample_state": "", "passage_number": "", "publications": "" }, { "Field": "Essential?", "model_id": "", "host_strain": "", "host_strain_full": "", "engraftment_site": "", "engraftment_type": "", "sample_type": "", "sample_state": "", "passage_number": "", "publications": "" }, { "Field": None, "model_id": "BRC0013PR", "host_strain": "NOD SCID GAMMA", "host_strain_full": "NOD.Cg-Prkdcscid Il2rgtm1Sug/JicTac", "engraftment_site": "interscapular fat pad", "engraftment_type": "heterotopic", "sample_type": "tissue fragment", "sample_state": "fresh", "passage_number": "0", "publications": "" }, { "Field": None, "model_id": "BRC0015PR", "host_strain": "NOD SCID GAMMA", "host_strain_full": "NOD.Cg-Prkdcscid Il2rgtm1Sug/JicTac", "engraftment_site": "interscapular fat pad", "engraftment_type": "heterotopic", "sample_type": "tissue fragment", "sample_state": "fresh", "passage_number": "0,1,2,3", "publications": "PMID: 27626319" } ] molecular_data_raw_data = [ { "model_id": "CRL-449", "sample_id": "MAXF_449-8651", "sample_origin": "xenograft", "passage": "20", "host_strain_nomenclature": "NMRI", "chromosome": "", "seq_start_position": "", "seq_end_position": "", "symbol": "5_8S_rRNA", "ucsc_gene_id": "", "ncbi_gene_id": "", "ensembl_gene_id": "ENSG00000275877.1", "log10r_cna": "", "log2r_cna": "", "copy_number_status": "", "gistic_value": "", "picnic_value": "", "genome_assembly": "GRCh38", "platform": "Affymetrix SNP6.0" }, { "model_id": "CRL-449", "sample_id": "MAXF_449-8651", "sample_origin": "xenograft", "passage": "20", "host_strain_nomenclature": "NMRI", "chromosome": "", "seq_start_position": "", "seq_end_position": "", "symbol": "5_8S_rRNA", "ucsc_gene_id": "", "ncbi_gene_id": "", "ensembl_gene_id": "ENSG00000276871.1", "log10r_cna": "", "log2r_cna": "", "copy_number_status": "", "gistic_value": "", "picnic_value": "", "genome_assembly": "GRCh38", "platform": "Affymetrix SNP6.0" } ]
model_raw_data = [{'Field': 'Description', 'model_id': '', 'host_strain': '', 'host_strain_full': '', 'engraftment_site': '', 'engraftment_type': '', 'sample_type': '', 'sample_state': '', 'passage_number': '', 'publications': ''}, {'Field': 'Example', 'model_id': '', 'host_strain': '', 'host_strain_full': '', 'engraftment_site': '', 'engraftment_type': '', 'sample_type': '', 'sample_state': '', 'passage_number': '', 'publications': ''}, {'Field': 'Description', 'model_id': '', 'host_strain': '', 'host_strain_full': '', 'engraftment_site': '', 'engraftment_type': '', 'sample_type': '', 'sample_state': '', 'passage_number': '', 'publications': ''}, {'Field': 'Essential?', 'model_id': '', 'host_strain': '', 'host_strain_full': '', 'engraftment_site': '', 'engraftment_type': '', 'sample_type': '', 'sample_state': '', 'passage_number': '', 'publications': ''}, {'Field': None, 'model_id': 'BRC0013PR', 'host_strain': 'NOD SCID GAMMA', 'host_strain_full': 'NOD.Cg-Prkdcscid Il2rgtm1Sug/JicTac', 'engraftment_site': 'interscapular fat pad', 'engraftment_type': 'heterotopic', 'sample_type': 'tissue fragment', 'sample_state': 'fresh', 'passage_number': '0', 'publications': ''}, {'Field': None, 'model_id': 'BRC0015PR', 'host_strain': 'NOD SCID GAMMA', 'host_strain_full': 'NOD.Cg-Prkdcscid Il2rgtm1Sug/JicTac', 'engraftment_site': 'interscapular fat pad', 'engraftment_type': 'heterotopic', 'sample_type': 'tissue fragment', 'sample_state': 'fresh', 'passage_number': '0,1,2,3', 'publications': 'PMID: 27626319'}] molecular_data_raw_data = [{'model_id': 'CRL-449', 'sample_id': 'MAXF_449-8651', 'sample_origin': 'xenograft', 'passage': '20', 'host_strain_nomenclature': 'NMRI', 'chromosome': '', 'seq_start_position': '', 'seq_end_position': '', 'symbol': '5_8S_rRNA', 'ucsc_gene_id': '', 'ncbi_gene_id': '', 'ensembl_gene_id': 'ENSG00000275877.1', 'log10r_cna': '', 'log2r_cna': '', 'copy_number_status': '', 'gistic_value': '', 'picnic_value': '', 'genome_assembly': 'GRCh38', 'platform': 'Affymetrix SNP6.0'}, {'model_id': 'CRL-449', 'sample_id': 'MAXF_449-8651', 'sample_origin': 'xenograft', 'passage': '20', 'host_strain_nomenclature': 'NMRI', 'chromosome': '', 'seq_start_position': '', 'seq_end_position': '', 'symbol': '5_8S_rRNA', 'ucsc_gene_id': '', 'ncbi_gene_id': '', 'ensembl_gene_id': 'ENSG00000276871.1', 'log10r_cna': '', 'log2r_cna': '', 'copy_number_status': '', 'gistic_value': '', 'picnic_value': '', 'genome_assembly': 'GRCh38', 'platform': 'Affymetrix SNP6.0'}]
def convert_into_24hr(time_12hr): if time_12hr[-2:] == "AM": remove_am = time_12hr.replace('AM', '') if time_12hr[:2] == "12": x = remove_am.replace('12', '00') return x return remove_am elif time_12hr[-2:] == "PM": remove_pm = time_12hr.replace('PM', '') if time_12hr[:2] == "12": return remove_pm hour = int(time_12hr[:2]) hour_24format = str(hour + 12) hour_24format = remove_pm.replace(remove_pm[:2], hour_24format) return hour_24format print(convert_into_24hr("12:01:00PM")) print(convert_into_24hr("12:01:00AM")) print(convert_into_24hr("07:05:45PM"))
def convert_into_24hr(time_12hr): if time_12hr[-2:] == 'AM': remove_am = time_12hr.replace('AM', '') if time_12hr[:2] == '12': x = remove_am.replace('12', '00') return x return remove_am elif time_12hr[-2:] == 'PM': remove_pm = time_12hr.replace('PM', '') if time_12hr[:2] == '12': return remove_pm hour = int(time_12hr[:2]) hour_24format = str(hour + 12) hour_24format = remove_pm.replace(remove_pm[:2], hour_24format) return hour_24format print(convert_into_24hr('12:01:00PM')) print(convert_into_24hr('12:01:00AM')) print(convert_into_24hr('07:05:45PM'))
#Ex.14 num = int(input()) if num >= 0: res = pow(num, 1/2) else: res = pow(num, 2) print(res)
num = int(input()) if num >= 0: res = pow(num, 1 / 2) else: res = pow(num, 2) print(res)
# https://github.com/EricCharnesky/CIS2001-Winter2022/blob/main/Week5-StacksAndQueues/main.py class Stack: # O(1) def __init__(self): self._data = [] # O(1) def push(self, item): self._data.append(item) # O(1) def pop(self): return self._data.pop() # O(1) def peek(self): return self._data[len(self._data)-1] # O(1) def is_empty(self): return len(self._data) == 0 # O(1) def __len__(self): return len(self._data) class Queue: _MINIMUM_SIZE = 10 def __init__(self): self._data = [None] * self._MINIMUM_SIZE self._front_index = 0 self._back_index = 0 # O(1) def enqueue(self, item): self._data[self._back_index] = item self._back_index += 1 if self._back_index == len(self._data): self._back_index = 0 if self._back_index == self._front_index: self._resize() # O(1) def dequeue(self): if self.is_empty(): raise IndexError item = self._data[self._front_index] self._data[self._front_index] = None self._front_index += 1 if self._front_index == len(self._data): self._front_index = 0 # 10 becomes the minimum size if self._MINIMUM_SIZE < len(self) * 4 < len(self._data): self._resize_smaller() return item # O(1) def front(self): if self.is_empty(): raise IndexError return self._data[self._front_index] # O(1) def is_empty(self): return len(self) == 0 # O(1) def __len__(self): if self._back_index < self._front_index: return len(self._data) - self._front_index + self._back_index return self._back_index - self._front_index # O(n) def _resize(self): new_data = [None] * len(self._data) * 2 new_index = 0 for index in range(self._front_index, len(self._data)): new_data[new_index] = self._data[index] new_index += 1 for index in range(0, self._front_index): new_data[new_index] = self._data[index] new_index += 1 self._data = new_data self._front_index = 0 self._back_index = new_index # O(n) def _resize_smaller(self): new_data = [None] * ( len(self._data) // 2 ) for index in range(len(self)): new_data[index] = self._data[( self._front_index + index ) % len(self._data)] number_of_items = len(self) self._data = new_data self._front_index = 0 self._back_index = number_of_items
class Stack: def __init__(self): self._data = [] def push(self, item): self._data.append(item) def pop(self): return self._data.pop() def peek(self): return self._data[len(self._data) - 1] def is_empty(self): return len(self._data) == 0 def __len__(self): return len(self._data) class Queue: _minimum_size = 10 def __init__(self): self._data = [None] * self._MINIMUM_SIZE self._front_index = 0 self._back_index = 0 def enqueue(self, item): self._data[self._back_index] = item self._back_index += 1 if self._back_index == len(self._data): self._back_index = 0 if self._back_index == self._front_index: self._resize() def dequeue(self): if self.is_empty(): raise IndexError item = self._data[self._front_index] self._data[self._front_index] = None self._front_index += 1 if self._front_index == len(self._data): self._front_index = 0 if self._MINIMUM_SIZE < len(self) * 4 < len(self._data): self._resize_smaller() return item def front(self): if self.is_empty(): raise IndexError return self._data[self._front_index] def is_empty(self): return len(self) == 0 def __len__(self): if self._back_index < self._front_index: return len(self._data) - self._front_index + self._back_index return self._back_index - self._front_index def _resize(self): new_data = [None] * len(self._data) * 2 new_index = 0 for index in range(self._front_index, len(self._data)): new_data[new_index] = self._data[index] new_index += 1 for index in range(0, self._front_index): new_data[new_index] = self._data[index] new_index += 1 self._data = new_data self._front_index = 0 self._back_index = new_index def _resize_smaller(self): new_data = [None] * (len(self._data) // 2) for index in range(len(self)): new_data[index] = self._data[(self._front_index + index) % len(self._data)] number_of_items = len(self) self._data = new_data self._front_index = 0 self._back_index = number_of_items
class Hello: def __init__(self): self._message = 'Hello world!' def get_message(self): return self._message def main(self): message = self.get_message() print(message) Hello().main()
class Hello: def __init__(self): self._message = 'Hello world!' def get_message(self): return self._message def main(self): message = self.get_message() print(message) hello().main()
class Solution: def findReplaceString(self, S: str, indexes: List[int], sources: List[str], targets: List[str]) -> str: n = len(indexes) changes = [] for i in range(n): idx = indexes[i] source = sources[i] target = targets[i] m = len(source) if S[idx: idx + m] != source: continue changes.append([idx, idx + m, target]) left = 0 result = "" changes.sort() for start, end, target in changes: result = result + S[left : start] + target left = end result += S[left:] return result
class Solution: def find_replace_string(self, S: str, indexes: List[int], sources: List[str], targets: List[str]) -> str: n = len(indexes) changes = [] for i in range(n): idx = indexes[i] source = sources[i] target = targets[i] m = len(source) if S[idx:idx + m] != source: continue changes.append([idx, idx + m, target]) left = 0 result = '' changes.sort() for (start, end, target) in changes: result = result + S[left:start] + target left = end result += S[left:] return result
#proof of concept def set_logger(custom_log): set_logger.__custom_logger = custom_log def log(text): set_logger.__custom_logger.log(text)
def set_logger(custom_log): set_logger.__custom_logger = custom_log def log(text): set_logger.__custom_logger.log(text)
# Semigroup + identity property = Monoid # The number 0 works well as an identity element for addition print(2 + 0 == 2) # Monoids don't have to be numbers
print(2 + 0 == 2)
cx_db = 'plocal://localhost:2424/na_server' cx_version = 'wild_type' initial_drop = False model_version = "Givon17"
cx_db = 'plocal://localhost:2424/na_server' cx_version = 'wild_type' initial_drop = False model_version = 'Givon17'
deps = [ "pip", # install dependencies "pyglet", # rendering engine "pyjsparser", # javascript parser ]
deps = ['pip', 'pyglet', 'pyjsparser']
for tt in range(int(input())): n,m,k = map(int,input().split()) k1 = m-1 + m*(n-1) if k1 == k: print('YES') else: print('NO')
for tt in range(int(input())): (n, m, k) = map(int, input().split()) k1 = m - 1 + m * (n - 1) if k1 == k: print('YES') else: print('NO')
#!/usr/bin/python # -*- coding: utf-8 -*- # Author: illuz <iilluzen[at]gmail.com> # File: AC_stack_n.py # Create Date: 2015-07-26 10:53:38 # Usage: AC_stack_n.py # Descripton: # Definition for a binary tree node. class TreeNode: def __init__(self, x): self.val = x self.left = None self.right = None class Solution: # @param {TreeNode} root # @return {TreeNode} def invertTree(self, root): stack = [root] while stack: node = stack.pop() if node: node.left, node.right = node.right, node.left stack.append(node.left) stack.append(node.right) return root
class Treenode: def __init__(self, x): self.val = x self.left = None self.right = None class Solution: def invert_tree(self, root): stack = [root] while stack: node = stack.pop() if node: (node.left, node.right) = (node.right, node.left) stack.append(node.left) stack.append(node.right) return root
def to_digits(n): list = [] while n: list.append(n%10) n //= 10 list.reverse() return list def main(): print(to_digits(123)) # Expected output : [1, 2, 3] print(to_digits(99999)) # Expected output : [9, 9, 9, 9, 9] print(to_digits(123023)) # Expected output : [1, 2, 3, 0, 2, 3] if __name__ == '__main__': main()
def to_digits(n): list = [] while n: list.append(n % 10) n //= 10 list.reverse() return list def main(): print(to_digits(123)) print(to_digits(99999)) print(to_digits(123023)) if __name__ == '__main__': main()
# # PySNMP MIB module LM-SENSORS-MIB (http://snmplabs.com/pysmi) # ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/LM-SENSORS-MIB # Produced by pysmi-0.3.4 at Mon Apr 29 19:58:12 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") SingleValueConstraint, ValueSizeConstraint, ValueRangeConstraint, ConstraintsUnion, ConstraintsIntersection = mibBuilder.importSymbols("ASN1-REFINEMENT", "SingleValueConstraint", "ValueSizeConstraint", "ValueRangeConstraint", "ConstraintsUnion", "ConstraintsIntersection") ModuleCompliance, NotificationGroup = mibBuilder.importSymbols("SNMPv2-CONF", "ModuleCompliance", "NotificationGroup") NotificationType, TimeTicks, IpAddress, Gauge32, Counter32, MibScalar, MibTable, MibTableRow, MibTableColumn, Unsigned32, Counter64, MibIdentifier, Bits, Integer32, iso, ModuleIdentity, ObjectIdentity = mibBuilder.importSymbols("SNMPv2-SMI", "NotificationType", "TimeTicks", "IpAddress", "Gauge32", "Counter32", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "Unsigned32", "Counter64", "MibIdentifier", "Bits", "Integer32", "iso", "ModuleIdentity", "ObjectIdentity") TextualConvention, DisplayString = mibBuilder.importSymbols("SNMPv2-TC", "TextualConvention", "DisplayString") ucdExperimental, = mibBuilder.importSymbols("UCD-SNMP-MIB", "ucdExperimental") lmSensorsMIB = ModuleIdentity((1, 3, 6, 1, 4, 1, 2021, 13, 16, 1)) lmSensorsMIB.setRevisions(('2000-11-05 00:00',)) if mibBuilder.loadTexts: lmSensorsMIB.setLastUpdated('200011050000Z') if mibBuilder.loadTexts: lmSensorsMIB.setOrganization('AdamsNames Ltd') lmSensors = MibIdentifier((1, 3, 6, 1, 4, 1, 2021, 13, 16)) lmTempSensorsTable = MibTable((1, 3, 6, 1, 4, 1, 2021, 13, 16, 2), ) if mibBuilder.loadTexts: lmTempSensorsTable.setStatus('current') lmTempSensorsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 2021, 13, 16, 2, 1), ).setIndexNames((0, "LM-SENSORS-MIB", "lmTempSensorsIndex")) if mibBuilder.loadTexts: lmTempSensorsEntry.setStatus('current') lmTempSensorsIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 2021, 13, 16, 2, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readonly") if mibBuilder.loadTexts: lmTempSensorsIndex.setStatus('current') lmTempSensorsDevice = MibTableColumn((1, 3, 6, 1, 4, 1, 2021, 13, 16, 2, 1, 2), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: lmTempSensorsDevice.setStatus('current') lmTempSensorsValue = MibTableColumn((1, 3, 6, 1, 4, 1, 2021, 13, 16, 2, 1, 3), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: lmTempSensorsValue.setStatus('current') lmFanSensorsTable = MibTable((1, 3, 6, 1, 4, 1, 2021, 13, 16, 3), ) if mibBuilder.loadTexts: lmFanSensorsTable.setStatus('current') lmFanSensorsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 2021, 13, 16, 3, 1), ).setIndexNames((0, "LM-SENSORS-MIB", "lmFanSensorsIndex")) if mibBuilder.loadTexts: lmFanSensorsEntry.setStatus('current') lmFanSensorsIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 2021, 13, 16, 3, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readonly") if mibBuilder.loadTexts: lmFanSensorsIndex.setStatus('current') lmFanSensorsDevice = MibTableColumn((1, 3, 6, 1, 4, 1, 2021, 13, 16, 3, 1, 2), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: lmFanSensorsDevice.setStatus('current') lmFanSensorsValue = MibTableColumn((1, 3, 6, 1, 4, 1, 2021, 13, 16, 3, 1, 3), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: lmFanSensorsValue.setStatus('current') lmVoltSensorsTable = MibTable((1, 3, 6, 1, 4, 1, 2021, 13, 16, 4), ) if mibBuilder.loadTexts: lmVoltSensorsTable.setStatus('current') lmVoltSensorsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 2021, 13, 16, 4, 1), ).setIndexNames((0, "LM-SENSORS-MIB", "lmVoltSensorsIndex")) if mibBuilder.loadTexts: lmVoltSensorsEntry.setStatus('current') lmVoltSensorsIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 2021, 13, 16, 4, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readonly") if mibBuilder.loadTexts: lmVoltSensorsIndex.setStatus('current') lmVoltSensorsDevice = MibTableColumn((1, 3, 6, 1, 4, 1, 2021, 13, 16, 4, 1, 2), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: lmVoltSensorsDevice.setStatus('current') lmVoltSensorsValue = MibTableColumn((1, 3, 6, 1, 4, 1, 2021, 13, 16, 4, 1, 3), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: lmVoltSensorsValue.setStatus('current') lmMiscSensorsTable = MibTable((1, 3, 6, 1, 4, 1, 2021, 13, 16, 5), ) if mibBuilder.loadTexts: lmMiscSensorsTable.setStatus('current') lmMiscSensorsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 2021, 13, 16, 5, 1), ).setIndexNames((0, "LM-SENSORS-MIB", "lmMiscSensorsIndex")) if mibBuilder.loadTexts: lmMiscSensorsEntry.setStatus('current') lmMiscSensorsIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 2021, 13, 16, 5, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readonly") if mibBuilder.loadTexts: lmMiscSensorsIndex.setStatus('current') lmMiscSensorsDevice = MibTableColumn((1, 3, 6, 1, 4, 1, 2021, 13, 16, 5, 1, 2), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: lmMiscSensorsDevice.setStatus('current') lmMiscSensorsValue = MibTableColumn((1, 3, 6, 1, 4, 1, 2021, 13, 16, 5, 1, 3), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: lmMiscSensorsValue.setStatus('current') mibBuilder.exportSymbols("LM-SENSORS-MIB", lmVoltSensorsDevice=lmVoltSensorsDevice, lmSensorsMIB=lmSensorsMIB, lmTempSensorsIndex=lmTempSensorsIndex, lmMiscSensorsTable=lmMiscSensorsTable, lmVoltSensorsEntry=lmVoltSensorsEntry, lmFanSensorsValue=lmFanSensorsValue, lmTempSensorsTable=lmTempSensorsTable, lmFanSensorsDevice=lmFanSensorsDevice, lmTempSensorsDevice=lmTempSensorsDevice, lmMiscSensorsEntry=lmMiscSensorsEntry, PYSNMP_MODULE_ID=lmSensorsMIB, lmMiscSensorsIndex=lmMiscSensorsIndex, lmVoltSensorsValue=lmVoltSensorsValue, lmMiscSensorsValue=lmMiscSensorsValue, lmMiscSensorsDevice=lmMiscSensorsDevice, lmTempSensorsValue=lmTempSensorsValue, lmVoltSensorsIndex=lmVoltSensorsIndex, lmVoltSensorsTable=lmVoltSensorsTable, lmTempSensorsEntry=lmTempSensorsEntry, lmFanSensorsTable=lmFanSensorsTable, lmFanSensorsEntry=lmFanSensorsEntry, lmFanSensorsIndex=lmFanSensorsIndex, lmSensors=lmSensors)
(octet_string, object_identifier, integer) = mibBuilder.importSymbols('ASN1', 'OctetString', 'ObjectIdentifier', 'Integer') (named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues') (single_value_constraint, value_size_constraint, value_range_constraint, constraints_union, constraints_intersection) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'SingleValueConstraint', 'ValueSizeConstraint', 'ValueRangeConstraint', 'ConstraintsUnion', 'ConstraintsIntersection') (module_compliance, notification_group) = mibBuilder.importSymbols('SNMPv2-CONF', 'ModuleCompliance', 'NotificationGroup') (notification_type, time_ticks, ip_address, gauge32, counter32, mib_scalar, mib_table, mib_table_row, mib_table_column, unsigned32, counter64, mib_identifier, bits, integer32, iso, module_identity, object_identity) = mibBuilder.importSymbols('SNMPv2-SMI', 'NotificationType', 'TimeTicks', 'IpAddress', 'Gauge32', 'Counter32', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn', 'Unsigned32', 'Counter64', 'MibIdentifier', 'Bits', 'Integer32', 'iso', 'ModuleIdentity', 'ObjectIdentity') (textual_convention, display_string) = mibBuilder.importSymbols('SNMPv2-TC', 'TextualConvention', 'DisplayString') (ucd_experimental,) = mibBuilder.importSymbols('UCD-SNMP-MIB', 'ucdExperimental') lm_sensors_mib = module_identity((1, 3, 6, 1, 4, 1, 2021, 13, 16, 1)) lmSensorsMIB.setRevisions(('2000-11-05 00:00',)) if mibBuilder.loadTexts: lmSensorsMIB.setLastUpdated('200011050000Z') if mibBuilder.loadTexts: lmSensorsMIB.setOrganization('AdamsNames Ltd') lm_sensors = mib_identifier((1, 3, 6, 1, 4, 1, 2021, 13, 16)) lm_temp_sensors_table = mib_table((1, 3, 6, 1, 4, 1, 2021, 13, 16, 2)) if mibBuilder.loadTexts: lmTempSensorsTable.setStatus('current') lm_temp_sensors_entry = mib_table_row((1, 3, 6, 1, 4, 1, 2021, 13, 16, 2, 1)).setIndexNames((0, 'LM-SENSORS-MIB', 'lmTempSensorsIndex')) if mibBuilder.loadTexts: lmTempSensorsEntry.setStatus('current') lm_temp_sensors_index = mib_table_column((1, 3, 6, 1, 4, 1, 2021, 13, 16, 2, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readonly') if mibBuilder.loadTexts: lmTempSensorsIndex.setStatus('current') lm_temp_sensors_device = mib_table_column((1, 3, 6, 1, 4, 1, 2021, 13, 16, 2, 1, 2), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: lmTempSensorsDevice.setStatus('current') lm_temp_sensors_value = mib_table_column((1, 3, 6, 1, 4, 1, 2021, 13, 16, 2, 1, 3), gauge32()).setMaxAccess('readonly') if mibBuilder.loadTexts: lmTempSensorsValue.setStatus('current') lm_fan_sensors_table = mib_table((1, 3, 6, 1, 4, 1, 2021, 13, 16, 3)) if mibBuilder.loadTexts: lmFanSensorsTable.setStatus('current') lm_fan_sensors_entry = mib_table_row((1, 3, 6, 1, 4, 1, 2021, 13, 16, 3, 1)).setIndexNames((0, 'LM-SENSORS-MIB', 'lmFanSensorsIndex')) if mibBuilder.loadTexts: lmFanSensorsEntry.setStatus('current') lm_fan_sensors_index = mib_table_column((1, 3, 6, 1, 4, 1, 2021, 13, 16, 3, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readonly') if mibBuilder.loadTexts: lmFanSensorsIndex.setStatus('current') lm_fan_sensors_device = mib_table_column((1, 3, 6, 1, 4, 1, 2021, 13, 16, 3, 1, 2), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: lmFanSensorsDevice.setStatus('current') lm_fan_sensors_value = mib_table_column((1, 3, 6, 1, 4, 1, 2021, 13, 16, 3, 1, 3), gauge32()).setMaxAccess('readonly') if mibBuilder.loadTexts: lmFanSensorsValue.setStatus('current') lm_volt_sensors_table = mib_table((1, 3, 6, 1, 4, 1, 2021, 13, 16, 4)) if mibBuilder.loadTexts: lmVoltSensorsTable.setStatus('current') lm_volt_sensors_entry = mib_table_row((1, 3, 6, 1, 4, 1, 2021, 13, 16, 4, 1)).setIndexNames((0, 'LM-SENSORS-MIB', 'lmVoltSensorsIndex')) if mibBuilder.loadTexts: lmVoltSensorsEntry.setStatus('current') lm_volt_sensors_index = mib_table_column((1, 3, 6, 1, 4, 1, 2021, 13, 16, 4, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readonly') if mibBuilder.loadTexts: lmVoltSensorsIndex.setStatus('current') lm_volt_sensors_device = mib_table_column((1, 3, 6, 1, 4, 1, 2021, 13, 16, 4, 1, 2), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: lmVoltSensorsDevice.setStatus('current') lm_volt_sensors_value = mib_table_column((1, 3, 6, 1, 4, 1, 2021, 13, 16, 4, 1, 3), gauge32()).setMaxAccess('readonly') if mibBuilder.loadTexts: lmVoltSensorsValue.setStatus('current') lm_misc_sensors_table = mib_table((1, 3, 6, 1, 4, 1, 2021, 13, 16, 5)) if mibBuilder.loadTexts: lmMiscSensorsTable.setStatus('current') lm_misc_sensors_entry = mib_table_row((1, 3, 6, 1, 4, 1, 2021, 13, 16, 5, 1)).setIndexNames((0, 'LM-SENSORS-MIB', 'lmMiscSensorsIndex')) if mibBuilder.loadTexts: lmMiscSensorsEntry.setStatus('current') lm_misc_sensors_index = mib_table_column((1, 3, 6, 1, 4, 1, 2021, 13, 16, 5, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readonly') if mibBuilder.loadTexts: lmMiscSensorsIndex.setStatus('current') lm_misc_sensors_device = mib_table_column((1, 3, 6, 1, 4, 1, 2021, 13, 16, 5, 1, 2), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: lmMiscSensorsDevice.setStatus('current') lm_misc_sensors_value = mib_table_column((1, 3, 6, 1, 4, 1, 2021, 13, 16, 5, 1, 3), gauge32()).setMaxAccess('readonly') if mibBuilder.loadTexts: lmMiscSensorsValue.setStatus('current') mibBuilder.exportSymbols('LM-SENSORS-MIB', lmVoltSensorsDevice=lmVoltSensorsDevice, lmSensorsMIB=lmSensorsMIB, lmTempSensorsIndex=lmTempSensorsIndex, lmMiscSensorsTable=lmMiscSensorsTable, lmVoltSensorsEntry=lmVoltSensorsEntry, lmFanSensorsValue=lmFanSensorsValue, lmTempSensorsTable=lmTempSensorsTable, lmFanSensorsDevice=lmFanSensorsDevice, lmTempSensorsDevice=lmTempSensorsDevice, lmMiscSensorsEntry=lmMiscSensorsEntry, PYSNMP_MODULE_ID=lmSensorsMIB, lmMiscSensorsIndex=lmMiscSensorsIndex, lmVoltSensorsValue=lmVoltSensorsValue, lmMiscSensorsValue=lmMiscSensorsValue, lmMiscSensorsDevice=lmMiscSensorsDevice, lmTempSensorsValue=lmTempSensorsValue, lmVoltSensorsIndex=lmVoltSensorsIndex, lmVoltSensorsTable=lmVoltSensorsTable, lmTempSensorsEntry=lmTempSensorsEntry, lmFanSensorsTable=lmFanSensorsTable, lmFanSensorsEntry=lmFanSensorsEntry, lmFanSensorsIndex=lmFanSensorsIndex, lmSensors=lmSensors)
# https://cses.fi/problemset/task/1618 def zeros(n): return 0 if n < 5 else zeros(n // 5) + n // 5 print(zeros(int(input())))
def zeros(n): return 0 if n < 5 else zeros(n // 5) + n // 5 print(zeros(int(input())))
#Title:-DiameterOfBinaryTree #Explanation:-https://www.youtube.com/watch?v=v8U4Wi6ZwKE&list=PLmpbOouoNZaP5M275obyC44n3I3nCFk8Q&index=12 #Author : Tanay Chauli class newNode: def __init__(self, data): self.data = data self.left = self.right = None # Function to find height of a tree def height(root, ans): if (root == None): return 0 left_height = height(root.left, ans) right_height = height(root.right, ans) # update the answer, because diameter # of a tree is nothing but maximum # value of (left_height + right_height + 1) # for each node ans[0] = max(ans[0],left_height + right_height) return 1 + max(left_height, right_height) # Computes the diameter of binary # tree with given root. def diameter(root): if (root == None): return 0 ans = [-999999999999] # This will store # the final answer height_of_tree = height(root, ans) return ans[0] # Driver code if __name__ == '__main__': root = newNode(1) root.left = newNode(2) root.right = newNode(3) root.left.left = newNode(4) root.left.right = newNode(5) print("Diameter is", diameter(root))
class Newnode: def __init__(self, data): self.data = data self.left = self.right = None def height(root, ans): if root == None: return 0 left_height = height(root.left, ans) right_height = height(root.right, ans) ans[0] = max(ans[0], left_height + right_height) return 1 + max(left_height, right_height) def diameter(root): if root == None: return 0 ans = [-999999999999] height_of_tree = height(root, ans) return ans[0] if __name__ == '__main__': root = new_node(1) root.left = new_node(2) root.right = new_node(3) root.left.left = new_node(4) root.left.right = new_node(5) print('Diameter is', diameter(root))
class BallastControl: def __init__(self, mass: float, center_of_mass: tuple, center_of_buoyancy: tuple): # initialize syringe controls self.constant_mass = mass self.constant_COM = center_of_mass self.constant_COB = center_of_buoyancy
class Ballastcontrol: def __init__(self, mass: float, center_of_mass: tuple, center_of_buoyancy: tuple): self.constant_mass = mass self.constant_COM = center_of_mass self.constant_COB = center_of_buoyancy
# # PySNMP MIB module DRAFT-MSDP-MIB (http://snmplabs.com/pysmi) # ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/DRAFT-MSDP-MIB # Produced by pysmi-0.3.4 at Wed May 1 12:54:19 2019 # On host DAVWANG4-M-1475 platform Darwin version 18.5.0 by user davwang4 # Using Python version 3.7.3 (default, Mar 27 2019, 09:23:15) # Integer, OctetString, ObjectIdentifier = mibBuilder.importSymbols("ASN1", "Integer", "OctetString", "ObjectIdentifier") NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues") SingleValueConstraint, ValueRangeConstraint, ValueSizeConstraint, ConstraintsUnion, ConstraintsIntersection = mibBuilder.importSymbols("ASN1-REFINEMENT", "SingleValueConstraint", "ValueRangeConstraint", "ValueSizeConstraint", "ConstraintsUnion", "ConstraintsIntersection") NotificationGroup, ModuleCompliance, ObjectGroup = mibBuilder.importSymbols("SNMPv2-CONF", "NotificationGroup", "ModuleCompliance", "ObjectGroup") MibIdentifier, TimeTicks, Counter32, Bits, ModuleIdentity, Counter64, NotificationType, Gauge32, iso, experimental, MibScalar, MibTable, MibTableRow, MibTableColumn, Integer32, ObjectIdentity, IpAddress, Unsigned32 = mibBuilder.importSymbols("SNMPv2-SMI", "MibIdentifier", "TimeTicks", "Counter32", "Bits", "ModuleIdentity", "Counter64", "NotificationType", "Gauge32", "iso", "experimental", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "Integer32", "ObjectIdentity", "IpAddress", "Unsigned32") TextualConvention, RowStatus, TruthValue, DisplayString = mibBuilder.importSymbols("SNMPv2-TC", "TextualConvention", "RowStatus", "TruthValue", "DisplayString") msdpMIB = ModuleIdentity((1, 3, 6, 1, 3, 92)) if mibBuilder.loadTexts: msdpMIB.setLastUpdated('9912160000Z') if mibBuilder.loadTexts: msdpMIB.setOrganization('IETF MSDP Working Group') if mibBuilder.loadTexts: msdpMIB.setContactInfo(' Bill Fenner 75 Willow Road Menlo Park, CA 94025 Phone: +1 650 867 6073 E-mail: fenner@research.att.com Dave Thaler One Microsoft Way Redmond, WA 98052 Phone: +1 425 703 8835 Email: dthaler@microsoft.com') if mibBuilder.loadTexts: msdpMIB.setDescription('An experimental MIB module for MSDP Management.') msdpMIBobjects = MibIdentifier((1, 3, 6, 1, 3, 92, 1)) msdp = MibIdentifier((1, 3, 6, 1, 3, 92, 1, 1)) msdpEnabled = MibScalar((1, 3, 6, 1, 3, 92, 1, 1, 1), TruthValue()).setMaxAccess("readwrite") if mibBuilder.loadTexts: msdpEnabled.setStatus('current') if mibBuilder.loadTexts: msdpEnabled.setDescription('The state of MSDP on this MSDP speaker - globally enabled or disabled.') msdpCacheLifetime = MibScalar((1, 3, 6, 1, 3, 92, 1, 1, 2), TimeTicks()).setMaxAccess("readwrite") if mibBuilder.loadTexts: msdpCacheLifetime.setStatus('current') if mibBuilder.loadTexts: msdpCacheLifetime.setDescription('The lifetime given to SA cache entries when created or refreshed. A value of 0 means no SA caching is done by this MSDP speaker.') msdpNumSACacheEntries = MibScalar((1, 3, 6, 1, 3, 92, 1, 1, 3), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: msdpNumSACacheEntries.setStatus('current') if mibBuilder.loadTexts: msdpNumSACacheEntries.setDescription('The total number of entries in the SA Cache table.') msdpSAHoldDownPeriod = MibScalar((1, 3, 6, 1, 3, 92, 1, 1, 9), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 2147483647)).clone(90)).setUnits('seconds').setMaxAccess("readonly") if mibBuilder.loadTexts: msdpSAHoldDownPeriod.setStatus('current') if mibBuilder.loadTexts: msdpSAHoldDownPeriod.setDescription('The number of seconds in the MSDP SA Hold-down period') msdpRequestsTable = MibTable((1, 3, 6, 1, 3, 92, 1, 1, 4), ) if mibBuilder.loadTexts: msdpRequestsTable.setStatus('current') if mibBuilder.loadTexts: msdpRequestsTable.setDescription('The (conceptual) table listing group ranges and MSDP peers used when deciding where to send an SA Request message when required. If SA Caching is enabled, this table may be empty.') msdpRequestsEntry = MibTableRow((1, 3, 6, 1, 3, 92, 1, 1, 4, 1), ).setIndexNames((0, "DRAFT-MSDP-MIB", "msdpRequestsGroupAddress"), (0, "DRAFT-MSDP-MIB", "msdpRequestsGroupMask")) if mibBuilder.loadTexts: msdpRequestsEntry.setStatus('current') if mibBuilder.loadTexts: msdpRequestsEntry.setDescription('An entry (conceptual row) representing a group range used when deciding where to send an SA Request message.') msdpRequestsGroupAddress = MibTableColumn((1, 3, 6, 1, 3, 92, 1, 1, 4, 1, 1), IpAddress()) if mibBuilder.loadTexts: msdpRequestsGroupAddress.setStatus('current') if mibBuilder.loadTexts: msdpRequestsGroupAddress.setDescription('The group address that, when combined with the mask in this entry, represents the group range for which this peer will service MSDP SA Requests.') msdpRequestsGroupMask = MibTableColumn((1, 3, 6, 1, 3, 92, 1, 1, 4, 1, 2), IpAddress()) if mibBuilder.loadTexts: msdpRequestsGroupMask.setStatus('current') if mibBuilder.loadTexts: msdpRequestsGroupMask.setDescription('The mask that, when combined with the group address in this entry, represents the group range for which this peer will service MSDP SA Requests.') msdpRequestsPeer = MibTableColumn((1, 3, 6, 1, 3, 92, 1, 1, 4, 1, 3), IpAddress()).setMaxAccess("readcreate") if mibBuilder.loadTexts: msdpRequestsPeer.setStatus('current') if mibBuilder.loadTexts: msdpRequestsPeer.setDescription("The peer to which MSDP SA Requests for groups matching this entry's group range will be sent. Must match the INDEX of a row in the msdpPeerTable.") msdpRequestsStatus = MibTableColumn((1, 3, 6, 1, 3, 92, 1, 1, 4, 1, 4), RowStatus()).setMaxAccess("readcreate") if mibBuilder.loadTexts: msdpRequestsStatus.setStatus('current') if mibBuilder.loadTexts: msdpRequestsStatus.setDescription('The status of this row, by which new rows may be added to the table.') msdpPeerTable = MibTable((1, 3, 6, 1, 3, 92, 1, 1, 5), ) if mibBuilder.loadTexts: msdpPeerTable.setStatus('current') if mibBuilder.loadTexts: msdpPeerTable.setDescription("The (conceptual) table listing the MSDP speaker's peers.") msdpPeerEntry = MibTableRow((1, 3, 6, 1, 3, 92, 1, 1, 5, 1), ).setIndexNames((0, "DRAFT-MSDP-MIB", "msdpPeerRemoteAddress")) if mibBuilder.loadTexts: msdpPeerEntry.setStatus('current') if mibBuilder.loadTexts: msdpPeerEntry.setDescription('An entry (conceptual row) representing an MSDP peer.') msdpPeerRemoteAddress = MibTableColumn((1, 3, 6, 1, 3, 92, 1, 1, 5, 1, 1), IpAddress()) if mibBuilder.loadTexts: msdpPeerRemoteAddress.setStatus('current') if mibBuilder.loadTexts: msdpPeerRemoteAddress.setDescription('The address of the remote MSDP peer.') msdpPeerState = MibTableColumn((1, 3, 6, 1, 3, 92, 1, 1, 5, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5))).clone(namedValues=NamedValues(("inactive", 1), ("listen", 2), ("connecting", 3), ("established", 4), ("disabled", 5)))).setMaxAccess("readonly") if mibBuilder.loadTexts: msdpPeerState.setStatus('current') if mibBuilder.loadTexts: msdpPeerState.setDescription('The state of the MSDP TCP connection with this peer.') msdpPeerRPFFailures = MibTableColumn((1, 3, 6, 1, 3, 92, 1, 1, 5, 1, 4), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: msdpPeerRPFFailures.setStatus('current') if mibBuilder.loadTexts: msdpPeerRPFFailures.setDescription('The number of RPF failures on SA messages received from this peer.') msdpPeerInSAs = MibTableColumn((1, 3, 6, 1, 3, 92, 1, 1, 5, 1, 5), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: msdpPeerInSAs.setStatus('current') if mibBuilder.loadTexts: msdpPeerInSAs.setDescription('The number of MSDP SA messages received on this connection. This object should be initialized to zero when the connection is established.') msdpPeerOutSAs = MibTableColumn((1, 3, 6, 1, 3, 92, 1, 1, 5, 1, 6), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: msdpPeerOutSAs.setStatus('current') if mibBuilder.loadTexts: msdpPeerOutSAs.setDescription('The number of MSDP SA messages transmitted on this connection. This object should be initialized to zero when the connection is established.') msdpPeerInSARequests = MibTableColumn((1, 3, 6, 1, 3, 92, 1, 1, 5, 1, 7), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: msdpPeerInSARequests.setStatus('current') if mibBuilder.loadTexts: msdpPeerInSARequests.setDescription('The number of MSDP SA-Request messages received on this connection. This object should be initialized to zero when the connection is established.') msdpPeerOutSARequests = MibTableColumn((1, 3, 6, 1, 3, 92, 1, 1, 5, 1, 8), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: msdpPeerOutSARequests.setStatus('current') if mibBuilder.loadTexts: msdpPeerOutSARequests.setDescription('The number of MSDP SA-Request messages transmitted on this connection. This object should be initialized to zero when the connection is established.') msdpPeerInSAResponses = MibTableColumn((1, 3, 6, 1, 3, 92, 1, 1, 5, 1, 9), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: msdpPeerInSAResponses.setStatus('current') if mibBuilder.loadTexts: msdpPeerInSAResponses.setDescription('The number of MSDP SA-Response messages received on this connection. This object should be initialized to zero when the connection is established.') msdpPeerOutSAResponses = MibTableColumn((1, 3, 6, 1, 3, 92, 1, 1, 5, 1, 10), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: msdpPeerOutSAResponses.setStatus('current') if mibBuilder.loadTexts: msdpPeerOutSAResponses.setDescription('The number of MSDP SA Response messages transmitted on this TCP connection. This object should be initialized to zero when the connection is established.') msdpPeerInControlMessages = MibTableColumn((1, 3, 6, 1, 3, 92, 1, 1, 5, 1, 11), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: msdpPeerInControlMessages.setStatus('current') if mibBuilder.loadTexts: msdpPeerInControlMessages.setDescription('The total number of MSDP messages received on this TCP connection. This object should be initialized to zero when the connection is established.') msdpPeerOutControlMessages = MibTableColumn((1, 3, 6, 1, 3, 92, 1, 1, 5, 1, 12), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: msdpPeerOutControlMessages.setStatus('current') if mibBuilder.loadTexts: msdpPeerOutControlMessages.setDescription('The total number of MSDP messages transmitted on this TCP connection. This object should be initialized to zero when the connection is established.') msdpPeerInDataPackets = MibTableColumn((1, 3, 6, 1, 3, 92, 1, 1, 5, 1, 13), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: msdpPeerInDataPackets.setStatus('current') if mibBuilder.loadTexts: msdpPeerInDataPackets.setDescription('The total number of encapsulated data packets received from this peer. This object should be initialized to zero when the connection is established.') msdpPeerOutDataPackets = MibTableColumn((1, 3, 6, 1, 3, 92, 1, 1, 5, 1, 14), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: msdpPeerOutDataPackets.setStatus('current') if mibBuilder.loadTexts: msdpPeerOutDataPackets.setDescription('The total number of encapsulated data packets sent to this peer. This object should be initialized to zero when the connection is established.') msdpPeerFsmEstablishedTransitions = MibTableColumn((1, 3, 6, 1, 3, 92, 1, 1, 5, 1, 15), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: msdpPeerFsmEstablishedTransitions.setStatus('current') if mibBuilder.loadTexts: msdpPeerFsmEstablishedTransitions.setDescription('The total number of times the MSDP FSM transitioned into the established state.') msdpPeerFsmEstablishedTime = MibTableColumn((1, 3, 6, 1, 3, 92, 1, 1, 5, 1, 16), Gauge32()).setUnits('seconds').setMaxAccess("readonly") if mibBuilder.loadTexts: msdpPeerFsmEstablishedTime.setStatus('current') if mibBuilder.loadTexts: msdpPeerFsmEstablishedTime.setDescription('This timer indicates how long (in seconds) this peer has been in the Established state or how long since this peer was last in the Established state. It is set to zero when a new peer is configured or the MSDP speaker is booted.') msdpPeerInMessageElapsedTime = MibTableColumn((1, 3, 6, 1, 3, 92, 1, 1, 5, 1, 17), Gauge32()).setUnits('seconds').setMaxAccess("readonly") if mibBuilder.loadTexts: msdpPeerInMessageElapsedTime.setStatus('current') if mibBuilder.loadTexts: msdpPeerInMessageElapsedTime.setDescription('Elapsed time in seconds since the last MSDP message was received from the peer. Each time msdpPeerInControlMessages is incremented, the value of this object is set to zero (0).') msdpPeerLocalAddress = MibTableColumn((1, 3, 6, 1, 3, 92, 1, 1, 5, 1, 18), IpAddress()).setMaxAccess("readcreate") if mibBuilder.loadTexts: msdpPeerLocalAddress.setStatus('current') if mibBuilder.loadTexts: msdpPeerLocalAddress.setDescription("The local IP address of this entry's MSDP connection.") msdpPeerSAAdvPeriod = MibTableColumn((1, 3, 6, 1, 3, 92, 1, 1, 5, 1, 19), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 2147483647)).clone(60)).setUnits('seconds').setMaxAccess("readcreate") if mibBuilder.loadTexts: msdpPeerSAAdvPeriod.setStatus('current') if mibBuilder.loadTexts: msdpPeerSAAdvPeriod.setDescription('Time interval in seconds for the MinSAAdvertisementInterval MSDP timer.') msdpPeerConnectRetryInterval = MibTableColumn((1, 3, 6, 1, 3, 92, 1, 1, 5, 1, 20), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535)).clone(120)).setUnits('seconds').setMaxAccess("readcreate") if mibBuilder.loadTexts: msdpPeerConnectRetryInterval.setStatus('current') if mibBuilder.loadTexts: msdpPeerConnectRetryInterval.setDescription('Time interval in seconds for the ConnectRetry timer.') msdpPeerHoldTimeConfigured = MibTableColumn((1, 3, 6, 1, 3, 92, 1, 1, 5, 1, 21), Integer32().subtype(subtypeSpec=ConstraintsUnion(ValueRangeConstraint(0, 0), ValueRangeConstraint(3, 65535), )).clone(90)).setUnits('seconds').setMaxAccess("readcreate") if mibBuilder.loadTexts: msdpPeerHoldTimeConfigured.setStatus('current') if mibBuilder.loadTexts: msdpPeerHoldTimeConfigured.setDescription('Time interval in seconds for the Hold Timer configured for this MSDP speaker with this peer.') msdpPeerKeepAliveConfigured = MibTableColumn((1, 3, 6, 1, 3, 92, 1, 1, 5, 1, 22), Integer32().subtype(subtypeSpec=ConstraintsUnion(ValueRangeConstraint(0, 0), ValueRangeConstraint(1, 21845), )).clone(30)).setUnits('seconds').setMaxAccess("readcreate") if mibBuilder.loadTexts: msdpPeerKeepAliveConfigured.setStatus('current') if mibBuilder.loadTexts: msdpPeerKeepAliveConfigured.setDescription('Time interval in seconds for the KeepAlive timer configured for this MSDP speaker with this peer. A reasonable maximum value for this timer would be configured to be one third of that of msdpPeerHoldTimeConfigured. If the value of this object is zero (0), no periodic KEEPALIVE messages are sent to the peer after the MSDP connection has been established.') msdpPeerDataTtl = MibTableColumn((1, 3, 6, 1, 3, 92, 1, 1, 5, 1, 23), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 255))).setMaxAccess("readcreate") if mibBuilder.loadTexts: msdpPeerDataTtl.setStatus('current') if mibBuilder.loadTexts: msdpPeerDataTtl.setDescription('The minimum TTL a packet is required to have before it may be forwarded using SA encapsulation to this peer.') msdpPeerProcessRequestsFrom = MibTableColumn((1, 3, 6, 1, 3, 92, 1, 1, 5, 1, 24), TruthValue()).setMaxAccess("readcreate") if mibBuilder.loadTexts: msdpPeerProcessRequestsFrom.setStatus('current') if mibBuilder.loadTexts: msdpPeerProcessRequestsFrom.setDescription('This object indicates whether or not to process MSDP SA Request messages from this peer. If True(1), MSDP SA Request messages from this peer are processed and replied to (if appropriate) with SA Response messages. If False(2), MSDP SA Request messages from this peer are silently ignored. It defaults to False when msdpCacheLifetime is 0 and True when msdpCacheLifetime is non-0.') msdpPeerStatus = MibTableColumn((1, 3, 6, 1, 3, 92, 1, 1, 5, 1, 25), RowStatus()).setMaxAccess("readcreate") if mibBuilder.loadTexts: msdpPeerStatus.setStatus('current') if mibBuilder.loadTexts: msdpPeerStatus.setDescription("The RowStatus object by which peers can be added and deleted. A transition to 'active' will cause the MSDP Start Event to be generated. A transition out of the 'active' state will cause the MSDP Stop Event to be generated. Care should be used in providing write access to this object without adequate authentication.") msdpPeerRemotePort = MibTableColumn((1, 3, 6, 1, 3, 92, 1, 1, 5, 1, 26), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readonly") if mibBuilder.loadTexts: msdpPeerRemotePort.setStatus('current') if mibBuilder.loadTexts: msdpPeerRemotePort.setDescription('The remote port for the TCP connection between the MSDP peers.') msdpPeerLocalPort = MibTableColumn((1, 3, 6, 1, 3, 92, 1, 1, 5, 1, 27), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readonly") if mibBuilder.loadTexts: msdpPeerLocalPort.setStatus('current') if mibBuilder.loadTexts: msdpPeerLocalPort.setDescription('The local port for the TCP connection between the MSDP peers.') msdpPeerEncapsulationState = MibTableColumn((1, 3, 6, 1, 3, 92, 1, 1, 5, 1, 28), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6))).clone(namedValues=NamedValues(("default", 1), ("received", 2), ("advertising", 3), ("sent", 4), ("agreed", 5), ("failed", 6)))).setMaxAccess("readonly") if mibBuilder.loadTexts: msdpPeerEncapsulationState.setStatus('current') if mibBuilder.loadTexts: msdpPeerEncapsulationState.setDescription('The status of the encapsulation negotiation state machine.') msdpPeerEncapsulationType = MibTableColumn((1, 3, 6, 1, 3, 92, 1, 1, 5, 1, 29), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("tcp", 1), ("udp", 2), ("gre", 3)))).setMaxAccess("readonly") if mibBuilder.loadTexts: msdpPeerEncapsulationType.setStatus('current') if mibBuilder.loadTexts: msdpPeerEncapsulationType.setDescription('The encapsulation in use when encapsulating data in SA messages to this peer.') msdpPeerConnectionAttempts = MibTableColumn((1, 3, 6, 1, 3, 92, 1, 1, 5, 1, 30), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: msdpPeerConnectionAttempts.setStatus('current') if mibBuilder.loadTexts: msdpPeerConnectionAttempts.setDescription('The number of times the state machine has transitioned from inactive to connecting.') msdpPeerInNotifications = MibTableColumn((1, 3, 6, 1, 3, 92, 1, 1, 5, 1, 31), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: msdpPeerInNotifications.setStatus('current') if mibBuilder.loadTexts: msdpPeerInNotifications.setDescription('The number of MSDP Notification messages received on this connection. This object should be initialized to zero when the connection is established.') msdpPeerOutNotifications = MibTableColumn((1, 3, 6, 1, 3, 92, 1, 1, 5, 1, 32), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: msdpPeerOutNotifications.setStatus('current') if mibBuilder.loadTexts: msdpPeerOutNotifications.setDescription('The number of MSDP Notification messages transmitted on this connection. This object should be initialized to zero when the connection is established.') msdpPeerLastError = MibTableColumn((1, 3, 6, 1, 3, 92, 1, 1, 5, 1, 33), OctetString().subtype(subtypeSpec=ValueSizeConstraint(2, 2)).setFixedLength(2).clone(hexValue="0000")).setMaxAccess("readonly") if mibBuilder.loadTexts: msdpPeerLastError.setStatus('current') if mibBuilder.loadTexts: msdpPeerLastError.setDescription('The last error code and subcode seen by this peer on this connection. If no error has occurred, this field is zero. Otherwise, the first byte of this two byte OCTET STRING contains the error code, and the second byte contains the subcode.') msdpSACacheTable = MibTable((1, 3, 6, 1, 3, 92, 1, 1, 6), ) if mibBuilder.loadTexts: msdpSACacheTable.setStatus('current') if mibBuilder.loadTexts: msdpSACacheTable.setDescription("The (conceptual) table listing the MSDP SA advertisements currently in the MSDP speaker's cache.") msdpSACacheEntry = MibTableRow((1, 3, 6, 1, 3, 92, 1, 1, 6, 1), ).setIndexNames((0, "DRAFT-MSDP-MIB", "msdpSACacheGroupAddr"), (0, "DRAFT-MSDP-MIB", "msdpSACacheSourceAddr"), (0, "DRAFT-MSDP-MIB", "msdpSACacheOriginRP")) if mibBuilder.loadTexts: msdpSACacheEntry.setStatus('current') if mibBuilder.loadTexts: msdpSACacheEntry.setDescription('An entry (conceptual row) representing an MSDP SA advert.') msdpSACacheGroupAddr = MibTableColumn((1, 3, 6, 1, 3, 92, 1, 1, 6, 1, 1), IpAddress()) if mibBuilder.loadTexts: msdpSACacheGroupAddr.setStatus('current') if mibBuilder.loadTexts: msdpSACacheGroupAddr.setDescription('The group address of the SA Cache entry.') msdpSACacheSourceAddr = MibTableColumn((1, 3, 6, 1, 3, 92, 1, 1, 6, 1, 2), IpAddress()) if mibBuilder.loadTexts: msdpSACacheSourceAddr.setStatus('current') if mibBuilder.loadTexts: msdpSACacheSourceAddr.setDescription('The source address of the SA Cache entry.') msdpSACacheOriginRP = MibTableColumn((1, 3, 6, 1, 3, 92, 1, 1, 6, 1, 3), IpAddress()) if mibBuilder.loadTexts: msdpSACacheOriginRP.setStatus('current') if mibBuilder.loadTexts: msdpSACacheOriginRP.setDescription('The address of the RP which originated the last SA message accepted for this entry.') msdpSACachePeerLearnedFrom = MibTableColumn((1, 3, 6, 1, 3, 92, 1, 1, 6, 1, 4), IpAddress()).setMaxAccess("readonly") if mibBuilder.loadTexts: msdpSACachePeerLearnedFrom.setStatus('current') if mibBuilder.loadTexts: msdpSACachePeerLearnedFrom.setDescription('The peer from which this SA Cache entry was last accepted. This address must correspond to the msdpPeerRemoteAddress value for a row in the MSDP Peer Table.') msdpSACacheRPFPeer = MibTableColumn((1, 3, 6, 1, 3, 92, 1, 1, 6, 1, 5), IpAddress()).setMaxAccess("readonly") if mibBuilder.loadTexts: msdpSACacheRPFPeer.setStatus('current') if mibBuilder.loadTexts: msdpSACacheRPFPeer.setDescription('The peer from which an SA message corresponding to this cache entry would be accepted (i.e. the RPF peer for msdpSACacheOriginRP). This may be different than msdpSACachePeerLearnedFrom if this entry was created by an MSDP SA-Response. This address must correspond to the msdpPeerRemoteAddress value for a row in the MSDP Peer Table.') msdpSACacheInSAs = MibTableColumn((1, 3, 6, 1, 3, 92, 1, 1, 6, 1, 6), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: msdpSACacheInSAs.setStatus('current') if mibBuilder.loadTexts: msdpSACacheInSAs.setDescription('The number of MSDP SA messages received relevant to this cache entry. This object must be initialized to zero when creating a cache entry.') msdpSACacheInDataPackets = MibTableColumn((1, 3, 6, 1, 3, 92, 1, 1, 6, 1, 7), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: msdpSACacheInDataPackets.setStatus('current') if mibBuilder.loadTexts: msdpSACacheInDataPackets.setDescription('The number of MSDP encapsulated data packets received relevant to this cache entry. This object must be initialized to zero when creating a cache entry.') msdpSACacheUpTime = MibTableColumn((1, 3, 6, 1, 3, 92, 1, 1, 6, 1, 8), TimeTicks()).setMaxAccess("readonly") if mibBuilder.loadTexts: msdpSACacheUpTime.setStatus('current') if mibBuilder.loadTexts: msdpSACacheUpTime.setDescription('The time since this entry was placed in the SA cache.') msdpSACacheExpiryTime = MibTableColumn((1, 3, 6, 1, 3, 92, 1, 1, 6, 1, 9), TimeTicks()).setMaxAccess("readonly") if mibBuilder.loadTexts: msdpSACacheExpiryTime.setStatus('current') if mibBuilder.loadTexts: msdpSACacheExpiryTime.setDescription('The time remaining before this entry will expire from the SA cache.') msdpSACacheStatus = MibTableColumn((1, 3, 6, 1, 3, 92, 1, 1, 6, 1, 10), RowStatus()).setMaxAccess("readwrite") if mibBuilder.loadTexts: msdpSACacheStatus.setStatus('current') if mibBuilder.loadTexts: msdpSACacheStatus.setDescription("The status of this row in the table. The only allowable actions are to retreive the status, which will be `active', or to set the status to `destroy' in order to remove this entry from the cache.") msdpTraps = MibIdentifier((1, 3, 6, 1, 3, 92, 1, 1, 7)) msdpEstablished = NotificationType((1, 3, 6, 1, 3, 92, 1, 1, 7, 1)).setObjects(("DRAFT-MSDP-MIB", "msdpPeerFsmEstablishedTransitions")) if mibBuilder.loadTexts: msdpEstablished.setStatus('current') if mibBuilder.loadTexts: msdpEstablished.setDescription('The MSDP Established event is generated when the MSDP FSM enters the ESTABLISHED state.') msdpBackwardTransition = NotificationType((1, 3, 6, 1, 3, 92, 1, 1, 7, 2)).setObjects(("DRAFT-MSDP-MIB", "msdpPeerState")) if mibBuilder.loadTexts: msdpBackwardTransition.setStatus('current') if mibBuilder.loadTexts: msdpBackwardTransition.setDescription('The MSDPBackwardTransition Event is generated when the MSDP FSM moves from a higher numbered state to a lower numbered state.') msdpMIBConformance = MibIdentifier((1, 3, 6, 1, 3, 92, 1, 1, 8)) msdpMIBCompliances = MibIdentifier((1, 3, 6, 1, 3, 92, 1, 1, 8, 1)) msdpMIBGroups = MibIdentifier((1, 3, 6, 1, 3, 92, 1, 1, 8, 2)) msdpMIBCompliance = ModuleCompliance((1, 3, 6, 1, 3, 92, 1, 1, 8, 1, 1)).setObjects(("DRAFT-MSDP-MIB", "msdpMIBGlobalsGroup"), ("DRAFT-MSDP-MIB", "msdpSACacheGroup")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): msdpMIBCompliance = msdpMIBCompliance.setStatus('current') if mibBuilder.loadTexts: msdpMIBCompliance.setDescription('The compliance statement for entities which implement the MSDP MIB.') msdpMIBGlobalsGroup = ObjectGroup((1, 3, 6, 1, 3, 92, 1, 1, 8, 2, 1)).setObjects(("DRAFT-MSDP-MIB", "msdpEnabled")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): msdpMIBGlobalsGroup = msdpMIBGlobalsGroup.setStatus('current') if mibBuilder.loadTexts: msdpMIBGlobalsGroup.setDescription('A collection of objects providing information on global MSDP state.') msdpMIBPeerGroup = ObjectGroup((1, 3, 6, 1, 3, 92, 1, 1, 8, 2, 2)).setObjects(("DRAFT-MSDP-MIB", "msdpPeerRPFFailures"), ("DRAFT-MSDP-MIB", "msdpPeerState"), ("DRAFT-MSDP-MIB", "msdpPeerInSAs"), ("DRAFT-MSDP-MIB", "msdpPeerOutSAs"), ("DRAFT-MSDP-MIB", "msdpPeerInSARequests"), ("DRAFT-MSDP-MIB", "msdpPeerOutSARequests"), ("DRAFT-MSDP-MIB", "msdpPeerInSAResponses"), ("DRAFT-MSDP-MIB", "msdpPeerOutSAResponses"), ("DRAFT-MSDP-MIB", "msdpPeerInNotifications"), ("DRAFT-MSDP-MIB", "msdpPeerOutNotifications"), ("DRAFT-MSDP-MIB", "msdpPeerInControlMessages"), ("DRAFT-MSDP-MIB", "msdpPeerOutControlMessages"), ("DRAFT-MSDP-MIB", "msdpPeerInDataPackets"), ("DRAFT-MSDP-MIB", "msdpPeerOutDataPackets"), ("DRAFT-MSDP-MIB", "msdpPeerFsmEstablishedTransitions"), ("DRAFT-MSDP-MIB", "msdpPeerFsmEstablishedTime"), ("DRAFT-MSDP-MIB", "msdpPeerLocalAddress"), ("DRAFT-MSDP-MIB", "msdpPeerRemotePort"), ("DRAFT-MSDP-MIB", "msdpPeerLocalPort"), ("DRAFT-MSDP-MIB", "msdpPeerSAAdvPeriod"), ("DRAFT-MSDP-MIB", "msdpPeerConnectRetryInterval"), ("DRAFT-MSDP-MIB", "msdpPeerHoldTimeConfigured"), ("DRAFT-MSDP-MIB", "msdpPeerKeepAliveConfigured"), ("DRAFT-MSDP-MIB", "msdpPeerInMessageElapsedTime"), ("DRAFT-MSDP-MIB", "msdpPeerDataTtl"), ("DRAFT-MSDP-MIB", "msdpPeerProcessRequestsFrom"), ("DRAFT-MSDP-MIB", "msdpPeerEncapsulationState"), ("DRAFT-MSDP-MIB", "msdpPeerEncapsulationType"), ("DRAFT-MSDP-MIB", "msdpPeerConnectionAttempts"), ("DRAFT-MSDP-MIB", "msdpPeerLastError"), ("DRAFT-MSDP-MIB", "msdpPeerStatus")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): msdpMIBPeerGroup = msdpMIBPeerGroup.setStatus('current') if mibBuilder.loadTexts: msdpMIBPeerGroup.setDescription('A collection of objects for managing MSDP peers.') msdpSACacheGroup = ObjectGroup((1, 3, 6, 1, 3, 92, 1, 1, 8, 2, 3)).setObjects(("DRAFT-MSDP-MIB", "msdpCacheLifetime"), ("DRAFT-MSDP-MIB", "msdpNumSACacheEntries"), ("DRAFT-MSDP-MIB", "msdpSAHoldDownPeriod"), ("DRAFT-MSDP-MIB", "msdpSACachePeerLearnedFrom"), ("DRAFT-MSDP-MIB", "msdpSACacheRPFPeer"), ("DRAFT-MSDP-MIB", "msdpSACacheInSAs"), ("DRAFT-MSDP-MIB", "msdpSACacheInDataPackets"), ("DRAFT-MSDP-MIB", "msdpSACacheUpTime"), ("DRAFT-MSDP-MIB", "msdpSACacheExpiryTime"), ("DRAFT-MSDP-MIB", "msdpSACacheStatus")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): msdpSACacheGroup = msdpSACacheGroup.setStatus('current') if mibBuilder.loadTexts: msdpSACacheGroup.setDescription('A collection of objects for managing MSDP SA cache entries.') mibBuilder.exportSymbols("DRAFT-MSDP-MIB", msdpPeerRPFFailures=msdpPeerRPFFailures, msdpRequestsGroupAddress=msdpRequestsGroupAddress, msdpPeerInSAs=msdpPeerInSAs, msdpMIB=msdpMIB, msdpPeerOutDataPackets=msdpPeerOutDataPackets, msdpSACacheRPFPeer=msdpSACacheRPFPeer, msdpSACacheInDataPackets=msdpSACacheInDataPackets, msdpMIBCompliances=msdpMIBCompliances, msdpNumSACacheEntries=msdpNumSACacheEntries, msdpPeerDataTtl=msdpPeerDataTtl, msdpPeerEntry=msdpPeerEntry, msdpMIBPeerGroup=msdpMIBPeerGroup, msdpSAHoldDownPeriod=msdpSAHoldDownPeriod, msdpRequestsTable=msdpRequestsTable, msdpPeerStatus=msdpPeerStatus, msdpPeerInMessageElapsedTime=msdpPeerInMessageElapsedTime, msdpPeerTable=msdpPeerTable, msdpPeerFsmEstablishedTime=msdpPeerFsmEstablishedTime, msdpPeerKeepAliveConfigured=msdpPeerKeepAliveConfigured, msdpSACacheInSAs=msdpSACacheInSAs, msdpMIBGlobalsGroup=msdpMIBGlobalsGroup, msdpPeerOutControlMessages=msdpPeerOutControlMessages, msdpSACacheUpTime=msdpSACacheUpTime, msdpSACacheGroup=msdpSACacheGroup, msdpPeerInSARequests=msdpPeerInSARequests, msdpPeerSAAdvPeriod=msdpPeerSAAdvPeriod, msdpPeerLocalPort=msdpPeerLocalPort, msdpBackwardTransition=msdpBackwardTransition, msdpPeerOutNotifications=msdpPeerOutNotifications, msdpPeerEncapsulationState=msdpPeerEncapsulationState, msdpMIBCompliance=msdpMIBCompliance, msdpPeerProcessRequestsFrom=msdpPeerProcessRequestsFrom, msdpSACacheStatus=msdpSACacheStatus, msdpPeerRemoteAddress=msdpPeerRemoteAddress, msdpSACacheGroupAddr=msdpSACacheGroupAddr, msdpMIBConformance=msdpMIBConformance, msdp=msdp, msdpSACacheEntry=msdpSACacheEntry, msdpPeerEncapsulationType=msdpPeerEncapsulationType, msdpPeerOutSAs=msdpPeerOutSAs, msdpPeerConnectRetryInterval=msdpPeerConnectRetryInterval, msdpSACacheSourceAddr=msdpSACacheSourceAddr, msdpSACacheOriginRP=msdpSACacheOriginRP, msdpSACacheExpiryTime=msdpSACacheExpiryTime, msdpRequestsGroupMask=msdpRequestsGroupMask, msdpPeerOutSAResponses=msdpPeerOutSAResponses, msdpPeerRemotePort=msdpPeerRemotePort, msdpRequestsPeer=msdpRequestsPeer, msdpSACachePeerLearnedFrom=msdpSACachePeerLearnedFrom, msdpPeerState=msdpPeerState, msdpPeerOutSARequests=msdpPeerOutSARequests, msdpPeerInNotifications=msdpPeerInNotifications, PYSNMP_MODULE_ID=msdpMIB, msdpPeerInSAResponses=msdpPeerInSAResponses, msdpTraps=msdpTraps, msdpMIBobjects=msdpMIBobjects, msdpPeerHoldTimeConfigured=msdpPeerHoldTimeConfigured, msdpRequestsStatus=msdpRequestsStatus, msdpRequestsEntry=msdpRequestsEntry, msdpPeerConnectionAttempts=msdpPeerConnectionAttempts, msdpPeerInControlMessages=msdpPeerInControlMessages, msdpMIBGroups=msdpMIBGroups, msdpPeerLastError=msdpPeerLastError, msdpCacheLifetime=msdpCacheLifetime, msdpPeerLocalAddress=msdpPeerLocalAddress, msdpEnabled=msdpEnabled, msdpPeerInDataPackets=msdpPeerInDataPackets, msdpEstablished=msdpEstablished, msdpPeerFsmEstablishedTransitions=msdpPeerFsmEstablishedTransitions, msdpSACacheTable=msdpSACacheTable)
(integer, octet_string, object_identifier) = mibBuilder.importSymbols('ASN1', 'Integer', 'OctetString', 'ObjectIdentifier') (named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues') (single_value_constraint, value_range_constraint, value_size_constraint, constraints_union, constraints_intersection) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'SingleValueConstraint', 'ValueRangeConstraint', 'ValueSizeConstraint', 'ConstraintsUnion', 'ConstraintsIntersection') (notification_group, module_compliance, object_group) = mibBuilder.importSymbols('SNMPv2-CONF', 'NotificationGroup', 'ModuleCompliance', 'ObjectGroup') (mib_identifier, time_ticks, counter32, bits, module_identity, counter64, notification_type, gauge32, iso, experimental, mib_scalar, mib_table, mib_table_row, mib_table_column, integer32, object_identity, ip_address, unsigned32) = mibBuilder.importSymbols('SNMPv2-SMI', 'MibIdentifier', 'TimeTicks', 'Counter32', 'Bits', 'ModuleIdentity', 'Counter64', 'NotificationType', 'Gauge32', 'iso', 'experimental', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn', 'Integer32', 'ObjectIdentity', 'IpAddress', 'Unsigned32') (textual_convention, row_status, truth_value, display_string) = mibBuilder.importSymbols('SNMPv2-TC', 'TextualConvention', 'RowStatus', 'TruthValue', 'DisplayString') msdp_mib = module_identity((1, 3, 6, 1, 3, 92)) if mibBuilder.loadTexts: msdpMIB.setLastUpdated('9912160000Z') if mibBuilder.loadTexts: msdpMIB.setOrganization('IETF MSDP Working Group') if mibBuilder.loadTexts: msdpMIB.setContactInfo(' Bill Fenner 75 Willow Road Menlo Park, CA 94025 Phone: +1 650 867 6073 E-mail: fenner@research.att.com Dave Thaler One Microsoft Way Redmond, WA 98052 Phone: +1 425 703 8835 Email: dthaler@microsoft.com') if mibBuilder.loadTexts: msdpMIB.setDescription('An experimental MIB module for MSDP Management.') msdp_mi_bobjects = mib_identifier((1, 3, 6, 1, 3, 92, 1)) msdp = mib_identifier((1, 3, 6, 1, 3, 92, 1, 1)) msdp_enabled = mib_scalar((1, 3, 6, 1, 3, 92, 1, 1, 1), truth_value()).setMaxAccess('readwrite') if mibBuilder.loadTexts: msdpEnabled.setStatus('current') if mibBuilder.loadTexts: msdpEnabled.setDescription('The state of MSDP on this MSDP speaker - globally enabled or disabled.') msdp_cache_lifetime = mib_scalar((1, 3, 6, 1, 3, 92, 1, 1, 2), time_ticks()).setMaxAccess('readwrite') if mibBuilder.loadTexts: msdpCacheLifetime.setStatus('current') if mibBuilder.loadTexts: msdpCacheLifetime.setDescription('The lifetime given to SA cache entries when created or refreshed. A value of 0 means no SA caching is done by this MSDP speaker.') msdp_num_sa_cache_entries = mib_scalar((1, 3, 6, 1, 3, 92, 1, 1, 3), gauge32()).setMaxAccess('readonly') if mibBuilder.loadTexts: msdpNumSACacheEntries.setStatus('current') if mibBuilder.loadTexts: msdpNumSACacheEntries.setDescription('The total number of entries in the SA Cache table.') msdp_sa_hold_down_period = mib_scalar((1, 3, 6, 1, 3, 92, 1, 1, 9), integer32().subtype(subtypeSpec=value_range_constraint(1, 2147483647)).clone(90)).setUnits('seconds').setMaxAccess('readonly') if mibBuilder.loadTexts: msdpSAHoldDownPeriod.setStatus('current') if mibBuilder.loadTexts: msdpSAHoldDownPeriod.setDescription('The number of seconds in the MSDP SA Hold-down period') msdp_requests_table = mib_table((1, 3, 6, 1, 3, 92, 1, 1, 4)) if mibBuilder.loadTexts: msdpRequestsTable.setStatus('current') if mibBuilder.loadTexts: msdpRequestsTable.setDescription('The (conceptual) table listing group ranges and MSDP peers used when deciding where to send an SA Request message when required. If SA Caching is enabled, this table may be empty.') msdp_requests_entry = mib_table_row((1, 3, 6, 1, 3, 92, 1, 1, 4, 1)).setIndexNames((0, 'DRAFT-MSDP-MIB', 'msdpRequestsGroupAddress'), (0, 'DRAFT-MSDP-MIB', 'msdpRequestsGroupMask')) if mibBuilder.loadTexts: msdpRequestsEntry.setStatus('current') if mibBuilder.loadTexts: msdpRequestsEntry.setDescription('An entry (conceptual row) representing a group range used when deciding where to send an SA Request message.') msdp_requests_group_address = mib_table_column((1, 3, 6, 1, 3, 92, 1, 1, 4, 1, 1), ip_address()) if mibBuilder.loadTexts: msdpRequestsGroupAddress.setStatus('current') if mibBuilder.loadTexts: msdpRequestsGroupAddress.setDescription('The group address that, when combined with the mask in this entry, represents the group range for which this peer will service MSDP SA Requests.') msdp_requests_group_mask = mib_table_column((1, 3, 6, 1, 3, 92, 1, 1, 4, 1, 2), ip_address()) if mibBuilder.loadTexts: msdpRequestsGroupMask.setStatus('current') if mibBuilder.loadTexts: msdpRequestsGroupMask.setDescription('The mask that, when combined with the group address in this entry, represents the group range for which this peer will service MSDP SA Requests.') msdp_requests_peer = mib_table_column((1, 3, 6, 1, 3, 92, 1, 1, 4, 1, 3), ip_address()).setMaxAccess('readcreate') if mibBuilder.loadTexts: msdpRequestsPeer.setStatus('current') if mibBuilder.loadTexts: msdpRequestsPeer.setDescription("The peer to which MSDP SA Requests for groups matching this entry's group range will be sent. Must match the INDEX of a row in the msdpPeerTable.") msdp_requests_status = mib_table_column((1, 3, 6, 1, 3, 92, 1, 1, 4, 1, 4), row_status()).setMaxAccess('readcreate') if mibBuilder.loadTexts: msdpRequestsStatus.setStatus('current') if mibBuilder.loadTexts: msdpRequestsStatus.setDescription('The status of this row, by which new rows may be added to the table.') msdp_peer_table = mib_table((1, 3, 6, 1, 3, 92, 1, 1, 5)) if mibBuilder.loadTexts: msdpPeerTable.setStatus('current') if mibBuilder.loadTexts: msdpPeerTable.setDescription("The (conceptual) table listing the MSDP speaker's peers.") msdp_peer_entry = mib_table_row((1, 3, 6, 1, 3, 92, 1, 1, 5, 1)).setIndexNames((0, 'DRAFT-MSDP-MIB', 'msdpPeerRemoteAddress')) if mibBuilder.loadTexts: msdpPeerEntry.setStatus('current') if mibBuilder.loadTexts: msdpPeerEntry.setDescription('An entry (conceptual row) representing an MSDP peer.') msdp_peer_remote_address = mib_table_column((1, 3, 6, 1, 3, 92, 1, 1, 5, 1, 1), ip_address()) if mibBuilder.loadTexts: msdpPeerRemoteAddress.setStatus('current') if mibBuilder.loadTexts: msdpPeerRemoteAddress.setDescription('The address of the remote MSDP peer.') msdp_peer_state = mib_table_column((1, 3, 6, 1, 3, 92, 1, 1, 5, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5))).clone(namedValues=named_values(('inactive', 1), ('listen', 2), ('connecting', 3), ('established', 4), ('disabled', 5)))).setMaxAccess('readonly') if mibBuilder.loadTexts: msdpPeerState.setStatus('current') if mibBuilder.loadTexts: msdpPeerState.setDescription('The state of the MSDP TCP connection with this peer.') msdp_peer_rpf_failures = mib_table_column((1, 3, 6, 1, 3, 92, 1, 1, 5, 1, 4), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: msdpPeerRPFFailures.setStatus('current') if mibBuilder.loadTexts: msdpPeerRPFFailures.setDescription('The number of RPF failures on SA messages received from this peer.') msdp_peer_in_s_as = mib_table_column((1, 3, 6, 1, 3, 92, 1, 1, 5, 1, 5), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: msdpPeerInSAs.setStatus('current') if mibBuilder.loadTexts: msdpPeerInSAs.setDescription('The number of MSDP SA messages received on this connection. This object should be initialized to zero when the connection is established.') msdp_peer_out_s_as = mib_table_column((1, 3, 6, 1, 3, 92, 1, 1, 5, 1, 6), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: msdpPeerOutSAs.setStatus('current') if mibBuilder.loadTexts: msdpPeerOutSAs.setDescription('The number of MSDP SA messages transmitted on this connection. This object should be initialized to zero when the connection is established.') msdp_peer_in_sa_requests = mib_table_column((1, 3, 6, 1, 3, 92, 1, 1, 5, 1, 7), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: msdpPeerInSARequests.setStatus('current') if mibBuilder.loadTexts: msdpPeerInSARequests.setDescription('The number of MSDP SA-Request messages received on this connection. This object should be initialized to zero when the connection is established.') msdp_peer_out_sa_requests = mib_table_column((1, 3, 6, 1, 3, 92, 1, 1, 5, 1, 8), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: msdpPeerOutSARequests.setStatus('current') if mibBuilder.loadTexts: msdpPeerOutSARequests.setDescription('The number of MSDP SA-Request messages transmitted on this connection. This object should be initialized to zero when the connection is established.') msdp_peer_in_sa_responses = mib_table_column((1, 3, 6, 1, 3, 92, 1, 1, 5, 1, 9), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: msdpPeerInSAResponses.setStatus('current') if mibBuilder.loadTexts: msdpPeerInSAResponses.setDescription('The number of MSDP SA-Response messages received on this connection. This object should be initialized to zero when the connection is established.') msdp_peer_out_sa_responses = mib_table_column((1, 3, 6, 1, 3, 92, 1, 1, 5, 1, 10), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: msdpPeerOutSAResponses.setStatus('current') if mibBuilder.loadTexts: msdpPeerOutSAResponses.setDescription('The number of MSDP SA Response messages transmitted on this TCP connection. This object should be initialized to zero when the connection is established.') msdp_peer_in_control_messages = mib_table_column((1, 3, 6, 1, 3, 92, 1, 1, 5, 1, 11), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: msdpPeerInControlMessages.setStatus('current') if mibBuilder.loadTexts: msdpPeerInControlMessages.setDescription('The total number of MSDP messages received on this TCP connection. This object should be initialized to zero when the connection is established.') msdp_peer_out_control_messages = mib_table_column((1, 3, 6, 1, 3, 92, 1, 1, 5, 1, 12), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: msdpPeerOutControlMessages.setStatus('current') if mibBuilder.loadTexts: msdpPeerOutControlMessages.setDescription('The total number of MSDP messages transmitted on this TCP connection. This object should be initialized to zero when the connection is established.') msdp_peer_in_data_packets = mib_table_column((1, 3, 6, 1, 3, 92, 1, 1, 5, 1, 13), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: msdpPeerInDataPackets.setStatus('current') if mibBuilder.loadTexts: msdpPeerInDataPackets.setDescription('The total number of encapsulated data packets received from this peer. This object should be initialized to zero when the connection is established.') msdp_peer_out_data_packets = mib_table_column((1, 3, 6, 1, 3, 92, 1, 1, 5, 1, 14), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: msdpPeerOutDataPackets.setStatus('current') if mibBuilder.loadTexts: msdpPeerOutDataPackets.setDescription('The total number of encapsulated data packets sent to this peer. This object should be initialized to zero when the connection is established.') msdp_peer_fsm_established_transitions = mib_table_column((1, 3, 6, 1, 3, 92, 1, 1, 5, 1, 15), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: msdpPeerFsmEstablishedTransitions.setStatus('current') if mibBuilder.loadTexts: msdpPeerFsmEstablishedTransitions.setDescription('The total number of times the MSDP FSM transitioned into the established state.') msdp_peer_fsm_established_time = mib_table_column((1, 3, 6, 1, 3, 92, 1, 1, 5, 1, 16), gauge32()).setUnits('seconds').setMaxAccess('readonly') if mibBuilder.loadTexts: msdpPeerFsmEstablishedTime.setStatus('current') if mibBuilder.loadTexts: msdpPeerFsmEstablishedTime.setDescription('This timer indicates how long (in seconds) this peer has been in the Established state or how long since this peer was last in the Established state. It is set to zero when a new peer is configured or the MSDP speaker is booted.') msdp_peer_in_message_elapsed_time = mib_table_column((1, 3, 6, 1, 3, 92, 1, 1, 5, 1, 17), gauge32()).setUnits('seconds').setMaxAccess('readonly') if mibBuilder.loadTexts: msdpPeerInMessageElapsedTime.setStatus('current') if mibBuilder.loadTexts: msdpPeerInMessageElapsedTime.setDescription('Elapsed time in seconds since the last MSDP message was received from the peer. Each time msdpPeerInControlMessages is incremented, the value of this object is set to zero (0).') msdp_peer_local_address = mib_table_column((1, 3, 6, 1, 3, 92, 1, 1, 5, 1, 18), ip_address()).setMaxAccess('readcreate') if mibBuilder.loadTexts: msdpPeerLocalAddress.setStatus('current') if mibBuilder.loadTexts: msdpPeerLocalAddress.setDescription("The local IP address of this entry's MSDP connection.") msdp_peer_sa_adv_period = mib_table_column((1, 3, 6, 1, 3, 92, 1, 1, 5, 1, 19), integer32().subtype(subtypeSpec=value_range_constraint(1, 2147483647)).clone(60)).setUnits('seconds').setMaxAccess('readcreate') if mibBuilder.loadTexts: msdpPeerSAAdvPeriod.setStatus('current') if mibBuilder.loadTexts: msdpPeerSAAdvPeriod.setDescription('Time interval in seconds for the MinSAAdvertisementInterval MSDP timer.') msdp_peer_connect_retry_interval = mib_table_column((1, 3, 6, 1, 3, 92, 1, 1, 5, 1, 20), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535)).clone(120)).setUnits('seconds').setMaxAccess('readcreate') if mibBuilder.loadTexts: msdpPeerConnectRetryInterval.setStatus('current') if mibBuilder.loadTexts: msdpPeerConnectRetryInterval.setDescription('Time interval in seconds for the ConnectRetry timer.') msdp_peer_hold_time_configured = mib_table_column((1, 3, 6, 1, 3, 92, 1, 1, 5, 1, 21), integer32().subtype(subtypeSpec=constraints_union(value_range_constraint(0, 0), value_range_constraint(3, 65535))).clone(90)).setUnits('seconds').setMaxAccess('readcreate') if mibBuilder.loadTexts: msdpPeerHoldTimeConfigured.setStatus('current') if mibBuilder.loadTexts: msdpPeerHoldTimeConfigured.setDescription('Time interval in seconds for the Hold Timer configured for this MSDP speaker with this peer.') msdp_peer_keep_alive_configured = mib_table_column((1, 3, 6, 1, 3, 92, 1, 1, 5, 1, 22), integer32().subtype(subtypeSpec=constraints_union(value_range_constraint(0, 0), value_range_constraint(1, 21845))).clone(30)).setUnits('seconds').setMaxAccess('readcreate') if mibBuilder.loadTexts: msdpPeerKeepAliveConfigured.setStatus('current') if mibBuilder.loadTexts: msdpPeerKeepAliveConfigured.setDescription('Time interval in seconds for the KeepAlive timer configured for this MSDP speaker with this peer. A reasonable maximum value for this timer would be configured to be one third of that of msdpPeerHoldTimeConfigured. If the value of this object is zero (0), no periodic KEEPALIVE messages are sent to the peer after the MSDP connection has been established.') msdp_peer_data_ttl = mib_table_column((1, 3, 6, 1, 3, 92, 1, 1, 5, 1, 23), integer32().subtype(subtypeSpec=value_range_constraint(0, 255))).setMaxAccess('readcreate') if mibBuilder.loadTexts: msdpPeerDataTtl.setStatus('current') if mibBuilder.loadTexts: msdpPeerDataTtl.setDescription('The minimum TTL a packet is required to have before it may be forwarded using SA encapsulation to this peer.') msdp_peer_process_requests_from = mib_table_column((1, 3, 6, 1, 3, 92, 1, 1, 5, 1, 24), truth_value()).setMaxAccess('readcreate') if mibBuilder.loadTexts: msdpPeerProcessRequestsFrom.setStatus('current') if mibBuilder.loadTexts: msdpPeerProcessRequestsFrom.setDescription('This object indicates whether or not to process MSDP SA Request messages from this peer. If True(1), MSDP SA Request messages from this peer are processed and replied to (if appropriate) with SA Response messages. If False(2), MSDP SA Request messages from this peer are silently ignored. It defaults to False when msdpCacheLifetime is 0 and True when msdpCacheLifetime is non-0.') msdp_peer_status = mib_table_column((1, 3, 6, 1, 3, 92, 1, 1, 5, 1, 25), row_status()).setMaxAccess('readcreate') if mibBuilder.loadTexts: msdpPeerStatus.setStatus('current') if mibBuilder.loadTexts: msdpPeerStatus.setDescription("The RowStatus object by which peers can be added and deleted. A transition to 'active' will cause the MSDP Start Event to be generated. A transition out of the 'active' state will cause the MSDP Stop Event to be generated. Care should be used in providing write access to this object without adequate authentication.") msdp_peer_remote_port = mib_table_column((1, 3, 6, 1, 3, 92, 1, 1, 5, 1, 26), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readonly') if mibBuilder.loadTexts: msdpPeerRemotePort.setStatus('current') if mibBuilder.loadTexts: msdpPeerRemotePort.setDescription('The remote port for the TCP connection between the MSDP peers.') msdp_peer_local_port = mib_table_column((1, 3, 6, 1, 3, 92, 1, 1, 5, 1, 27), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readonly') if mibBuilder.loadTexts: msdpPeerLocalPort.setStatus('current') if mibBuilder.loadTexts: msdpPeerLocalPort.setDescription('The local port for the TCP connection between the MSDP peers.') msdp_peer_encapsulation_state = mib_table_column((1, 3, 6, 1, 3, 92, 1, 1, 5, 1, 28), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6))).clone(namedValues=named_values(('default', 1), ('received', 2), ('advertising', 3), ('sent', 4), ('agreed', 5), ('failed', 6)))).setMaxAccess('readonly') if mibBuilder.loadTexts: msdpPeerEncapsulationState.setStatus('current') if mibBuilder.loadTexts: msdpPeerEncapsulationState.setDescription('The status of the encapsulation negotiation state machine.') msdp_peer_encapsulation_type = mib_table_column((1, 3, 6, 1, 3, 92, 1, 1, 5, 1, 29), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('tcp', 1), ('udp', 2), ('gre', 3)))).setMaxAccess('readonly') if mibBuilder.loadTexts: msdpPeerEncapsulationType.setStatus('current') if mibBuilder.loadTexts: msdpPeerEncapsulationType.setDescription('The encapsulation in use when encapsulating data in SA messages to this peer.') msdp_peer_connection_attempts = mib_table_column((1, 3, 6, 1, 3, 92, 1, 1, 5, 1, 30), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: msdpPeerConnectionAttempts.setStatus('current') if mibBuilder.loadTexts: msdpPeerConnectionAttempts.setDescription('The number of times the state machine has transitioned from inactive to connecting.') msdp_peer_in_notifications = mib_table_column((1, 3, 6, 1, 3, 92, 1, 1, 5, 1, 31), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: msdpPeerInNotifications.setStatus('current') if mibBuilder.loadTexts: msdpPeerInNotifications.setDescription('The number of MSDP Notification messages received on this connection. This object should be initialized to zero when the connection is established.') msdp_peer_out_notifications = mib_table_column((1, 3, 6, 1, 3, 92, 1, 1, 5, 1, 32), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: msdpPeerOutNotifications.setStatus('current') if mibBuilder.loadTexts: msdpPeerOutNotifications.setDescription('The number of MSDP Notification messages transmitted on this connection. This object should be initialized to zero when the connection is established.') msdp_peer_last_error = mib_table_column((1, 3, 6, 1, 3, 92, 1, 1, 5, 1, 33), octet_string().subtype(subtypeSpec=value_size_constraint(2, 2)).setFixedLength(2).clone(hexValue='0000')).setMaxAccess('readonly') if mibBuilder.loadTexts: msdpPeerLastError.setStatus('current') if mibBuilder.loadTexts: msdpPeerLastError.setDescription('The last error code and subcode seen by this peer on this connection. If no error has occurred, this field is zero. Otherwise, the first byte of this two byte OCTET STRING contains the error code, and the second byte contains the subcode.') msdp_sa_cache_table = mib_table((1, 3, 6, 1, 3, 92, 1, 1, 6)) if mibBuilder.loadTexts: msdpSACacheTable.setStatus('current') if mibBuilder.loadTexts: msdpSACacheTable.setDescription("The (conceptual) table listing the MSDP SA advertisements currently in the MSDP speaker's cache.") msdp_sa_cache_entry = mib_table_row((1, 3, 6, 1, 3, 92, 1, 1, 6, 1)).setIndexNames((0, 'DRAFT-MSDP-MIB', 'msdpSACacheGroupAddr'), (0, 'DRAFT-MSDP-MIB', 'msdpSACacheSourceAddr'), (0, 'DRAFT-MSDP-MIB', 'msdpSACacheOriginRP')) if mibBuilder.loadTexts: msdpSACacheEntry.setStatus('current') if mibBuilder.loadTexts: msdpSACacheEntry.setDescription('An entry (conceptual row) representing an MSDP SA advert.') msdp_sa_cache_group_addr = mib_table_column((1, 3, 6, 1, 3, 92, 1, 1, 6, 1, 1), ip_address()) if mibBuilder.loadTexts: msdpSACacheGroupAddr.setStatus('current') if mibBuilder.loadTexts: msdpSACacheGroupAddr.setDescription('The group address of the SA Cache entry.') msdp_sa_cache_source_addr = mib_table_column((1, 3, 6, 1, 3, 92, 1, 1, 6, 1, 2), ip_address()) if mibBuilder.loadTexts: msdpSACacheSourceAddr.setStatus('current') if mibBuilder.loadTexts: msdpSACacheSourceAddr.setDescription('The source address of the SA Cache entry.') msdp_sa_cache_origin_rp = mib_table_column((1, 3, 6, 1, 3, 92, 1, 1, 6, 1, 3), ip_address()) if mibBuilder.loadTexts: msdpSACacheOriginRP.setStatus('current') if mibBuilder.loadTexts: msdpSACacheOriginRP.setDescription('The address of the RP which originated the last SA message accepted for this entry.') msdp_sa_cache_peer_learned_from = mib_table_column((1, 3, 6, 1, 3, 92, 1, 1, 6, 1, 4), ip_address()).setMaxAccess('readonly') if mibBuilder.loadTexts: msdpSACachePeerLearnedFrom.setStatus('current') if mibBuilder.loadTexts: msdpSACachePeerLearnedFrom.setDescription('The peer from which this SA Cache entry was last accepted. This address must correspond to the msdpPeerRemoteAddress value for a row in the MSDP Peer Table.') msdp_sa_cache_rpf_peer = mib_table_column((1, 3, 6, 1, 3, 92, 1, 1, 6, 1, 5), ip_address()).setMaxAccess('readonly') if mibBuilder.loadTexts: msdpSACacheRPFPeer.setStatus('current') if mibBuilder.loadTexts: msdpSACacheRPFPeer.setDescription('The peer from which an SA message corresponding to this cache entry would be accepted (i.e. the RPF peer for msdpSACacheOriginRP). This may be different than msdpSACachePeerLearnedFrom if this entry was created by an MSDP SA-Response. This address must correspond to the msdpPeerRemoteAddress value for a row in the MSDP Peer Table.') msdp_sa_cache_in_s_as = mib_table_column((1, 3, 6, 1, 3, 92, 1, 1, 6, 1, 6), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: msdpSACacheInSAs.setStatus('current') if mibBuilder.loadTexts: msdpSACacheInSAs.setDescription('The number of MSDP SA messages received relevant to this cache entry. This object must be initialized to zero when creating a cache entry.') msdp_sa_cache_in_data_packets = mib_table_column((1, 3, 6, 1, 3, 92, 1, 1, 6, 1, 7), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: msdpSACacheInDataPackets.setStatus('current') if mibBuilder.loadTexts: msdpSACacheInDataPackets.setDescription('The number of MSDP encapsulated data packets received relevant to this cache entry. This object must be initialized to zero when creating a cache entry.') msdp_sa_cache_up_time = mib_table_column((1, 3, 6, 1, 3, 92, 1, 1, 6, 1, 8), time_ticks()).setMaxAccess('readonly') if mibBuilder.loadTexts: msdpSACacheUpTime.setStatus('current') if mibBuilder.loadTexts: msdpSACacheUpTime.setDescription('The time since this entry was placed in the SA cache.') msdp_sa_cache_expiry_time = mib_table_column((1, 3, 6, 1, 3, 92, 1, 1, 6, 1, 9), time_ticks()).setMaxAccess('readonly') if mibBuilder.loadTexts: msdpSACacheExpiryTime.setStatus('current') if mibBuilder.loadTexts: msdpSACacheExpiryTime.setDescription('The time remaining before this entry will expire from the SA cache.') msdp_sa_cache_status = mib_table_column((1, 3, 6, 1, 3, 92, 1, 1, 6, 1, 10), row_status()).setMaxAccess('readwrite') if mibBuilder.loadTexts: msdpSACacheStatus.setStatus('current') if mibBuilder.loadTexts: msdpSACacheStatus.setDescription("The status of this row in the table. The only allowable actions are to retreive the status, which will be `active', or to set the status to `destroy' in order to remove this entry from the cache.") msdp_traps = mib_identifier((1, 3, 6, 1, 3, 92, 1, 1, 7)) msdp_established = notification_type((1, 3, 6, 1, 3, 92, 1, 1, 7, 1)).setObjects(('DRAFT-MSDP-MIB', 'msdpPeerFsmEstablishedTransitions')) if mibBuilder.loadTexts: msdpEstablished.setStatus('current') if mibBuilder.loadTexts: msdpEstablished.setDescription('The MSDP Established event is generated when the MSDP FSM enters the ESTABLISHED state.') msdp_backward_transition = notification_type((1, 3, 6, 1, 3, 92, 1, 1, 7, 2)).setObjects(('DRAFT-MSDP-MIB', 'msdpPeerState')) if mibBuilder.loadTexts: msdpBackwardTransition.setStatus('current') if mibBuilder.loadTexts: msdpBackwardTransition.setDescription('The MSDPBackwardTransition Event is generated when the MSDP FSM moves from a higher numbered state to a lower numbered state.') msdp_mib_conformance = mib_identifier((1, 3, 6, 1, 3, 92, 1, 1, 8)) msdp_mib_compliances = mib_identifier((1, 3, 6, 1, 3, 92, 1, 1, 8, 1)) msdp_mib_groups = mib_identifier((1, 3, 6, 1, 3, 92, 1, 1, 8, 2)) msdp_mib_compliance = module_compliance((1, 3, 6, 1, 3, 92, 1, 1, 8, 1, 1)).setObjects(('DRAFT-MSDP-MIB', 'msdpMIBGlobalsGroup'), ('DRAFT-MSDP-MIB', 'msdpSACacheGroup')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): msdp_mib_compliance = msdpMIBCompliance.setStatus('current') if mibBuilder.loadTexts: msdpMIBCompliance.setDescription('The compliance statement for entities which implement the MSDP MIB.') msdp_mib_globals_group = object_group((1, 3, 6, 1, 3, 92, 1, 1, 8, 2, 1)).setObjects(('DRAFT-MSDP-MIB', 'msdpEnabled')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): msdp_mib_globals_group = msdpMIBGlobalsGroup.setStatus('current') if mibBuilder.loadTexts: msdpMIBGlobalsGroup.setDescription('A collection of objects providing information on global MSDP state.') msdp_mib_peer_group = object_group((1, 3, 6, 1, 3, 92, 1, 1, 8, 2, 2)).setObjects(('DRAFT-MSDP-MIB', 'msdpPeerRPFFailures'), ('DRAFT-MSDP-MIB', 'msdpPeerState'), ('DRAFT-MSDP-MIB', 'msdpPeerInSAs'), ('DRAFT-MSDP-MIB', 'msdpPeerOutSAs'), ('DRAFT-MSDP-MIB', 'msdpPeerInSARequests'), ('DRAFT-MSDP-MIB', 'msdpPeerOutSARequests'), ('DRAFT-MSDP-MIB', 'msdpPeerInSAResponses'), ('DRAFT-MSDP-MIB', 'msdpPeerOutSAResponses'), ('DRAFT-MSDP-MIB', 'msdpPeerInNotifications'), ('DRAFT-MSDP-MIB', 'msdpPeerOutNotifications'), ('DRAFT-MSDP-MIB', 'msdpPeerInControlMessages'), ('DRAFT-MSDP-MIB', 'msdpPeerOutControlMessages'), ('DRAFT-MSDP-MIB', 'msdpPeerInDataPackets'), ('DRAFT-MSDP-MIB', 'msdpPeerOutDataPackets'), ('DRAFT-MSDP-MIB', 'msdpPeerFsmEstablishedTransitions'), ('DRAFT-MSDP-MIB', 'msdpPeerFsmEstablishedTime'), ('DRAFT-MSDP-MIB', 'msdpPeerLocalAddress'), ('DRAFT-MSDP-MIB', 'msdpPeerRemotePort'), ('DRAFT-MSDP-MIB', 'msdpPeerLocalPort'), ('DRAFT-MSDP-MIB', 'msdpPeerSAAdvPeriod'), ('DRAFT-MSDP-MIB', 'msdpPeerConnectRetryInterval'), ('DRAFT-MSDP-MIB', 'msdpPeerHoldTimeConfigured'), ('DRAFT-MSDP-MIB', 'msdpPeerKeepAliveConfigured'), ('DRAFT-MSDP-MIB', 'msdpPeerInMessageElapsedTime'), ('DRAFT-MSDP-MIB', 'msdpPeerDataTtl'), ('DRAFT-MSDP-MIB', 'msdpPeerProcessRequestsFrom'), ('DRAFT-MSDP-MIB', 'msdpPeerEncapsulationState'), ('DRAFT-MSDP-MIB', 'msdpPeerEncapsulationType'), ('DRAFT-MSDP-MIB', 'msdpPeerConnectionAttempts'), ('DRAFT-MSDP-MIB', 'msdpPeerLastError'), ('DRAFT-MSDP-MIB', 'msdpPeerStatus')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): msdp_mib_peer_group = msdpMIBPeerGroup.setStatus('current') if mibBuilder.loadTexts: msdpMIBPeerGroup.setDescription('A collection of objects for managing MSDP peers.') msdp_sa_cache_group = object_group((1, 3, 6, 1, 3, 92, 1, 1, 8, 2, 3)).setObjects(('DRAFT-MSDP-MIB', 'msdpCacheLifetime'), ('DRAFT-MSDP-MIB', 'msdpNumSACacheEntries'), ('DRAFT-MSDP-MIB', 'msdpSAHoldDownPeriod'), ('DRAFT-MSDP-MIB', 'msdpSACachePeerLearnedFrom'), ('DRAFT-MSDP-MIB', 'msdpSACacheRPFPeer'), ('DRAFT-MSDP-MIB', 'msdpSACacheInSAs'), ('DRAFT-MSDP-MIB', 'msdpSACacheInDataPackets'), ('DRAFT-MSDP-MIB', 'msdpSACacheUpTime'), ('DRAFT-MSDP-MIB', 'msdpSACacheExpiryTime'), ('DRAFT-MSDP-MIB', 'msdpSACacheStatus')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): msdp_sa_cache_group = msdpSACacheGroup.setStatus('current') if mibBuilder.loadTexts: msdpSACacheGroup.setDescription('A collection of objects for managing MSDP SA cache entries.') mibBuilder.exportSymbols('DRAFT-MSDP-MIB', msdpPeerRPFFailures=msdpPeerRPFFailures, msdpRequestsGroupAddress=msdpRequestsGroupAddress, msdpPeerInSAs=msdpPeerInSAs, msdpMIB=msdpMIB, msdpPeerOutDataPackets=msdpPeerOutDataPackets, msdpSACacheRPFPeer=msdpSACacheRPFPeer, msdpSACacheInDataPackets=msdpSACacheInDataPackets, msdpMIBCompliances=msdpMIBCompliances, msdpNumSACacheEntries=msdpNumSACacheEntries, msdpPeerDataTtl=msdpPeerDataTtl, msdpPeerEntry=msdpPeerEntry, msdpMIBPeerGroup=msdpMIBPeerGroup, msdpSAHoldDownPeriod=msdpSAHoldDownPeriod, msdpRequestsTable=msdpRequestsTable, msdpPeerStatus=msdpPeerStatus, msdpPeerInMessageElapsedTime=msdpPeerInMessageElapsedTime, msdpPeerTable=msdpPeerTable, msdpPeerFsmEstablishedTime=msdpPeerFsmEstablishedTime, msdpPeerKeepAliveConfigured=msdpPeerKeepAliveConfigured, msdpSACacheInSAs=msdpSACacheInSAs, msdpMIBGlobalsGroup=msdpMIBGlobalsGroup, msdpPeerOutControlMessages=msdpPeerOutControlMessages, msdpSACacheUpTime=msdpSACacheUpTime, msdpSACacheGroup=msdpSACacheGroup, msdpPeerInSARequests=msdpPeerInSARequests, msdpPeerSAAdvPeriod=msdpPeerSAAdvPeriod, msdpPeerLocalPort=msdpPeerLocalPort, msdpBackwardTransition=msdpBackwardTransition, msdpPeerOutNotifications=msdpPeerOutNotifications, msdpPeerEncapsulationState=msdpPeerEncapsulationState, msdpMIBCompliance=msdpMIBCompliance, msdpPeerProcessRequestsFrom=msdpPeerProcessRequestsFrom, msdpSACacheStatus=msdpSACacheStatus, msdpPeerRemoteAddress=msdpPeerRemoteAddress, msdpSACacheGroupAddr=msdpSACacheGroupAddr, msdpMIBConformance=msdpMIBConformance, msdp=msdp, msdpSACacheEntry=msdpSACacheEntry, msdpPeerEncapsulationType=msdpPeerEncapsulationType, msdpPeerOutSAs=msdpPeerOutSAs, msdpPeerConnectRetryInterval=msdpPeerConnectRetryInterval, msdpSACacheSourceAddr=msdpSACacheSourceAddr, msdpSACacheOriginRP=msdpSACacheOriginRP, msdpSACacheExpiryTime=msdpSACacheExpiryTime, msdpRequestsGroupMask=msdpRequestsGroupMask, msdpPeerOutSAResponses=msdpPeerOutSAResponses, msdpPeerRemotePort=msdpPeerRemotePort, msdpRequestsPeer=msdpRequestsPeer, msdpSACachePeerLearnedFrom=msdpSACachePeerLearnedFrom, msdpPeerState=msdpPeerState, msdpPeerOutSARequests=msdpPeerOutSARequests, msdpPeerInNotifications=msdpPeerInNotifications, PYSNMP_MODULE_ID=msdpMIB, msdpPeerInSAResponses=msdpPeerInSAResponses, msdpTraps=msdpTraps, msdpMIBobjects=msdpMIBobjects, msdpPeerHoldTimeConfigured=msdpPeerHoldTimeConfigured, msdpRequestsStatus=msdpRequestsStatus, msdpRequestsEntry=msdpRequestsEntry, msdpPeerConnectionAttempts=msdpPeerConnectionAttempts, msdpPeerInControlMessages=msdpPeerInControlMessages, msdpMIBGroups=msdpMIBGroups, msdpPeerLastError=msdpPeerLastError, msdpCacheLifetime=msdpCacheLifetime, msdpPeerLocalAddress=msdpPeerLocalAddress, msdpEnabled=msdpEnabled, msdpPeerInDataPackets=msdpPeerInDataPackets, msdpEstablished=msdpEstablished, msdpPeerFsmEstablishedTransitions=msdpPeerFsmEstablishedTransitions, msdpSACacheTable=msdpSACacheTable)
# Simon McLain 208-03-11 Phython Tutorial 4.7.2 def parrot(voltage, state='a stiff', action='voom', type='Norwegian Blue'): print("-- This parrot wouldn't", action, end=' ') print("if you put", voltage, "volts through it.") print("-- Lovely plumage, the", type) print("-- It's", state, "!")
def parrot(voltage, state='a stiff', action='voom', type='Norwegian Blue'): print("-- This parrot wouldn't", action, end=' ') print('if you put', voltage, 'volts through it.') print('-- Lovely plumage, the', type) print("-- It's", state, '!')
n = int(input()) combinations = 0 for x1 in range(0, n + 1): for x2 in range(0, n + 1): for x3 in range(0, n + 1): for x4 in range(0, n + 1): for x5 in range(0, n + 1): if x1 + x2 + x3 + x4 + x5 == n: combinations += 1 print(combinations)
n = int(input()) combinations = 0 for x1 in range(0, n + 1): for x2 in range(0, n + 1): for x3 in range(0, n + 1): for x4 in range(0, n + 1): for x5 in range(0, n + 1): if x1 + x2 + x3 + x4 + x5 == n: combinations += 1 print(combinations)
PP_names = {1: 'H.pbe-rrkjus_psl.0.1.UPF', 2: 'He_ONCV_PBE-1.0.upf', 3: 'li_pbe_v1.4.uspp.F.UPF', 4: 'Be_ONCV_PBE-1.0.upf', 5: 'B.pbe-n-kjpaw_psl.0.1.UPF', 6: 'C_pbe_v1.2.uspp.F.UPF', 7: 'N.pbe.theos.UPF', 8: 'O.pbe-n-kjpaw_psl.0.1.UPF', 9: 'f_pbe_v1.4.uspp.F.UPF', 10: 'Ne.pbe-n-kjpaw_psl.1.0.0.UPF', 11: 'Na_pbe_v1.uspp.F.UPF', 12: 'mg_pbe_v1.4.uspp.F.UPF', 13: 'Al.pbe-n-kjpaw_psl.1.0.0.UPF', 14: 'Si.pbe-n-rrkjus_psl.1.0.0.UPF', 15: 'P.pbe-n-rrkjus_psl.1.0.0.UPF', 16: 'S_pbe_v1.2.uspp.F.UPF', 17: 'Cl.pbe-n-rrkjus_psl.1.0.0.UPF', 18: 'Ar.pbe-n-rrkjus_psl.1.0.0.UPF', 19: 'K.pbe-spn-rrkjus_psl.1.0.0.UPF', 20: 'Ca_pbe_v1.uspp.F.UPF', 21: 'Sc_pbe_v1.uspp.F.UPF', 22: 'ti_pbe_v1.4.uspp.F.UPF', 23: 'V_pbe_v1.uspp.F.UPF', 24: 'cr_pbe_v1.5.uspp.F.UPF', 25: 'Mn.pbe-spn-kjpaw_psl.0.3.1.UPF', 26: 'Fe.pbe-spn-kjpaw_psl.0.2.1.UPF', 27: 'Co_pbe_v1.2.uspp.F.UPF', 28: 'ni_pbe_v1.4.uspp.F.UPF', 29: 'Cu_pbe_v1.2.uspp.F.UPF', 30: 'Zn_pbe_v1.uspp.F.UPF', 31: 'Ga.pbe-dn-kjpaw_psl.1.0.0.UPF', 32: 'Ge.pbe-dn-kjpaw_psl.1.0.0.UPF', 33: 'As.pbe-n-rrkjus_psl.0.2.UPF', 34: 'Se_pbe_v1.uspp.F.UPF', 35: 'br_pbe_v1.4.uspp.F.UPF', 36: 'Kr.pbe-n-rrkjus_psl.0.2.3.UPF', 37: 'Rb_ONCV_PBE-1.0.upf', 38: 'Sr.pbe-spn-rrkjus_psl.1.0.0.UPF', 39: 'Y_pbe_v1.uspp.F.UPF', 40: 'Zr_pbe_v1.uspp.F.UPF', 41: 'Nb.pbe-spn-kjpaw_psl.0.3.0.UPF', 42: 'Mo_ONCV_PBE-1.0.upf', 43: 'Tc_ONCV_PBE-1.0.upf', 44: 'Ru_ONCV_PBE-1.0.upf', 45: 'Rh.pbe-spn-kjpaw_psl.1.0.0.UPF', 46: 'Pd.pbe-spn-kjpaw_psl.1.0.0.UPF', 47: 'ag_pbe_v1.4.uspp.F.UPF', 48: 'Cd.pbe-dn-rrkjus_psl.0.3.1.UPF', 49: 'In.pbe-dn-rrkjus_psl.0.2.2.UPF', 50: 'Sn_pbe_v1.uspp.F.UPF', 51: 'sb_pbe_v1.4.uspp.F.UPF', 52: 'Te_pbe_v1.uspp.F.UPF', 53: 'I_pbe_v1.uspp.F.UPF', 54: 'Xe.pbe-dn-rrkjus_psl.1.0.0.UPF', 55: 'Cs_pbe_v1.uspp.F.UPF', 56: 'Ba_ONCV_PBE-1.0.upf', 57: 'La.GGA-PBE-paw-v1.0.UPF', 58: 'Ce.GGA-PBE-paw-v1.0.UPF', 59: 'Pr.GGA-PBE-paw-v1.0.UPF', 60: 'Nd.GGA-PBE-paw-v1.0.UPF', 62: 'Sm.GGA-PBE-paw-v1.0.UPF', 63: 'Eu.GGA-PBE-paw-v1.0.UPF', 64: 'Gd.GGA-PBE-paw-v1.0.UPF', 65: 'Tb.GGA-PBE-paw-v1.0.UPF', 66: 'Dy.GGA-PBE-paw-v1.0.UPF', 67: 'Ho.GGA-PBE-paw-v1.0.UPF', 68: 'Er.GGA-PBE-paw-v1.0.UPF', 69: 'Tm.GGA-PBE-paw-v1.0.UPF', 70: 'Yb.GGA-PBE-paw-v1.0.UPF', 71: 'Lu.GGA-PBE-paw-v1.0.UPF', 72: 'Hf.pbe-spdfn-kjpaw_psl.1.0.0.UPF', 73: 'Ta.pbe-spfn-rrkjus_psl.1.0.0.UPF', 74: 'W_pbe_v1.2.uspp.F.UPF', 75: 'Re_pbe_v1.2.uspp.F.UPF', 76: 'Os.pbe-spfn-rrkjus_psl.1.0.0.UPF', 77: 'Ir_pbe_v1.2.uspp.F.UPF', 78: 'Pt.pbe-spfn-rrkjus_psl.1.0.0.UPF', 79: 'Au_ONCV_PBE-1.0.upf', 80: 'Hg_pbe_v1.uspp.F.UPF', 81: 'Tl.pbe-dn-rrkjus_psl.1.0.0.UPF', 82: 'Pb.pbe-dn-kjpaw_psl.0.2.2.UPF', 83: 'Bi.pbe-dn-kjpaw_psl.0.2.2.UPF'} wfccutoffs = {1: 55.0, 2: 55.0, 3: 50, 4: 55.0, 5: 50, 6: 50.0, 7: 55.0, 8: 70.0, 9: 50.0, 10: 200.0, 11: 50, 12: 50, 13: 50, 14: 70, 15: 50, 16: 50, 17: 60.0, 18: 120.0, 19: 50.0, 20: 50, 21: 50, 22: 50, 23: 50, 24: 50, 25: 70.0, 26: 90.0, 27: 55.0, 28: 50, 29: 50, 30: 50, 31: 70.0, 32: 50, 33: 50, 34: 50, 35: 50, 36: 100.0, 37: 50.0, 38: 50, 39: 50, 40: 50, 41: 50, 42: 50, 43: 50, 44: 50, 45: 50, 46: 55.0, 47: 50, 48: 50, 49: 50, 50: 50, 51: 50, 52: 50, 53: 50, 54: 120.0, 55: 50, 56: 50, 57: 55.0, 58: 50, 59: 50.0, 60: 50, 62: 50, 63: 55.0, 64: 50, 65: 50, 66: 50, 67: 50, 68: 50, 69: 50, 70: 50, 71: 50, 72: 120.0, 73: 50, 74: 50, 75: 50, 76: 60.0, 77: 50, 78: 55.0, 79: 50, 80: 50, 81: 50, 82: 50, 83: 50} rhocutoffs = {1: 440.0, 2: 220.0, 3: 400.0, 4: 220.0, 5: 400.0, 6: 400.0, 7: 440.0, 8: 560.0, 9: 400.0, 10: 1600.0, 11: 400.0, 12: 400.0, 13: 400.0, 14: 560.0, 15: 400.0, 16: 400.0, 17: 480.0, 18: 960.0, 19: 400.0, 20: 400.0, 21: 400.0, 22: 400.0, 23: 400.0, 24: 400.0, 25: 840.0, 26: 1080.0, 27: 440.0, 28: 400.0, 29: 400.0, 30: 400.0, 31: 560.0, 32: 400.0, 33: 400.0, 34: 400.0, 35: 400.0, 36: 800.0, 37: 200.0, 38: 400.0, 39: 400.0, 40: 400.0, 41: 400.0, 42: 200.0, 43: 200.0, 44: 200.0, 45: 400.0, 46: 440.0, 47: 400.0, 48: 400.0, 49: 400.0, 50: 400.0, 51: 400.0, 52: 400.0, 53: 400.0, 54: 960.0, 55: 400.0, 56: 200.0, 57: 440.0, 58: 400.0, 59: 400.0, 60: 400.0, 62: 400.0, 63: 440.0, 64: 400.0, 65: 400.0, 66: 400.0, 67: 400.0, 68: 400.0, 69: 400.0, 70: 400.0, 71: 400.0, 72: 960.0, 73: 400.0, 74: 400.0, 75: 400.0, 76: 480.0, 77: 400.0, 78: 440.0, 79: 200.0, 80: 400.0, 81: 400.0, 82: 400.0, 83: 400.0}
pp_names = {1: 'H.pbe-rrkjus_psl.0.1.UPF', 2: 'He_ONCV_PBE-1.0.upf', 3: 'li_pbe_v1.4.uspp.F.UPF', 4: 'Be_ONCV_PBE-1.0.upf', 5: 'B.pbe-n-kjpaw_psl.0.1.UPF', 6: 'C_pbe_v1.2.uspp.F.UPF', 7: 'N.pbe.theos.UPF', 8: 'O.pbe-n-kjpaw_psl.0.1.UPF', 9: 'f_pbe_v1.4.uspp.F.UPF', 10: 'Ne.pbe-n-kjpaw_psl.1.0.0.UPF', 11: 'Na_pbe_v1.uspp.F.UPF', 12: 'mg_pbe_v1.4.uspp.F.UPF', 13: 'Al.pbe-n-kjpaw_psl.1.0.0.UPF', 14: 'Si.pbe-n-rrkjus_psl.1.0.0.UPF', 15: 'P.pbe-n-rrkjus_psl.1.0.0.UPF', 16: 'S_pbe_v1.2.uspp.F.UPF', 17: 'Cl.pbe-n-rrkjus_psl.1.0.0.UPF', 18: 'Ar.pbe-n-rrkjus_psl.1.0.0.UPF', 19: 'K.pbe-spn-rrkjus_psl.1.0.0.UPF', 20: 'Ca_pbe_v1.uspp.F.UPF', 21: 'Sc_pbe_v1.uspp.F.UPF', 22: 'ti_pbe_v1.4.uspp.F.UPF', 23: 'V_pbe_v1.uspp.F.UPF', 24: 'cr_pbe_v1.5.uspp.F.UPF', 25: 'Mn.pbe-spn-kjpaw_psl.0.3.1.UPF', 26: 'Fe.pbe-spn-kjpaw_psl.0.2.1.UPF', 27: 'Co_pbe_v1.2.uspp.F.UPF', 28: 'ni_pbe_v1.4.uspp.F.UPF', 29: 'Cu_pbe_v1.2.uspp.F.UPF', 30: 'Zn_pbe_v1.uspp.F.UPF', 31: 'Ga.pbe-dn-kjpaw_psl.1.0.0.UPF', 32: 'Ge.pbe-dn-kjpaw_psl.1.0.0.UPF', 33: 'As.pbe-n-rrkjus_psl.0.2.UPF', 34: 'Se_pbe_v1.uspp.F.UPF', 35: 'br_pbe_v1.4.uspp.F.UPF', 36: 'Kr.pbe-n-rrkjus_psl.0.2.3.UPF', 37: 'Rb_ONCV_PBE-1.0.upf', 38: 'Sr.pbe-spn-rrkjus_psl.1.0.0.UPF', 39: 'Y_pbe_v1.uspp.F.UPF', 40: 'Zr_pbe_v1.uspp.F.UPF', 41: 'Nb.pbe-spn-kjpaw_psl.0.3.0.UPF', 42: 'Mo_ONCV_PBE-1.0.upf', 43: 'Tc_ONCV_PBE-1.0.upf', 44: 'Ru_ONCV_PBE-1.0.upf', 45: 'Rh.pbe-spn-kjpaw_psl.1.0.0.UPF', 46: 'Pd.pbe-spn-kjpaw_psl.1.0.0.UPF', 47: 'ag_pbe_v1.4.uspp.F.UPF', 48: 'Cd.pbe-dn-rrkjus_psl.0.3.1.UPF', 49: 'In.pbe-dn-rrkjus_psl.0.2.2.UPF', 50: 'Sn_pbe_v1.uspp.F.UPF', 51: 'sb_pbe_v1.4.uspp.F.UPF', 52: 'Te_pbe_v1.uspp.F.UPF', 53: 'I_pbe_v1.uspp.F.UPF', 54: 'Xe.pbe-dn-rrkjus_psl.1.0.0.UPF', 55: 'Cs_pbe_v1.uspp.F.UPF', 56: 'Ba_ONCV_PBE-1.0.upf', 57: 'La.GGA-PBE-paw-v1.0.UPF', 58: 'Ce.GGA-PBE-paw-v1.0.UPF', 59: 'Pr.GGA-PBE-paw-v1.0.UPF', 60: 'Nd.GGA-PBE-paw-v1.0.UPF', 62: 'Sm.GGA-PBE-paw-v1.0.UPF', 63: 'Eu.GGA-PBE-paw-v1.0.UPF', 64: 'Gd.GGA-PBE-paw-v1.0.UPF', 65: 'Tb.GGA-PBE-paw-v1.0.UPF', 66: 'Dy.GGA-PBE-paw-v1.0.UPF', 67: 'Ho.GGA-PBE-paw-v1.0.UPF', 68: 'Er.GGA-PBE-paw-v1.0.UPF', 69: 'Tm.GGA-PBE-paw-v1.0.UPF', 70: 'Yb.GGA-PBE-paw-v1.0.UPF', 71: 'Lu.GGA-PBE-paw-v1.0.UPF', 72: 'Hf.pbe-spdfn-kjpaw_psl.1.0.0.UPF', 73: 'Ta.pbe-spfn-rrkjus_psl.1.0.0.UPF', 74: 'W_pbe_v1.2.uspp.F.UPF', 75: 'Re_pbe_v1.2.uspp.F.UPF', 76: 'Os.pbe-spfn-rrkjus_psl.1.0.0.UPF', 77: 'Ir_pbe_v1.2.uspp.F.UPF', 78: 'Pt.pbe-spfn-rrkjus_psl.1.0.0.UPF', 79: 'Au_ONCV_PBE-1.0.upf', 80: 'Hg_pbe_v1.uspp.F.UPF', 81: 'Tl.pbe-dn-rrkjus_psl.1.0.0.UPF', 82: 'Pb.pbe-dn-kjpaw_psl.0.2.2.UPF', 83: 'Bi.pbe-dn-kjpaw_psl.0.2.2.UPF'} wfccutoffs = {1: 55.0, 2: 55.0, 3: 50, 4: 55.0, 5: 50, 6: 50.0, 7: 55.0, 8: 70.0, 9: 50.0, 10: 200.0, 11: 50, 12: 50, 13: 50, 14: 70, 15: 50, 16: 50, 17: 60.0, 18: 120.0, 19: 50.0, 20: 50, 21: 50, 22: 50, 23: 50, 24: 50, 25: 70.0, 26: 90.0, 27: 55.0, 28: 50, 29: 50, 30: 50, 31: 70.0, 32: 50, 33: 50, 34: 50, 35: 50, 36: 100.0, 37: 50.0, 38: 50, 39: 50, 40: 50, 41: 50, 42: 50, 43: 50, 44: 50, 45: 50, 46: 55.0, 47: 50, 48: 50, 49: 50, 50: 50, 51: 50, 52: 50, 53: 50, 54: 120.0, 55: 50, 56: 50, 57: 55.0, 58: 50, 59: 50.0, 60: 50, 62: 50, 63: 55.0, 64: 50, 65: 50, 66: 50, 67: 50, 68: 50, 69: 50, 70: 50, 71: 50, 72: 120.0, 73: 50, 74: 50, 75: 50, 76: 60.0, 77: 50, 78: 55.0, 79: 50, 80: 50, 81: 50, 82: 50, 83: 50} rhocutoffs = {1: 440.0, 2: 220.0, 3: 400.0, 4: 220.0, 5: 400.0, 6: 400.0, 7: 440.0, 8: 560.0, 9: 400.0, 10: 1600.0, 11: 400.0, 12: 400.0, 13: 400.0, 14: 560.0, 15: 400.0, 16: 400.0, 17: 480.0, 18: 960.0, 19: 400.0, 20: 400.0, 21: 400.0, 22: 400.0, 23: 400.0, 24: 400.0, 25: 840.0, 26: 1080.0, 27: 440.0, 28: 400.0, 29: 400.0, 30: 400.0, 31: 560.0, 32: 400.0, 33: 400.0, 34: 400.0, 35: 400.0, 36: 800.0, 37: 200.0, 38: 400.0, 39: 400.0, 40: 400.0, 41: 400.0, 42: 200.0, 43: 200.0, 44: 200.0, 45: 400.0, 46: 440.0, 47: 400.0, 48: 400.0, 49: 400.0, 50: 400.0, 51: 400.0, 52: 400.0, 53: 400.0, 54: 960.0, 55: 400.0, 56: 200.0, 57: 440.0, 58: 400.0, 59: 400.0, 60: 400.0, 62: 400.0, 63: 440.0, 64: 400.0, 65: 400.0, 66: 400.0, 67: 400.0, 68: 400.0, 69: 400.0, 70: 400.0, 71: 400.0, 72: 960.0, 73: 400.0, 74: 400.0, 75: 400.0, 76: 480.0, 77: 400.0, 78: 440.0, 79: 200.0, 80: 400.0, 81: 400.0, 82: 400.0, 83: 400.0}
''' 1. Write a Python function that takes two lists and returns True if they have at least one common member. 2. Write a Python program to print a specified list after removing the 0th, 4th and 5th elements. Sample List : ['Red', 'Green', 'White', 'Black', 'Pink', 'Yellow'] Expected Output : ['Green', 'White', 'Black'] 3. Write a Python program to generate a 3*4*6 3D array whose each element is *. 4. Write a Python program to print the numbers of a specified list after removing even numbers from it. 5. Write a Python program to shuffle and print a specified list. 6. Write a Python program to generate and print a list of first and last 5 elements where the values are square of numbers between 1 and 30 (both included). 7. Write a Python program to generate and print a list except for the first 5 elements, where the values are square of numbers between 1 and 30 (both included). 8. Write a Python program to generate all permutations of a list in Python. 9. Write a Python program to get the difference between the two lists. 10. Write a Python program access the index of a list. '''
""" 1. Write a Python function that takes two lists and returns True if they have at least one common member. 2. Write a Python program to print a specified list after removing the 0th, 4th and 5th elements. Sample List : ['Red', 'Green', 'White', 'Black', 'Pink', 'Yellow'] Expected Output : ['Green', 'White', 'Black'] 3. Write a Python program to generate a 3*4*6 3D array whose each element is *. 4. Write a Python program to print the numbers of a specified list after removing even numbers from it. 5. Write a Python program to shuffle and print a specified list. 6. Write a Python program to generate and print a list of first and last 5 elements where the values are square of numbers between 1 and 30 (both included). 7. Write a Python program to generate and print a list except for the first 5 elements, where the values are square of numbers between 1 and 30 (both included). 8. Write a Python program to generate all permutations of a list in Python. 9. Write a Python program to get the difference between the two lists. 10. Write a Python program access the index of a list. """
class System(): #A full System def __init__(self): # Empty Clock Domain self.clk_domain = None # Empty memory containers self.memories = [] self.mem_mode = None self.mem_ranges = [] self.mem_ctrl = None self.system_port = None # Empty CPU containers self.cpu = None self.membus = None # Cache containers self.l2bus = None self.l2cache = None
class System: def __init__(self): self.clk_domain = None self.memories = [] self.mem_mode = None self.mem_ranges = [] self.mem_ctrl = None self.system_port = None self.cpu = None self.membus = None self.l2bus = None self.l2cache = None
test = { 'name': 'q1', 'points': 0, 'suites': [ { 'cases': [ {'code': '>>> pairwise_multiply([2, 3, 4], [10, 20, 30]) == [20, 60, 120]\nTrue', 'hidden': False, 'locked': False}, {'code': '>>> pairwise_multiply(list(range(1, 10)), list(range(9, 0, -1))) == [9, 16, 21, 24, 25, 24, 21, 16, 9]\nTrue', 'hidden': False, 'locked': False}], 'scored': True, 'setup': '', 'teardown': '', 'type': 'doctest'}]}
test = {'name': 'q1', 'points': 0, 'suites': [{'cases': [{'code': '>>> pairwise_multiply([2, 3, 4], [10, 20, 30]) == [20, 60, 120]\nTrue', 'hidden': False, 'locked': False}, {'code': '>>> pairwise_multiply(list(range(1, 10)), list(range(9, 0, -1))) == [9, 16, 21, 24, 25, 24, 21, 16, 9]\nTrue', 'hidden': False, 'locked': False}], 'scored': True, 'setup': '', 'teardown': '', 'type': 'doctest'}]}
# Problem code def hammingWeight(n): count = 0 while n: count += n & 1 n >>= 1 return count # Setup a = 23 print("Number of set bits in 23:") b = hammingWeight(a) print(b)
def hamming_weight(n): count = 0 while n: count += n & 1 n >>= 1 return count a = 23 print('Number of set bits in 23:') b = hamming_weight(a) print(b)
def goodbye(): return 'Good Bye' def main(): print(goodbye()) if __name__ == '__main__': main()
def goodbye(): return 'Good Bye' def main(): print(goodbye()) if __name__ == '__main__': main()
class Solution: def numSub(self, s: str) -> int: s = s.split('0') res = 0 for x in s: y = len(x) res += (y + 1) * y // 2 return res if __name__ == '__main__': s = "1111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111100101011111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111100001001" res = Solution().numSub(s) print(res)
class Solution: def num_sub(self, s: str) -> int: s = s.split('0') res = 0 for x in s: y = len(x) res += (y + 1) * y // 2 return res if __name__ == '__main__': s = '1111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111100101011111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111100001001' res = solution().numSub(s) print(res)
# Problem Number: 187 # Time complexity: O((N-l)l) # Space Complexity: O((N-l)l) class Solution: def findRepeatedDnaSequences(self, s: str) -> List[str]: n=len(s) l=10 all_str=set() output= set() for i in range(n-l+1): temp= s[i:i+l] if temp in all_str: output.add(temp) all_str.add(temp) return output
class Solution: def find_repeated_dna_sequences(self, s: str) -> List[str]: n = len(s) l = 10 all_str = set() output = set() for i in range(n - l + 1): temp = s[i:i + l] if temp in all_str: output.add(temp) all_str.add(temp) return output
# -*- coding: utf-8 -*- def journal_context(record={}, params={}): for k, v in params.items(): record["JOURNAL_" + k] = v return record
def journal_context(record={}, params={}): for (k, v) in params.items(): record['JOURNAL_' + k] = v return record
__author__ = 'Aaron Yang' __email__ = 'byang971@usc.edu' __date__ = '9/5/2020 3:52 AM' num = 5 num //= 2 print(num)
__author__ = 'Aaron Yang' __email__ = 'byang971@usc.edu' __date__ = '9/5/2020 3:52 AM' num = 5 num //= 2 print(num)
# pedindo um cateto oposto e um cateto adjacente co = float(input('Cateto Oposto: ')) ca = float(input('Cateto Adjacente: ')) # calculando os cateto para encontrar um hipotenusa hi = (co ** 2 + ca ** 2) / 0.5 # mostrando a hipotenusa dos catetos print(f'Cateto oposto: {co}, cateto Adjacente {ca}') print(f'Hipotenusa: {hi}')
co = float(input('Cateto Oposto: ')) ca = float(input('Cateto Adjacente: ')) hi = (co ** 2 + ca ** 2) / 0.5 print(f'Cateto oposto: {co}, cateto Adjacente {ca}') print(f'Hipotenusa: {hi}')
def solution(s: str) -> str: if all(i.islower() for i in s): return s return ''.join(' ' + i if i.isupper() else i for i in s)
def solution(s: str) -> str: if all((i.islower() for i in s)): return s return ''.join((' ' + i if i.isupper() else i for i in s))
a = [1, 2, 3, 4, 5] n = len(a) d = 4 print(a[d:] + a[:d])
a = [1, 2, 3, 4, 5] n = len(a) d = 4 print(a[d:] + a[:d])
human_years = 10 catYears_1st_year = 15 catYears_2nd_year = 9 catYears_older = 4 dogYears_1st_year = 15 dogYears_2st_year = 9 dogYears_older = 5 if human_years == 1: print(human_years, catYears_1st_year, dogYears_1st_year) if human_years == 2: print(human_years, catYears_1st_year + catYears_2nd_year, dogYears_1st_year + dogYears_2st_year) if human_years > 2: print(human_years, catYears_1st_year + catYears_2nd_year + (catYears_older * (human_years - 2)), dogYears_1st_year + dogYears_2st_year + (dogYears_older * (human_years - 2))) #def human_years_cat_years_dog_years(x): #return [x, 24+(x-2)*4 if (x != 1) else 15, 24+(x-2)*5 if (x != 1) else 15]
human_years = 10 cat_years_1st_year = 15 cat_years_2nd_year = 9 cat_years_older = 4 dog_years_1st_year = 15 dog_years_2st_year = 9 dog_years_older = 5 if human_years == 1: print(human_years, catYears_1st_year, dogYears_1st_year) if human_years == 2: print(human_years, catYears_1st_year + catYears_2nd_year, dogYears_1st_year + dogYears_2st_year) if human_years > 2: print(human_years, catYears_1st_year + catYears_2nd_year + catYears_older * (human_years - 2), dogYears_1st_year + dogYears_2st_year + dogYears_older * (human_years - 2))
# Definition for singly-linked list. class ListNode: def __init__(self, val=0, next=None): self.val = val self.next = next class Solution: def reverseList(self, head: ListNode) -> ListNode: node= None while(head != null ): next= head.next head.next= node node= head head= next return node s= Solution() ll_1= ListNode(1) ll_2= ListNode(2) ll_3= ListNode(3) ll_4= ListNode(4) ll_5= ListNode(5) ll_1.next= ll_2 ll_2.next= ll_3 ll_3.next= ll_4 ll_4.next= ll_5 reversed_head= s.reverseList(ll_1) # print the reversed list reversed_list= "" while(reversed_head.next): reversed_list+=str(reversed_head.val)+"=>" reversed_head=reversed_head.next reversed_list+=str(reversed_head.val) print(reversed_list)
class Listnode: def __init__(self, val=0, next=None): self.val = val self.next = next class Solution: def reverse_list(self, head: ListNode) -> ListNode: node = None while head != null: next = head.next head.next = node node = head head = next return node s = solution() ll_1 = list_node(1) ll_2 = list_node(2) ll_3 = list_node(3) ll_4 = list_node(4) ll_5 = list_node(5) ll_1.next = ll_2 ll_2.next = ll_3 ll_3.next = ll_4 ll_4.next = ll_5 reversed_head = s.reverseList(ll_1) reversed_list = '' while reversed_head.next: reversed_list += str(reversed_head.val) + '=>' reversed_head = reversed_head.next reversed_list += str(reversed_head.val) print(reversed_list)
EDGES_BODY_25 = [ [0, 1], [1, 2], [2, 3], [3, 4], [1, 5], [5, 6], [6, 7], [1, 8], [8, 9], [9, 10], [10, 11], [11, 22], [22, 23], [11, 24], [8, 12], [12, 13], [13, 14], [14, 19], [19, 20], [14, 21], [0, 15], [15, 17], [0, 16], [16, 18], ] EDGES_FACE = [ [0, 1], [1, 2], [2, 3], [3, 4], [4, 5], [5, 6], [6, 7], [7, 8], [8, 9], [9, 10], [10, 11], [11, 12], [12, 13], [13, 14], [14, 15], [15, 16], [17, 18], [18, 19], [19, 20], [20, 21], [22, 23], [23, 24], [24, 25], [25, 26], [27, 28], [28, 29], [29, 30], [31, 32], [32, 33], [33, 34], [34, 35], [36, 37], [37, 38], [38, 39], [39, 40], [40, 41], [36, 41], [42, 43], [43, 44], [44, 45], [45, 46], [46, 47], [42, 47], [48, 49], [49, 50], [50, 51], [51, 52], [52, 53], [53, 54], [54, 55], [55, 56], [56, 57], [57, 58], [58, 59], [48, 59], [60, 61], [61, 62], [62, 63], [63, 64], [64, 65], [65, 66], [66, 67], [60, 67], ] EDGES_HAND = [ [0, 1], [1, 2], [2, 3], [3, 4], [0, 5], [5, 6], [6, 7], [7, 8], [0, 9], [9, 10], [10, 11], [11, 12], [0, 13], [13, 14], [14, 15], [15, 16], [0, 17], [17, 18], [18, 19], [19, 20], ]
edges_body_25 = [[0, 1], [1, 2], [2, 3], [3, 4], [1, 5], [5, 6], [6, 7], [1, 8], [8, 9], [9, 10], [10, 11], [11, 22], [22, 23], [11, 24], [8, 12], [12, 13], [13, 14], [14, 19], [19, 20], [14, 21], [0, 15], [15, 17], [0, 16], [16, 18]] edges_face = [[0, 1], [1, 2], [2, 3], [3, 4], [4, 5], [5, 6], [6, 7], [7, 8], [8, 9], [9, 10], [10, 11], [11, 12], [12, 13], [13, 14], [14, 15], [15, 16], [17, 18], [18, 19], [19, 20], [20, 21], [22, 23], [23, 24], [24, 25], [25, 26], [27, 28], [28, 29], [29, 30], [31, 32], [32, 33], [33, 34], [34, 35], [36, 37], [37, 38], [38, 39], [39, 40], [40, 41], [36, 41], [42, 43], [43, 44], [44, 45], [45, 46], [46, 47], [42, 47], [48, 49], [49, 50], [50, 51], [51, 52], [52, 53], [53, 54], [54, 55], [55, 56], [56, 57], [57, 58], [58, 59], [48, 59], [60, 61], [61, 62], [62, 63], [63, 64], [64, 65], [65, 66], [66, 67], [60, 67]] edges_hand = [[0, 1], [1, 2], [2, 3], [3, 4], [0, 5], [5, 6], [6, 7], [7, 8], [0, 9], [9, 10], [10, 11], [11, 12], [0, 13], [13, 14], [14, 15], [15, 16], [0, 17], [17, 18], [18, 19], [19, 20]]
# # PySNMP MIB module CTRON-APPN-MIB (http://snmplabs.com/pysmi) # ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/CTRON-APPN-MIB # Produced by pysmi-0.3.4 at Mon Apr 29 17:26:48 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, OctetString, Integer = mibBuilder.importSymbols("ASN1", "ObjectIdentifier", "OctetString", "Integer") NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues") ValueRangeConstraint, SingleValueConstraint, ConstraintsIntersection, ValueSizeConstraint, ConstraintsUnion = mibBuilder.importSymbols("ASN1-REFINEMENT", "ValueRangeConstraint", "SingleValueConstraint", "ConstraintsIntersection", "ValueSizeConstraint", "ConstraintsUnion") nwRtrProtoSuites, = mibBuilder.importSymbols("ROUTER-OIDS", "nwRtrProtoSuites") NotificationGroup, ModuleCompliance = mibBuilder.importSymbols("SNMPv2-CONF", "NotificationGroup", "ModuleCompliance") Unsigned32, iso, IpAddress, MibScalar, MibTable, MibTableRow, MibTableColumn, NotificationType, Bits, TimeTicks, MibIdentifier, ObjectIdentity, ModuleIdentity, Integer32, Gauge32, Counter32, Counter64 = mibBuilder.importSymbols("SNMPv2-SMI", "Unsigned32", "iso", "IpAddress", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "NotificationType", "Bits", "TimeTicks", "MibIdentifier", "ObjectIdentity", "ModuleIdentity", "Integer32", "Gauge32", "Counter32", "Counter64") DisplayString, TextualConvention = mibBuilder.importSymbols("SNMPv2-TC", "DisplayString", "TextualConvention") nwAppnRouter = MibIdentifier((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5)) nwAppnMibs = MibIdentifier((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 1)) nwAppnComponents = MibIdentifier((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2)) nwAppnSystem = MibIdentifier((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 1)) nwAppnForwarding = MibIdentifier((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2)) nwAppnTopology = MibIdentifier((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 4)) nwAppnFib = MibIdentifier((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 5)) nwAppnEndSystems = MibIdentifier((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 6)) nwAppnAccessControl = MibIdentifier((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 7)) nwAppnFilters = MibIdentifier((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 8)) nwAppnRedirector = MibIdentifier((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 9)) nwAppnEvent = MibIdentifier((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 10)) nwAppnWorkGroup = MibIdentifier((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 11)) nwAppnSysConfig = MibIdentifier((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 1, 1)) nwAppnSysAdministration = MibIdentifier((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 1, 2)) nwAppnSysCfgLocalNode = MibIdentifier((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 1, 1, 2)) nwAppnSysCfgTables = MibIdentifier((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 1, 1, 3)) nwAppnFwdSystem = MibIdentifier((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 1)) nwAppnFwdInterfaces = MibIdentifier((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2)) nwAppnFwdLinks = MibIdentifier((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 3)) nwAppnFwdCounters = MibIdentifier((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 1, 1)) nwAppnFwdIfConfig = MibIdentifier((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 1)) nwAppnIfCn = MibIdentifier((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 1, 3)) nwAppnFwdIfCounters = MibIdentifier((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 2)) nwAppnFwdLsConfig = MibIdentifier((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 3, 1)) nwAppnFwdLsCounters = MibIdentifier((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 3, 2)) nwAppnDistanceVector = MibIdentifier((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 4, 1)) nwAppnLinkState = MibIdentifier((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 4, 2)) nwAppnIsr = MibIdentifier((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 4, 2, 1)) nwAppnIsrSystem = MibIdentifier((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 4, 2, 1, 1)) nwAppnIsrInterfaces = MibIdentifier((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 4, 2, 1, 2)) nwAppnIsrDatabase = MibIdentifier((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 4, 2, 1, 3)) nwAppnIsrFilters = MibIdentifier((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 4, 2, 1, 4)) nwAppnIsrConfig = MibIdentifier((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 4, 2, 1, 1, 1)) nwAppnIsrCounters = MibIdentifier((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 4, 2, 1, 1, 2)) nwAppnIsrIfConfig = MibIdentifier((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 4, 2, 1, 2, 1)) nwAppnIsrIfCounters = MibIdentifier((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 4, 2, 1, 2, 2)) nwAppnHostsSystem = MibIdentifier((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 6, 1)) nwAppnHostsInterfaces = MibIdentifier((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 6, 2)) nwAppnEventLogConfig = MibIdentifier((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 10, 1)) nwAppnEventLogFilterTable = MibIdentifier((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 10, 2)) nwAppnEventLogTable = MibIdentifier((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 10, 3)) nwAppnMibRevText = MibScalar((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 1, 1), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: nwAppnMibRevText.setStatus('mandatory') nwAppnSysRouterId = MibScalar((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 1, 1, 1), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(3, 17))).setMaxAccess("readwrite") if mibBuilder.loadTexts: nwAppnSysRouterId.setStatus('mandatory') nwAppnSysNodeType = MibScalar((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 1, 1, 2, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1))).clone(namedValues=NamedValues(("networknode", 1))).clone('networknode')).setMaxAccess("readonly") if mibBuilder.loadTexts: nwAppnSysNodeType.setStatus('mandatory') nwAppnSysCpAlias = MibScalar((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 1, 1, 2, 2), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(1, 8))).setMaxAccess("readwrite") if mibBuilder.loadTexts: nwAppnSysCpAlias.setStatus('mandatory') nwAppnSysModeCosMap = MibScalar((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 1, 1, 2, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("yes", 1), ("no", 2))).clone('yes')).setMaxAccess("readwrite") if mibBuilder.loadTexts: nwAppnSysModeCosMap.setStatus('mandatory') nwAppnSysMdsSupport = MibScalar((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 1, 1, 2, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("yes", 1), ("no", 2))).clone('yes')).setMaxAccess("readwrite") if mibBuilder.loadTexts: nwAppnSysMdsSupport.setStatus('mandatory') nwAppnSysMaxLocates = MibScalar((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 1, 1, 2, 6), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535)).clone(10)).setMaxAccess("readwrite") if mibBuilder.loadTexts: nwAppnSysMaxLocates.setStatus('mandatory') nwAppnSysDirCacheSize = MibScalar((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 1, 1, 2, 7), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535)).clone(255)).setMaxAccess("readwrite") if mibBuilder.loadTexts: nwAppnSysDirCacheSize.setStatus('mandatory') nwAppnSysMaxDirEntries = MibScalar((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 1, 1, 2, 8), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite") if mibBuilder.loadTexts: nwAppnSysMaxDirEntries.setStatus('mandatory') nwAppnSysLocateTimeout = MibScalar((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 1, 1, 2, 9), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite") if mibBuilder.loadTexts: nwAppnSysLocateTimeout.setStatus('mandatory') nwAppnSysRegCds = MibScalar((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 1, 1, 2, 10), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("yes", 1), ("no", 2))).clone('yes')).setMaxAccess("readwrite") if mibBuilder.loadTexts: nwAppnSysRegCds.setStatus('mandatory') nwAppnSysMdsSendQSize = MibScalar((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 1, 1, 2, 11), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535)).clone(100)).setMaxAccess("readwrite") if mibBuilder.loadTexts: nwAppnSysMdsSendQSize.setStatus('mandatory') nwAppnSysCosSize = MibScalar((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 1, 1, 2, 12), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535)).clone(16)).setMaxAccess("readwrite") if mibBuilder.loadTexts: nwAppnSysCosSize.setStatus('mandatory') nwAppnSysTreeSize = MibScalar((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 1, 1, 2, 13), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535)).clone(40)).setMaxAccess("readwrite") if mibBuilder.loadTexts: nwAppnSysTreeSize.setStatus('mandatory') nwAppnSysTreeUseLimit = MibScalar((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 1, 1, 2, 14), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535)).clone(40)).setMaxAccess("readwrite") if mibBuilder.loadTexts: nwAppnSysTreeUseLimit.setStatus('mandatory') nwAppnSysMaxTdmNodes = MibScalar((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 1, 1, 2, 15), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite") if mibBuilder.loadTexts: nwAppnSysMaxTdmNodes.setStatus('mandatory') nwAppnSysMaxTdmTGs = MibScalar((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 1, 1, 2, 16), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite") if mibBuilder.loadTexts: nwAppnSysMaxTdmTGs.setStatus('mandatory') nwAppnSysMaxIsrSessions = MibScalar((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 1, 1, 2, 18), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535)).clone(1000)).setMaxAccess("readwrite") if mibBuilder.loadTexts: nwAppnSysMaxIsrSessions.setStatus('mandatory') nwAppnSysIsrUpperThresh = MibScalar((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 1, 1, 2, 19), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535)).clone(900)).setMaxAccess("readwrite") if mibBuilder.loadTexts: nwAppnSysIsrUpperThresh.setStatus('mandatory') nwAppnSysIsrLowerThresh = MibScalar((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 1, 1, 2, 20), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535)).clone(800)).setMaxAccess("readwrite") if mibBuilder.loadTexts: nwAppnSysIsrLowerThresh.setStatus('mandatory') nwAppnSysIsrMaxRuSize = MibScalar((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 1, 1, 2, 21), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535)).clone(1024)).setMaxAccess("readwrite") if mibBuilder.loadTexts: nwAppnSysIsrMaxRuSize.setStatus('mandatory') nwAppnSysIsrRcvPaceWind = MibScalar((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 1, 1, 2, 22), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 63)).clone(8)).setMaxAccess("readwrite") if mibBuilder.loadTexts: nwAppnSysIsrRcvPaceWind.setStatus('mandatory') nwAppnSysRtAddResist = MibScalar((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 1, 1, 2, 23), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 255))).setMaxAccess("readwrite") if mibBuilder.loadTexts: nwAppnSysRtAddResist.setStatus('mandatory') nwAppnSysStopType = MibScalar((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 1, 1, 2, 24), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))).clone(namedValues=NamedValues(("abort", 1), ("immediate", 2), ("quiesce", 3), ("quiesceIsr", 4))).clone('quiesceIsr')).setMaxAccess("readwrite") if mibBuilder.loadTexts: nwAppnSysStopType.setStatus('mandatory') nwAppnSysBlockNum = MibScalar((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 1, 1, 2, 25), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(3, 3)).setFixedLength(3)).setMaxAccess("readwrite") if mibBuilder.loadTexts: nwAppnSysBlockNum.setStatus('mandatory') nwAppnSysIdNum = MibScalar((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 1, 1, 2, 26), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(5, 5)).setFixedLength(5)).setMaxAccess("readwrite") if mibBuilder.loadTexts: nwAppnSysIdNum.setStatus('mandatory') nwAppnSysLuTable = MibTable((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 1, 1, 3, 1), ) if mibBuilder.loadTexts: nwAppnSysLuTable.setStatus('mandatory') nwAppnSysLuEntry = MibTableRow((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 1, 1, 3, 1, 1), ).setIndexNames((0, "CTRON-APPN-MIB", "nwAppnSysCpName"), (0, "CTRON-APPN-MIB", "nwAppnSysLuName")) if mibBuilder.loadTexts: nwAppnSysLuEntry.setStatus('mandatory') nwAppnSysCpName = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 1, 1, 3, 1, 1, 1), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(3, 17))).setMaxAccess("readwrite") if mibBuilder.loadTexts: nwAppnSysCpName.setStatus('mandatory') nwAppnSysLuName = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 1, 1, 3, 1, 1, 2), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(1, 8))).setMaxAccess("readwrite") if mibBuilder.loadTexts: nwAppnSysLuName.setStatus('mandatory') nwAppnSysLuControl = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 1, 1, 3, 1, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 3))).clone(namedValues=NamedValues(("other", 1), ("delete", 3)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: nwAppnSysLuControl.setStatus('mandatory') nwAppnSysAdminStatus = MibScalar((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 1, 2, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("other", 1), ("disable", 2), ("enabled", 3)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: nwAppnSysAdminStatus.setStatus('mandatory') nwAppnSysOperStatus = MibScalar((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 1, 2, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5))).clone(namedValues=NamedValues(("other", 1), ("disabled", 2), ("enabled", 3), ("pendingDisable", 4), ("pendingEnable", 5)))).setMaxAccess("readonly") if mibBuilder.loadTexts: nwAppnSysOperStatus.setStatus('mandatory') nwAppnSysAdminReset = MibScalar((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 1, 2, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("other", 1), ("reset", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: nwAppnSysAdminReset.setStatus('mandatory') nwAppnSysOperationalTime = MibScalar((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 1, 2, 4), TimeTicks()).setMaxAccess("readonly") if mibBuilder.loadTexts: nwAppnSysOperationalTime.setStatus('mandatory') nwAppnSysVersion = MibScalar((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 1, 2, 5), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: nwAppnSysVersion.setStatus('mandatory') nwAppnFwdCtrAdminStatus = MibScalar((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 1, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("other", 1), ("disabled", 2), ("enabled", 3)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: nwAppnFwdCtrAdminStatus.setStatus('mandatory') nwAppnFwdCtrReset = MibScalar((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 1, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("other", 1), ("reset", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: nwAppnFwdCtrReset.setStatus('mandatory') nwAppnFwdCtrOperationalTime = MibScalar((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 1, 1, 3), TimeTicks()).setMaxAccess("readonly") if mibBuilder.loadTexts: nwAppnFwdCtrOperationalTime.setStatus('mandatory') nwAppnFwdCtrInMus = MibScalar((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 1, 1, 4), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: nwAppnFwdCtrInMus.setStatus('mandatory') nwAppnFwdCtrOutMus = MibScalar((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 1, 1, 5), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: nwAppnFwdCtrOutMus.setStatus('mandatory') nwAppnFwdCtrFwdMus = MibScalar((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 1, 1, 6), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: nwAppnFwdCtrFwdMus.setStatus('mandatory') nwAppnFwdCtrFilteredMus = MibScalar((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 1, 1, 7), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: nwAppnFwdCtrFilteredMus.setStatus('mandatory') nwAppnFwdCtrDiscardMus = MibScalar((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 1, 1, 8), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: nwAppnFwdCtrDiscardMus.setStatus('mandatory') nwAppnFwdCtrAddrErrMus = MibScalar((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 1, 1, 9), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: nwAppnFwdCtrAddrErrMus.setStatus('mandatory') nwAppnFwdCtrLenErrMus = MibScalar((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 1, 1, 10), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: nwAppnFwdCtrLenErrMus.setStatus('mandatory') nwAppnFwdCtrHdrErrMus = MibScalar((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 1, 1, 11), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: nwAppnFwdCtrHdrErrMus.setStatus('mandatory') nwAppnFwdCtrInBytes = MibScalar((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 1, 1, 12), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: nwAppnFwdCtrInBytes.setStatus('mandatory') nwAppnFwdCtrOutBytes = MibScalar((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 1, 1, 13), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: nwAppnFwdCtrOutBytes.setStatus('mandatory') nwAppnFwdCtrFwdBytes = MibScalar((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 1, 1, 14), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: nwAppnFwdCtrFwdBytes.setStatus('mandatory') nwAppnFwdCtrFilteredBytes = MibScalar((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 1, 1, 15), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: nwAppnFwdCtrFilteredBytes.setStatus('mandatory') nwAppnFwdCtrDiscardBytes = MibScalar((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 1, 1, 16), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: nwAppnFwdCtrDiscardBytes.setStatus('mandatory') nwAppnFwdCtrHostInMus = MibScalar((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 1, 1, 17), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: nwAppnFwdCtrHostInMus.setStatus('mandatory') nwAppnFwdCtrHostOutMus = MibScalar((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 1, 1, 18), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: nwAppnFwdCtrHostOutMus.setStatus('mandatory') nwAppnFwdCtrHostDiscardMus = MibScalar((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 1, 1, 19), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: nwAppnFwdCtrHostDiscardMus.setStatus('mandatory') nwAppnFwdCtrHostInBytes = MibScalar((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 1, 1, 20), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: nwAppnFwdCtrHostInBytes.setStatus('mandatory') nwAppnFwdCtrHostOutBytes = MibScalar((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 1, 1, 21), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: nwAppnFwdCtrHostOutBytes.setStatus('mandatory') nwAppnFwdCtrHostDiscardBytes = MibScalar((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 1, 1, 22), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: nwAppnFwdCtrHostDiscardBytes.setStatus('mandatory') nwAppnFwdIfTable = MibTable((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 1, 1), ) if mibBuilder.loadTexts: nwAppnFwdIfTable.setStatus('mandatory') nwAppnFwdIfEntry = MibTableRow((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 1, 1, 1), ).setIndexNames((0, "CTRON-APPN-MIB", "nwAppnFwdIfIndex")) if mibBuilder.loadTexts: nwAppnFwdIfEntry.setStatus('mandatory') nwAppnFwdIfIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 1, 1, 1, 1), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: nwAppnFwdIfIndex.setStatus('mandatory') nwAppnFwdIfAdminStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 1, 1, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("other", 1), ("disable", 2), ("enabled", 3)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: nwAppnFwdIfAdminStatus.setStatus('mandatory') nwAppnFwdIfOperStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 1, 1, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5))).clone(namedValues=NamedValues(("other", 1), ("disabled", 2), ("enabled", 3), ("pendingDisable", 4), ("pendingEnable", 5)))).setMaxAccess("readonly") if mibBuilder.loadTexts: nwAppnFwdIfOperStatus.setStatus('mandatory') nwAppnFwdIfOperationalTime = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 1, 1, 1, 4), TimeTicks()).setMaxAccess("readonly") if mibBuilder.loadTexts: nwAppnFwdIfOperationalTime.setStatus('mandatory') nwAppnFwdIfControl = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 1, 1, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1))).clone(namedValues=NamedValues(("other", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: nwAppnFwdIfControl.setStatus('mandatory') nwAppnFwdIfMtu = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 1, 1, 1, 6), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: nwAppnFwdIfMtu.setStatus('mandatory') nwAppnFwdIfForwarding = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 1, 1, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("other", 1), ("disabled", 2), ("enabled", 3)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: nwAppnFwdIfForwarding.setStatus('mandatory') nwAppnFwdIfFrameType = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 1, 1, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 4, 8))).clone(namedValues=NamedValues(("other", 1), ("ethernet", 2), ("i8022", 4), ("sync", 8)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: nwAppnFwdIfFrameType.setStatus('mandatory') nwAppnFwdIfAclIdentifier = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 1, 1, 1, 9), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: nwAppnFwdIfAclIdentifier.setStatus('mandatory') nwAppnFwdIfAclStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 1, 1, 1, 10), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("other", 1), ("disabled", 2), ("enabled", 3)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: nwAppnFwdIfAclStatus.setStatus('mandatory') nwAppnFwdIfCacheControl = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 1, 1, 1, 11), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("other", 1), ("disable", 2), ("enable", 3)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: nwAppnFwdIfCacheControl.setStatus('mandatory') nwAppnFwdIfCacheEntries = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 1, 1, 1, 12), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: nwAppnFwdIfCacheEntries.setStatus('mandatory') nwAppnFwdIfCacheHits = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 1, 1, 1, 13), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: nwAppnFwdIfCacheHits.setStatus('mandatory') nwAppnFwdIfCacheMisses = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 1, 1, 1, 14), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: nwAppnFwdIfCacheMisses.setStatus('mandatory') nwAppnExtensionTable = MibTable((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 1, 2), ) if mibBuilder.loadTexts: nwAppnExtensionTable.setStatus('mandatory') nwAppnExtEntry = MibTableRow((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 1, 2, 1), ).setIndexNames((0, "CTRON-APPN-MIB", "nwAppnExtIfIndex")) if mibBuilder.loadTexts: nwAppnExtEntry.setStatus('mandatory') nwAppnExtIfIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 1, 2, 1, 1), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: nwAppnExtIfIndex.setStatus('mandatory') nwAppnExtIfPortName = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 1, 2, 1, 2), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(1, 8))).setMaxAccess("readonly") if mibBuilder.loadTexts: nwAppnExtIfPortName.setStatus('mandatory') nwAppnExtIfPortType = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 1, 2, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("nonswitched", 1), ("switched", 2), ("satf", 3)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: nwAppnExtIfPortType.setStatus('mandatory') nwAppnExtIfDlcType = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 1, 2, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("llc2", 1), ("sdlc", 2), ("x25", 3)))).setMaxAccess("readonly") if mibBuilder.loadTexts: nwAppnExtIfDlcType.setStatus('mandatory') nwAppnExtIfMaxRBtuSize = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 1, 2, 1, 6), Integer32().subtype(subtypeSpec=ValueRangeConstraint(99, 65535)).clone(2048)).setMaxAccess("readwrite") if mibBuilder.loadTexts: nwAppnExtIfMaxRBtuSize.setStatus('mandatory') nwAppnExtIfTotLsActLim = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 1, 2, 1, 7), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 256)).clone(16)).setMaxAccess("readwrite") if mibBuilder.loadTexts: nwAppnExtIfTotLsActLim.setStatus('mandatory') nwAppnExtIfInbLsActLim = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 1, 2, 1, 8), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 256)).clone(8)).setMaxAccess("readwrite") if mibBuilder.loadTexts: nwAppnExtIfInbLsActLim.setStatus('mandatory') nwAppnExtIfOutbLsActLim = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 1, 2, 1, 9), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 256)).clone(8)).setMaxAccess("readwrite") if mibBuilder.loadTexts: nwAppnExtIfOutbLsActLim.setStatus('mandatory') nwAppnExtIfLocalLsRole = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 1, 2, 1, 10), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("negotiable", 1), ("primary", 2), ("secondary", 3))).clone('negotiable')).setMaxAccess("readwrite") if mibBuilder.loadTexts: nwAppnExtIfLocalLsRole.setStatus('mandatory') nwAppnExtIfActXidXchgLimit = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 1, 2, 1, 11), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535)).clone(9)).setMaxAccess("readwrite") if mibBuilder.loadTexts: nwAppnExtIfActXidXchgLimit.setStatus('mandatory') nwAppnExtIfNonActXidXchgLimit = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 1, 2, 1, 12), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535)).clone(5)).setMaxAccess("readwrite") if mibBuilder.loadTexts: nwAppnExtIfNonActXidXchgLimit.setStatus('mandatory') nwAppnExtIfLsXmitRcvCap = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 1, 2, 1, 13), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("twowaysimultaneous", 1), ("twowayalternating", 2))).clone('twowaysimultaneous')).setMaxAccess("readwrite") if mibBuilder.loadTexts: nwAppnExtIfLsXmitRcvCap.setStatus('mandatory') nwAppnExtIfMaxIfrmRcvd = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 1, 2, 1, 14), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 127)).clone(4)).setMaxAccess("readwrite") if mibBuilder.loadTexts: nwAppnExtIfMaxIfrmRcvd.setStatus('mandatory') nwAppnExtIfDfltTargetPacing = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 1, 2, 1, 15), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 32767)).clone(7)).setMaxAccess("readwrite") if mibBuilder.loadTexts: nwAppnExtIfDfltTargetPacing.setStatus('mandatory') nwAppnExtIfDfltMaxSBtuSize = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 1, 2, 1, 16), Integer32().subtype(subtypeSpec=ValueRangeConstraint(99, 65535)).clone(2048)).setMaxAccess("readwrite") if mibBuilder.loadTexts: nwAppnExtIfDfltMaxSBtuSize.setStatus('mandatory') nwAppnExtIfDfltEffectCap = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 1, 2, 1, 17), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 603979776))).setMaxAccess("readwrite") if mibBuilder.loadTexts: nwAppnExtIfDfltEffectCap.setStatus('mandatory') nwAppnExtIfDfltConnectCost = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 1, 2, 1, 18), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 255))).setMaxAccess("readwrite") if mibBuilder.loadTexts: nwAppnExtIfDfltConnectCost.setStatus('mandatory') nwAppnExtIfDfltByteCost = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 1, 2, 1, 19), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 255))).setMaxAccess("readwrite") if mibBuilder.loadTexts: nwAppnExtIfDfltByteCost.setStatus('mandatory') nwAppnExtIfDfltSecurity = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 1, 2, 1, 20), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 32, 64, 96, 128, 160, 192))).clone(namedValues=NamedValues(("nonsecure", 1), ("publicSwitchNw", 32), ("undergroundCable", 64), ("secureConduit", 96), ("guardedConduit", 128), ("encrypted", 160), ("guardedRadiation", 192)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: nwAppnExtIfDfltSecurity.setStatus('mandatory') nwAppnExtIfDfltPropDelay = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 1, 2, 1, 21), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 384, 9216, 147456, 294912, 2013265920))).clone(namedValues=NamedValues(("minimum", 0), ("negligible", 384), ("terrestrial", 9216), ("packetswitched", 147456), ("long", 294912), ("maximum", 2013265920)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: nwAppnExtIfDfltPropDelay.setStatus('mandatory') nwAppnExtIfDfltUsrDef1 = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 1, 2, 1, 22), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 255)).clone(128)).setMaxAccess("readwrite") if mibBuilder.loadTexts: nwAppnExtIfDfltUsrDef1.setStatus('mandatory') nwAppnExtIfDfltUsrDef2 = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 1, 2, 1, 23), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 255)).clone(128)).setMaxAccess("readwrite") if mibBuilder.loadTexts: nwAppnExtIfDfltUsrDef2.setStatus('mandatory') nwAppnExtIfDfltUsrDef3 = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 1, 2, 1, 24), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 255)).clone(128)).setMaxAccess("readwrite") if mibBuilder.loadTexts: nwAppnExtIfDfltUsrDef3.setStatus('mandatory') nwAppnExtIfStopType = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 1, 2, 1, 25), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("immediate", 1), ("orderly", 2))).clone('orderly')).setMaxAccess("readwrite") if mibBuilder.loadTexts: nwAppnExtIfStopType.setStatus('mandatory') nwAppnExtIfCpCpSupp = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 1, 2, 1, 26), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("yes", 1), ("no", 2))).clone('yes')).setMaxAccess("readwrite") if mibBuilder.loadTexts: nwAppnExtIfCpCpSupp.setStatus('mandatory') nwAppnExtIfLimitedRsrc = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 1, 2, 1, 27), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("yes", 1), ("no", 2))).clone('no')).setMaxAccess("readwrite") if mibBuilder.loadTexts: nwAppnExtIfLimitedRsrc.setStatus('mandatory') nwAppnExtIfAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 1, 2, 1, 28), OctetString().subtype(subtypeSpec=ValueSizeConstraint(1, 32))).setMaxAccess("readonly") if mibBuilder.loadTexts: nwAppnExtIfAddress.setStatus('mandatory') nwAppnExtIfSsap = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 1, 2, 1, 29), OctetString().subtype(subtypeSpec=ValueSizeConstraint(1, 1)).setFixedLength(1).clone(hexValue="04")).setMaxAccess("readwrite") if mibBuilder.loadTexts: nwAppnExtIfSsap.setStatus('mandatory') nwAppnIfCnPortTable = MibTable((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 1, 3, 1), ) if mibBuilder.loadTexts: nwAppnIfCnPortTable.setStatus('mandatory') nwAppnIfCnPortEntry = MibTableRow((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 1, 3, 1, 1), ).setIndexNames((0, "CTRON-APPN-MIB", "nwAppnIfCnPtFqName"), (0, "CTRON-APPN-MIB", "nwAppnIfCnPtName")) if mibBuilder.loadTexts: nwAppnIfCnPortEntry.setStatus('mandatory') nwAppnIfCnPtFqName = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 1, 3, 1, 1, 1), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(3, 17))).setMaxAccess("readwrite") if mibBuilder.loadTexts: nwAppnIfCnPtFqName.setStatus('mandatory') nwAppnIfCnPtName = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 1, 3, 1, 1, 2), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(1, 8))).setMaxAccess("readwrite") if mibBuilder.loadTexts: nwAppnIfCnPtName.setStatus('mandatory') nwAppnIfCnPtControl = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 1, 3, 1, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 3))).clone(namedValues=NamedValues(("other", 1), ("delete", 3)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: nwAppnIfCnPtControl.setStatus('mandatory') nwAppnIfCnTgCharTable = MibTable((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 1, 3, 2), ) if mibBuilder.loadTexts: nwAppnIfCnTgCharTable.setStatus('mandatory') nwAppnIfCnTgCharEntry = MibTableRow((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 1, 3, 2, 1), ).setIndexNames((0, "CTRON-APPN-MIB", "nwAppnIfCnTgFqName")) if mibBuilder.loadTexts: nwAppnIfCnTgCharEntry.setStatus('mandatory') nwAppnIfCnTgFqName = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 1, 3, 2, 1, 1), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(3, 17))).setMaxAccess("readwrite") if mibBuilder.loadTexts: nwAppnIfCnTgFqName.setStatus('mandatory') nwAppnIfCnTgEffectCap = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 1, 3, 2, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 603979776))).setMaxAccess("readwrite") if mibBuilder.loadTexts: nwAppnIfCnTgEffectCap.setStatus('mandatory') nwAppnIfCnTgConnectCost = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 1, 3, 2, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 255))).setMaxAccess("readwrite") if mibBuilder.loadTexts: nwAppnIfCnTgConnectCost.setStatus('mandatory') nwAppnIfCnTgByteCost = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 1, 3, 2, 1, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 255))).setMaxAccess("readwrite") if mibBuilder.loadTexts: nwAppnIfCnTgByteCost.setStatus('mandatory') nwAppnIfCnTgSecurity = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 1, 3, 2, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 32, 64, 96, 128, 160, 192))).clone(namedValues=NamedValues(("nonsecure", 1), ("publicSwitchNw", 32), ("undergroundCable", 64), ("secureConduit", 96), ("guardedConduit", 128), ("encrypted", 160), ("guardedRadiation", 192)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: nwAppnIfCnTgSecurity.setStatus('mandatory') nwAppnIfCnTgPropDelay = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 1, 3, 2, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 384, 9216, 147456, 294912, 2013265920))).clone(namedValues=NamedValues(("minimum", 0), ("negligible", 384), ("terrestrial", 9216), ("packetswitched", 147456), ("long", 294912), ("maximum", 2013265920)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: nwAppnIfCnTgPropDelay.setStatus('mandatory') nwAppnIfCnTgUsrDef1 = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 1, 3, 2, 1, 7), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 255)).clone(128)).setMaxAccess("readwrite") if mibBuilder.loadTexts: nwAppnIfCnTgUsrDef1.setStatus('mandatory') nwAppnIfCnTgUsrDef2 = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 1, 3, 2, 1, 8), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 255)).clone(128)).setMaxAccess("readwrite") if mibBuilder.loadTexts: nwAppnIfCnTgUsrDef2.setStatus('mandatory') nwAppnIfCnTgUsrDef3 = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 1, 3, 2, 1, 9), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 255)).clone(128)).setMaxAccess("readwrite") if mibBuilder.loadTexts: nwAppnIfCnTgUsrDef3.setStatus('mandatory') nwAppnFwdIfCtrTable = MibTable((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 2, 1), ) if mibBuilder.loadTexts: nwAppnFwdIfCtrTable.setStatus('mandatory') nwAppnFwdIfCtrEntry = MibTableRow((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 2, 1, 1), ).setIndexNames((0, "CTRON-APPN-MIB", "nwAppnFwdIfCtrIfIndex")) if mibBuilder.loadTexts: nwAppnFwdIfCtrEntry.setStatus('mandatory') nwAppnFwdIfCtrIfIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 2, 1, 1, 1), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: nwAppnFwdIfCtrIfIndex.setStatus('mandatory') nwAppnFwdIfCtrAdminStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 2, 1, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("other", 1), ("disabled", 2), ("enabled", 3)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: nwAppnFwdIfCtrAdminStatus.setStatus('mandatory') nwAppnFwdIfCtrReset = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 2, 1, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("other", 1), ("reset", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: nwAppnFwdIfCtrReset.setStatus('mandatory') nwAppnFwdIfCtrOperationalTime = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 2, 1, 1, 4), TimeTicks()).setMaxAccess("readonly") if mibBuilder.loadTexts: nwAppnFwdIfCtrOperationalTime.setStatus('mandatory') nwAppnFwdIfCtrInMus = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 2, 1, 1, 5), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: nwAppnFwdIfCtrInMus.setStatus('mandatory') nwAppnFwdIfCtrOutMus = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 2, 1, 1, 6), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: nwAppnFwdIfCtrOutMus.setStatus('mandatory') nwAppnFwdIfCtrFwdMus = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 2, 1, 1, 7), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: nwAppnFwdIfCtrFwdMus.setStatus('mandatory') nwAppnFwdIfCtrFilteredMus = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 2, 1, 1, 8), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: nwAppnFwdIfCtrFilteredMus.setStatus('mandatory') nwAppnFwdIfCtrDiscardMus = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 2, 1, 1, 9), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: nwAppnFwdIfCtrDiscardMus.setStatus('mandatory') nwAppnFwdIfCtrAddrErrMus = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 2, 1, 1, 10), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: nwAppnFwdIfCtrAddrErrMus.setStatus('mandatory') nwAppnFwdIfCtrLenErrMus = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 2, 1, 1, 11), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: nwAppnFwdIfCtrLenErrMus.setStatus('mandatory') nwAppnFwdIfCtrHdrErrMus = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 2, 1, 1, 12), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: nwAppnFwdIfCtrHdrErrMus.setStatus('mandatory') nwAppnFwdIfCtrInBytes = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 2, 1, 1, 13), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: nwAppnFwdIfCtrInBytes.setStatus('mandatory') nwAppnFwdIfCtrOutBytes = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 2, 1, 1, 14), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: nwAppnFwdIfCtrOutBytes.setStatus('mandatory') nwAppnFwdIfCtrFwdBytes = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 2, 1, 1, 15), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: nwAppnFwdIfCtrFwdBytes.setStatus('mandatory') nwAppnFwdIfCtrFilteredBytes = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 2, 1, 1, 16), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: nwAppnFwdIfCtrFilteredBytes.setStatus('mandatory') nwAppnFwdIfCtrDiscardBytes = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 2, 1, 1, 17), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: nwAppnFwdIfCtrDiscardBytes.setStatus('mandatory') nwAppnFwdIfCtrHostInMus = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 2, 1, 1, 18), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: nwAppnFwdIfCtrHostInMus.setStatus('mandatory') nwAppnFwdIfCtrHostOutMus = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 2, 1, 1, 19), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: nwAppnFwdIfCtrHostOutMus.setStatus('mandatory') nwAppnFwdIfCtrHostDiscardMus = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 2, 1, 1, 20), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: nwAppnFwdIfCtrHostDiscardMus.setStatus('mandatory') nwAppnFwdIfCtrHostInBytes = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 2, 1, 1, 21), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: nwAppnFwdIfCtrHostInBytes.setStatus('mandatory') nwAppnFwdIfCtrHostOutBytes = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 2, 1, 1, 22), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: nwAppnFwdIfCtrHostOutBytes.setStatus('mandatory') nwAppnFwdIfCtrHostDiscardBytes = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 2, 1, 1, 23), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: nwAppnFwdIfCtrHostDiscardBytes.setStatus('mandatory') nwAppnFwdLsTable = MibTable((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 3, 1, 1), ) if mibBuilder.loadTexts: nwAppnFwdLsTable.setStatus('mandatory') nwAppnFwdLsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 3, 1, 1, 1), ).setIndexNames((0, "CTRON-APPN-MIB", "nwAppnFwdLsName")) if mibBuilder.loadTexts: nwAppnFwdLsEntry.setStatus('mandatory') nwAppnFwdLsName = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 3, 1, 1, 1, 1), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(1, 8))).setMaxAccess("readwrite") if mibBuilder.loadTexts: nwAppnFwdLsName.setStatus('mandatory') nwAppnFwdLsAdminStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 3, 1, 1, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("other", 1), ("disable", 2), ("enable", 3)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: nwAppnFwdLsAdminStatus.setStatus('mandatory') nwAppnFwdLsOperStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 3, 1, 1, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5))).clone(namedValues=NamedValues(("other", 1), ("disabled", 2), ("enabled", 3), ("pendingDisable", 4), ("pendingEnable", 5)))).setMaxAccess("readonly") if mibBuilder.loadTexts: nwAppnFwdLsOperStatus.setStatus('mandatory') nwAppnFwdLsOperationalTime = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 3, 1, 1, 1, 4), TimeTicks()).setMaxAccess("readonly") if mibBuilder.loadTexts: nwAppnFwdLsOperationalTime.setStatus('mandatory') nwAppnFwdLsControl = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 3, 1, 1, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 3))).clone(namedValues=NamedValues(("other", 1), ("delete", 3)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: nwAppnFwdLsControl.setStatus('mandatory') nwAppnFwdLsPortName = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 3, 1, 1, 1, 6), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(1, 8))).setMaxAccess("readwrite") if mibBuilder.loadTexts: nwAppnFwdLsPortName.setStatus('mandatory') nwAppnFwdLsAdjCpName = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 3, 1, 1, 1, 7), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(3, 17))).setMaxAccess("readwrite") if mibBuilder.loadTexts: nwAppnFwdLsAdjCpName.setStatus('mandatory') nwAppnFwdLsAdjCpType = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 3, 1, 1, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("endnode", 1), ("networknode", 2))).clone('endnode')).setMaxAccess("readwrite") if mibBuilder.loadTexts: nwAppnFwdLsAdjCpType.setStatus('mandatory') nwAppnFwdLsAutoActSupport = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 3, 1, 1, 1, 10), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("yes", 1), ("no", 2))).clone('no')).setMaxAccess("readwrite") if mibBuilder.loadTexts: nwAppnFwdLsAutoActSupport.setStatus('mandatory') nwAppnFwdLsLimitedRsrc = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 3, 1, 1, 1, 11), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("yes", 1), ("no", 2))).clone('no')).setMaxAccess("readwrite") if mibBuilder.loadTexts: nwAppnFwdLsLimitedRsrc.setStatus('mandatory') nwAppnFwdLsSscpSession = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 3, 1, 1, 1, 12), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("yes", 1), ("no", 2))).clone('no')).setMaxAccess("readwrite") if mibBuilder.loadTexts: nwAppnFwdLsSscpSession.setStatus('mandatory') nwAppnFwdLsPuName = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 3, 1, 1, 1, 13), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(1, 8))).setMaxAccess("readwrite") if mibBuilder.loadTexts: nwAppnFwdLsPuName.setStatus('mandatory') nwAppnFwdLsBackLvlLenEN = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 3, 1, 1, 1, 14), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))).clone(namedValues=NamedValues(("no", 1), ("xid3", 2), ("xid0", 3), ("noxid", 4))).clone('no')).setMaxAccess("readwrite") if mibBuilder.loadTexts: nwAppnFwdLsBackLvlLenEN.setStatus('mandatory') nwAppnFwdLsCpCpSessSupp = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 3, 1, 1, 1, 16), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("yes", 1), ("no", 2))).clone('yes')).setMaxAccess("readwrite") if mibBuilder.loadTexts: nwAppnFwdLsCpCpSessSupp.setStatus('mandatory') nwAppnFwdLsEffectCap = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 3, 1, 1, 1, 17), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 603979776))).setMaxAccess("readwrite") if mibBuilder.loadTexts: nwAppnFwdLsEffectCap.setStatus('mandatory') nwAppnFwdLsConnectCost = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 3, 1, 1, 1, 18), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 255))).setMaxAccess("readwrite") if mibBuilder.loadTexts: nwAppnFwdLsConnectCost.setStatus('mandatory') nwAppnFwdLsByteCost = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 3, 1, 1, 1, 19), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 255))).setMaxAccess("readwrite") if mibBuilder.loadTexts: nwAppnFwdLsByteCost.setStatus('mandatory') nwAppnFwdLsSecurity = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 3, 1, 1, 1, 20), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 32, 64, 96, 128, 160, 192))).clone(namedValues=NamedValues(("nonsecure", 1), ("publicSwitchNw", 32), ("undergroundCable", 64), ("secureConduit", 96), ("guardedConduit", 128), ("encrypted", 160), ("guardedRadiation", 192)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: nwAppnFwdLsSecurity.setStatus('mandatory') nwAppnFwdLsPropDelay = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 3, 1, 1, 1, 21), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 384, 9216, 147456, 294912, 2013265920))).clone(namedValues=NamedValues(("minimum", 0), ("negligible", 384), ("terrestrial", 9216), ("packetswitched", 147456), ("long", 294912), ("maximum", 2013265920)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: nwAppnFwdLsPropDelay.setStatus('mandatory') nwAppnFwdLsUsrDef1 = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 3, 1, 1, 1, 22), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 255)).clone(128)).setMaxAccess("readwrite") if mibBuilder.loadTexts: nwAppnFwdLsUsrDef1.setStatus('mandatory') nwAppnFwdLsUsrDef2 = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 3, 1, 1, 1, 23), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 255)).clone(128)).setMaxAccess("readwrite") if mibBuilder.loadTexts: nwAppnFwdLsUsrDef2.setStatus('mandatory') nwAppnFwdLsUsrDef3 = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 3, 1, 1, 1, 24), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 255)).clone(128)).setMaxAccess("readwrite") if mibBuilder.loadTexts: nwAppnFwdLsUsrDef3.setStatus('mandatory') nwAppnFwdLsTrgtPacingCount = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 3, 1, 1, 1, 25), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 32767)).clone(7)).setMaxAccess("readwrite") if mibBuilder.loadTexts: nwAppnFwdLsTrgtPacingCount.setStatus('mandatory') nwAppnFwdLsMaxSendBtu = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 3, 1, 1, 1, 26), Integer32().subtype(subtypeSpec=ValueRangeConstraint(99, 65535)).clone(2048)).setMaxAccess("readwrite") if mibBuilder.loadTexts: nwAppnFwdLsMaxSendBtu.setStatus('mandatory') nwAppnFwdLsNumActiveSession = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 3, 1, 1, 1, 27), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: nwAppnFwdLsNumActiveSession.setStatus('mandatory') nwAppnFwdLsdynamicLs = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 3, 1, 1, 1, 28), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("yes", 1), ("no", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: nwAppnFwdLsdynamicLs.setStatus('mandatory') nwAppnFwdLsStopType = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 3, 1, 1, 1, 29), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("immediate", 1), ("orderly", 2))).clone('orderly')).setMaxAccess("readwrite") if mibBuilder.loadTexts: nwAppnFwdLsStopType.setStatus('mandatory') nwAppnFwdLsPortNbr = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 3, 1, 1, 1, 30), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: nwAppnFwdLsPortNbr.setStatus('mandatory') nwAppnFwdLsDestAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 3, 1, 1, 1, 31), OctetString().subtype(subtypeSpec=ValueSizeConstraint(1, 32))).setMaxAccess("readwrite") if mibBuilder.loadTexts: nwAppnFwdLsDestAddr.setStatus('mandatory') nwAppnFwdLsDsap = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 3, 1, 1, 1, 32), OctetString().subtype(subtypeSpec=ValueSizeConstraint(1, 1)).setFixedLength(1).clone(hexValue="04")).setMaxAccess("readwrite") if mibBuilder.loadTexts: nwAppnFwdLsDsap.setStatus('mandatory') nwAppnFwdLsBlockNum = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 3, 1, 1, 1, 33), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(3, 3)).setFixedLength(3)).setMaxAccess("readwrite") if mibBuilder.loadTexts: nwAppnFwdLsBlockNum.setStatus('mandatory') nwAppnFwdLsIdNum = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 3, 1, 1, 1, 34), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(5, 5)).setFixedLength(5)).setMaxAccess("readwrite") if mibBuilder.loadTexts: nwAppnFwdLsIdNum.setStatus('mandatory') nwAppnFwdLsCtrTable = MibTable((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 3, 2, 1), ) if mibBuilder.loadTexts: nwAppnFwdLsCtrTable.setStatus('mandatory') nwAppnFwdLsCtrEntry = MibTableRow((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 3, 2, 1, 1), ).setIndexNames((0, "CTRON-APPN-MIB", "nwAppnFwdLsCtrLsName")) if mibBuilder.loadTexts: nwAppnFwdLsCtrEntry.setStatus('mandatory') nwAppnFwdLsCtrLsName = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 3, 2, 1, 1, 1), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(1, 8))).setMaxAccess("readonly") if mibBuilder.loadTexts: nwAppnFwdLsCtrLsName.setStatus('mandatory') nwAppnFwdLsCtrAdminStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 3, 2, 1, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("other", 1), ("disabled", 2), ("enabled", 3)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: nwAppnFwdLsCtrAdminStatus.setStatus('mandatory') nwAppnFwdLsCtrReset = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 3, 2, 1, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("other", 1), ("reset", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: nwAppnFwdLsCtrReset.setStatus('mandatory') nwAppnFwdLsCtrOperationalTime = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 3, 2, 1, 1, 4), TimeTicks()).setMaxAccess("readonly") if mibBuilder.loadTexts: nwAppnFwdLsCtrOperationalTime.setStatus('mandatory') nwAppnFwdLsCtrInBlus = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 3, 2, 1, 1, 5), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: nwAppnFwdLsCtrInBlus.setStatus('mandatory') nwAppnFwdLsCtrOutBlus = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 3, 2, 1, 1, 6), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: nwAppnFwdLsCtrOutBlus.setStatus('mandatory') nwAppnFwdLsCtrFwdBlus = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 3, 2, 1, 1, 7), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: nwAppnFwdLsCtrFwdBlus.setStatus('mandatory') nwAppnFwdLsCtrFilteredBlus = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 3, 2, 1, 1, 8), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: nwAppnFwdLsCtrFilteredBlus.setStatus('mandatory') nwAppnFwdLsCtrDiscardBlus = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 3, 2, 1, 1, 9), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: nwAppnFwdLsCtrDiscardBlus.setStatus('mandatory') nwAppnFwdLsCtrAddrErrBlus = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 3, 2, 1, 1, 10), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: nwAppnFwdLsCtrAddrErrBlus.setStatus('mandatory') nwAppnFwdLsCtrLenErrBlus = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 3, 2, 1, 1, 11), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: nwAppnFwdLsCtrLenErrBlus.setStatus('mandatory') nwAppnFwdLsCtrHdrErrBlus = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 3, 2, 1, 1, 12), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: nwAppnFwdLsCtrHdrErrBlus.setStatus('mandatory') nwAppnFwdLsCtrInBytes = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 3, 2, 1, 1, 13), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: nwAppnFwdLsCtrInBytes.setStatus('mandatory') nwAppnFwdLsCtrOutBytes = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 3, 2, 1, 1, 14), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: nwAppnFwdLsCtrOutBytes.setStatus('mandatory') nwAppnFwdLsCtrFwdBytes = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 3, 2, 1, 1, 15), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: nwAppnFwdLsCtrFwdBytes.setStatus('mandatory') nwAppnFwdLsCtrFilteredBytes = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 3, 2, 1, 1, 16), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: nwAppnFwdLsCtrFilteredBytes.setStatus('mandatory') nwAppnFwdLsCtrDiscardBytes = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 3, 2, 1, 1, 17), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: nwAppnFwdLsCtrDiscardBytes.setStatus('mandatory') nwAppnFwdLsCtrHostInBlus = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 3, 2, 1, 1, 18), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: nwAppnFwdLsCtrHostInBlus.setStatus('mandatory') nwAppnFwdLsCtrHostOutBlus = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 3, 2, 1, 1, 19), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: nwAppnFwdLsCtrHostOutBlus.setStatus('mandatory') nwAppnFwdLsCtrHostDiscardBlus = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 3, 2, 1, 1, 20), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: nwAppnFwdLsCtrHostDiscardBlus.setStatus('mandatory') nwAppnFwdLsCtrHostInBytes = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 3, 2, 1, 1, 21), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: nwAppnFwdLsCtrHostInBytes.setStatus('mandatory') nwAppnFwdLsCtrHostOutBytes = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 3, 2, 1, 1, 22), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: nwAppnFwdLsCtrHostOutBytes.setStatus('mandatory') nwAppnFwdLsCtrHostDiscardBytes = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 3, 2, 1, 1, 23), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: nwAppnFwdLsCtrHostDiscardBytes.setStatus('mandatory') nwAppnIsrAdminStatus = MibScalar((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 4, 2, 1, 1, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("other", 1), ("disable", 2), ("enable", 3)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: nwAppnIsrAdminStatus.setStatus('mandatory') nwAppnIsrOperStatus = MibScalar((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 4, 2, 1, 1, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5))).clone(namedValues=NamedValues(("other", 1), ("disabled", 2), ("enabled", 3), ("pendingDisable", 4), ("pendingEnable", 5)))).setMaxAccess("readonly") if mibBuilder.loadTexts: nwAppnIsrOperStatus.setStatus('mandatory') nwAppnIsrAdminReset = MibScalar((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 4, 2, 1, 1, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1))).clone(namedValues=NamedValues(("other", 1)))).setMaxAccess("readonly") if mibBuilder.loadTexts: nwAppnIsrAdminReset.setStatus('mandatory') nwAppnIsrOperationalTime = MibScalar((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 4, 2, 1, 1, 1, 4), TimeTicks()).setMaxAccess("readonly") if mibBuilder.loadTexts: nwAppnIsrOperationalTime.setStatus('mandatory') nwAppnIsrVersion = MibScalar((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 4, 2, 1, 1, 1, 5), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: nwAppnIsrVersion.setStatus('mandatory') nwAppnEventAdminStatus = MibScalar((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 10, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("other", 1), ("disabled", 2), ("enabled", 3)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: nwAppnEventAdminStatus.setStatus('mandatory') nwAppnEventMaxEntries = MibScalar((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 10, 1, 2), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: nwAppnEventMaxEntries.setStatus('mandatory') nwAppnEventTraceAll = MibScalar((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 10, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("other", 1), ("disabled", 2), ("enabled", 3)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: nwAppnEventTraceAll.setStatus('mandatory') nwAppnEventFilterTable = MibTable((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 10, 2, 1), ) if mibBuilder.loadTexts: nwAppnEventFilterTable.setStatus('mandatory') nwAppnEventFilterEntry = MibTableRow((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 10, 2, 1, 1), ).setIndexNames((0, "CTRON-APPN-MIB", "nwAppnEventFltrProtocol"), (0, "CTRON-APPN-MIB", "nwAppnEventFltrIfNum")) if mibBuilder.loadTexts: nwAppnEventFilterEntry.setStatus('mandatory') nwAppnEventFltrProtocol = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 10, 2, 1, 1, 1), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: nwAppnEventFltrProtocol.setStatus('mandatory') nwAppnEventFltrIfNum = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 10, 2, 1, 1, 2), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: nwAppnEventFltrIfNum.setStatus('mandatory') nwAppnEventFltrControl = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 10, 2, 1, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("other", 1), ("delete", 2), ("add", 3)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: nwAppnEventFltrControl.setStatus('mandatory') nwAppnEventFltrType = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 10, 2, 1, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 4, 8, 16, 32))).clone(namedValues=NamedValues(("misc", 1), ("timer", 2), ("rcv", 4), ("xmit", 8), ("event", 16), ("error", 32)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: nwAppnEventFltrType.setStatus('mandatory') nwAppnEventFltrSeverity = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 10, 2, 1, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("highest", 1), ("highmed", 2), ("highlow", 3)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: nwAppnEventFltrSeverity.setStatus('mandatory') nwAppnEventFltrAction = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 10, 2, 1, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("log", 1), ("trap", 2), ("logTrap", 3)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: nwAppnEventFltrAction.setStatus('mandatory') nwAppnEventTable = MibTable((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 10, 3, 1), ) if mibBuilder.loadTexts: nwAppnEventTable.setStatus('mandatory') nwAppnEventEntry = MibTableRow((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 10, 3, 1, 1), ).setIndexNames((0, "CTRON-APPN-MIB", "nwAppnEventNumber")) if mibBuilder.loadTexts: nwAppnEventEntry.setStatus('mandatory') nwAppnEventNumber = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 10, 3, 1, 1, 1), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: nwAppnEventNumber.setStatus('mandatory') nwAppnEventTime = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 10, 3, 1, 1, 2), TimeTicks()).setMaxAccess("readonly") if mibBuilder.loadTexts: nwAppnEventTime.setStatus('mandatory') nwAppnEventType = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 10, 3, 1, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 4, 8, 16, 32, 64))).clone(namedValues=NamedValues(("misc", 1), ("timer", 2), ("rcv", 4), ("xmit", 8), ("event", 16), ("diags", 32), ("error", 64)))).setMaxAccess("readonly") if mibBuilder.loadTexts: nwAppnEventType.setStatus('mandatory') nwAppnEventSeverity = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 10, 3, 1, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("highest", 1), ("highmed", 2), ("highlow", 3)))).setMaxAccess("readonly") if mibBuilder.loadTexts: nwAppnEventSeverity.setStatus('mandatory') nwAppnEventProtocol = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 10, 3, 1, 1, 5), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: nwAppnEventProtocol.setStatus('mandatory') nwAppnEventIfNum = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 10, 3, 1, 1, 6), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: nwAppnEventIfNum.setStatus('mandatory') nwAppnEventTextString = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 10, 3, 1, 1, 7), OctetString()).setMaxAccess("readonly") if mibBuilder.loadTexts: nwAppnEventTextString.setStatus('mandatory') mibBuilder.exportSymbols("CTRON-APPN-MIB", nwAppnFwdIfCtrHostInMus=nwAppnFwdIfCtrHostInMus, nwAppnComponents=nwAppnComponents, nwAppnIfCnPortTable=nwAppnIfCnPortTable, nwAppnIfCnTgEffectCap=nwAppnIfCnTgEffectCap, nwAppnSysTreeUseLimit=nwAppnSysTreeUseLimit, nwAppnIfCnPtFqName=nwAppnIfCnPtFqName, nwAppnFwdLsUsrDef2=nwAppnFwdLsUsrDef2, nwAppnEventFltrType=nwAppnEventFltrType, nwAppnSysRtAddResist=nwAppnSysRtAddResist, nwAppnIsrCounters=nwAppnIsrCounters, nwAppnFwdIfCtrFwdMus=nwAppnFwdIfCtrFwdMus, nwAppnSysConfig=nwAppnSysConfig, nwAppnFwdCtrOutBytes=nwAppnFwdCtrOutBytes, nwAppnTopology=nwAppnTopology, nwAppnEventLogTable=nwAppnEventLogTable, nwAppnEventFilterTable=nwAppnEventFilterTable, nwAppnIsrAdminReset=nwAppnIsrAdminReset, nwAppnFwdCtrOutMus=nwAppnFwdCtrOutMus, nwAppnFwdLsEffectCap=nwAppnFwdLsEffectCap, nwAppnEventTable=nwAppnEventTable, nwAppnIsrIfConfig=nwAppnIsrIfConfig, nwAppnExtIfSsap=nwAppnExtIfSsap, nwAppnFwdCtrInMus=nwAppnFwdCtrInMus, nwAppnFwdIfCacheHits=nwAppnFwdIfCacheHits, nwAppnFwdLsOperationalTime=nwAppnFwdLsOperationalTime, nwAppnMibs=nwAppnMibs, nwAppnEventTraceAll=nwAppnEventTraceAll, nwAppnExtIfDfltUsrDef3=nwAppnExtIfDfltUsrDef3, nwAppnSysVersion=nwAppnSysVersion, nwAppnFwdIfTable=nwAppnFwdIfTable, nwAppnSysMaxTdmTGs=nwAppnSysMaxTdmTGs, nwAppnIfCn=nwAppnIfCn, nwAppnSysCpAlias=nwAppnSysCpAlias, nwAppnFwdIfCtrFilteredBytes=nwAppnFwdIfCtrFilteredBytes, nwAppnFwdLsSscpSession=nwAppnFwdLsSscpSession, nwAppnSysIsrMaxRuSize=nwAppnSysIsrMaxRuSize, nwAppnFwdIfAdminStatus=nwAppnFwdIfAdminStatus, nwAppnFwdCtrAddrErrMus=nwAppnFwdCtrAddrErrMus, nwAppnFwdLsEntry=nwAppnFwdLsEntry, nwAppnFwdLsCtrFwdBytes=nwAppnFwdLsCtrFwdBytes, nwAppnFwdIfCtrDiscardMus=nwAppnFwdIfCtrDiscardMus, nwAppnFwdLsPuName=nwAppnFwdLsPuName, nwAppnFwdLsCtrHostOutBytes=nwAppnFwdLsCtrHostOutBytes, nwAppnFwdLsUsrDef1=nwAppnFwdLsUsrDef1, nwAppnFwdCtrHostInBytes=nwAppnFwdCtrHostInBytes, nwAppnSysRouterId=nwAppnSysRouterId, nwAppnSysAdminStatus=nwAppnSysAdminStatus, nwAppnFwdCounters=nwAppnFwdCounters, nwAppnFwdIfCtrIfIndex=nwAppnFwdIfCtrIfIndex, nwAppnFwdLsTrgtPacingCount=nwAppnFwdLsTrgtPacingCount, nwAppnSysStopType=nwAppnSysStopType, nwAppnExtEntry=nwAppnExtEntry, nwAppnFwdLsStopType=nwAppnFwdLsStopType, nwAppnSysAdminReset=nwAppnSysAdminReset, nwAppnFwdIfCacheEntries=nwAppnFwdIfCacheEntries, nwAppnExtIfDfltUsrDef2=nwAppnExtIfDfltUsrDef2, nwAppnFwdLsIdNum=nwAppnFwdLsIdNum, nwAppnEventAdminStatus=nwAppnEventAdminStatus, nwAppnFwdIfConfig=nwAppnFwdIfConfig, nwAppnFwdLsDsap=nwAppnFwdLsDsap, nwAppnFwdLsCtrFilteredBytes=nwAppnFwdLsCtrFilteredBytes, nwAppnIfCnTgByteCost=nwAppnIfCnTgByteCost, nwAppnFwdIfOperStatus=nwAppnFwdIfOperStatus, nwAppnMibRevText=nwAppnMibRevText, nwAppnIfCnTgConnectCost=nwAppnIfCnTgConnectCost, nwAppnSysMaxTdmNodes=nwAppnSysMaxTdmNodes, nwAppnFwdCtrFilteredMus=nwAppnFwdCtrFilteredMus, nwAppnFwdLsCtrOutBlus=nwAppnFwdLsCtrOutBlus, nwAppnFwdIfCtrHostOutMus=nwAppnFwdIfCtrHostOutMus, nwAppnExtIfDfltTargetPacing=nwAppnExtIfDfltTargetPacing, nwAppnFwdLsCtrAddrErrBlus=nwAppnFwdLsCtrAddrErrBlus, nwAppnFwdIfCtrEntry=nwAppnFwdIfCtrEntry, nwAppnEventMaxEntries=nwAppnEventMaxEntries, nwAppnIfCnPortEntry=nwAppnIfCnPortEntry, nwAppnExtIfMaxRBtuSize=nwAppnExtIfMaxRBtuSize, nwAppnEventIfNum=nwAppnEventIfNum, nwAppnIsrFilters=nwAppnIsrFilters, nwAppnFwdIfControl=nwAppnFwdIfControl, nwAppnFwdLsCtrAdminStatus=nwAppnFwdLsCtrAdminStatus, nwAppnFwdSystem=nwAppnFwdSystem, nwAppnFwdCtrHostOutBytes=nwAppnFwdCtrHostOutBytes, nwAppnFwdCtrDiscardMus=nwAppnFwdCtrDiscardMus, nwAppnIfCnTgUsrDef2=nwAppnIfCnTgUsrDef2, nwAppnFwdIfCacheMisses=nwAppnFwdIfCacheMisses, nwAppnFwdIfCtrOutMus=nwAppnFwdIfCtrOutMus, nwAppnFwdLsOperStatus=nwAppnFwdLsOperStatus, nwAppnFwdIfCtrTable=nwAppnFwdIfCtrTable, nwAppnIsrSystem=nwAppnIsrSystem, nwAppnFwdLsCpCpSessSupp=nwAppnFwdLsCpCpSessSupp, nwAppnExtIfDfltConnectCost=nwAppnExtIfDfltConnectCost, nwAppnSysRegCds=nwAppnSysRegCds, nwAppnIfCnTgSecurity=nwAppnIfCnTgSecurity, nwAppnEventNumber=nwAppnEventNumber, nwAppnExtIfDfltUsrDef1=nwAppnExtIfDfltUsrDef1, nwAppnExtIfNonActXidXchgLimit=nwAppnExtIfNonActXidXchgLimit, nwAppnEventFltrIfNum=nwAppnEventFltrIfNum, nwAppnSysIsrLowerThresh=nwAppnSysIsrLowerThresh, nwAppnSysDirCacheSize=nwAppnSysDirCacheSize, nwAppnHostsSystem=nwAppnHostsSystem, nwAppnFwdLsCtrFwdBlus=nwAppnFwdLsCtrFwdBlus, nwAppnFwdCtrAdminStatus=nwAppnFwdCtrAdminStatus, nwAppnExtIfDfltSecurity=nwAppnExtIfDfltSecurity, nwAppnFwdLsAdjCpType=nwAppnFwdLsAdjCpType, nwAppnFwdLsCtrHostInBytes=nwAppnFwdLsCtrHostInBytes, nwAppnEventLogFilterTable=nwAppnEventLogFilterTable, nwAppnSysIsrRcvPaceWind=nwAppnSysIsrRcvPaceWind, nwAppnFwdCtrHostDiscardMus=nwAppnFwdCtrHostDiscardMus, nwAppnExtIfActXidXchgLimit=nwAppnExtIfActXidXchgLimit, nwAppnEventType=nwAppnEventType, nwAppnFwdIfCtrHdrErrMus=nwAppnFwdIfCtrHdrErrMus, nwAppnIsrIfCounters=nwAppnIsrIfCounters, nwAppnHostsInterfaces=nwAppnHostsInterfaces, nwAppnFwdIfCtrHostDiscardMus=nwAppnFwdIfCtrHostDiscardMus, nwAppnEventFilterEntry=nwAppnEventFilterEntry, nwAppnIsrConfig=nwAppnIsrConfig, nwAppnFwdLsBlockNum=nwAppnFwdLsBlockNum, nwAppnSysMaxDirEntries=nwAppnSysMaxDirEntries, nwAppnFwdCtrFwdMus=nwAppnFwdCtrFwdMus, nwAppnFwdIfCtrHostOutBytes=nwAppnFwdIfCtrHostOutBytes, nwAppnFwdInterfaces=nwAppnFwdInterfaces, nwAppnFwdIfCounters=nwAppnFwdIfCounters, nwAppnFwdLsByteCost=nwAppnFwdLsByteCost, nwAppnFwdLsBackLvlLenEN=nwAppnFwdLsBackLvlLenEN, nwAppnIfCnTgUsrDef1=nwAppnIfCnTgUsrDef1, nwAppnSysLocateTimeout=nwAppnSysLocateTimeout, nwAppnFwdCtrReset=nwAppnFwdCtrReset, nwAppnIfCnTgUsrDef3=nwAppnIfCnTgUsrDef3, nwAppnEventFltrAction=nwAppnEventFltrAction, nwAppnExtIfDfltPropDelay=nwAppnExtIfDfltPropDelay, nwAppnFwdLsAdminStatus=nwAppnFwdLsAdminStatus, nwAppnRedirector=nwAppnRedirector, nwAppnFwdLsCtrInBlus=nwAppnFwdLsCtrInBlus, nwAppnIfCnTgCharTable=nwAppnIfCnTgCharTable, nwAppnIsrDatabase=nwAppnIsrDatabase, nwAppnFwdCtrFilteredBytes=nwAppnFwdCtrFilteredBytes, nwAppnExtIfOutbLsActLim=nwAppnExtIfOutbLsActLim, nwAppnFwdIfCtrOperationalTime=nwAppnFwdIfCtrOperationalTime, nwAppnSysTreeSize=nwAppnSysTreeSize, nwAppnFwdLsCounters=nwAppnFwdLsCounters, nwAppnEventFltrControl=nwAppnEventFltrControl, nwAppnFwdCtrHostInMus=nwAppnFwdCtrHostInMus, nwAppnFwdLsNumActiveSession=nwAppnFwdLsNumActiveSession, nwAppnFwdIfCacheControl=nwAppnFwdIfCacheControl, nwAppnExtIfInbLsActLim=nwAppnExtIfInbLsActLim, nwAppnFwdIfCtrFwdBytes=nwAppnFwdIfCtrFwdBytes, nwAppnFwdIfCtrHostInBytes=nwAppnFwdIfCtrHostInBytes, nwAppnSysLuName=nwAppnSysLuName, nwAppnDistanceVector=nwAppnDistanceVector, nwAppnIsrInterfaces=nwAppnIsrInterfaces, nwAppnFwdLsCtrHostOutBlus=nwAppnFwdLsCtrHostOutBlus, nwAppnFwdLsPortName=nwAppnFwdLsPortName, nwAppnRouter=nwAppnRouter, nwAppnEvent=nwAppnEvent, nwAppnSysOperationalTime=nwAppnSysOperationalTime, nwAppnFwdLsCtrEntry=nwAppnFwdLsCtrEntry, nwAppnExtIfDfltEffectCap=nwAppnExtIfDfltEffectCap, nwAppnFwdCtrHostOutMus=nwAppnFwdCtrHostOutMus, nwAppnFwdIfCtrInBytes=nwAppnFwdIfCtrInBytes, nwAppnFwdIfOperationalTime=nwAppnFwdIfOperationalTime, nwAppnIfCnPtName=nwAppnIfCnPtName, nwAppnFwdIfAclIdentifier=nwAppnFwdIfAclIdentifier, nwAppnFwdLsDestAddr=nwAppnFwdLsDestAddr, nwAppnFwdLsTable=nwAppnFwdLsTable, nwAppnFwdLsCtrOutBytes=nwAppnFwdLsCtrOutBytes, nwAppnFwdLsPortNbr=nwAppnFwdLsPortNbr, nwAppnFwdIfCtrReset=nwAppnFwdIfCtrReset, nwAppnIsrOperStatus=nwAppnIsrOperStatus, nwAppnWorkGroup=nwAppnWorkGroup, nwAppnFwdCtrInBytes=nwAppnFwdCtrInBytes, nwAppnExtIfPortType=nwAppnExtIfPortType, nwAppnFwdLsMaxSendBtu=nwAppnFwdLsMaxSendBtu, nwAppnFwdLinks=nwAppnFwdLinks, nwAppnIsr=nwAppnIsr, nwAppnFwdLsCtrFilteredBlus=nwAppnFwdLsCtrFilteredBlus, nwAppnFwdLsCtrHostDiscardBytes=nwAppnFwdLsCtrHostDiscardBytes, nwAppnFwdLsCtrHdrErrBlus=nwAppnFwdLsCtrHdrErrBlus, nwAppnSysLuControl=nwAppnSysLuControl, nwAppnFwdLsCtrLsName=nwAppnFwdLsCtrLsName, nwAppnExtensionTable=nwAppnExtensionTable, nwAppnIfCnTgPropDelay=nwAppnIfCnTgPropDelay, nwAppnExtIfLimitedRsrc=nwAppnExtIfLimitedRsrc, nwAppnFwdIfCtrHostDiscardBytes=nwAppnFwdIfCtrHostDiscardBytes, nwAppnEventTextString=nwAppnEventTextString, nwAppnIsrVersion=nwAppnIsrVersion, nwAppnEventLogConfig=nwAppnEventLogConfig, nwAppnFwdIfForwarding=nwAppnFwdIfForwarding, nwAppnFwdIfCtrFilteredMus=nwAppnFwdIfCtrFilteredMus, nwAppnSysCfgLocalNode=nwAppnSysCfgLocalNode, nwAppnFwdLsUsrDef3=nwAppnFwdLsUsrDef3, nwAppnLinkState=nwAppnLinkState, nwAppnExtIfAddress=nwAppnExtIfAddress, nwAppnIfCnTgCharEntry=nwAppnIfCnTgCharEntry, nwAppnSystem=nwAppnSystem, nwAppnExtIfDfltByteCost=nwAppnExtIfDfltByteCost, nwAppnFwdLsAdjCpName=nwAppnFwdLsAdjCpName, nwAppnFwdLsCtrDiscardBlus=nwAppnFwdLsCtrDiscardBlus, nwAppnSysMaxLocates=nwAppnSysMaxLocates, nwAppnExtIfDfltMaxSBtuSize=nwAppnExtIfDfltMaxSBtuSize, nwAppnFwdIfCtrOutBytes=nwAppnFwdIfCtrOutBytes, nwAppnFwdLsCtrInBytes=nwAppnFwdLsCtrInBytes, nwAppnFwdLsCtrReset=nwAppnFwdLsCtrReset, nwAppnFwdLsConfig=nwAppnFwdLsConfig, nwAppnFwdIfAclStatus=nwAppnFwdIfAclStatus, nwAppnFwdLsCtrLenErrBlus=nwAppnFwdLsCtrLenErrBlus, nwAppnForwarding=nwAppnForwarding, nwAppnExtIfMaxIfrmRcvd=nwAppnExtIfMaxIfrmRcvd, nwAppnSysLuEntry=nwAppnSysLuEntry, nwAppnExtIfCpCpSupp=nwAppnExtIfCpCpSupp, nwAppnFwdCtrLenErrMus=nwAppnFwdCtrLenErrMus, nwAppnFwdLsCtrTable=nwAppnFwdLsCtrTable, nwAppnFwdIfMtu=nwAppnFwdIfMtu, nwAppnFwdLsConnectCost=nwAppnFwdLsConnectCost, nwAppnIsrOperationalTime=nwAppnIsrOperationalTime, nwAppnFwdCtrFwdBytes=nwAppnFwdCtrFwdBytes, nwAppnFwdLsCtrHostDiscardBlus=nwAppnFwdLsCtrHostDiscardBlus, nwAppnEventTime=nwAppnEventTime, nwAppnEventProtocol=nwAppnEventProtocol, nwAppnEventFltrProtocol=nwAppnEventFltrProtocol, nwAppnSysNodeType=nwAppnSysNodeType, nwAppnSysBlockNum=nwAppnSysBlockNum, nwAppnFwdIfCtrInMus=nwAppnFwdIfCtrInMus, nwAppnIsrAdminStatus=nwAppnIsrAdminStatus, nwAppnFwdLsControl=nwAppnFwdLsControl, nwAppnFwdLsCtrHostInBlus=nwAppnFwdLsCtrHostInBlus, nwAppnSysIsrUpperThresh=nwAppnSysIsrUpperThresh, nwAppnIfCnPtControl=nwAppnIfCnPtControl, nwAppnFwdCtrHdrErrMus=nwAppnFwdCtrHdrErrMus, nwAppnFwdIfCtrDiscardBytes=nwAppnFwdIfCtrDiscardBytes, nwAppnSysLuTable=nwAppnSysLuTable, nwAppnExtIfLsXmitRcvCap=nwAppnExtIfLsXmitRcvCap, nwAppnSysCpName=nwAppnSysCpName, nwAppnSysMdsSendQSize=nwAppnSysMdsSendQSize, nwAppnFib=nwAppnFib, nwAppnFwdCtrDiscardBytes=nwAppnFwdCtrDiscardBytes, nwAppnFwdLsSecurity=nwAppnFwdLsSecurity, nwAppnFwdLsCtrOperationalTime=nwAppnFwdLsCtrOperationalTime, nwAppnExtIfDlcType=nwAppnExtIfDlcType, nwAppnIfCnTgFqName=nwAppnIfCnTgFqName, nwAppnFwdLsAutoActSupport=nwAppnFwdLsAutoActSupport, nwAppnFwdIfCtrAddrErrMus=nwAppnFwdIfCtrAddrErrMus, nwAppnFwdIfIndex=nwAppnFwdIfIndex, nwAppnEventEntry=nwAppnEventEntry, nwAppnSysOperStatus=nwAppnSysOperStatus, nwAppnFwdCtrOperationalTime=nwAppnFwdCtrOperationalTime, nwAppnFwdLsLimitedRsrc=nwAppnFwdLsLimitedRsrc, nwAppnFwdLsPropDelay=nwAppnFwdLsPropDelay, nwAppnFwdIfCtrLenErrMus=nwAppnFwdIfCtrLenErrMus, nwAppnFwdLsName=nwAppnFwdLsName, nwAppnSysIdNum=nwAppnSysIdNum, nwAppnSysCfgTables=nwAppnSysCfgTables, nwAppnSysModeCosMap=nwAppnSysModeCosMap, nwAppnFwdLsCtrDiscardBytes=nwAppnFwdLsCtrDiscardBytes, nwAppnFwdCtrHostDiscardBytes=nwAppnFwdCtrHostDiscardBytes, nwAppnEventFltrSeverity=nwAppnEventFltrSeverity) mibBuilder.exportSymbols("CTRON-APPN-MIB", nwAppnSysMaxIsrSessions=nwAppnSysMaxIsrSessions, nwAppnExtIfLocalLsRole=nwAppnExtIfLocalLsRole, nwAppnAccessControl=nwAppnAccessControl, nwAppnSysCosSize=nwAppnSysCosSize, nwAppnFwdIfEntry=nwAppnFwdIfEntry, nwAppnFwdIfCtrAdminStatus=nwAppnFwdIfCtrAdminStatus, nwAppnEventSeverity=nwAppnEventSeverity, nwAppnExtIfStopType=nwAppnExtIfStopType, nwAppnSysMdsSupport=nwAppnSysMdsSupport, nwAppnFwdIfFrameType=nwAppnFwdIfFrameType, nwAppnExtIfIndex=nwAppnExtIfIndex, nwAppnExtIfPortName=nwAppnExtIfPortName, nwAppnFwdLsdynamicLs=nwAppnFwdLsdynamicLs, nwAppnExtIfTotLsActLim=nwAppnExtIfTotLsActLim, nwAppnEndSystems=nwAppnEndSystems, nwAppnSysAdministration=nwAppnSysAdministration, nwAppnFilters=nwAppnFilters)
(object_identifier, octet_string, integer) = mibBuilder.importSymbols('ASN1', 'ObjectIdentifier', 'OctetString', 'Integer') (named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues') (value_range_constraint, single_value_constraint, constraints_intersection, value_size_constraint, constraints_union) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'ValueRangeConstraint', 'SingleValueConstraint', 'ConstraintsIntersection', 'ValueSizeConstraint', 'ConstraintsUnion') (nw_rtr_proto_suites,) = mibBuilder.importSymbols('ROUTER-OIDS', 'nwRtrProtoSuites') (notification_group, module_compliance) = mibBuilder.importSymbols('SNMPv2-CONF', 'NotificationGroup', 'ModuleCompliance') (unsigned32, iso, ip_address, mib_scalar, mib_table, mib_table_row, mib_table_column, notification_type, bits, time_ticks, mib_identifier, object_identity, module_identity, integer32, gauge32, counter32, counter64) = mibBuilder.importSymbols('SNMPv2-SMI', 'Unsigned32', 'iso', 'IpAddress', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn', 'NotificationType', 'Bits', 'TimeTicks', 'MibIdentifier', 'ObjectIdentity', 'ModuleIdentity', 'Integer32', 'Gauge32', 'Counter32', 'Counter64') (display_string, textual_convention) = mibBuilder.importSymbols('SNMPv2-TC', 'DisplayString', 'TextualConvention') nw_appn_router = mib_identifier((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5)) nw_appn_mibs = mib_identifier((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 1)) nw_appn_components = mib_identifier((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2)) nw_appn_system = mib_identifier((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 1)) nw_appn_forwarding = mib_identifier((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2)) nw_appn_topology = mib_identifier((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 4)) nw_appn_fib = mib_identifier((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 5)) nw_appn_end_systems = mib_identifier((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 6)) nw_appn_access_control = mib_identifier((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 7)) nw_appn_filters = mib_identifier((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 8)) nw_appn_redirector = mib_identifier((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 9)) nw_appn_event = mib_identifier((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 10)) nw_appn_work_group = mib_identifier((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 11)) nw_appn_sys_config = mib_identifier((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 1, 1)) nw_appn_sys_administration = mib_identifier((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 1, 2)) nw_appn_sys_cfg_local_node = mib_identifier((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 1, 1, 2)) nw_appn_sys_cfg_tables = mib_identifier((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 1, 1, 3)) nw_appn_fwd_system = mib_identifier((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 1)) nw_appn_fwd_interfaces = mib_identifier((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2)) nw_appn_fwd_links = mib_identifier((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 3)) nw_appn_fwd_counters = mib_identifier((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 1, 1)) nw_appn_fwd_if_config = mib_identifier((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 1)) nw_appn_if_cn = mib_identifier((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 1, 3)) nw_appn_fwd_if_counters = mib_identifier((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 2)) nw_appn_fwd_ls_config = mib_identifier((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 3, 1)) nw_appn_fwd_ls_counters = mib_identifier((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 3, 2)) nw_appn_distance_vector = mib_identifier((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 4, 1)) nw_appn_link_state = mib_identifier((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 4, 2)) nw_appn_isr = mib_identifier((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 4, 2, 1)) nw_appn_isr_system = mib_identifier((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 4, 2, 1, 1)) nw_appn_isr_interfaces = mib_identifier((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 4, 2, 1, 2)) nw_appn_isr_database = mib_identifier((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 4, 2, 1, 3)) nw_appn_isr_filters = mib_identifier((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 4, 2, 1, 4)) nw_appn_isr_config = mib_identifier((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 4, 2, 1, 1, 1)) nw_appn_isr_counters = mib_identifier((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 4, 2, 1, 1, 2)) nw_appn_isr_if_config = mib_identifier((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 4, 2, 1, 2, 1)) nw_appn_isr_if_counters = mib_identifier((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 4, 2, 1, 2, 2)) nw_appn_hosts_system = mib_identifier((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 6, 1)) nw_appn_hosts_interfaces = mib_identifier((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 6, 2)) nw_appn_event_log_config = mib_identifier((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 10, 1)) nw_appn_event_log_filter_table = mib_identifier((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 10, 2)) nw_appn_event_log_table = mib_identifier((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 10, 3)) nw_appn_mib_rev_text = mib_scalar((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 1, 1), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: nwAppnMibRevText.setStatus('mandatory') nw_appn_sys_router_id = mib_scalar((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 1, 1, 1), display_string().subtype(subtypeSpec=value_size_constraint(3, 17))).setMaxAccess('readwrite') if mibBuilder.loadTexts: nwAppnSysRouterId.setStatus('mandatory') nw_appn_sys_node_type = mib_scalar((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 1, 1, 2, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1))).clone(namedValues=named_values(('networknode', 1))).clone('networknode')).setMaxAccess('readonly') if mibBuilder.loadTexts: nwAppnSysNodeType.setStatus('mandatory') nw_appn_sys_cp_alias = mib_scalar((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 1, 1, 2, 2), display_string().subtype(subtypeSpec=value_size_constraint(1, 8))).setMaxAccess('readwrite') if mibBuilder.loadTexts: nwAppnSysCpAlias.setStatus('mandatory') nw_appn_sys_mode_cos_map = mib_scalar((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 1, 1, 2, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('yes', 1), ('no', 2))).clone('yes')).setMaxAccess('readwrite') if mibBuilder.loadTexts: nwAppnSysModeCosMap.setStatus('mandatory') nw_appn_sys_mds_support = mib_scalar((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 1, 1, 2, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('yes', 1), ('no', 2))).clone('yes')).setMaxAccess('readwrite') if mibBuilder.loadTexts: nwAppnSysMdsSupport.setStatus('mandatory') nw_appn_sys_max_locates = mib_scalar((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 1, 1, 2, 6), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535)).clone(10)).setMaxAccess('readwrite') if mibBuilder.loadTexts: nwAppnSysMaxLocates.setStatus('mandatory') nw_appn_sys_dir_cache_size = mib_scalar((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 1, 1, 2, 7), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535)).clone(255)).setMaxAccess('readwrite') if mibBuilder.loadTexts: nwAppnSysDirCacheSize.setStatus('mandatory') nw_appn_sys_max_dir_entries = mib_scalar((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 1, 1, 2, 8), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: nwAppnSysMaxDirEntries.setStatus('mandatory') nw_appn_sys_locate_timeout = mib_scalar((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 1, 1, 2, 9), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: nwAppnSysLocateTimeout.setStatus('mandatory') nw_appn_sys_reg_cds = mib_scalar((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 1, 1, 2, 10), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('yes', 1), ('no', 2))).clone('yes')).setMaxAccess('readwrite') if mibBuilder.loadTexts: nwAppnSysRegCds.setStatus('mandatory') nw_appn_sys_mds_send_q_size = mib_scalar((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 1, 1, 2, 11), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535)).clone(100)).setMaxAccess('readwrite') if mibBuilder.loadTexts: nwAppnSysMdsSendQSize.setStatus('mandatory') nw_appn_sys_cos_size = mib_scalar((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 1, 1, 2, 12), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535)).clone(16)).setMaxAccess('readwrite') if mibBuilder.loadTexts: nwAppnSysCosSize.setStatus('mandatory') nw_appn_sys_tree_size = mib_scalar((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 1, 1, 2, 13), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535)).clone(40)).setMaxAccess('readwrite') if mibBuilder.loadTexts: nwAppnSysTreeSize.setStatus('mandatory') nw_appn_sys_tree_use_limit = mib_scalar((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 1, 1, 2, 14), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535)).clone(40)).setMaxAccess('readwrite') if mibBuilder.loadTexts: nwAppnSysTreeUseLimit.setStatus('mandatory') nw_appn_sys_max_tdm_nodes = mib_scalar((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 1, 1, 2, 15), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: nwAppnSysMaxTdmNodes.setStatus('mandatory') nw_appn_sys_max_tdm_t_gs = mib_scalar((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 1, 1, 2, 16), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: nwAppnSysMaxTdmTGs.setStatus('mandatory') nw_appn_sys_max_isr_sessions = mib_scalar((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 1, 1, 2, 18), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535)).clone(1000)).setMaxAccess('readwrite') if mibBuilder.loadTexts: nwAppnSysMaxIsrSessions.setStatus('mandatory') nw_appn_sys_isr_upper_thresh = mib_scalar((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 1, 1, 2, 19), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535)).clone(900)).setMaxAccess('readwrite') if mibBuilder.loadTexts: nwAppnSysIsrUpperThresh.setStatus('mandatory') nw_appn_sys_isr_lower_thresh = mib_scalar((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 1, 1, 2, 20), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535)).clone(800)).setMaxAccess('readwrite') if mibBuilder.loadTexts: nwAppnSysIsrLowerThresh.setStatus('mandatory') nw_appn_sys_isr_max_ru_size = mib_scalar((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 1, 1, 2, 21), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535)).clone(1024)).setMaxAccess('readwrite') if mibBuilder.loadTexts: nwAppnSysIsrMaxRuSize.setStatus('mandatory') nw_appn_sys_isr_rcv_pace_wind = mib_scalar((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 1, 1, 2, 22), integer32().subtype(subtypeSpec=value_range_constraint(1, 63)).clone(8)).setMaxAccess('readwrite') if mibBuilder.loadTexts: nwAppnSysIsrRcvPaceWind.setStatus('mandatory') nw_appn_sys_rt_add_resist = mib_scalar((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 1, 1, 2, 23), integer32().subtype(subtypeSpec=value_range_constraint(0, 255))).setMaxAccess('readwrite') if mibBuilder.loadTexts: nwAppnSysRtAddResist.setStatus('mandatory') nw_appn_sys_stop_type = mib_scalar((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 1, 1, 2, 24), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4))).clone(namedValues=named_values(('abort', 1), ('immediate', 2), ('quiesce', 3), ('quiesceIsr', 4))).clone('quiesceIsr')).setMaxAccess('readwrite') if mibBuilder.loadTexts: nwAppnSysStopType.setStatus('mandatory') nw_appn_sys_block_num = mib_scalar((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 1, 1, 2, 25), display_string().subtype(subtypeSpec=value_size_constraint(3, 3)).setFixedLength(3)).setMaxAccess('readwrite') if mibBuilder.loadTexts: nwAppnSysBlockNum.setStatus('mandatory') nw_appn_sys_id_num = mib_scalar((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 1, 1, 2, 26), display_string().subtype(subtypeSpec=value_size_constraint(5, 5)).setFixedLength(5)).setMaxAccess('readwrite') if mibBuilder.loadTexts: nwAppnSysIdNum.setStatus('mandatory') nw_appn_sys_lu_table = mib_table((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 1, 1, 3, 1)) if mibBuilder.loadTexts: nwAppnSysLuTable.setStatus('mandatory') nw_appn_sys_lu_entry = mib_table_row((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 1, 1, 3, 1, 1)).setIndexNames((0, 'CTRON-APPN-MIB', 'nwAppnSysCpName'), (0, 'CTRON-APPN-MIB', 'nwAppnSysLuName')) if mibBuilder.loadTexts: nwAppnSysLuEntry.setStatus('mandatory') nw_appn_sys_cp_name = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 1, 1, 3, 1, 1, 1), display_string().subtype(subtypeSpec=value_size_constraint(3, 17))).setMaxAccess('readwrite') if mibBuilder.loadTexts: nwAppnSysCpName.setStatus('mandatory') nw_appn_sys_lu_name = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 1, 1, 3, 1, 1, 2), display_string().subtype(subtypeSpec=value_size_constraint(1, 8))).setMaxAccess('readwrite') if mibBuilder.loadTexts: nwAppnSysLuName.setStatus('mandatory') nw_appn_sys_lu_control = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 1, 1, 3, 1, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 3))).clone(namedValues=named_values(('other', 1), ('delete', 3)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: nwAppnSysLuControl.setStatus('mandatory') nw_appn_sys_admin_status = mib_scalar((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 1, 2, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('other', 1), ('disable', 2), ('enabled', 3)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: nwAppnSysAdminStatus.setStatus('mandatory') nw_appn_sys_oper_status = mib_scalar((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 1, 2, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5))).clone(namedValues=named_values(('other', 1), ('disabled', 2), ('enabled', 3), ('pendingDisable', 4), ('pendingEnable', 5)))).setMaxAccess('readonly') if mibBuilder.loadTexts: nwAppnSysOperStatus.setStatus('mandatory') nw_appn_sys_admin_reset = mib_scalar((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 1, 2, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('other', 1), ('reset', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: nwAppnSysAdminReset.setStatus('mandatory') nw_appn_sys_operational_time = mib_scalar((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 1, 2, 4), time_ticks()).setMaxAccess('readonly') if mibBuilder.loadTexts: nwAppnSysOperationalTime.setStatus('mandatory') nw_appn_sys_version = mib_scalar((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 1, 2, 5), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: nwAppnSysVersion.setStatus('mandatory') nw_appn_fwd_ctr_admin_status = mib_scalar((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 1, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('other', 1), ('disabled', 2), ('enabled', 3)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: nwAppnFwdCtrAdminStatus.setStatus('mandatory') nw_appn_fwd_ctr_reset = mib_scalar((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 1, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('other', 1), ('reset', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: nwAppnFwdCtrReset.setStatus('mandatory') nw_appn_fwd_ctr_operational_time = mib_scalar((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 1, 1, 3), time_ticks()).setMaxAccess('readonly') if mibBuilder.loadTexts: nwAppnFwdCtrOperationalTime.setStatus('mandatory') nw_appn_fwd_ctr_in_mus = mib_scalar((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 1, 1, 4), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: nwAppnFwdCtrInMus.setStatus('mandatory') nw_appn_fwd_ctr_out_mus = mib_scalar((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 1, 1, 5), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: nwAppnFwdCtrOutMus.setStatus('mandatory') nw_appn_fwd_ctr_fwd_mus = mib_scalar((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 1, 1, 6), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: nwAppnFwdCtrFwdMus.setStatus('mandatory') nw_appn_fwd_ctr_filtered_mus = mib_scalar((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 1, 1, 7), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: nwAppnFwdCtrFilteredMus.setStatus('mandatory') nw_appn_fwd_ctr_discard_mus = mib_scalar((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 1, 1, 8), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: nwAppnFwdCtrDiscardMus.setStatus('mandatory') nw_appn_fwd_ctr_addr_err_mus = mib_scalar((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 1, 1, 9), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: nwAppnFwdCtrAddrErrMus.setStatus('mandatory') nw_appn_fwd_ctr_len_err_mus = mib_scalar((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 1, 1, 10), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: nwAppnFwdCtrLenErrMus.setStatus('mandatory') nw_appn_fwd_ctr_hdr_err_mus = mib_scalar((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 1, 1, 11), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: nwAppnFwdCtrHdrErrMus.setStatus('mandatory') nw_appn_fwd_ctr_in_bytes = mib_scalar((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 1, 1, 12), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: nwAppnFwdCtrInBytes.setStatus('mandatory') nw_appn_fwd_ctr_out_bytes = mib_scalar((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 1, 1, 13), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: nwAppnFwdCtrOutBytes.setStatus('mandatory') nw_appn_fwd_ctr_fwd_bytes = mib_scalar((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 1, 1, 14), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: nwAppnFwdCtrFwdBytes.setStatus('mandatory') nw_appn_fwd_ctr_filtered_bytes = mib_scalar((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 1, 1, 15), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: nwAppnFwdCtrFilteredBytes.setStatus('mandatory') nw_appn_fwd_ctr_discard_bytes = mib_scalar((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 1, 1, 16), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: nwAppnFwdCtrDiscardBytes.setStatus('mandatory') nw_appn_fwd_ctr_host_in_mus = mib_scalar((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 1, 1, 17), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: nwAppnFwdCtrHostInMus.setStatus('mandatory') nw_appn_fwd_ctr_host_out_mus = mib_scalar((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 1, 1, 18), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: nwAppnFwdCtrHostOutMus.setStatus('mandatory') nw_appn_fwd_ctr_host_discard_mus = mib_scalar((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 1, 1, 19), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: nwAppnFwdCtrHostDiscardMus.setStatus('mandatory') nw_appn_fwd_ctr_host_in_bytes = mib_scalar((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 1, 1, 20), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: nwAppnFwdCtrHostInBytes.setStatus('mandatory') nw_appn_fwd_ctr_host_out_bytes = mib_scalar((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 1, 1, 21), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: nwAppnFwdCtrHostOutBytes.setStatus('mandatory') nw_appn_fwd_ctr_host_discard_bytes = mib_scalar((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 1, 1, 22), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: nwAppnFwdCtrHostDiscardBytes.setStatus('mandatory') nw_appn_fwd_if_table = mib_table((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 1, 1)) if mibBuilder.loadTexts: nwAppnFwdIfTable.setStatus('mandatory') nw_appn_fwd_if_entry = mib_table_row((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 1, 1, 1)).setIndexNames((0, 'CTRON-APPN-MIB', 'nwAppnFwdIfIndex')) if mibBuilder.loadTexts: nwAppnFwdIfEntry.setStatus('mandatory') nw_appn_fwd_if_index = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 1, 1, 1, 1), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: nwAppnFwdIfIndex.setStatus('mandatory') nw_appn_fwd_if_admin_status = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 1, 1, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('other', 1), ('disable', 2), ('enabled', 3)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: nwAppnFwdIfAdminStatus.setStatus('mandatory') nw_appn_fwd_if_oper_status = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 1, 1, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5))).clone(namedValues=named_values(('other', 1), ('disabled', 2), ('enabled', 3), ('pendingDisable', 4), ('pendingEnable', 5)))).setMaxAccess('readonly') if mibBuilder.loadTexts: nwAppnFwdIfOperStatus.setStatus('mandatory') nw_appn_fwd_if_operational_time = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 1, 1, 1, 4), time_ticks()).setMaxAccess('readonly') if mibBuilder.loadTexts: nwAppnFwdIfOperationalTime.setStatus('mandatory') nw_appn_fwd_if_control = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 1, 1, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1))).clone(namedValues=named_values(('other', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: nwAppnFwdIfControl.setStatus('mandatory') nw_appn_fwd_if_mtu = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 1, 1, 1, 6), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: nwAppnFwdIfMtu.setStatus('mandatory') nw_appn_fwd_if_forwarding = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 1, 1, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('other', 1), ('disabled', 2), ('enabled', 3)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: nwAppnFwdIfForwarding.setStatus('mandatory') nw_appn_fwd_if_frame_type = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 1, 1, 1, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 4, 8))).clone(namedValues=named_values(('other', 1), ('ethernet', 2), ('i8022', 4), ('sync', 8)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: nwAppnFwdIfFrameType.setStatus('mandatory') nw_appn_fwd_if_acl_identifier = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 1, 1, 1, 9), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: nwAppnFwdIfAclIdentifier.setStatus('mandatory') nw_appn_fwd_if_acl_status = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 1, 1, 1, 10), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('other', 1), ('disabled', 2), ('enabled', 3)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: nwAppnFwdIfAclStatus.setStatus('mandatory') nw_appn_fwd_if_cache_control = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 1, 1, 1, 11), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('other', 1), ('disable', 2), ('enable', 3)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: nwAppnFwdIfCacheControl.setStatus('mandatory') nw_appn_fwd_if_cache_entries = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 1, 1, 1, 12), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: nwAppnFwdIfCacheEntries.setStatus('mandatory') nw_appn_fwd_if_cache_hits = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 1, 1, 1, 13), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: nwAppnFwdIfCacheHits.setStatus('mandatory') nw_appn_fwd_if_cache_misses = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 1, 1, 1, 14), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: nwAppnFwdIfCacheMisses.setStatus('mandatory') nw_appn_extension_table = mib_table((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 1, 2)) if mibBuilder.loadTexts: nwAppnExtensionTable.setStatus('mandatory') nw_appn_ext_entry = mib_table_row((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 1, 2, 1)).setIndexNames((0, 'CTRON-APPN-MIB', 'nwAppnExtIfIndex')) if mibBuilder.loadTexts: nwAppnExtEntry.setStatus('mandatory') nw_appn_ext_if_index = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 1, 2, 1, 1), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: nwAppnExtIfIndex.setStatus('mandatory') nw_appn_ext_if_port_name = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 1, 2, 1, 2), display_string().subtype(subtypeSpec=value_size_constraint(1, 8))).setMaxAccess('readonly') if mibBuilder.loadTexts: nwAppnExtIfPortName.setStatus('mandatory') nw_appn_ext_if_port_type = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 1, 2, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('nonswitched', 1), ('switched', 2), ('satf', 3)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: nwAppnExtIfPortType.setStatus('mandatory') nw_appn_ext_if_dlc_type = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 1, 2, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('llc2', 1), ('sdlc', 2), ('x25', 3)))).setMaxAccess('readonly') if mibBuilder.loadTexts: nwAppnExtIfDlcType.setStatus('mandatory') nw_appn_ext_if_max_r_btu_size = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 1, 2, 1, 6), integer32().subtype(subtypeSpec=value_range_constraint(99, 65535)).clone(2048)).setMaxAccess('readwrite') if mibBuilder.loadTexts: nwAppnExtIfMaxRBtuSize.setStatus('mandatory') nw_appn_ext_if_tot_ls_act_lim = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 1, 2, 1, 7), integer32().subtype(subtypeSpec=value_range_constraint(1, 256)).clone(16)).setMaxAccess('readwrite') if mibBuilder.loadTexts: nwAppnExtIfTotLsActLim.setStatus('mandatory') nw_appn_ext_if_inb_ls_act_lim = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 1, 2, 1, 8), integer32().subtype(subtypeSpec=value_range_constraint(0, 256)).clone(8)).setMaxAccess('readwrite') if mibBuilder.loadTexts: nwAppnExtIfInbLsActLim.setStatus('mandatory') nw_appn_ext_if_outb_ls_act_lim = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 1, 2, 1, 9), integer32().subtype(subtypeSpec=value_range_constraint(0, 256)).clone(8)).setMaxAccess('readwrite') if mibBuilder.loadTexts: nwAppnExtIfOutbLsActLim.setStatus('mandatory') nw_appn_ext_if_local_ls_role = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 1, 2, 1, 10), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('negotiable', 1), ('primary', 2), ('secondary', 3))).clone('negotiable')).setMaxAccess('readwrite') if mibBuilder.loadTexts: nwAppnExtIfLocalLsRole.setStatus('mandatory') nw_appn_ext_if_act_xid_xchg_limit = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 1, 2, 1, 11), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535)).clone(9)).setMaxAccess('readwrite') if mibBuilder.loadTexts: nwAppnExtIfActXidXchgLimit.setStatus('mandatory') nw_appn_ext_if_non_act_xid_xchg_limit = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 1, 2, 1, 12), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535)).clone(5)).setMaxAccess('readwrite') if mibBuilder.loadTexts: nwAppnExtIfNonActXidXchgLimit.setStatus('mandatory') nw_appn_ext_if_ls_xmit_rcv_cap = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 1, 2, 1, 13), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('twowaysimultaneous', 1), ('twowayalternating', 2))).clone('twowaysimultaneous')).setMaxAccess('readwrite') if mibBuilder.loadTexts: nwAppnExtIfLsXmitRcvCap.setStatus('mandatory') nw_appn_ext_if_max_ifrm_rcvd = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 1, 2, 1, 14), integer32().subtype(subtypeSpec=value_range_constraint(1, 127)).clone(4)).setMaxAccess('readwrite') if mibBuilder.loadTexts: nwAppnExtIfMaxIfrmRcvd.setStatus('mandatory') nw_appn_ext_if_dflt_target_pacing = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 1, 2, 1, 15), integer32().subtype(subtypeSpec=value_range_constraint(1, 32767)).clone(7)).setMaxAccess('readwrite') if mibBuilder.loadTexts: nwAppnExtIfDfltTargetPacing.setStatus('mandatory') nw_appn_ext_if_dflt_max_s_btu_size = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 1, 2, 1, 16), integer32().subtype(subtypeSpec=value_range_constraint(99, 65535)).clone(2048)).setMaxAccess('readwrite') if mibBuilder.loadTexts: nwAppnExtIfDfltMaxSBtuSize.setStatus('mandatory') nw_appn_ext_if_dflt_effect_cap = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 1, 2, 1, 17), integer32().subtype(subtypeSpec=value_range_constraint(0, 603979776))).setMaxAccess('readwrite') if mibBuilder.loadTexts: nwAppnExtIfDfltEffectCap.setStatus('mandatory') nw_appn_ext_if_dflt_connect_cost = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 1, 2, 1, 18), integer32().subtype(subtypeSpec=value_range_constraint(0, 255))).setMaxAccess('readwrite') if mibBuilder.loadTexts: nwAppnExtIfDfltConnectCost.setStatus('mandatory') nw_appn_ext_if_dflt_byte_cost = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 1, 2, 1, 19), integer32().subtype(subtypeSpec=value_range_constraint(0, 255))).setMaxAccess('readwrite') if mibBuilder.loadTexts: nwAppnExtIfDfltByteCost.setStatus('mandatory') nw_appn_ext_if_dflt_security = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 1, 2, 1, 20), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 32, 64, 96, 128, 160, 192))).clone(namedValues=named_values(('nonsecure', 1), ('publicSwitchNw', 32), ('undergroundCable', 64), ('secureConduit', 96), ('guardedConduit', 128), ('encrypted', 160), ('guardedRadiation', 192)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: nwAppnExtIfDfltSecurity.setStatus('mandatory') nw_appn_ext_if_dflt_prop_delay = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 1, 2, 1, 21), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 384, 9216, 147456, 294912, 2013265920))).clone(namedValues=named_values(('minimum', 0), ('negligible', 384), ('terrestrial', 9216), ('packetswitched', 147456), ('long', 294912), ('maximum', 2013265920)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: nwAppnExtIfDfltPropDelay.setStatus('mandatory') nw_appn_ext_if_dflt_usr_def1 = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 1, 2, 1, 22), integer32().subtype(subtypeSpec=value_range_constraint(0, 255)).clone(128)).setMaxAccess('readwrite') if mibBuilder.loadTexts: nwAppnExtIfDfltUsrDef1.setStatus('mandatory') nw_appn_ext_if_dflt_usr_def2 = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 1, 2, 1, 23), integer32().subtype(subtypeSpec=value_range_constraint(0, 255)).clone(128)).setMaxAccess('readwrite') if mibBuilder.loadTexts: nwAppnExtIfDfltUsrDef2.setStatus('mandatory') nw_appn_ext_if_dflt_usr_def3 = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 1, 2, 1, 24), integer32().subtype(subtypeSpec=value_range_constraint(0, 255)).clone(128)).setMaxAccess('readwrite') if mibBuilder.loadTexts: nwAppnExtIfDfltUsrDef3.setStatus('mandatory') nw_appn_ext_if_stop_type = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 1, 2, 1, 25), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('immediate', 1), ('orderly', 2))).clone('orderly')).setMaxAccess('readwrite') if mibBuilder.loadTexts: nwAppnExtIfStopType.setStatus('mandatory') nw_appn_ext_if_cp_cp_supp = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 1, 2, 1, 26), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('yes', 1), ('no', 2))).clone('yes')).setMaxAccess('readwrite') if mibBuilder.loadTexts: nwAppnExtIfCpCpSupp.setStatus('mandatory') nw_appn_ext_if_limited_rsrc = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 1, 2, 1, 27), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('yes', 1), ('no', 2))).clone('no')).setMaxAccess('readwrite') if mibBuilder.loadTexts: nwAppnExtIfLimitedRsrc.setStatus('mandatory') nw_appn_ext_if_address = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 1, 2, 1, 28), octet_string().subtype(subtypeSpec=value_size_constraint(1, 32))).setMaxAccess('readonly') if mibBuilder.loadTexts: nwAppnExtIfAddress.setStatus('mandatory') nw_appn_ext_if_ssap = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 1, 2, 1, 29), octet_string().subtype(subtypeSpec=value_size_constraint(1, 1)).setFixedLength(1).clone(hexValue='04')).setMaxAccess('readwrite') if mibBuilder.loadTexts: nwAppnExtIfSsap.setStatus('mandatory') nw_appn_if_cn_port_table = mib_table((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 1, 3, 1)) if mibBuilder.loadTexts: nwAppnIfCnPortTable.setStatus('mandatory') nw_appn_if_cn_port_entry = mib_table_row((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 1, 3, 1, 1)).setIndexNames((0, 'CTRON-APPN-MIB', 'nwAppnIfCnPtFqName'), (0, 'CTRON-APPN-MIB', 'nwAppnIfCnPtName')) if mibBuilder.loadTexts: nwAppnIfCnPortEntry.setStatus('mandatory') nw_appn_if_cn_pt_fq_name = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 1, 3, 1, 1, 1), display_string().subtype(subtypeSpec=value_size_constraint(3, 17))).setMaxAccess('readwrite') if mibBuilder.loadTexts: nwAppnIfCnPtFqName.setStatus('mandatory') nw_appn_if_cn_pt_name = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 1, 3, 1, 1, 2), display_string().subtype(subtypeSpec=value_size_constraint(1, 8))).setMaxAccess('readwrite') if mibBuilder.loadTexts: nwAppnIfCnPtName.setStatus('mandatory') nw_appn_if_cn_pt_control = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 1, 3, 1, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 3))).clone(namedValues=named_values(('other', 1), ('delete', 3)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: nwAppnIfCnPtControl.setStatus('mandatory') nw_appn_if_cn_tg_char_table = mib_table((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 1, 3, 2)) if mibBuilder.loadTexts: nwAppnIfCnTgCharTable.setStatus('mandatory') nw_appn_if_cn_tg_char_entry = mib_table_row((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 1, 3, 2, 1)).setIndexNames((0, 'CTRON-APPN-MIB', 'nwAppnIfCnTgFqName')) if mibBuilder.loadTexts: nwAppnIfCnTgCharEntry.setStatus('mandatory') nw_appn_if_cn_tg_fq_name = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 1, 3, 2, 1, 1), display_string().subtype(subtypeSpec=value_size_constraint(3, 17))).setMaxAccess('readwrite') if mibBuilder.loadTexts: nwAppnIfCnTgFqName.setStatus('mandatory') nw_appn_if_cn_tg_effect_cap = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 1, 3, 2, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 603979776))).setMaxAccess('readwrite') if mibBuilder.loadTexts: nwAppnIfCnTgEffectCap.setStatus('mandatory') nw_appn_if_cn_tg_connect_cost = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 1, 3, 2, 1, 3), integer32().subtype(subtypeSpec=value_range_constraint(0, 255))).setMaxAccess('readwrite') if mibBuilder.loadTexts: nwAppnIfCnTgConnectCost.setStatus('mandatory') nw_appn_if_cn_tg_byte_cost = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 1, 3, 2, 1, 4), integer32().subtype(subtypeSpec=value_range_constraint(0, 255))).setMaxAccess('readwrite') if mibBuilder.loadTexts: nwAppnIfCnTgByteCost.setStatus('mandatory') nw_appn_if_cn_tg_security = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 1, 3, 2, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 32, 64, 96, 128, 160, 192))).clone(namedValues=named_values(('nonsecure', 1), ('publicSwitchNw', 32), ('undergroundCable', 64), ('secureConduit', 96), ('guardedConduit', 128), ('encrypted', 160), ('guardedRadiation', 192)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: nwAppnIfCnTgSecurity.setStatus('mandatory') nw_appn_if_cn_tg_prop_delay = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 1, 3, 2, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 384, 9216, 147456, 294912, 2013265920))).clone(namedValues=named_values(('minimum', 0), ('negligible', 384), ('terrestrial', 9216), ('packetswitched', 147456), ('long', 294912), ('maximum', 2013265920)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: nwAppnIfCnTgPropDelay.setStatus('mandatory') nw_appn_if_cn_tg_usr_def1 = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 1, 3, 2, 1, 7), integer32().subtype(subtypeSpec=value_range_constraint(0, 255)).clone(128)).setMaxAccess('readwrite') if mibBuilder.loadTexts: nwAppnIfCnTgUsrDef1.setStatus('mandatory') nw_appn_if_cn_tg_usr_def2 = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 1, 3, 2, 1, 8), integer32().subtype(subtypeSpec=value_range_constraint(0, 255)).clone(128)).setMaxAccess('readwrite') if mibBuilder.loadTexts: nwAppnIfCnTgUsrDef2.setStatus('mandatory') nw_appn_if_cn_tg_usr_def3 = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 1, 3, 2, 1, 9), integer32().subtype(subtypeSpec=value_range_constraint(0, 255)).clone(128)).setMaxAccess('readwrite') if mibBuilder.loadTexts: nwAppnIfCnTgUsrDef3.setStatus('mandatory') nw_appn_fwd_if_ctr_table = mib_table((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 2, 1)) if mibBuilder.loadTexts: nwAppnFwdIfCtrTable.setStatus('mandatory') nw_appn_fwd_if_ctr_entry = mib_table_row((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 2, 1, 1)).setIndexNames((0, 'CTRON-APPN-MIB', 'nwAppnFwdIfCtrIfIndex')) if mibBuilder.loadTexts: nwAppnFwdIfCtrEntry.setStatus('mandatory') nw_appn_fwd_if_ctr_if_index = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 2, 1, 1, 1), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: nwAppnFwdIfCtrIfIndex.setStatus('mandatory') nw_appn_fwd_if_ctr_admin_status = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 2, 1, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('other', 1), ('disabled', 2), ('enabled', 3)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: nwAppnFwdIfCtrAdminStatus.setStatus('mandatory') nw_appn_fwd_if_ctr_reset = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 2, 1, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('other', 1), ('reset', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: nwAppnFwdIfCtrReset.setStatus('mandatory') nw_appn_fwd_if_ctr_operational_time = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 2, 1, 1, 4), time_ticks()).setMaxAccess('readonly') if mibBuilder.loadTexts: nwAppnFwdIfCtrOperationalTime.setStatus('mandatory') nw_appn_fwd_if_ctr_in_mus = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 2, 1, 1, 5), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: nwAppnFwdIfCtrInMus.setStatus('mandatory') nw_appn_fwd_if_ctr_out_mus = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 2, 1, 1, 6), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: nwAppnFwdIfCtrOutMus.setStatus('mandatory') nw_appn_fwd_if_ctr_fwd_mus = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 2, 1, 1, 7), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: nwAppnFwdIfCtrFwdMus.setStatus('mandatory') nw_appn_fwd_if_ctr_filtered_mus = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 2, 1, 1, 8), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: nwAppnFwdIfCtrFilteredMus.setStatus('mandatory') nw_appn_fwd_if_ctr_discard_mus = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 2, 1, 1, 9), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: nwAppnFwdIfCtrDiscardMus.setStatus('mandatory') nw_appn_fwd_if_ctr_addr_err_mus = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 2, 1, 1, 10), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: nwAppnFwdIfCtrAddrErrMus.setStatus('mandatory') nw_appn_fwd_if_ctr_len_err_mus = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 2, 1, 1, 11), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: nwAppnFwdIfCtrLenErrMus.setStatus('mandatory') nw_appn_fwd_if_ctr_hdr_err_mus = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 2, 1, 1, 12), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: nwAppnFwdIfCtrHdrErrMus.setStatus('mandatory') nw_appn_fwd_if_ctr_in_bytes = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 2, 1, 1, 13), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: nwAppnFwdIfCtrInBytes.setStatus('mandatory') nw_appn_fwd_if_ctr_out_bytes = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 2, 1, 1, 14), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: nwAppnFwdIfCtrOutBytes.setStatus('mandatory') nw_appn_fwd_if_ctr_fwd_bytes = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 2, 1, 1, 15), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: nwAppnFwdIfCtrFwdBytes.setStatus('mandatory') nw_appn_fwd_if_ctr_filtered_bytes = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 2, 1, 1, 16), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: nwAppnFwdIfCtrFilteredBytes.setStatus('mandatory') nw_appn_fwd_if_ctr_discard_bytes = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 2, 1, 1, 17), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: nwAppnFwdIfCtrDiscardBytes.setStatus('mandatory') nw_appn_fwd_if_ctr_host_in_mus = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 2, 1, 1, 18), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: nwAppnFwdIfCtrHostInMus.setStatus('mandatory') nw_appn_fwd_if_ctr_host_out_mus = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 2, 1, 1, 19), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: nwAppnFwdIfCtrHostOutMus.setStatus('mandatory') nw_appn_fwd_if_ctr_host_discard_mus = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 2, 1, 1, 20), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: nwAppnFwdIfCtrHostDiscardMus.setStatus('mandatory') nw_appn_fwd_if_ctr_host_in_bytes = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 2, 1, 1, 21), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: nwAppnFwdIfCtrHostInBytes.setStatus('mandatory') nw_appn_fwd_if_ctr_host_out_bytes = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 2, 1, 1, 22), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: nwAppnFwdIfCtrHostOutBytes.setStatus('mandatory') nw_appn_fwd_if_ctr_host_discard_bytes = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 2, 2, 1, 1, 23), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: nwAppnFwdIfCtrHostDiscardBytes.setStatus('mandatory') nw_appn_fwd_ls_table = mib_table((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 3, 1, 1)) if mibBuilder.loadTexts: nwAppnFwdLsTable.setStatus('mandatory') nw_appn_fwd_ls_entry = mib_table_row((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 3, 1, 1, 1)).setIndexNames((0, 'CTRON-APPN-MIB', 'nwAppnFwdLsName')) if mibBuilder.loadTexts: nwAppnFwdLsEntry.setStatus('mandatory') nw_appn_fwd_ls_name = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 3, 1, 1, 1, 1), display_string().subtype(subtypeSpec=value_size_constraint(1, 8))).setMaxAccess('readwrite') if mibBuilder.loadTexts: nwAppnFwdLsName.setStatus('mandatory') nw_appn_fwd_ls_admin_status = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 3, 1, 1, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('other', 1), ('disable', 2), ('enable', 3)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: nwAppnFwdLsAdminStatus.setStatus('mandatory') nw_appn_fwd_ls_oper_status = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 3, 1, 1, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5))).clone(namedValues=named_values(('other', 1), ('disabled', 2), ('enabled', 3), ('pendingDisable', 4), ('pendingEnable', 5)))).setMaxAccess('readonly') if mibBuilder.loadTexts: nwAppnFwdLsOperStatus.setStatus('mandatory') nw_appn_fwd_ls_operational_time = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 3, 1, 1, 1, 4), time_ticks()).setMaxAccess('readonly') if mibBuilder.loadTexts: nwAppnFwdLsOperationalTime.setStatus('mandatory') nw_appn_fwd_ls_control = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 3, 1, 1, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 3))).clone(namedValues=named_values(('other', 1), ('delete', 3)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: nwAppnFwdLsControl.setStatus('mandatory') nw_appn_fwd_ls_port_name = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 3, 1, 1, 1, 6), display_string().subtype(subtypeSpec=value_size_constraint(1, 8))).setMaxAccess('readwrite') if mibBuilder.loadTexts: nwAppnFwdLsPortName.setStatus('mandatory') nw_appn_fwd_ls_adj_cp_name = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 3, 1, 1, 1, 7), display_string().subtype(subtypeSpec=value_size_constraint(3, 17))).setMaxAccess('readwrite') if mibBuilder.loadTexts: nwAppnFwdLsAdjCpName.setStatus('mandatory') nw_appn_fwd_ls_adj_cp_type = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 3, 1, 1, 1, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('endnode', 1), ('networknode', 2))).clone('endnode')).setMaxAccess('readwrite') if mibBuilder.loadTexts: nwAppnFwdLsAdjCpType.setStatus('mandatory') nw_appn_fwd_ls_auto_act_support = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 3, 1, 1, 1, 10), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('yes', 1), ('no', 2))).clone('no')).setMaxAccess('readwrite') if mibBuilder.loadTexts: nwAppnFwdLsAutoActSupport.setStatus('mandatory') nw_appn_fwd_ls_limited_rsrc = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 3, 1, 1, 1, 11), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('yes', 1), ('no', 2))).clone('no')).setMaxAccess('readwrite') if mibBuilder.loadTexts: nwAppnFwdLsLimitedRsrc.setStatus('mandatory') nw_appn_fwd_ls_sscp_session = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 3, 1, 1, 1, 12), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('yes', 1), ('no', 2))).clone('no')).setMaxAccess('readwrite') if mibBuilder.loadTexts: nwAppnFwdLsSscpSession.setStatus('mandatory') nw_appn_fwd_ls_pu_name = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 3, 1, 1, 1, 13), display_string().subtype(subtypeSpec=value_size_constraint(1, 8))).setMaxAccess('readwrite') if mibBuilder.loadTexts: nwAppnFwdLsPuName.setStatus('mandatory') nw_appn_fwd_ls_back_lvl_len_en = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 3, 1, 1, 1, 14), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4))).clone(namedValues=named_values(('no', 1), ('xid3', 2), ('xid0', 3), ('noxid', 4))).clone('no')).setMaxAccess('readwrite') if mibBuilder.loadTexts: nwAppnFwdLsBackLvlLenEN.setStatus('mandatory') nw_appn_fwd_ls_cp_cp_sess_supp = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 3, 1, 1, 1, 16), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('yes', 1), ('no', 2))).clone('yes')).setMaxAccess('readwrite') if mibBuilder.loadTexts: nwAppnFwdLsCpCpSessSupp.setStatus('mandatory') nw_appn_fwd_ls_effect_cap = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 3, 1, 1, 1, 17), integer32().subtype(subtypeSpec=value_range_constraint(0, 603979776))).setMaxAccess('readwrite') if mibBuilder.loadTexts: nwAppnFwdLsEffectCap.setStatus('mandatory') nw_appn_fwd_ls_connect_cost = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 3, 1, 1, 1, 18), integer32().subtype(subtypeSpec=value_range_constraint(0, 255))).setMaxAccess('readwrite') if mibBuilder.loadTexts: nwAppnFwdLsConnectCost.setStatus('mandatory') nw_appn_fwd_ls_byte_cost = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 3, 1, 1, 1, 19), integer32().subtype(subtypeSpec=value_range_constraint(0, 255))).setMaxAccess('readwrite') if mibBuilder.loadTexts: nwAppnFwdLsByteCost.setStatus('mandatory') nw_appn_fwd_ls_security = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 3, 1, 1, 1, 20), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 32, 64, 96, 128, 160, 192))).clone(namedValues=named_values(('nonsecure', 1), ('publicSwitchNw', 32), ('undergroundCable', 64), ('secureConduit', 96), ('guardedConduit', 128), ('encrypted', 160), ('guardedRadiation', 192)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: nwAppnFwdLsSecurity.setStatus('mandatory') nw_appn_fwd_ls_prop_delay = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 3, 1, 1, 1, 21), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 384, 9216, 147456, 294912, 2013265920))).clone(namedValues=named_values(('minimum', 0), ('negligible', 384), ('terrestrial', 9216), ('packetswitched', 147456), ('long', 294912), ('maximum', 2013265920)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: nwAppnFwdLsPropDelay.setStatus('mandatory') nw_appn_fwd_ls_usr_def1 = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 3, 1, 1, 1, 22), integer32().subtype(subtypeSpec=value_range_constraint(0, 255)).clone(128)).setMaxAccess('readwrite') if mibBuilder.loadTexts: nwAppnFwdLsUsrDef1.setStatus('mandatory') nw_appn_fwd_ls_usr_def2 = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 3, 1, 1, 1, 23), integer32().subtype(subtypeSpec=value_range_constraint(0, 255)).clone(128)).setMaxAccess('readwrite') if mibBuilder.loadTexts: nwAppnFwdLsUsrDef2.setStatus('mandatory') nw_appn_fwd_ls_usr_def3 = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 3, 1, 1, 1, 24), integer32().subtype(subtypeSpec=value_range_constraint(0, 255)).clone(128)).setMaxAccess('readwrite') if mibBuilder.loadTexts: nwAppnFwdLsUsrDef3.setStatus('mandatory') nw_appn_fwd_ls_trgt_pacing_count = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 3, 1, 1, 1, 25), integer32().subtype(subtypeSpec=value_range_constraint(0, 32767)).clone(7)).setMaxAccess('readwrite') if mibBuilder.loadTexts: nwAppnFwdLsTrgtPacingCount.setStatus('mandatory') nw_appn_fwd_ls_max_send_btu = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 3, 1, 1, 1, 26), integer32().subtype(subtypeSpec=value_range_constraint(99, 65535)).clone(2048)).setMaxAccess('readwrite') if mibBuilder.loadTexts: nwAppnFwdLsMaxSendBtu.setStatus('mandatory') nw_appn_fwd_ls_num_active_session = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 3, 1, 1, 1, 27), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: nwAppnFwdLsNumActiveSession.setStatus('mandatory') nw_appn_fwd_lsdynamic_ls = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 3, 1, 1, 1, 28), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('yes', 1), ('no', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: nwAppnFwdLsdynamicLs.setStatus('mandatory') nw_appn_fwd_ls_stop_type = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 3, 1, 1, 1, 29), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('immediate', 1), ('orderly', 2))).clone('orderly')).setMaxAccess('readwrite') if mibBuilder.loadTexts: nwAppnFwdLsStopType.setStatus('mandatory') nw_appn_fwd_ls_port_nbr = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 3, 1, 1, 1, 30), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: nwAppnFwdLsPortNbr.setStatus('mandatory') nw_appn_fwd_ls_dest_addr = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 3, 1, 1, 1, 31), octet_string().subtype(subtypeSpec=value_size_constraint(1, 32))).setMaxAccess('readwrite') if mibBuilder.loadTexts: nwAppnFwdLsDestAddr.setStatus('mandatory') nw_appn_fwd_ls_dsap = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 3, 1, 1, 1, 32), octet_string().subtype(subtypeSpec=value_size_constraint(1, 1)).setFixedLength(1).clone(hexValue='04')).setMaxAccess('readwrite') if mibBuilder.loadTexts: nwAppnFwdLsDsap.setStatus('mandatory') nw_appn_fwd_ls_block_num = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 3, 1, 1, 1, 33), display_string().subtype(subtypeSpec=value_size_constraint(3, 3)).setFixedLength(3)).setMaxAccess('readwrite') if mibBuilder.loadTexts: nwAppnFwdLsBlockNum.setStatus('mandatory') nw_appn_fwd_ls_id_num = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 3, 1, 1, 1, 34), display_string().subtype(subtypeSpec=value_size_constraint(5, 5)).setFixedLength(5)).setMaxAccess('readwrite') if mibBuilder.loadTexts: nwAppnFwdLsIdNum.setStatus('mandatory') nw_appn_fwd_ls_ctr_table = mib_table((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 3, 2, 1)) if mibBuilder.loadTexts: nwAppnFwdLsCtrTable.setStatus('mandatory') nw_appn_fwd_ls_ctr_entry = mib_table_row((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 3, 2, 1, 1)).setIndexNames((0, 'CTRON-APPN-MIB', 'nwAppnFwdLsCtrLsName')) if mibBuilder.loadTexts: nwAppnFwdLsCtrEntry.setStatus('mandatory') nw_appn_fwd_ls_ctr_ls_name = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 3, 2, 1, 1, 1), display_string().subtype(subtypeSpec=value_size_constraint(1, 8))).setMaxAccess('readonly') if mibBuilder.loadTexts: nwAppnFwdLsCtrLsName.setStatus('mandatory') nw_appn_fwd_ls_ctr_admin_status = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 3, 2, 1, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('other', 1), ('disabled', 2), ('enabled', 3)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: nwAppnFwdLsCtrAdminStatus.setStatus('mandatory') nw_appn_fwd_ls_ctr_reset = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 3, 2, 1, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('other', 1), ('reset', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: nwAppnFwdLsCtrReset.setStatus('mandatory') nw_appn_fwd_ls_ctr_operational_time = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 3, 2, 1, 1, 4), time_ticks()).setMaxAccess('readonly') if mibBuilder.loadTexts: nwAppnFwdLsCtrOperationalTime.setStatus('mandatory') nw_appn_fwd_ls_ctr_in_blus = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 3, 2, 1, 1, 5), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: nwAppnFwdLsCtrInBlus.setStatus('mandatory') nw_appn_fwd_ls_ctr_out_blus = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 3, 2, 1, 1, 6), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: nwAppnFwdLsCtrOutBlus.setStatus('mandatory') nw_appn_fwd_ls_ctr_fwd_blus = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 3, 2, 1, 1, 7), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: nwAppnFwdLsCtrFwdBlus.setStatus('mandatory') nw_appn_fwd_ls_ctr_filtered_blus = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 3, 2, 1, 1, 8), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: nwAppnFwdLsCtrFilteredBlus.setStatus('mandatory') nw_appn_fwd_ls_ctr_discard_blus = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 3, 2, 1, 1, 9), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: nwAppnFwdLsCtrDiscardBlus.setStatus('mandatory') nw_appn_fwd_ls_ctr_addr_err_blus = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 3, 2, 1, 1, 10), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: nwAppnFwdLsCtrAddrErrBlus.setStatus('mandatory') nw_appn_fwd_ls_ctr_len_err_blus = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 3, 2, 1, 1, 11), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: nwAppnFwdLsCtrLenErrBlus.setStatus('mandatory') nw_appn_fwd_ls_ctr_hdr_err_blus = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 3, 2, 1, 1, 12), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: nwAppnFwdLsCtrHdrErrBlus.setStatus('mandatory') nw_appn_fwd_ls_ctr_in_bytes = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 3, 2, 1, 1, 13), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: nwAppnFwdLsCtrInBytes.setStatus('mandatory') nw_appn_fwd_ls_ctr_out_bytes = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 3, 2, 1, 1, 14), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: nwAppnFwdLsCtrOutBytes.setStatus('mandatory') nw_appn_fwd_ls_ctr_fwd_bytes = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 3, 2, 1, 1, 15), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: nwAppnFwdLsCtrFwdBytes.setStatus('mandatory') nw_appn_fwd_ls_ctr_filtered_bytes = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 3, 2, 1, 1, 16), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: nwAppnFwdLsCtrFilteredBytes.setStatus('mandatory') nw_appn_fwd_ls_ctr_discard_bytes = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 3, 2, 1, 1, 17), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: nwAppnFwdLsCtrDiscardBytes.setStatus('mandatory') nw_appn_fwd_ls_ctr_host_in_blus = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 3, 2, 1, 1, 18), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: nwAppnFwdLsCtrHostInBlus.setStatus('mandatory') nw_appn_fwd_ls_ctr_host_out_blus = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 3, 2, 1, 1, 19), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: nwAppnFwdLsCtrHostOutBlus.setStatus('mandatory') nw_appn_fwd_ls_ctr_host_discard_blus = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 3, 2, 1, 1, 20), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: nwAppnFwdLsCtrHostDiscardBlus.setStatus('mandatory') nw_appn_fwd_ls_ctr_host_in_bytes = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 3, 2, 1, 1, 21), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: nwAppnFwdLsCtrHostInBytes.setStatus('mandatory') nw_appn_fwd_ls_ctr_host_out_bytes = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 3, 2, 1, 1, 22), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: nwAppnFwdLsCtrHostOutBytes.setStatus('mandatory') nw_appn_fwd_ls_ctr_host_discard_bytes = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 2, 3, 2, 1, 1, 23), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: nwAppnFwdLsCtrHostDiscardBytes.setStatus('mandatory') nw_appn_isr_admin_status = mib_scalar((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 4, 2, 1, 1, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('other', 1), ('disable', 2), ('enable', 3)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: nwAppnIsrAdminStatus.setStatus('mandatory') nw_appn_isr_oper_status = mib_scalar((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 4, 2, 1, 1, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5))).clone(namedValues=named_values(('other', 1), ('disabled', 2), ('enabled', 3), ('pendingDisable', 4), ('pendingEnable', 5)))).setMaxAccess('readonly') if mibBuilder.loadTexts: nwAppnIsrOperStatus.setStatus('mandatory') nw_appn_isr_admin_reset = mib_scalar((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 4, 2, 1, 1, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1))).clone(namedValues=named_values(('other', 1)))).setMaxAccess('readonly') if mibBuilder.loadTexts: nwAppnIsrAdminReset.setStatus('mandatory') nw_appn_isr_operational_time = mib_scalar((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 4, 2, 1, 1, 1, 4), time_ticks()).setMaxAccess('readonly') if mibBuilder.loadTexts: nwAppnIsrOperationalTime.setStatus('mandatory') nw_appn_isr_version = mib_scalar((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 4, 2, 1, 1, 1, 5), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: nwAppnIsrVersion.setStatus('mandatory') nw_appn_event_admin_status = mib_scalar((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 10, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('other', 1), ('disabled', 2), ('enabled', 3)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: nwAppnEventAdminStatus.setStatus('mandatory') nw_appn_event_max_entries = mib_scalar((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 10, 1, 2), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: nwAppnEventMaxEntries.setStatus('mandatory') nw_appn_event_trace_all = mib_scalar((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 10, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('other', 1), ('disabled', 2), ('enabled', 3)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: nwAppnEventTraceAll.setStatus('mandatory') nw_appn_event_filter_table = mib_table((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 10, 2, 1)) if mibBuilder.loadTexts: nwAppnEventFilterTable.setStatus('mandatory') nw_appn_event_filter_entry = mib_table_row((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 10, 2, 1, 1)).setIndexNames((0, 'CTRON-APPN-MIB', 'nwAppnEventFltrProtocol'), (0, 'CTRON-APPN-MIB', 'nwAppnEventFltrIfNum')) if mibBuilder.loadTexts: nwAppnEventFilterEntry.setStatus('mandatory') nw_appn_event_fltr_protocol = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 10, 2, 1, 1, 1), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: nwAppnEventFltrProtocol.setStatus('mandatory') nw_appn_event_fltr_if_num = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 10, 2, 1, 1, 2), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: nwAppnEventFltrIfNum.setStatus('mandatory') nw_appn_event_fltr_control = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 10, 2, 1, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('other', 1), ('delete', 2), ('add', 3)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: nwAppnEventFltrControl.setStatus('mandatory') nw_appn_event_fltr_type = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 10, 2, 1, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 4, 8, 16, 32))).clone(namedValues=named_values(('misc', 1), ('timer', 2), ('rcv', 4), ('xmit', 8), ('event', 16), ('error', 32)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: nwAppnEventFltrType.setStatus('mandatory') nw_appn_event_fltr_severity = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 10, 2, 1, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('highest', 1), ('highmed', 2), ('highlow', 3)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: nwAppnEventFltrSeverity.setStatus('mandatory') nw_appn_event_fltr_action = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 10, 2, 1, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('log', 1), ('trap', 2), ('logTrap', 3)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: nwAppnEventFltrAction.setStatus('mandatory') nw_appn_event_table = mib_table((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 10, 3, 1)) if mibBuilder.loadTexts: nwAppnEventTable.setStatus('mandatory') nw_appn_event_entry = mib_table_row((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 10, 3, 1, 1)).setIndexNames((0, 'CTRON-APPN-MIB', 'nwAppnEventNumber')) if mibBuilder.loadTexts: nwAppnEventEntry.setStatus('mandatory') nw_appn_event_number = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 10, 3, 1, 1, 1), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: nwAppnEventNumber.setStatus('mandatory') nw_appn_event_time = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 10, 3, 1, 1, 2), time_ticks()).setMaxAccess('readonly') if mibBuilder.loadTexts: nwAppnEventTime.setStatus('mandatory') nw_appn_event_type = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 10, 3, 1, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 4, 8, 16, 32, 64))).clone(namedValues=named_values(('misc', 1), ('timer', 2), ('rcv', 4), ('xmit', 8), ('event', 16), ('diags', 32), ('error', 64)))).setMaxAccess('readonly') if mibBuilder.loadTexts: nwAppnEventType.setStatus('mandatory') nw_appn_event_severity = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 10, 3, 1, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('highest', 1), ('highmed', 2), ('highlow', 3)))).setMaxAccess('readonly') if mibBuilder.loadTexts: nwAppnEventSeverity.setStatus('mandatory') nw_appn_event_protocol = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 10, 3, 1, 1, 5), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: nwAppnEventProtocol.setStatus('mandatory') nw_appn_event_if_num = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 10, 3, 1, 1, 6), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: nwAppnEventIfNum.setStatus('mandatory') nw_appn_event_text_string = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 2, 2, 3, 5, 2, 10, 3, 1, 1, 7), octet_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: nwAppnEventTextString.setStatus('mandatory') mibBuilder.exportSymbols('CTRON-APPN-MIB', nwAppnFwdIfCtrHostInMus=nwAppnFwdIfCtrHostInMus, nwAppnComponents=nwAppnComponents, nwAppnIfCnPortTable=nwAppnIfCnPortTable, nwAppnIfCnTgEffectCap=nwAppnIfCnTgEffectCap, nwAppnSysTreeUseLimit=nwAppnSysTreeUseLimit, nwAppnIfCnPtFqName=nwAppnIfCnPtFqName, nwAppnFwdLsUsrDef2=nwAppnFwdLsUsrDef2, nwAppnEventFltrType=nwAppnEventFltrType, nwAppnSysRtAddResist=nwAppnSysRtAddResist, nwAppnIsrCounters=nwAppnIsrCounters, nwAppnFwdIfCtrFwdMus=nwAppnFwdIfCtrFwdMus, nwAppnSysConfig=nwAppnSysConfig, nwAppnFwdCtrOutBytes=nwAppnFwdCtrOutBytes, nwAppnTopology=nwAppnTopology, nwAppnEventLogTable=nwAppnEventLogTable, nwAppnEventFilterTable=nwAppnEventFilterTable, nwAppnIsrAdminReset=nwAppnIsrAdminReset, nwAppnFwdCtrOutMus=nwAppnFwdCtrOutMus, nwAppnFwdLsEffectCap=nwAppnFwdLsEffectCap, nwAppnEventTable=nwAppnEventTable, nwAppnIsrIfConfig=nwAppnIsrIfConfig, nwAppnExtIfSsap=nwAppnExtIfSsap, nwAppnFwdCtrInMus=nwAppnFwdCtrInMus, nwAppnFwdIfCacheHits=nwAppnFwdIfCacheHits, nwAppnFwdLsOperationalTime=nwAppnFwdLsOperationalTime, nwAppnMibs=nwAppnMibs, nwAppnEventTraceAll=nwAppnEventTraceAll, nwAppnExtIfDfltUsrDef3=nwAppnExtIfDfltUsrDef3, nwAppnSysVersion=nwAppnSysVersion, nwAppnFwdIfTable=nwAppnFwdIfTable, nwAppnSysMaxTdmTGs=nwAppnSysMaxTdmTGs, nwAppnIfCn=nwAppnIfCn, nwAppnSysCpAlias=nwAppnSysCpAlias, nwAppnFwdIfCtrFilteredBytes=nwAppnFwdIfCtrFilteredBytes, nwAppnFwdLsSscpSession=nwAppnFwdLsSscpSession, nwAppnSysIsrMaxRuSize=nwAppnSysIsrMaxRuSize, nwAppnFwdIfAdminStatus=nwAppnFwdIfAdminStatus, nwAppnFwdCtrAddrErrMus=nwAppnFwdCtrAddrErrMus, nwAppnFwdLsEntry=nwAppnFwdLsEntry, nwAppnFwdLsCtrFwdBytes=nwAppnFwdLsCtrFwdBytes, nwAppnFwdIfCtrDiscardMus=nwAppnFwdIfCtrDiscardMus, nwAppnFwdLsPuName=nwAppnFwdLsPuName, nwAppnFwdLsCtrHostOutBytes=nwAppnFwdLsCtrHostOutBytes, nwAppnFwdLsUsrDef1=nwAppnFwdLsUsrDef1, nwAppnFwdCtrHostInBytes=nwAppnFwdCtrHostInBytes, nwAppnSysRouterId=nwAppnSysRouterId, nwAppnSysAdminStatus=nwAppnSysAdminStatus, nwAppnFwdCounters=nwAppnFwdCounters, nwAppnFwdIfCtrIfIndex=nwAppnFwdIfCtrIfIndex, nwAppnFwdLsTrgtPacingCount=nwAppnFwdLsTrgtPacingCount, nwAppnSysStopType=nwAppnSysStopType, nwAppnExtEntry=nwAppnExtEntry, nwAppnFwdLsStopType=nwAppnFwdLsStopType, nwAppnSysAdminReset=nwAppnSysAdminReset, nwAppnFwdIfCacheEntries=nwAppnFwdIfCacheEntries, nwAppnExtIfDfltUsrDef2=nwAppnExtIfDfltUsrDef2, nwAppnFwdLsIdNum=nwAppnFwdLsIdNum, nwAppnEventAdminStatus=nwAppnEventAdminStatus, nwAppnFwdIfConfig=nwAppnFwdIfConfig, nwAppnFwdLsDsap=nwAppnFwdLsDsap, nwAppnFwdLsCtrFilteredBytes=nwAppnFwdLsCtrFilteredBytes, nwAppnIfCnTgByteCost=nwAppnIfCnTgByteCost, nwAppnFwdIfOperStatus=nwAppnFwdIfOperStatus, nwAppnMibRevText=nwAppnMibRevText, nwAppnIfCnTgConnectCost=nwAppnIfCnTgConnectCost, nwAppnSysMaxTdmNodes=nwAppnSysMaxTdmNodes, nwAppnFwdCtrFilteredMus=nwAppnFwdCtrFilteredMus, nwAppnFwdLsCtrOutBlus=nwAppnFwdLsCtrOutBlus, nwAppnFwdIfCtrHostOutMus=nwAppnFwdIfCtrHostOutMus, nwAppnExtIfDfltTargetPacing=nwAppnExtIfDfltTargetPacing, nwAppnFwdLsCtrAddrErrBlus=nwAppnFwdLsCtrAddrErrBlus, nwAppnFwdIfCtrEntry=nwAppnFwdIfCtrEntry, nwAppnEventMaxEntries=nwAppnEventMaxEntries, nwAppnIfCnPortEntry=nwAppnIfCnPortEntry, nwAppnExtIfMaxRBtuSize=nwAppnExtIfMaxRBtuSize, nwAppnEventIfNum=nwAppnEventIfNum, nwAppnIsrFilters=nwAppnIsrFilters, nwAppnFwdIfControl=nwAppnFwdIfControl, nwAppnFwdLsCtrAdminStatus=nwAppnFwdLsCtrAdminStatus, nwAppnFwdSystem=nwAppnFwdSystem, nwAppnFwdCtrHostOutBytes=nwAppnFwdCtrHostOutBytes, nwAppnFwdCtrDiscardMus=nwAppnFwdCtrDiscardMus, nwAppnIfCnTgUsrDef2=nwAppnIfCnTgUsrDef2, nwAppnFwdIfCacheMisses=nwAppnFwdIfCacheMisses, nwAppnFwdIfCtrOutMus=nwAppnFwdIfCtrOutMus, nwAppnFwdLsOperStatus=nwAppnFwdLsOperStatus, nwAppnFwdIfCtrTable=nwAppnFwdIfCtrTable, nwAppnIsrSystem=nwAppnIsrSystem, nwAppnFwdLsCpCpSessSupp=nwAppnFwdLsCpCpSessSupp, nwAppnExtIfDfltConnectCost=nwAppnExtIfDfltConnectCost, nwAppnSysRegCds=nwAppnSysRegCds, nwAppnIfCnTgSecurity=nwAppnIfCnTgSecurity, nwAppnEventNumber=nwAppnEventNumber, nwAppnExtIfDfltUsrDef1=nwAppnExtIfDfltUsrDef1, nwAppnExtIfNonActXidXchgLimit=nwAppnExtIfNonActXidXchgLimit, nwAppnEventFltrIfNum=nwAppnEventFltrIfNum, nwAppnSysIsrLowerThresh=nwAppnSysIsrLowerThresh, nwAppnSysDirCacheSize=nwAppnSysDirCacheSize, nwAppnHostsSystem=nwAppnHostsSystem, nwAppnFwdLsCtrFwdBlus=nwAppnFwdLsCtrFwdBlus, nwAppnFwdCtrAdminStatus=nwAppnFwdCtrAdminStatus, nwAppnExtIfDfltSecurity=nwAppnExtIfDfltSecurity, nwAppnFwdLsAdjCpType=nwAppnFwdLsAdjCpType, nwAppnFwdLsCtrHostInBytes=nwAppnFwdLsCtrHostInBytes, nwAppnEventLogFilterTable=nwAppnEventLogFilterTable, nwAppnSysIsrRcvPaceWind=nwAppnSysIsrRcvPaceWind, nwAppnFwdCtrHostDiscardMus=nwAppnFwdCtrHostDiscardMus, nwAppnExtIfActXidXchgLimit=nwAppnExtIfActXidXchgLimit, nwAppnEventType=nwAppnEventType, nwAppnFwdIfCtrHdrErrMus=nwAppnFwdIfCtrHdrErrMus, nwAppnIsrIfCounters=nwAppnIsrIfCounters, nwAppnHostsInterfaces=nwAppnHostsInterfaces, nwAppnFwdIfCtrHostDiscardMus=nwAppnFwdIfCtrHostDiscardMus, nwAppnEventFilterEntry=nwAppnEventFilterEntry, nwAppnIsrConfig=nwAppnIsrConfig, nwAppnFwdLsBlockNum=nwAppnFwdLsBlockNum, nwAppnSysMaxDirEntries=nwAppnSysMaxDirEntries, nwAppnFwdCtrFwdMus=nwAppnFwdCtrFwdMus, nwAppnFwdIfCtrHostOutBytes=nwAppnFwdIfCtrHostOutBytes, nwAppnFwdInterfaces=nwAppnFwdInterfaces, nwAppnFwdIfCounters=nwAppnFwdIfCounters, nwAppnFwdLsByteCost=nwAppnFwdLsByteCost, nwAppnFwdLsBackLvlLenEN=nwAppnFwdLsBackLvlLenEN, nwAppnIfCnTgUsrDef1=nwAppnIfCnTgUsrDef1, nwAppnSysLocateTimeout=nwAppnSysLocateTimeout, nwAppnFwdCtrReset=nwAppnFwdCtrReset, nwAppnIfCnTgUsrDef3=nwAppnIfCnTgUsrDef3, nwAppnEventFltrAction=nwAppnEventFltrAction, nwAppnExtIfDfltPropDelay=nwAppnExtIfDfltPropDelay, nwAppnFwdLsAdminStatus=nwAppnFwdLsAdminStatus, nwAppnRedirector=nwAppnRedirector, nwAppnFwdLsCtrInBlus=nwAppnFwdLsCtrInBlus, nwAppnIfCnTgCharTable=nwAppnIfCnTgCharTable, nwAppnIsrDatabase=nwAppnIsrDatabase, nwAppnFwdCtrFilteredBytes=nwAppnFwdCtrFilteredBytes, nwAppnExtIfOutbLsActLim=nwAppnExtIfOutbLsActLim, nwAppnFwdIfCtrOperationalTime=nwAppnFwdIfCtrOperationalTime, nwAppnSysTreeSize=nwAppnSysTreeSize, nwAppnFwdLsCounters=nwAppnFwdLsCounters, nwAppnEventFltrControl=nwAppnEventFltrControl, nwAppnFwdCtrHostInMus=nwAppnFwdCtrHostInMus, nwAppnFwdLsNumActiveSession=nwAppnFwdLsNumActiveSession, nwAppnFwdIfCacheControl=nwAppnFwdIfCacheControl, nwAppnExtIfInbLsActLim=nwAppnExtIfInbLsActLim, nwAppnFwdIfCtrFwdBytes=nwAppnFwdIfCtrFwdBytes, nwAppnFwdIfCtrHostInBytes=nwAppnFwdIfCtrHostInBytes, nwAppnSysLuName=nwAppnSysLuName, nwAppnDistanceVector=nwAppnDistanceVector, nwAppnIsrInterfaces=nwAppnIsrInterfaces, nwAppnFwdLsCtrHostOutBlus=nwAppnFwdLsCtrHostOutBlus, nwAppnFwdLsPortName=nwAppnFwdLsPortName, nwAppnRouter=nwAppnRouter, nwAppnEvent=nwAppnEvent, nwAppnSysOperationalTime=nwAppnSysOperationalTime, nwAppnFwdLsCtrEntry=nwAppnFwdLsCtrEntry, nwAppnExtIfDfltEffectCap=nwAppnExtIfDfltEffectCap, nwAppnFwdCtrHostOutMus=nwAppnFwdCtrHostOutMus, nwAppnFwdIfCtrInBytes=nwAppnFwdIfCtrInBytes, nwAppnFwdIfOperationalTime=nwAppnFwdIfOperationalTime, nwAppnIfCnPtName=nwAppnIfCnPtName, nwAppnFwdIfAclIdentifier=nwAppnFwdIfAclIdentifier, nwAppnFwdLsDestAddr=nwAppnFwdLsDestAddr, nwAppnFwdLsTable=nwAppnFwdLsTable, nwAppnFwdLsCtrOutBytes=nwAppnFwdLsCtrOutBytes, nwAppnFwdLsPortNbr=nwAppnFwdLsPortNbr, nwAppnFwdIfCtrReset=nwAppnFwdIfCtrReset, nwAppnIsrOperStatus=nwAppnIsrOperStatus, nwAppnWorkGroup=nwAppnWorkGroup, nwAppnFwdCtrInBytes=nwAppnFwdCtrInBytes, nwAppnExtIfPortType=nwAppnExtIfPortType, nwAppnFwdLsMaxSendBtu=nwAppnFwdLsMaxSendBtu, nwAppnFwdLinks=nwAppnFwdLinks, nwAppnIsr=nwAppnIsr, nwAppnFwdLsCtrFilteredBlus=nwAppnFwdLsCtrFilteredBlus, nwAppnFwdLsCtrHostDiscardBytes=nwAppnFwdLsCtrHostDiscardBytes, nwAppnFwdLsCtrHdrErrBlus=nwAppnFwdLsCtrHdrErrBlus, nwAppnSysLuControl=nwAppnSysLuControl, nwAppnFwdLsCtrLsName=nwAppnFwdLsCtrLsName, nwAppnExtensionTable=nwAppnExtensionTable, nwAppnIfCnTgPropDelay=nwAppnIfCnTgPropDelay, nwAppnExtIfLimitedRsrc=nwAppnExtIfLimitedRsrc, nwAppnFwdIfCtrHostDiscardBytes=nwAppnFwdIfCtrHostDiscardBytes, nwAppnEventTextString=nwAppnEventTextString, nwAppnIsrVersion=nwAppnIsrVersion, nwAppnEventLogConfig=nwAppnEventLogConfig, nwAppnFwdIfForwarding=nwAppnFwdIfForwarding, nwAppnFwdIfCtrFilteredMus=nwAppnFwdIfCtrFilteredMus, nwAppnSysCfgLocalNode=nwAppnSysCfgLocalNode, nwAppnFwdLsUsrDef3=nwAppnFwdLsUsrDef3, nwAppnLinkState=nwAppnLinkState, nwAppnExtIfAddress=nwAppnExtIfAddress, nwAppnIfCnTgCharEntry=nwAppnIfCnTgCharEntry, nwAppnSystem=nwAppnSystem, nwAppnExtIfDfltByteCost=nwAppnExtIfDfltByteCost, nwAppnFwdLsAdjCpName=nwAppnFwdLsAdjCpName, nwAppnFwdLsCtrDiscardBlus=nwAppnFwdLsCtrDiscardBlus, nwAppnSysMaxLocates=nwAppnSysMaxLocates, nwAppnExtIfDfltMaxSBtuSize=nwAppnExtIfDfltMaxSBtuSize, nwAppnFwdIfCtrOutBytes=nwAppnFwdIfCtrOutBytes, nwAppnFwdLsCtrInBytes=nwAppnFwdLsCtrInBytes, nwAppnFwdLsCtrReset=nwAppnFwdLsCtrReset, nwAppnFwdLsConfig=nwAppnFwdLsConfig, nwAppnFwdIfAclStatus=nwAppnFwdIfAclStatus, nwAppnFwdLsCtrLenErrBlus=nwAppnFwdLsCtrLenErrBlus, nwAppnForwarding=nwAppnForwarding, nwAppnExtIfMaxIfrmRcvd=nwAppnExtIfMaxIfrmRcvd, nwAppnSysLuEntry=nwAppnSysLuEntry, nwAppnExtIfCpCpSupp=nwAppnExtIfCpCpSupp, nwAppnFwdCtrLenErrMus=nwAppnFwdCtrLenErrMus, nwAppnFwdLsCtrTable=nwAppnFwdLsCtrTable, nwAppnFwdIfMtu=nwAppnFwdIfMtu, nwAppnFwdLsConnectCost=nwAppnFwdLsConnectCost, nwAppnIsrOperationalTime=nwAppnIsrOperationalTime, nwAppnFwdCtrFwdBytes=nwAppnFwdCtrFwdBytes, nwAppnFwdLsCtrHostDiscardBlus=nwAppnFwdLsCtrHostDiscardBlus, nwAppnEventTime=nwAppnEventTime, nwAppnEventProtocol=nwAppnEventProtocol, nwAppnEventFltrProtocol=nwAppnEventFltrProtocol, nwAppnSysNodeType=nwAppnSysNodeType, nwAppnSysBlockNum=nwAppnSysBlockNum, nwAppnFwdIfCtrInMus=nwAppnFwdIfCtrInMus, nwAppnIsrAdminStatus=nwAppnIsrAdminStatus, nwAppnFwdLsControl=nwAppnFwdLsControl, nwAppnFwdLsCtrHostInBlus=nwAppnFwdLsCtrHostInBlus, nwAppnSysIsrUpperThresh=nwAppnSysIsrUpperThresh, nwAppnIfCnPtControl=nwAppnIfCnPtControl, nwAppnFwdCtrHdrErrMus=nwAppnFwdCtrHdrErrMus, nwAppnFwdIfCtrDiscardBytes=nwAppnFwdIfCtrDiscardBytes, nwAppnSysLuTable=nwAppnSysLuTable, nwAppnExtIfLsXmitRcvCap=nwAppnExtIfLsXmitRcvCap, nwAppnSysCpName=nwAppnSysCpName, nwAppnSysMdsSendQSize=nwAppnSysMdsSendQSize, nwAppnFib=nwAppnFib, nwAppnFwdCtrDiscardBytes=nwAppnFwdCtrDiscardBytes, nwAppnFwdLsSecurity=nwAppnFwdLsSecurity, nwAppnFwdLsCtrOperationalTime=nwAppnFwdLsCtrOperationalTime, nwAppnExtIfDlcType=nwAppnExtIfDlcType, nwAppnIfCnTgFqName=nwAppnIfCnTgFqName, nwAppnFwdLsAutoActSupport=nwAppnFwdLsAutoActSupport, nwAppnFwdIfCtrAddrErrMus=nwAppnFwdIfCtrAddrErrMus, nwAppnFwdIfIndex=nwAppnFwdIfIndex, nwAppnEventEntry=nwAppnEventEntry, nwAppnSysOperStatus=nwAppnSysOperStatus, nwAppnFwdCtrOperationalTime=nwAppnFwdCtrOperationalTime, nwAppnFwdLsLimitedRsrc=nwAppnFwdLsLimitedRsrc, nwAppnFwdLsPropDelay=nwAppnFwdLsPropDelay, nwAppnFwdIfCtrLenErrMus=nwAppnFwdIfCtrLenErrMus, nwAppnFwdLsName=nwAppnFwdLsName, nwAppnSysIdNum=nwAppnSysIdNum, nwAppnSysCfgTables=nwAppnSysCfgTables, nwAppnSysModeCosMap=nwAppnSysModeCosMap, nwAppnFwdLsCtrDiscardBytes=nwAppnFwdLsCtrDiscardBytes, nwAppnFwdCtrHostDiscardBytes=nwAppnFwdCtrHostDiscardBytes, nwAppnEventFltrSeverity=nwAppnEventFltrSeverity) mibBuilder.exportSymbols('CTRON-APPN-MIB', nwAppnSysMaxIsrSessions=nwAppnSysMaxIsrSessions, nwAppnExtIfLocalLsRole=nwAppnExtIfLocalLsRole, nwAppnAccessControl=nwAppnAccessControl, nwAppnSysCosSize=nwAppnSysCosSize, nwAppnFwdIfEntry=nwAppnFwdIfEntry, nwAppnFwdIfCtrAdminStatus=nwAppnFwdIfCtrAdminStatus, nwAppnEventSeverity=nwAppnEventSeverity, nwAppnExtIfStopType=nwAppnExtIfStopType, nwAppnSysMdsSupport=nwAppnSysMdsSupport, nwAppnFwdIfFrameType=nwAppnFwdIfFrameType, nwAppnExtIfIndex=nwAppnExtIfIndex, nwAppnExtIfPortName=nwAppnExtIfPortName, nwAppnFwdLsdynamicLs=nwAppnFwdLsdynamicLs, nwAppnExtIfTotLsActLim=nwAppnExtIfTotLsActLim, nwAppnEndSystems=nwAppnEndSystems, nwAppnSysAdministration=nwAppnSysAdministration, nwAppnFilters=nwAppnFilters)
l = [4, 7, 44, 47, 74, 77, 444, 447, 474, 477, 744, 747, 774, 777] n = int(input()) for i in l: if n%i==0: print("YES") break else: print("NO")
l = [4, 7, 44, 47, 74, 77, 444, 447, 474, 477, 744, 747, 774, 777] n = int(input()) for i in l: if n % i == 0: print('YES') break else: print('NO')
class InvalidSign(Exception): pass class InvalidCoordinate(Exception): pass class PreoccupiedCell(Exception): pass class GameStatus(Exception): def __init__(self, sign): self.sign = sign class Victory(GameStatus): pass class Draw(GameStatus): pass
class Invalidsign(Exception): pass class Invalidcoordinate(Exception): pass class Preoccupiedcell(Exception): pass class Gamestatus(Exception): def __init__(self, sign): self.sign = sign class Victory(GameStatus): pass class Draw(GameStatus): pass
#!/usr/bin/env python # -*- coding: utf-8 -*- def check(N,S): if S=='.': return N+1,False else: return N,True def main(): H,W,X,Y = map(int,input().split()) S = [list(map(str,input())) for i in range(H)] X -= 1 Y -= 1 ans = -3 for i in range(X,H,1): ans,flag = check(ans,S[i][Y]) if flag: break for i in range(X,-1,-1): ans,flag = check(ans,S[i][Y]) if flag: break for j in range(Y,W,1): ans,flag = check(ans,S[X][j]) if flag: break for j in range(Y,-1,-1): ans,flag = check(ans,S[X][j]) if flag: break print(ans) if __name__ == '__main__': main()
def check(N, S): if S == '.': return (N + 1, False) else: return (N, True) def main(): (h, w, x, y) = map(int, input().split()) s = [list(map(str, input())) for i in range(H)] x -= 1 y -= 1 ans = -3 for i in range(X, H, 1): (ans, flag) = check(ans, S[i][Y]) if flag: break for i in range(X, -1, -1): (ans, flag) = check(ans, S[i][Y]) if flag: break for j in range(Y, W, 1): (ans, flag) = check(ans, S[X][j]) if flag: break for j in range(Y, -1, -1): (ans, flag) = check(ans, S[X][j]) if flag: break print(ans) if __name__ == '__main__': main()
class Pet: def __init__(self, name, age): self.name = name self.age = age def show(self): print(f'Hello! I am {self.name} and I am {self.age} years old!') def speak(self): print('I dont know what I say!') class Cat(Pet): def __init__(self, name, age, color): super().__init__(name, age) self.color = color def speak(self): print('Meow') def show(self): print(f'Hello! I am {self.name} and I am {self.age} years old and I am {self.color}') class Dog(Pet): def speak(self): print('Bark') p = Pet('Tim', 19) p.speak() c = Cat('Bill', 34, 'Brown') c.show() d = Dog('Jill', 25) d.speak()
class Pet: def __init__(self, name, age): self.name = name self.age = age def show(self): print(f'Hello! I am {self.name} and I am {self.age} years old!') def speak(self): print('I dont know what I say!') class Cat(Pet): def __init__(self, name, age, color): super().__init__(name, age) self.color = color def speak(self): print('Meow') def show(self): print(f'Hello! I am {self.name} and I am {self.age} years old and I am {self.color}') class Dog(Pet): def speak(self): print('Bark') p = pet('Tim', 19) p.speak() c = cat('Bill', 34, 'Brown') c.show() d = dog('Jill', 25) d.speak()
# Python dictionary with keys having multiple inputs # First Example dict = {} x, y, z = 10, 20, 30 dict[x, y, z] = x + y - z x, y, z = 5, 2, 4 dict[x, y, z] = x + y - z print(dict) # Second Example places = {("19.07'53.2", "72.54'51.0"):"Mumbai", ("28.33'34.1", "77.06'16.6"):"Delhi"} print(places) lat = [] long = [] plc = [] for i in places : lat.append(i[0]) long.append(i[1]) plc.append(places[i[0], i[1]]) print(lat) print(long) print(plc)
dict = {} (x, y, z) = (10, 20, 30) dict[x, y, z] = x + y - z (x, y, z) = (5, 2, 4) dict[x, y, z] = x + y - z print(dict) places = {("19.07'53.2", "72.54'51.0"): 'Mumbai', ("28.33'34.1", "77.06'16.6"): 'Delhi'} print(places) lat = [] long = [] plc = [] for i in places: lat.append(i[0]) long.append(i[1]) plc.append(places[i[0], i[1]]) print(lat) print(long) print(plc)
# Warning: This is an example of how you should *not* # implement stimulus presentation in time-critical # experiments. # # Prepare canvas 1 and show it canvas1 = Canvas() canvas1 += Text('This is the first canvas') t1 = canvas1.show() # Sleep for 95 ms to get a 100 ms delay clock.sleep(95) # Prepare canvas 2 and show it canvas2 = Canvas() canvas2 += Text('This is the second canvas') t2 = canvas2.show() # The actual delay will be more than 100 ms, because # stimulus preparation time is included. This is bad! print('Actual delay: %s' % (t2-t1))
canvas1 = canvas() canvas1 += text('This is the first canvas') t1 = canvas1.show() clock.sleep(95) canvas2 = canvas() canvas2 += text('This is the second canvas') t2 = canvas2.show() print('Actual delay: %s' % (t2 - t1))
#!/usr/bin/env python3 a = [] s = input() while s != "end": a.append(s) s = input() n = input() i = 0 while i < len(a): s = a[i] if s[0] == n: print(s) i = i + 1
a = [] s = input() while s != 'end': a.append(s) s = input() n = input() i = 0 while i < len(a): s = a[i] if s[0] == n: print(s) i = i + 1
# Scrapy settings for booksbot project # # For simplicity, this file contains only settings considered important or # commonly used. You can find more settings consulting the documentation: # # https://docs.scrapy.org/en/latest/topics/settings.html # https://docs.scrapy.org/en/latest/topics/downloader-middleware.html # https://docs.scrapy.org/en/latest/topics/spider-middleware.html BOT_NAME = "booksbot" SPIDER_MODULES = ["booksbot.spiders"] NEWSPIDER_MODULE = "booksbot.spiders" # Obey robots.txt rules ROBOTSTXT_OBEY = True SPIDER_MIDDLEWARES = { "scrapy_autounit.AutounitMiddleware": 950, } # Enable this whenever updating tests for the spider AUTOUNIT_ENABLED = False
bot_name = 'booksbot' spider_modules = ['booksbot.spiders'] newspider_module = 'booksbot.spiders' robotstxt_obey = True spider_middlewares = {'scrapy_autounit.AutounitMiddleware': 950} autounit_enabled = False
coordinates_7F0030 = ((151, 114), (151, 115), (151, 116), (151, 117), (151, 118), (151, 119), (151, 120), (151, 121), (151, 122), (151, 123), (151, 124), (151, 125), (151, 126), (151, 127), (151, 128), (151, 129), (151, 130), (151, 131), (151, 132), (151, 133), (151, 135), (152, 111), (152, 113), (152, 135), (153, 113), (153, 114), (153, 115), (153, 116), (153, 117), (153, 118), (153, 119), (153, 120), (153, 121), (153, 122), (153, 123), (153, 124), (153, 125), (153, 126), (153, 127), (153, 128), (153, 129), (153, 130), (153, 131), (153, 132), (153, 133), (153, 135), (154, 110), (154, 112), (154, 113), (154, 114), (154, 115), (154, 116), (154, 117), (154, 118), (154, 119), (154, 120), (154, 121), (154, 122), (154, 123), (154, 124), (154, 125), (154, 126), (154, 127), (154, 128), (154, 129), (154, 130), (154, 131), (154, 132), (154, 133), (154, 135), (155, 109), (155, 111), (155, 112), (155, 113), (155, 114), (155, 115), (155, 116), (155, 117), (155, 118), (155, 119), (155, 120), (155, 121), (155, 122), (155, 123), (155, 124), (155, 125), (155, 126), (155, 127), (155, 128), (155, 129), (155, 130), (155, 131), (155, 132), (155, 133), (155, 135), (156, 109), (156, 111), (156, 112), (156, 113), (156, 114), (156, 115), (156, 116), (156, 117), (156, 118), (156, 119), (156, 120), (156, 121), (156, 122), (156, 123), (156, 124), (156, 125), (156, 126), (156, 127), (156, 128), (156, 129), (156, 130), (156, 131), (156, 132), (156, 133), (156, 135), (157, 108), (157, 110), (157, 111), (157, 112), (157, 113), (157, 114), (157, 115), (157, 116), (157, 117), (157, 118), (157, 119), (157, 120), (157, 121), (157, 122), (157, 123), (157, 124), (157, 125), (157, 126), (157, 127), (157, 128), (157, 129), (157, 130), (157, 131), (157, 132), (157, 133), (157, 135), (158, 108), (158, 110), (158, 111), (158, 112), (158, 113), (158, 114), (158, 115), (158, 116), (158, 117), (158, 118), (158, 119), (158, 120), (158, 121), (158, 122), (158, 123), (158, 124), (158, 125), (158, 126), (158, 127), (158, 128), (158, 129), (158, 130), (158, 131), (158, 132), (158, 134), (159, 108), (159, 110), (159, 111), (159, 112), (159, 113), (159, 114), (159, 115), (159, 116), (159, 117), (159, 118), (159, 119), (159, 120), (159, 121), (159, 122), (159, 123), (159, 124), (159, 125), (159, 126), (159, 127), (159, 128), (159, 129), (159, 130), (159, 131), (159, 132), (159, 134), (160, 107), (160, 109), (160, 110), (160, 111), (160, 112), (160, 113), (160, 114), (160, 115), (160, 116), (160, 117), (160, 118), (160, 119), (160, 120), (160, 121), (160, 122), (160, 123), (160, 124), (160, 125), (160, 126), (160, 127), (160, 128), (160, 129), (160, 130), (160, 131), (160, 133), (161, 107), (161, 109), (161, 110), (161, 111), (161, 112), (161, 113), (161, 114), (161, 115), (161, 116), (161, 117), (161, 118), (161, 119), (161, 120), (161, 121), (161, 122), (161, 123), (161, 124), (161, 125), (161, 126), (161, 127), (161, 128), (161, 129), (161, 130), (161, 131), (161, 133), (162, 107), (162, 109), (162, 110), (162, 111), (162, 112), (162, 113), (162, 114), (162, 115), (162, 116), (162, 117), (162, 118), (162, 119), (162, 120), (162, 121), (162, 122), (162, 123), (162, 124), (162, 125), (162, 126), (162, 127), (162, 128), (162, 129), (162, 130), (162, 132), (163, 106), (163, 108), (163, 109), (163, 110), (163, 111), (163, 112), (163, 113), (163, 114), (163, 115), (163, 116), (163, 117), (163, 118), (163, 119), (163, 120), (163, 121), (163, 122), (163, 123), (163, 124), (163, 125), (163, 126), (163, 127), (163, 128), (163, 129), (163, 131), (164, 106), (164, 108), (164, 109), (164, 110), (164, 111), (164, 112), (164, 113), (164, 114), (164, 115), (164, 116), (164, 117), (164, 118), (164, 119), (164, 120), (164, 121), (164, 122), (164, 123), (164, 124), (164, 125), (164, 126), (164, 127), (164, 128), (164, 129), (164, 131), (165, 105), (165, 107), (165, 108), (165, 109), (165, 110), (165, 111), (165, 112), (165, 113), (165, 114), (165, 115), (165, 116), (165, 117), (165, 118), (165, 119), (165, 120), (165, 121), (165, 122), (165, 123), (165, 124), (165, 125), (165, 126), (165, 127), (165, 128), (165, 130), (166, 105), (166, 107), (166, 108), (166, 109), (166, 110), (166, 111), (166, 112), (166, 113), (166, 114), (166, 115), (166, 116), (166, 117), (166, 118), (166, 119), (166, 120), (166, 121), (166, 122), (166, 123), (166, 124), (166, 125), (166, 126), (166, 127), (166, 129), (167, 105), (167, 106), (167, 107), (167, 108), (167, 109), (167, 110), (167, 111), (167, 112), (167, 113), (167, 114), (167, 115), (167, 116), (167, 117), (167, 118), (167, 119), (167, 120), (167, 121), (167, 122), (167, 123), (167, 124), (167, 125), (167, 126), (167, 127), (167, 129), (168, 104), (168, 106), (168, 107), (168, 108), (168, 109), (168, 110), (168, 111), (168, 112), (168, 113), (168, 114), (168, 115), (168, 116), (168, 117), (168, 118), (168, 119), (168, 120), (168, 121), (168, 122), (168, 123), (168, 124), (168, 125), (168, 126), (168, 128), (169, 104), (169, 106), (169, 107), (169, 108), (169, 109), (169, 110), (169, 111), (169, 112), (169, 113), (169, 114), (169, 115), (169, 116), (169, 117), (169, 118), (169, 119), (169, 120), (169, 121), (169, 122), (169, 123), (169, 124), (169, 125), (169, 126), (169, 128), (170, 104), (170, 106), (170, 107), (170, 108), (170, 109), (170, 110), (170, 111), (170, 112), (170, 113), (170, 114), (170, 115), (170, 116), (170, 117), (170, 118), (170, 119), (170, 120), (170, 121), (170, 122), (170, 123), (170, 124), (170, 125), (170, 127), (171, 103), (171, 105), (171, 106), (171, 107), (171, 108), (171, 109), (171, 110), (171, 111), (171, 112), (171, 113), (171, 114), (171, 115), (171, 116), (171, 117), (171, 118), (171, 119), (171, 120), (171, 121), (171, 122), (171, 123), (171, 124), (171, 125), (171, 127), (172, 103), (172, 105), (172, 106), (172, 107), (172, 108), (172, 109), (172, 110), (172, 111), (172, 112), (172, 113), (172, 114), (172, 115), (172, 116), (172, 117), (172, 118), (172, 119), (172, 120), (172, 121), (172, 122), (172, 123), (172, 124), (172, 126), (173, 103), (173, 105), (173, 106), (173, 107), (173, 108), (173, 109), (173, 110), (173, 111), (173, 112), (173, 113), (173, 114), (173, 115), (173, 116), (173, 117), (173, 118), (173, 119), (173, 120), (173, 121), (173, 122), (173, 123), (173, 124), (173, 126), (174, 103), (174, 105), (174, 106), (174, 107), (174, 108), (174, 109), (174, 110), (174, 111), (174, 112), (174, 113), (174, 114), (174, 115), (174, 116), (174, 117), (174, 118), (174, 119), (174, 120), (174, 121), (174, 122), (174, 123), (174, 124), (174, 125), (174, 126), (175, 103), (175, 105), (175, 106), (175, 107), (175, 108), (175, 109), (175, 110), (175, 111), (175, 112), (175, 113), (175, 114), (175, 115), (175, 116), (175, 117), (175, 118), (175, 119), (175, 120), (175, 121), (175, 122), (175, 123), (175, 125), (176, 103), (176, 105), (176, 106), (176, 107), (176, 108), (176, 109), (176, 110), (176, 111), (176, 112), (176, 113), (176, 114), (176, 115), (176, 116), (176, 117), (176, 118), (176, 119), (176, 120), (176, 121), (176, 122), (176, 123), (176, 125), (177, 103), (177, 105), (177, 106), (177, 107), (177, 108), (177, 109), (177, 110), (177, 111), (177, 112), (177, 113), (177, 114), (177, 115), (177, 116), (177, 117), (177, 118), (177, 119), (177, 120), (177, 121), (177, 122), (177, 123), (177, 125), (178, 103), (178, 105), (178, 106), (178, 107), (178, 108), (178, 109), (178, 110), (178, 111), (178, 112), (178, 113), (178, 114), (178, 115), (178, 116), (178, 117), (178, 118), (178, 119), (178, 120), (178, 121), (178, 122), (178, 123), (178, 125), (179, 103), (179, 105), (179, 106), (179, 107), (179, 108), (179, 109), (179, 110), (179, 111), (179, 112), (179, 113), (179, 114), (179, 115), (179, 116), (179, 117), (179, 118), (179, 119), (179, 120), (179, 121), (179, 122), (179, 123), (179, 125), (180, 103), (180, 105), (180, 106), (180, 107), (180, 108), (180, 109), (180, 110), (180, 111), (180, 112), (180, 113), (180, 114), (180, 115), (180, 116), (180, 117), (180, 118), (180, 119), (180, 120), (180, 121), (180, 122), (180, 123), (180, 125), (181, 103), (181, 105), (181, 106), (181, 107), (181, 108), (181, 109), (181, 110), (181, 111), (181, 112), (181, 113), (181, 114), (181, 115), (181, 116), (181, 117), (181, 118), (181, 119), (181, 120), (181, 121), (181, 122), (181, 123), (181, 125), (182, 103), (182, 105), (182, 106), (182, 107), (182, 108), (182, 109), (182, 110), (182, 111), (182, 112), (182, 113), (182, 114), (182, 115), (182, 116), (182, 117), (182, 118), (182, 119), (182, 120), (182, 121), (182, 122), (182, 124), (183, 103), (183, 105), (183, 106), (183, 107), (183, 108), (183, 109), (183, 110), (183, 111), (183, 112), (183, 113), (183, 114), (183, 115), (183, 116), (183, 117), (183, 118), (183, 119), (183, 120), (183, 121), (183, 123), (184, 104), (184, 106), (184, 107), (184, 108), (184, 109), (184, 110), (184, 111), (184, 112), (184, 113), (184, 114), (184, 115), (184, 116), (184, 117), (184, 118), (184, 119), (184, 120), (184, 122), (185, 104), (185, 106), (185, 107), (185, 108), (185, 109), (185, 110), (185, 111), (185, 112), (185, 113), (185, 114), (185, 115), (185, 116), (185, 117), (185, 118), (185, 119), (185, 121), (186, 104), (186, 106), (186, 107), (186, 108), (186, 109), (186, 110), (186, 111), (186, 112), (186, 113), (186, 114), (186, 115), (186, 116), (186, 117), (186, 118), (186, 120), (187, 105), (187, 107), (187, 108), (187, 109), (187, 110), (187, 111), (187, 112), (187, 113), (187, 114), (187, 115), (187, 116), (187, 117), (187, 119), (188, 105), (188, 107), (188, 108), (188, 109), (188, 110), (188, 111), (188, 112), (188, 113), (188, 114), (188, 115), (188, 116), (188, 117), (188, 119), (189, 108), (189, 109), (189, 110), (189, 111), (189, 112), (189, 113), (189, 114), (189, 115), (189, 116), (189, 118), (190, 106), (190, 108), (190, 109), (190, 110), (190, 111), (190, 112), (190, 113), (190, 114), (190, 115), (190, 117), (191, 107), (191, 109), (191, 110), (191, 111), (191, 112), (191, 113), (191, 114), (191, 115), (192, 108), (192, 111), (192, 112), (192, 113), (192, 114), (192, 116), (193, 109), (193, 115), (194, 111), (194, 113), (194, 115), (205, 111), (205, 113), (205, 115), (206, 109), (206, 115), (207, 108), (207, 111), (207, 112), (207, 113), (207, 114), (207, 116), (208, 107), (208, 109), (208, 110), (208, 111), (208, 112), (208, 113), (208, 114), (208, 115), (208, 117), (209, 106), (209, 108), (209, 109), (209, 110), (209, 111), (209, 112), (209, 113), (209, 114), (209, 115), (209, 117), (210, 105), (210, 107), (210, 108), (210, 109), (210, 110), (210, 111), (210, 112), (210, 113), (210, 114), (210, 115), (210, 116), (210, 118), (211, 105), (211, 107), (211, 108), (211, 109), (211, 110), (211, 111), (211, 112), (211, 113), (211, 114), (211, 115), (211, 116), (211, 117), (211, 119), (212, 105), (212, 106), (212, 107), (212, 108), (212, 109), (212, 110), (212, 111), (212, 112), (212, 113), (212, 114), (212, 115), (212, 116), (212, 117), (212, 119), (213, 104), (213, 106), (213, 107), (213, 108), (213, 109), (213, 110), (213, 111), (213, 112), (213, 113), (213, 114), (213, 115), (213, 116), (213, 117), (213, 118), (213, 120), (214, 104), (214, 106), (214, 107), (214, 108), (214, 109), (214, 110), (214, 111), (214, 112), (214, 113), (214, 114), (214, 115), (214, 116), (214, 117), (214, 118), (214, 119), (214, 121), (215, 104), (215, 106), (215, 107), (215, 108), (215, 109), (215, 110), (215, 111), (215, 112), (215, 113), (215, 114), (215, 115), (215, 116), (215, 117), (215, 118), (215, 119), (215, 120), (215, 122), (216, 103), (216, 105), (216, 106), (216, 107), (216, 108), (216, 109), (216, 110), (216, 111), (216, 112), (216, 113), (216, 114), (216, 115), (216, 116), (216, 117), (216, 118), (216, 119), (216, 120), (216, 121), (216, 123), (217, 103), (217, 105), (217, 106), (217, 107), (217, 108), (217, 109), (217, 110), (217, 111), (217, 112), (217, 113), (217, 114), (217, 115), (217, 116), (217, 117), (217, 118), (217, 119), (217, 120), (217, 121), (217, 122), (217, 124), (217, 125), (218, 103), (218, 105), (218, 106), (218, 107), (218, 108), (218, 109), (218, 110), (218, 111), (218, 112), (218, 113), (218, 114), (218, 115), (218, 116), (218, 117), (218, 118), (218, 119), (218, 120), (218, 121), (218, 122), (218, 123), (218, 125), (219, 103), (219, 105), (219, 106), (219, 107), (219, 108), (219, 109), (219, 110), (219, 111), (219, 112), (219, 113), (219, 114), (219, 115), (219, 116), (219, 117), (219, 118), (219, 119), (219, 120), (219, 121), (219, 122), (219, 123), (219, 125), (220, 103), (220, 105), (220, 106), (220, 107), (220, 108), (220, 109), (220, 110), (220, 111), (220, 112), (220, 113), (220, 114), (220, 115), (220, 116), (220, 117), (220, 118), (220, 119), (220, 120), (220, 121), (220, 122), (220, 123), (220, 125), (221, 103), (221, 105), (221, 106), (221, 107), (221, 108), (221, 109), (221, 110), (221, 111), (221, 112), (221, 113), (221, 114), (221, 115), (221, 116), (221, 117), (221, 118), (221, 119), (221, 120), (221, 121), (221, 122), (221, 123), (221, 125), (222, 103), (222, 105), (222, 106), (222, 107), (222, 108), (222, 109), (222, 110), (222, 111), (222, 112), (222, 113), (222, 114), (222, 115), (222, 116), (222, 117), (222, 118), (222, 119), (222, 120), (222, 121), (222, 122), (222, 123), (222, 125), (223, 103), (223, 105), (223, 106), (223, 107), (223, 108), (223, 109), (223, 110), (223, 111), (223, 112), (223, 113), (223, 114), (223, 115), (223, 116), (223, 117), (223, 118), (223, 119), (223, 120), (223, 121), (223, 122), (223, 123), (223, 125), (224, 103), (224, 105), (224, 106), (224, 107), (224, 108), (224, 109), (224, 110), (224, 111), (224, 112), (224, 113), (224, 114), (224, 115), (224, 116), (224, 117), (224, 118), (224, 119), (224, 120), (224, 121), (224, 122), (224, 123), (224, 125), (225, 103), (225, 105), (225, 106), (225, 107), (225, 108), (225, 109), (225, 110), (225, 111), (225, 112), (225, 113), (225, 114), (225, 115), (225, 116), (225, 117), (225, 118), (225, 119), (225, 120), (225, 121), (225, 122), (225, 123), (225, 124), (225, 126), (226, 103), (226, 105), (226, 106), (226, 107), (226, 108), (226, 109), (226, 110), (226, 111), (226, 112), (226, 113), (226, 114), (226, 115), (226, 116), (226, 117), (226, 118), (226, 119), (226, 120), (226, 121), (226, 122), (226, 123), (226, 124), (226, 126), (227, 103), (227, 105), (227, 106), (227, 107), (227, 108), (227, 109), (227, 110), (227, 111), (227, 112), (227, 113), (227, 114), (227, 115), (227, 116), (227, 117), (227, 118), (227, 119), (227, 120), (227, 121), (227, 122), (227, 123), (227, 124), (227, 126), (228, 103), (228, 105), (228, 106), (228, 107), (228, 108), (228, 109), (228, 110), (228, 111), (228, 112), (228, 113), (228, 114), (228, 115), (228, 116), (228, 117), (228, 118), (228, 119), (228, 120), (228, 121), (228, 122), (228, 123), (228, 124), (228, 125), (228, 127), (229, 104), (229, 106), (229, 107), (229, 108), (229, 109), (229, 110), (229, 111), (229, 112), (229, 113), (229, 114), (229, 115), (229, 116), (229, 117), (229, 118), (229, 119), (229, 120), (229, 121), (229, 122), (229, 123), (229, 124), (229, 125), (229, 127), (230, 104), (230, 106), (230, 107), (230, 108), (230, 109), (230, 110), (230, 111), (230, 112), (230, 113), (230, 114), (230, 115), (230, 116), (230, 117), (230, 118), (230, 119), (230, 120), (230, 121), (230, 122), (230, 123), (230, 124), (230, 125), (230, 126), (230, 128), (231, 104), (231, 106), (231, 107), (231, 108), (231, 109), (231, 110), (231, 111), (231, 112), (231, 113), (231, 114), (231, 115), (231, 116), (231, 117), (231, 118), (231, 119), (231, 120), (231, 121), (231, 122), (231, 123), (231, 124), (231, 125), (231, 126), (231, 128), (232, 105), (232, 107), (232, 108), (232, 109), (232, 110), (232, 111), (232, 112), (232, 113), (232, 114), (232, 115), (232, 116), (232, 117), (232, 118), (232, 119), (232, 120), (232, 121), (232, 122), (232, 123), (232, 124), (232, 125), (232, 126), (232, 127), (232, 129), (233, 105), (233, 107), (233, 108), (233, 109), (233, 110), (233, 111), (233, 112), (233, 113), (233, 114), (233, 115), (233, 116), (233, 117), (233, 118), (233, 119), (233, 120), (233, 121), (233, 122), (233, 123), (233, 124), (233, 125), (233, 126), (233, 127), (233, 129), (234, 105), (234, 107), (234, 108), (234, 109), (234, 110), (234, 111), (234, 112), (234, 113), (234, 114), (234, 115), (234, 116), (234, 117), (234, 118), (234, 119), (234, 120), (234, 121), (234, 122), (234, 123), (234, 124), (234, 125), (234, 126), (234, 127), (234, 128), (234, 130), (235, 106), (235, 108), (235, 109), (235, 110), (235, 111), (235, 112), (235, 113), (235, 114), (235, 115), (235, 116), (235, 117), (235, 118), (235, 119), (235, 120), (235, 121), (235, 122), (235, 123), (235, 124), (235, 125), (235, 126), (235, 127), (235, 128), (235, 129), (235, 131), (236, 106), (236, 108), (236, 109), (236, 110), (236, 111), (236, 112), (236, 113), (236, 114), (236, 115), (236, 116), (236, 117), (236, 118), (236, 119), (236, 120), (236, 121), (236, 122), (236, 123), (236, 124), (236, 125), (236, 126), (236, 127), (236, 128), (236, 129), (236, 131), (237, 107), (237, 109), (237, 110), (237, 111), (237, 112), (237, 113), (237, 114), (237, 115), (237, 116), (237, 117), (237, 118), (237, 119), (237, 120), (237, 121), (237, 122), (237, 123), (237, 124), (237, 125), (237, 126), (237, 127), (237, 128), (237, 129), (237, 130), (237, 132), (238, 107), (238, 109), (238, 110), (238, 111), (238, 112), (238, 113), (238, 114), (238, 115), (238, 116), (238, 117), (238, 118), (238, 119), (238, 120), (238, 121), (238, 122), (238, 123), (238, 124), (238, 125), (238, 126), (238, 127), (238, 128), (238, 129), (238, 130), (238, 131), (238, 133), (239, 107), (239, 109), (239, 110), (239, 111), (239, 112), (239, 113), (239, 114), (239, 115), (239, 116), (239, 117), (239, 118), (239, 119), (239, 120), (239, 121), (239, 122), (239, 123), (239, 124), (239, 125), (239, 126), (239, 127), (239, 128), (239, 129), (239, 130), (239, 131), (239, 133), (240, 108), (240, 110), (240, 111), (240, 112), (240, 113), (240, 114), (240, 115), (240, 116), (240, 117), (240, 118), (240, 119), (240, 120), (240, 121), (240, 122), (240, 123), (240, 124), (240, 125), (240, 126), (240, 127), (240, 128), (240, 129), (240, 130), (240, 131), (240, 132), (240, 134), (241, 108), (241, 110), (241, 111), (241, 112), (241, 113), (241, 114), (241, 115), (241, 116), (241, 117), (241, 118), (241, 119), (241, 120), (241, 121), (241, 122), (241, 123), (241, 124), (241, 125), (241, 126), (241, 127), (241, 128), (241, 129), (241, 130), (241, 131), (241, 132), (241, 134), (242, 108), (242, 110), (242, 111), (242, 112), (242, 113), (242, 114), (242, 115), (242, 116), (242, 117), (242, 118), (242, 119), (242, 120), (242, 121), (242, 122), (242, 123), (242, 124), (242, 125), (242, 126), (242, 127), (242, 128), (242, 129), (242, 130), (242, 131), (242, 132), (242, 133), (242, 135), (243, 109), (243, 111), (243, 112), (243, 113), (243, 114), (243, 115), (243, 116), (243, 117), (243, 118), (243, 119), (243, 120), (243, 121), (243, 122), (243, 123), (243, 124), (243, 125), (243, 126), (243, 127), (243, 128), (243, 129), (243, 130), (243, 131), (243, 132), (243, 133), (243, 135), (244, 109), (244, 111), (244, 112), (244, 113), (244, 114), (244, 115), (244, 116), (244, 117), (244, 118), (244, 119), (244, 120), (244, 121), (244, 122), (244, 123), (244, 124), (244, 125), (244, 126), (244, 127), (244, 128), (244, 129), (244, 130), (244, 131), (244, 132), (244, 133), (244, 135), (245, 110), (245, 112), (245, 113), (245, 114), (245, 115), (245, 116), (245, 117), (245, 118), (245, 119), (245, 120), (245, 121), (245, 122), (245, 123), (245, 124), (245, 125), (245, 126), (245, 127), (245, 128), (245, 129), (245, 130), (245, 131), (245, 132), (245, 133), (245, 135), (246, 114), (246, 115), (246, 116), (246, 117), (246, 118), (246, 119), (246, 120), (246, 121), (246, 122), (246, 123), (246, 124), (246, 125), (246, 126), (246, 127), (246, 128), (246, 129), (246, 130), (246, 131), (246, 132), (246, 133), (246, 135), (247, 111), (247, 113), (247, 135), (248, 114), (248, 115), (248, 116), (248, 117), (248, 118), (248, 119), (248, 120), (248, 121), (248, 122), (248, 123), (248, 124), (248, 125), (248, 126), (248, 127), (248, 128), (248, 129), (248, 130), (248, 131), (248, 132), (248, 133), (248, 135), ) coordinates_FF00E1 = ((181, 134), (182, 133), (182, 135), (183, 129), (183, 130), (183, 131), (183, 132), (184, 125), (184, 127), (184, 128), (184, 133), (184, 134), (184, 137), (184, 138), (184, 139), (185, 129), (185, 130), (185, 131), (185, 132), (185, 133), (185, 134), (185, 135), (185, 136), (185, 140), (185, 141), (185, 142), (185, 143), (186, 123), (186, 125), (186, 126), (186, 127), (186, 128), (186, 129), (186, 130), (186, 131), (186, 132), (186, 133), (186, 134), (186, 135), (186, 136), (186, 137), (186, 138), (186, 139), (186, 144), (186, 145), (186, 147), (187, 122), (187, 124), (187, 125), (187, 126), (187, 127), (187, 128), (187, 129), (187, 130), (187, 131), (187, 132), (187, 133), (187, 134), (187, 135), (187, 136), (187, 137), (187, 138), (187, 139), (187, 140), (187, 141), (187, 142), (187, 143), (187, 147), (188, 121), (188, 123), (188, 124), (188, 125), (188, 126), (188, 127), (188, 128), (188, 129), (188, 130), (188, 131), (188, 132), (188, 133), (188, 134), (188, 135), (188, 136), (188, 137), (188, 138), (188, 139), (188, 140), (188, 141), (188, 142), (188, 143), (188, 144), (188, 146), (189, 120), (189, 122), (189, 123), (189, 124), (189, 125), (189, 126), (189, 127), (189, 128), (189, 129), (189, 130), (189, 131), (189, 132), (189, 133), (189, 134), (189, 135), (189, 136), (189, 137), (189, 138), (189, 139), (189, 140), (189, 141), (189, 142), (189, 143), (189, 144), (189, 146), (190, 120), (190, 122), (190, 123), (190, 124), (190, 125), (190, 126), (190, 127), (190, 128), (190, 129), (190, 130), (190, 131), (190, 132), (190, 133), (190, 134), (190, 135), (190, 136), (190, 137), (190, 138), (190, 139), (190, 140), (190, 141), (190, 142), (190, 143), (190, 144), (190, 146), (191, 119), (191, 121), (191, 122), (191, 123), (191, 124), (191, 125), (191, 126), (191, 127), (191, 128), (191, 129), (191, 130), (191, 131), (191, 132), (191, 133), (191, 134), (191, 135), (191, 136), (191, 137), (191, 138), (191, 139), (191, 140), (191, 141), (191, 142), (191, 143), (191, 145), (192, 118), (192, 120), (192, 121), (192, 122), (192, 123), (192, 124), (192, 125), (192, 126), (192, 127), (192, 128), (192, 129), (192, 130), (192, 131), (192, 132), (192, 133), (192, 134), (192, 135), (192, 136), (192, 137), (192, 138), (192, 139), (192, 140), (192, 141), (192, 142), (193, 118), (193, 120), (193, 121), (193, 122), (193, 123), (193, 124), (193, 125), (193, 126), (193, 127), (193, 128), (193, 129), (193, 130), (193, 131), (193, 132), (193, 133), (193, 134), (193, 135), (193, 136), (193, 137), (193, 138), (193, 139), (193, 140), (193, 141), (193, 143), (194, 117), (194, 119), (194, 120), (194, 121), (194, 122), (194, 123), (194, 124), (194, 125), (194, 126), (194, 127), (194, 128), (194, 129), (194, 130), (194, 131), (194, 132), (194, 133), (194, 134), (194, 135), (194, 136), (194, 137), (194, 138), (194, 142), (195, 117), (195, 120), (195, 121), (195, 122), (195, 123), (195, 124), (195, 125), (195, 126), (195, 127), (195, 128), (195, 129), (195, 130), (195, 131), (195, 132), (195, 133), (195, 134), (195, 135), (195, 136), (195, 140), (196, 118), (196, 124), (196, 125), (196, 126), (196, 127), (196, 128), (196, 129), (196, 130), (196, 136), (196, 137), (196, 138), (197, 120), (197, 122), (197, 123), (197, 131), (197, 132), (197, 133), (197, 134), (197, 135), (198, 124), (198, 125), (198, 126), (198, 127), (198, 128), (198, 129), (198, 130), (201, 123), (201, 124), (201, 125), (201, 126), (201, 127), (201, 128), (201, 129), (201, 130), (201, 131), (202, 120), (202, 122), (202, 123), (202, 132), (202, 133), (202, 134), (202, 135), (202, 136), (203, 118), (203, 123), (203, 124), (203, 125), (203, 126), (203, 127), (203, 128), (203, 129), (203, 130), (203, 131), (203, 137), (203, 138), (204, 117), (204, 120), (204, 121), (204, 122), (204, 123), (204, 124), (204, 125), (204, 126), (204, 127), (204, 128), (204, 129), (204, 130), (204, 131), (204, 132), (204, 133), (204, 134), (204, 135), (204, 136), (204, 140), (204, 141), (205, 117), (205, 119), (205, 120), (205, 121), (205, 122), (205, 123), (205, 124), (205, 125), (205, 126), (205, 127), (205, 128), (205, 129), (205, 130), (205, 131), (205, 132), (205, 133), (205, 134), (205, 135), (205, 136), (205, 137), (205, 138), (205, 139), (205, 142), (206, 118), (206, 120), (206, 121), (206, 122), (206, 123), (206, 124), (206, 125), (206, 126), (206, 127), (206, 128), (206, 129), (206, 130), (206, 131), (206, 132), (206, 133), (206, 134), (206, 135), (206, 136), (206, 137), (206, 138), (206, 139), (206, 140), (206, 141), (206, 144), (207, 118), (207, 120), (207, 121), (207, 122), (207, 123), (207, 124), (207, 125), (207, 126), (207, 127), (207, 128), (207, 129), (207, 130), (207, 131), (207, 132), (207, 133), (207, 134), (207, 135), (207, 136), (207, 137), (207, 138), (207, 139), (207, 140), (207, 141), (207, 142), (207, 145), (208, 119), (208, 121), (208, 122), (208, 123), (208, 124), (208, 125), (208, 126), (208, 127), (208, 128), (208, 129), (208, 130), (208, 131), (208, 132), (208, 133), (208, 134), (208, 135), (208, 136), (208, 137), (208, 138), (208, 139), (208, 140), (208, 141), (208, 142), (208, 143), (208, 145), (209, 120), (209, 122), (209, 123), (209, 124), (209, 125), (209, 126), (209, 127), (209, 128), (209, 129), (209, 130), (209, 131), (209, 132), (209, 133), (209, 134), (209, 135), (209, 136), (209, 137), (209, 138), (209, 139), (209, 140), (209, 141), (209, 142), (209, 143), (209, 144), (209, 146), (210, 120), (210, 122), (210, 123), (210, 124), (210, 125), (210, 126), (210, 127), (210, 128), (210, 129), (210, 130), (210, 131), (210, 132), (210, 133), (210, 134), (210, 135), (210, 136), (210, 137), (210, 138), (210, 139), (210, 140), (210, 141), (210, 142), (210, 143), (210, 144), (210, 146), (211, 121), (211, 123), (211, 124), (211, 125), (211, 126), (211, 127), (211, 128), (211, 129), (211, 130), (211, 131), (211, 132), (211, 133), (211, 134), (211, 135), (211, 136), (211, 137), (211, 138), (211, 139), (211, 140), (211, 141), (211, 142), (211, 143), (211, 144), (211, 146), (212, 122), (212, 124), (212, 125), (212, 126), (212, 127), (212, 128), (212, 129), (212, 130), (212, 131), (212, 132), (212, 133), (212, 134), (212, 135), (212, 136), (212, 137), (212, 138), (212, 139), (212, 140), (212, 141), (212, 142), (212, 143), (212, 147), (213, 123), (213, 125), (213, 126), (213, 127), (213, 128), (213, 129), (213, 130), (213, 131), (213, 132), (213, 133), (213, 134), (213, 135), (213, 136), (213, 137), (213, 138), (213, 139), (213, 144), (213, 145), (213, 147), (214, 124), (214, 130), (214, 131), (214, 132), (214, 133), (214, 134), (214, 135), (214, 140), (214, 141), (214, 142), (214, 143), (215, 125), (215, 127), (215, 128), (215, 129), (215, 133), (215, 134), (215, 137), (215, 138), (215, 139), (216, 130), (216, 131), (216, 132), (217, 133), (218, 134), ) coordinates_006B7F = ((122, 131), (122, 132), (122, 133), (122, 134), (122, 135), (122, 137), (123, 128), (123, 138), (124, 127), (124, 130), (124, 131), (124, 132), (124, 133), (124, 134), (124, 135), (124, 136), (124, 137), (124, 139), (125, 126), (125, 128), (125, 129), (125, 130), (125, 131), (125, 132), (125, 133), (125, 134), (125, 135), (125, 136), (125, 137), (125, 138), (126, 125), (126, 127), (126, 128), (126, 129), (126, 130), (126, 131), (126, 132), (126, 133), (126, 134), (126, 135), (126, 136), (126, 137), (126, 138), (126, 139), (126, 142), (127, 124), (127, 126), (127, 127), (127, 128), (127, 129), (127, 130), (127, 131), (127, 132), (127, 133), (127, 134), (127, 135), (127, 136), (127, 137), (127, 138), (127, 139), (127, 140), (128, 123), (128, 125), (128, 126), (128, 127), (128, 128), (128, 129), (128, 130), (128, 131), (128, 132), (128, 133), (128, 134), (128, 135), (128, 136), (128, 137), (128, 138), (128, 139), (128, 140), (128, 141), (129, 123), (129, 125), (129, 126), (129, 127), (129, 128), (129, 129), (129, 130), (129, 131), (129, 132), (129, 133), (129, 134), (129, 135), (129, 136), (129, 137), (129, 138), (129, 139), (129, 140), (129, 141), (129, 142), (129, 144), (130, 122), (130, 124), (130, 125), (130, 126), (130, 127), (130, 128), (130, 129), (130, 130), (130, 131), (130, 132), (130, 133), (130, 134), (130, 135), (130, 136), (130, 137), (130, 138), (130, 139), (130, 140), (130, 141), (130, 142), (130, 143), (130, 145), (131, 121), (131, 123), (131, 124), (131, 125), (131, 126), (131, 127), (131, 128), (131, 129), (131, 130), (131, 131), (131, 132), (131, 133), (131, 134), (131, 135), (131, 136), (131, 137), (131, 138), (131, 139), (131, 140), (131, 141), (131, 142), (131, 143), (131, 144), (131, 146), (132, 121), (132, 123), (132, 124), (132, 125), (132, 126), (132, 127), (132, 128), (132, 129), (132, 130), (132, 131), (132, 132), (132, 133), (132, 134), (132, 135), (132, 136), (132, 137), (132, 138), (132, 139), (132, 140), (132, 141), (132, 142), (132, 143), (132, 144), (132, 145), (132, 147), (133, 120), (133, 122), (133, 123), (133, 124), (133, 125), (133, 126), (133, 127), (133, 128), (133, 129), (133, 130), (133, 131), (133, 132), (133, 133), (133, 134), (133, 135), (133, 136), (133, 137), (133, 138), (133, 139), (133, 140), (133, 141), (133, 142), (133, 143), (133, 144), (133, 145), (133, 146), (133, 148), (134, 120), (134, 122), (134, 123), (134, 124), (134, 125), (134, 126), (134, 127), (134, 128), (134, 129), (134, 130), (134, 131), (134, 132), (134, 133), (134, 134), (134, 135), (134, 136), (134, 137), (134, 138), (134, 139), (134, 140), (134, 141), (134, 142), (134, 143), (134, 144), (134, 145), (134, 146), (134, 147), (134, 149), (135, 120), (135, 122), (135, 123), (135, 124), (135, 125), (135, 126), (135, 127), (135, 128), (135, 129), (135, 130), (135, 131), (135, 132), (135, 133), (135, 134), (135, 135), (135, 136), (135, 137), (135, 138), (135, 139), (135, 140), (135, 141), (135, 142), (135, 143), (135, 144), (135, 145), (135, 146), (135, 147), (136, 120), (136, 122), (136, 123), (136, 124), (136, 125), (136, 126), (136, 127), (136, 128), (136, 129), (136, 130), (136, 131), (136, 132), (136, 133), (136, 134), (136, 135), (136, 136), (136, 137), (136, 138), (136, 139), (136, 140), (136, 141), (136, 142), (136, 143), (136, 144), (136, 145), (136, 146), (136, 147), (136, 148), (136, 150), (137, 120), (137, 122), (137, 123), (137, 124), (137, 125), (137, 126), (137, 127), (137, 128), (137, 129), (137, 130), (137, 131), (137, 132), (137, 133), (137, 134), (137, 135), (137, 136), (137, 137), (137, 138), (137, 139), (137, 140), (137, 141), (137, 142), (137, 143), (137, 144), (137, 145), (137, 146), (137, 147), (137, 148), (137, 149), (137, 151), (138, 120), (138, 122), (138, 123), (138, 124), (138, 125), (138, 126), (138, 127), (138, 128), (138, 129), (138, 130), (138, 131), (138, 132), (138, 133), (138, 134), (138, 135), (138, 136), (138, 137), (138, 138), (138, 139), (138, 140), (138, 141), (138, 142), (138, 143), (138, 144), (138, 145), (138, 146), (138, 147), (138, 148), (138, 149), (138, 150), (138, 152), (139, 119), (139, 121), (139, 122), (139, 123), (139, 124), (139, 125), (139, 126), (139, 127), (139, 128), (139, 129), (139, 130), (139, 131), (139, 132), (139, 133), (139, 134), (139, 135), (139, 136), (139, 137), (139, 138), (139, 139), (139, 140), (139, 141), (139, 142), (139, 143), (139, 144), (139, 145), (139, 146), (139, 147), (139, 148), (139, 149), (139, 150), (139, 152), (140, 119), (140, 121), (140, 122), (140, 123), (140, 124), (140, 125), (140, 126), (140, 127), (140, 128), (140, 129), (140, 130), (140, 131), (140, 132), (140, 133), (140, 134), (140, 135), (140, 136), (140, 137), (140, 140), (140, 141), (140, 142), (140, 143), (140, 144), (140, 145), (140, 146), (140, 147), (140, 148), (140, 149), (140, 150), (140, 151), (140, 153), (141, 118), (141, 120), (141, 121), (141, 122), (141, 123), (141, 124), (141, 125), (141, 126), (141, 127), (141, 128), (141, 129), (141, 130), (141, 131), (141, 132), (141, 133), (141, 134), (141, 135), (141, 136), (141, 138), (141, 139), (141, 142), (141, 143), (141, 144), (141, 145), (141, 146), (141, 147), (141, 148), (141, 149), (141, 150), (141, 151), (141, 153), (142, 118), (142, 120), (142, 121), (142, 122), (142, 123), (142, 124), (142, 125), (142, 126), (142, 127), (142, 128), (142, 129), (142, 130), (142, 131), (142, 132), (142, 133), (142, 134), (142, 135), (142, 137), (142, 140), (142, 143), (142, 144), (142, 145), (142, 146), (142, 147), (142, 148), (142, 149), (142, 150), (142, 151), (142, 153), (143, 118), (143, 120), (143, 121), (143, 122), (143, 123), (143, 124), (143, 125), (143, 126), (143, 127), (143, 128), (143, 129), (143, 130), (143, 131), (143, 132), (143, 133), (143, 134), (143, 136), (143, 141), (143, 144), (143, 145), (143, 146), (143, 147), (143, 148), (143, 149), (143, 150), (143, 151), (143, 153), (144, 118), (144, 120), (144, 121), (144, 122), (144, 123), (144, 124), (144, 125), (144, 126), (144, 127), (144, 128), (144, 129), (144, 130), (144, 131), (144, 132), (144, 133), (144, 135), (144, 142), (144, 144), (144, 145), (144, 146), (144, 147), (144, 148), (144, 149), (144, 150), (144, 151), (144, 152), (144, 154), (145, 118), (145, 120), (145, 121), (145, 122), (145, 123), (145, 124), (145, 125), (145, 126), (145, 127), (145, 128), (145, 129), (145, 130), (145, 131), (145, 132), (145, 133), (145, 135), (145, 143), (145, 145), (145, 146), (145, 147), (145, 148), (145, 149), (145, 150), (145, 151), (145, 152), (145, 154), (146, 118), (146, 120), (146, 121), (146, 122), (146, 123), (146, 124), (146, 125), (146, 126), (146, 127), (146, 128), (146, 129), (146, 130), (146, 131), (146, 132), (146, 133), (146, 135), (146, 144), (146, 146), (146, 147), (146, 148), (146, 149), (146, 150), (146, 151), (146, 152), (146, 153), (146, 155), (147, 118), (147, 135), (147, 144), (147, 146), (147, 147), (147, 148), (147, 149), (147, 150), (147, 151), (147, 152), (147, 153), (147, 154), (147, 156), (148, 119), (148, 121), (148, 122), (148, 123), (148, 124), (148, 125), (148, 126), (148, 127), (148, 128), (148, 129), (148, 130), (148, 131), (148, 132), (148, 133), (148, 135), (148, 145), (148, 147), (148, 148), (148, 149), (148, 150), (148, 151), (148, 152), (148, 153), (148, 154), (148, 156), (149, 145), (149, 147), (149, 148), (149, 149), (149, 150), (149, 151), (149, 152), (149, 153), (149, 154), (149, 156), (150, 146), (150, 148), (150, 149), (150, 150), (150, 151), (150, 152), (150, 153), (150, 154), (150, 156), (151, 146), (151, 148), (151, 149), (151, 150), (151, 151), (151, 152), (151, 153), (151, 154), (151, 156), (152, 146), (152, 148), (152, 149), (152, 150), (152, 151), (152, 152), (152, 153), (152, 154), (152, 155), (152, 157), (153, 147), (153, 149), (153, 150), (153, 151), (153, 152), (153, 153), (153, 154), (153, 155), (153, 157), (154, 147), (154, 149), (154, 150), (154, 151), (154, 152), (154, 153), (154, 154), (154, 155), (154, 157), (155, 147), (155, 149), (155, 150), (155, 151), (155, 152), (155, 153), (155, 154), (155, 155), (155, 157), (156, 148), (156, 150), (156, 151), (156, 152), (156, 153), (156, 154), (156, 155), (156, 156), (156, 158), (157, 148), (157, 150), (157, 151), (157, 152), (157, 153), (157, 154), (157, 155), (157, 156), (157, 157), (157, 159), (158, 149), (158, 151), (158, 152), (158, 153), (158, 154), (158, 155), (158, 156), (158, 157), (158, 158), (158, 160), (159, 150), (159, 153), (159, 154), (159, 155), (159, 156), (159, 157), (159, 158), (159, 159), (159, 161), (160, 151), (160, 154), (160, 155), (160, 156), (160, 157), (160, 158), (160, 159), (160, 160), (160, 164), (161, 153), (161, 156), (161, 157), (161, 158), (161, 159), (161, 160), (161, 161), (161, 164), (162, 154), (162, 158), (162, 159), (162, 160), (162, 161), (162, 162), (162, 164), (163, 156), (163, 161), (163, 162), (163, 163), (163, 165), (164, 159), (164, 160), (164, 161), (164, 165), (165, 162), (165, 163), (165, 165), (234, 161), (234, 162), (234, 163), (234, 165), (235, 158), (235, 160), (235, 165), (236, 156), (236, 161), (236, 162), (236, 163), (236, 165), (237, 154), (237, 158), (237, 159), (237, 160), (237, 161), (237, 162), (237, 164), (238, 152), (238, 153), (238, 156), (238, 157), (238, 158), (238, 159), (238, 160), (238, 161), (238, 164), (239, 151), (239, 154), (239, 155), (239, 156), (239, 157), (239, 158), (239, 159), (239, 160), (239, 162), (240, 150), (240, 153), (240, 154), (240, 155), (240, 156), (240, 157), (240, 158), (240, 159), (240, 160), (241, 149), (241, 151), (241, 152), (241, 153), (241, 154), (241, 155), (241, 156), (241, 157), (241, 158), (241, 160), (242, 148), (242, 150), (242, 151), (242, 152), (242, 153), (242, 154), (242, 155), (242, 156), (242, 157), (242, 159), (243, 148), (243, 150), (243, 151), (243, 152), (243, 153), (243, 154), (243, 155), (243, 156), (243, 157), (243, 159), (244, 147), (244, 149), (244, 150), (244, 151), (244, 152), (244, 153), (244, 154), (244, 155), (244, 156), (244, 158), (245, 147), (245, 149), (245, 150), (245, 151), (245, 152), (245, 153), (245, 154), (245, 155), (245, 156), (245, 158), (246, 147), (246, 149), (246, 150), (246, 151), (246, 152), (246, 153), (246, 154), (246, 155), (246, 157), (247, 146), (247, 148), (247, 149), (247, 150), (247, 151), (247, 152), (247, 153), (247, 154), (247, 155), (247, 157), (248, 146), (248, 148), (248, 149), (248, 150), (248, 151), (248, 152), (248, 153), (248, 154), (248, 155), (248, 157), (249, 146), (249, 148), (249, 149), (249, 150), (249, 151), (249, 152), (249, 153), (249, 154), (249, 156), (250, 145), (250, 147), (250, 148), (250, 149), (250, 150), (250, 151), (250, 152), (250, 153), (250, 154), (250, 156), (251, 119), (251, 121), (251, 122), (251, 123), (251, 124), (251, 125), (251, 126), (251, 127), (251, 128), (251, 129), (251, 130), (251, 131), (251, 132), (251, 133), (251, 135), (251, 145), (251, 147), (251, 148), (251, 149), (251, 150), (251, 151), (251, 152), (251, 153), (251, 154), (251, 156), (252, 118), (252, 135), (252, 144), (252, 146), (252, 147), (252, 148), (252, 149), (252, 150), (252, 151), (252, 152), (252, 153), (252, 154), (252, 156), (253, 118), (253, 120), (253, 121), (253, 122), (253, 123), (253, 124), (253, 125), (253, 126), (253, 127), (253, 128), (253, 129), (253, 130), (253, 131), (253, 132), (253, 133), (253, 135), (253, 144), (253, 146), (253, 147), (253, 148), (253, 149), (253, 150), (253, 151), (253, 152), (253, 153), (253, 155), (254, 118), (254, 120), (254, 121), (254, 122), (254, 123), (254, 124), (254, 125), (254, 126), (254, 127), (254, 128), (254, 129), (254, 130), (254, 131), (254, 132), (254, 133), (254, 135), (254, 143), (254, 145), (254, 146), (254, 147), (254, 148), (254, 149), (254, 150), (254, 151), (254, 152), (254, 153), (254, 155), (255, 118), (255, 120), (255, 121), (255, 122), (255, 123), (255, 124), (255, 125), (255, 126), (255, 127), (255, 128), (255, 129), (255, 130), (255, 131), (255, 132), (255, 133), (255, 134), (255, 135), (255, 136), (255, 142), (255, 144), (255, 145), (255, 146), (255, 147), (255, 148), (255, 149), (255, 150), (255, 151), (255, 152), (255, 154), (256, 118), (256, 120), (256, 121), (256, 122), (256, 123), (256, 124), (256, 125), (256, 126), (256, 127), (256, 128), (256, 129), (256, 130), (256, 131), (256, 132), (256, 133), (256, 134), (256, 136), (256, 141), (256, 143), (256, 144), (256, 145), (256, 146), (256, 147), (256, 148), (256, 149), (256, 150), (256, 151), (256, 152), (256, 154), (257, 118), (257, 120), (257, 121), (257, 122), (257, 123), (257, 124), (257, 125), (257, 126), (257, 127), (257, 128), (257, 129), (257, 130), (257, 131), (257, 132), (257, 133), (257, 134), (257, 135), (257, 137), (257, 140), (257, 142), (257, 143), (257, 144), (257, 145), (257, 146), (257, 147), (257, 148), (257, 149), (257, 150), (257, 151), (257, 153), (258, 118), (258, 119), (258, 120), (258, 121), (258, 122), (258, 123), (258, 124), (258, 125), (258, 126), (258, 127), (258, 128), (258, 129), (258, 130), (258, 131), (258, 132), (258, 133), (258, 134), (258, 135), (258, 136), (258, 138), (258, 139), (258, 141), (258, 142), (258, 143), (258, 144), (258, 145), (258, 146), (258, 147), (258, 148), (258, 149), (258, 150), (258, 151), (258, 153), (259, 119), (259, 121), (259, 122), (259, 123), (259, 124), (259, 125), (259, 126), (259, 127), (259, 128), (259, 129), (259, 130), (259, 131), (259, 132), (259, 133), (259, 134), (259, 135), (259, 136), (259, 137), (259, 140), (259, 141), (259, 142), (259, 143), (259, 144), (259, 145), (259, 146), (259, 147), (259, 148), (259, 149), (259, 150), (259, 151), (259, 153), (260, 119), (260, 121), (260, 122), (260, 123), (260, 124), (260, 125), (260, 126), (260, 127), (260, 128), (260, 129), (260, 130), (260, 131), (260, 132), (260, 133), (260, 134), (260, 135), (260, 136), (260, 137), (260, 138), (260, 139), (260, 140), (260, 141), (260, 142), (260, 143), (260, 144), (260, 145), (260, 146), (260, 147), (260, 148), (260, 149), (260, 150), (260, 152), (261, 120), (261, 122), (261, 123), (261, 124), (261, 125), (261, 126), (261, 127), (261, 128), (261, 129), (261, 130), (261, 131), (261, 132), (261, 133), (261, 134), (261, 135), (261, 136), (261, 137), (261, 138), (261, 139), (261, 140), (261, 141), (261, 142), (261, 143), (261, 144), (261, 145), (261, 146), (261, 147), (261, 148), (261, 149), (261, 150), (261, 152), (262, 120), (262, 122), (262, 123), (262, 124), (262, 125), (262, 126), (262, 127), (262, 128), (262, 129), (262, 130), (262, 131), (262, 132), (262, 133), (262, 134), (262, 135), (262, 136), (262, 137), (262, 138), (262, 139), (262, 140), (262, 141), (262, 142), (262, 143), (262, 144), (262, 145), (262, 146), (262, 147), (262, 148), (262, 149), (262, 151), (263, 120), (263, 122), (263, 123), (263, 124), (263, 125), (263, 126), (263, 127), (263, 128), (263, 129), (263, 130), (263, 131), (263, 132), (263, 133), (263, 134), (263, 135), (263, 136), (263, 137), (263, 138), (263, 139), (263, 140), (263, 141), (263, 142), (263, 143), (263, 144), (263, 145), (263, 146), (263, 147), (263, 148), (263, 150), (264, 120), (264, 122), (264, 123), (264, 124), (264, 125), (264, 126), (264, 127), (264, 128), (264, 129), (264, 130), (264, 131), (264, 132), (264, 133), (264, 134), (264, 135), (264, 136), (264, 137), (264, 138), (264, 139), (264, 140), (264, 141), (264, 142), (264, 143), (264, 144), (264, 145), (264, 146), (264, 147), (264, 149), (265, 120), (265, 122), (265, 123), (265, 124), (265, 125), (265, 126), (265, 127), (265, 128), (265, 129), (265, 130), (265, 131), (265, 132), (265, 133), (265, 134), (265, 135), (265, 136), (265, 137), (265, 138), (265, 139), (265, 140), (265, 141), (265, 142), (265, 143), (265, 144), (265, 145), (265, 146), (265, 147), (265, 149), (266, 120), (266, 122), (266, 123), (266, 124), (266, 125), (266, 126), (266, 127), (266, 128), (266, 129), (266, 130), (266, 131), (266, 132), (266, 133), (266, 134), (266, 135), (266, 136), (266, 137), (266, 138), (266, 139), (266, 140), (266, 141), (266, 142), (266, 143), (266, 144), (266, 145), (266, 146), (266, 148), (267, 121), (267, 123), (267, 124), (267, 125), (267, 126), (267, 127), (267, 128), (267, 129), (267, 130), (267, 131), (267, 132), (267, 133), (267, 134), (267, 135), (267, 136), (267, 137), (267, 138), (267, 139), (267, 140), (267, 141), (267, 142), (267, 143), (267, 144), (267, 145), (267, 147), (268, 121), (268, 123), (268, 124), (268, 125), (268, 126), (268, 127), (268, 128), (268, 129), (268, 130), (268, 131), (268, 132), (268, 133), (268, 134), (268, 135), (268, 136), (268, 137), (268, 138), (268, 139), (268, 140), (268, 141), (268, 142), (268, 143), (268, 144), (268, 146), (269, 122), (269, 124), (269, 125), (269, 126), (269, 127), (269, 128), (269, 129), (269, 130), (269, 131), (269, 132), (269, 133), (269, 134), (269, 135), (269, 136), (269, 137), (269, 138), (269, 139), (269, 140), (269, 141), (269, 142), (269, 143), (269, 145), (270, 123), (270, 125), (270, 126), (270, 127), (270, 128), (270, 129), (270, 130), (270, 131), (270, 132), (270, 133), (270, 134), (270, 135), (270, 136), (270, 137), (270, 138), (270, 139), (270, 140), (270, 141), (270, 142), (270, 144), (271, 123), (271, 125), (271, 126), (271, 127), (271, 128), (271, 129), (271, 130), (271, 131), (271, 132), (271, 133), (271, 134), (271, 135), (271, 136), (271, 137), (271, 138), (271, 139), (271, 140), (271, 141), (271, 143), (272, 124), (272, 126), (272, 127), (272, 128), (272, 129), (272, 130), (272, 131), (272, 132), (272, 133), (272, 134), (272, 135), (272, 136), (272, 137), (272, 138), (272, 139), (272, 140), (272, 142), (273, 125), (273, 127), (273, 128), (273, 129), (273, 130), (273, 131), (273, 132), (273, 133), (273, 134), (273, 135), (273, 136), (273, 137), (273, 138), (273, 139), (274, 126), (274, 129), (274, 130), (274, 131), (274, 132), (274, 133), (274, 134), (274, 135), (274, 136), (274, 137), (274, 138), (274, 140), (275, 127), (275, 131), (275, 132), (275, 133), (275, 134), (275, 135), (275, 136), (275, 137), (275, 139), (276, 129), (276, 138), (277, 131), (277, 133), (277, 134), (277, 135), (277, 137), ) coordinates_00EBFF = ((116, 153), (117, 153), (117, 155), (118, 153), (118, 156), (119, 154), (119, 158), (120, 155), (120, 159), (121, 156), (121, 160), (122, 156), (122, 158), (122, 161), (123, 157), (123, 159), (123, 162), (124, 158), (124, 160), (124, 163), (125, 159), (125, 161), (125, 164), (126, 160), (126, 162), (126, 164), (127, 161), (127, 164), (128, 161), (128, 164), (129, 162), (129, 165), (130, 163), (130, 165), (131, 163), (131, 166), (132, 164), (132, 166), (133, 164), (133, 167), (134, 165), (134, 168), (135, 165), (135, 168), (136, 166), (136, 169), (137, 166), (137, 168), (137, 170), (138, 166), (138, 168), (138, 170), (139, 167), (139, 169), (139, 171), (140, 167), (140, 169), (140, 170), (140, 172), (141, 167), (141, 168), (141, 169), (141, 170), (141, 172), (142, 168), (142, 170), (142, 171), (142, 172), (143, 138), (143, 168), (143, 170), (143, 171), (143, 173), (144, 138), (144, 140), (144, 169), (144, 171), (144, 173), (145, 137), (145, 141), (145, 169), (145, 171), (145, 172), (145, 174), (146, 137), (146, 139), (146, 169), (146, 171), (146, 172), (146, 174), (147, 137), (147, 139), (147, 140), (147, 142), (147, 170), (147, 172), (147, 174), (148, 137), (148, 139), (148, 140), (148, 141), (148, 143), (148, 170), (148, 172), (148, 174), (149, 137), (149, 139), (149, 140), (149, 141), (149, 143), (149, 171), (149, 172), (149, 173), (149, 174), (149, 175), (150, 137), (150, 139), (150, 140), (150, 141), (150, 143), (150, 171), (150, 173), (150, 175), (151, 137), (151, 139), (151, 140), (151, 141), (151, 142), (151, 144), (151, 171), (151, 173), (151, 175), (152, 137), (152, 139), (152, 140), (152, 141), (152, 142), (152, 144), (152, 172), (152, 175), (153, 137), (153, 139), (153, 140), (153, 141), (153, 142), (153, 144), (153, 172), (153, 175), (154, 137), (154, 138), (154, 139), (154, 140), (154, 141), (154, 142), (154, 143), (154, 145), (154, 172), (154, 175), (155, 138), (155, 140), (155, 141), (155, 142), (155, 143), (155, 145), (155, 172), (155, 175), (156, 138), (156, 140), (156, 141), (156, 142), (156, 143), (156, 144), (156, 146), (156, 172), (156, 175), (157, 137), (157, 139), (157, 140), (157, 141), (157, 142), (157, 143), (157, 144), (157, 146), (157, 172), (157, 175), (158, 137), (158, 139), (158, 140), (158, 141), (158, 142), (158, 143), (158, 144), (158, 145), (158, 147), (158, 172), (158, 175), (159, 136), (159, 138), (159, 139), (159, 140), (159, 141), (159, 142), (159, 143), (159, 144), (159, 145), (159, 146), (159, 148), (159, 172), (159, 174), (159, 175), (159, 176), (160, 136), (160, 138), (160, 139), (160, 140), (160, 141), (160, 142), (160, 143), (160, 144), (160, 145), (160, 146), (160, 149), (160, 172), (160, 174), (160, 176), (161, 135), (161, 137), (161, 138), (161, 139), (161, 140), (161, 141), (161, 142), (161, 143), (161, 144), (161, 145), (161, 146), (161, 147), (161, 150), (161, 172), (161, 174), (161, 176), (162, 134), (162, 136), (162, 137), (162, 138), (162, 139), (162, 140), (162, 141), (162, 142), (162, 143), (162, 144), (162, 145), (162, 146), (162, 147), (162, 148), (162, 151), (162, 171), (162, 173), (162, 174), (162, 176), (163, 134), (163, 136), (163, 137), (163, 138), (163, 139), (163, 140), (163, 141), (163, 142), (163, 143), (163, 144), (163, 145), (163, 146), (163, 147), (163, 148), (163, 149), (163, 150), (163, 153), (163, 171), (163, 173), (163, 174), (163, 176), (164, 133), (164, 135), (164, 136), (164, 137), (164, 138), (164, 139), (164, 140), (164, 141), (164, 142), (164, 143), (164, 144), (164, 145), (164, 148), (164, 149), (164, 150), (164, 151), (164, 154), (164, 171), (164, 173), (164, 174), (164, 176), (165, 132), (165, 134), (165, 135), (165, 136), (165, 137), (165, 138), (165, 139), (165, 140), (165, 141), (165, 142), (165, 143), (165, 146), (165, 147), (165, 152), (165, 153), (165, 156), (165, 157), (165, 170), (165, 172), (165, 173), (165, 174), (165, 176), (166, 132), (166, 134), (166, 135), (166, 136), (166, 137), (166, 138), (166, 139), (166, 140), (166, 141), (166, 142), (166, 144), (166, 148), (166, 149), (166, 150), (166, 151), (166, 154), (166, 155), (166, 158), (166, 159), (166, 160), (166, 169), (166, 171), (166, 172), (166, 173), (166, 174), (166, 176), (167, 131), (167, 133), (167, 134), (167, 135), (167, 136), (167, 137), (167, 138), (167, 139), (167, 143), (167, 152), (167, 155), (167, 156), (167, 157), (167, 161), (167, 162), (167, 163), (167, 164), (167, 165), (167, 168), (167, 170), (167, 171), (167, 172), (167, 173), (167, 174), (167, 176), (168, 130), (168, 132), (168, 133), (168, 134), (168, 135), (168, 136), (168, 137), (168, 140), (168, 141), (168, 154), (168, 156), (168, 157), (168, 158), (168, 159), (168, 160), (168, 165), (168, 166), (168, 167), (168, 169), (168, 170), (168, 171), (168, 172), (168, 173), (168, 174), (168, 176), (169, 130), (169, 132), (169, 133), (169, 134), (169, 135), (169, 136), (169, 138), (169, 155), (169, 157), (169, 158), (169, 159), (169, 160), (169, 161), (169, 162), (169, 163), (169, 164), (169, 165), (169, 168), (169, 169), (169, 170), (169, 171), (169, 172), (169, 173), (169, 174), (169, 176), (170, 129), (170, 131), (170, 132), (170, 133), (170, 134), (170, 135), (170, 137), (170, 156), (170, 159), (170, 160), (170, 161), (170, 162), (170, 163), (170, 164), (170, 165), (170, 166), (170, 167), (170, 168), (170, 169), (170, 170), (170, 171), (170, 172), (170, 173), (170, 174), (170, 176), (171, 129), (171, 131), (171, 132), (171, 133), (171, 134), (171, 136), (171, 157), (171, 160), (171, 161), (171, 162), (171, 163), (171, 164), (171, 165), (171, 166), (171, 167), (171, 168), (171, 169), (171, 170), (171, 171), (171, 172), (171, 173), (171, 174), (171, 175), (171, 177), (172, 128), (172, 129), (172, 130), (172, 131), (172, 132), (172, 133), (172, 135), (172, 158), (172, 161), (172, 162), (172, 163), (172, 164), (172, 165), (172, 166), (172, 167), (172, 168), (172, 169), (172, 170), (172, 171), (172, 172), (172, 173), (172, 174), (172, 175), (172, 177), (173, 128), (173, 130), (173, 131), (173, 132), (173, 134), (173, 162), (173, 163), (173, 164), (173, 165), (173, 166), (173, 167), (173, 168), (173, 169), (173, 170), (173, 171), (173, 172), (173, 173), (173, 174), (173, 175), (173, 176), (173, 178), (174, 128), (174, 130), (174, 131), (174, 132), (174, 134), (174, 161), (174, 163), (174, 164), (174, 165), (174, 166), (174, 167), (174, 168), (174, 169), (174, 170), (174, 171), (174, 172), (174, 173), (174, 174), (174, 175), (174, 176), (174, 178), (175, 128), (175, 130), (175, 131), (175, 133), (175, 162), (175, 164), (175, 165), (175, 166), (175, 167), (175, 168), (175, 169), (175, 170), (175, 171), (175, 172), (175, 173), (175, 174), (175, 175), (175, 176), (175, 177), (175, 179), (176, 127), (176, 129), (176, 130), (176, 131), (176, 133), (176, 163), (176, 166), (176, 167), (176, 168), (176, 169), (176, 170), (176, 171), (176, 172), (176, 173), (176, 174), (176, 175), (176, 176), (176, 177), (176, 178), (176, 180), (177, 127), (177, 129), (177, 130), (177, 131), (177, 133), (177, 164), (177, 166), (177, 175), (177, 176), (177, 177), (177, 178), (177, 179), (177, 181), (178, 127), (178, 129), (178, 130), (178, 131), (178, 133), (178, 167), (178, 168), (178, 169), (178, 170), (178, 171), (178, 172), (178, 173), (178, 174), (178, 177), (178, 178), (178, 179), (178, 180), (178, 182), (179, 127), (179, 129), (179, 130), (179, 131), (179, 133), (179, 175), (179, 178), (179, 179), (179, 180), (179, 181), (179, 184), (179, 185), (179, 186), (179, 190), (179, 192), (180, 127), (180, 132), (180, 177), (180, 179), (180, 180), (180, 181), (180, 182), (180, 183), (180, 187), (180, 188), (180, 193), (180, 194), (181, 127), (181, 129), (181, 130), (181, 132), (181, 178), (181, 181), (181, 182), (181, 183), (181, 184), (181, 185), (181, 186), (181, 189), (181, 190), (181, 191), (181, 192), (181, 197), (182, 179), (182, 188), (182, 189), (182, 190), (182, 191), (182, 192), (182, 193), (182, 194), (182, 195), (182, 199), (183, 181), (183, 183), (183, 184), (183, 185), (183, 186), (183, 187), (183, 201), (184, 188), (184, 189), (184, 190), (184, 191), (184, 192), (184, 193), (184, 194), (184, 195), (184, 196), (184, 197), (184, 203), (185, 198), (185, 199), (185, 200), (185, 201), (185, 202), (185, 203), (185, 205), (214, 198), (214, 199), (214, 200), (214, 201), (214, 202), (214, 203), (214, 205), (215, 187), (215, 188), (215, 189), (215, 190), (215, 191), (215, 192), (215, 193), (215, 194), (215, 195), (215, 196), (215, 197), (215, 203), (216, 181), (216, 183), (216, 184), (216, 185), (216, 186), (216, 201), (217, 179), (217, 187), (217, 188), (217, 189), (217, 190), (217, 191), (217, 192), (217, 193), (217, 194), (217, 199), (218, 127), (218, 129), (218, 130), (218, 132), (218, 178), (218, 181), (218, 182), (218, 183), (218, 184), (218, 185), (218, 186), (218, 190), (218, 191), (218, 192), (218, 196), (218, 197), (219, 127), (219, 177), (219, 179), (219, 180), (219, 181), (219, 182), (219, 187), (219, 188), (219, 193), (219, 194), (220, 127), (220, 129), (220, 130), (220, 131), (220, 133), (220, 175), (220, 178), (220, 179), (220, 180), (220, 181), (220, 184), (220, 185), (220, 190), (220, 192), (221, 127), (221, 129), (221, 130), (221, 131), (221, 133), (221, 165), (221, 167), (221, 168), (221, 169), (221, 170), (221, 171), (221, 172), (221, 173), (221, 174), (221, 177), (221, 178), (221, 179), (221, 180), (221, 182), (222, 127), (222, 129), (222, 130), (222, 131), (222, 133), (222, 164), (222, 175), (222, 176), (222, 177), (222, 178), (222, 179), (222, 181), (223, 127), (223, 129), (223, 130), (223, 131), (223, 133), (223, 163), (223, 165), (223, 166), (223, 167), (223, 168), (223, 169), (223, 170), (223, 171), (223, 172), (223, 173), (223, 174), (223, 175), (223, 176), (223, 177), (223, 178), (223, 180), (224, 128), (224, 130), (224, 131), (224, 133), (224, 162), (224, 164), (224, 165), (224, 166), (224, 167), (224, 168), (224, 169), (224, 170), (224, 171), (224, 172), (224, 173), (224, 174), (224, 175), (224, 176), (224, 177), (224, 179), (225, 128), (225, 130), (225, 131), (225, 132), (225, 134), (225, 163), (225, 164), (225, 165), (225, 166), (225, 167), (225, 168), (225, 169), (225, 170), (225, 171), (225, 172), (225, 173), (225, 174), (225, 175), (225, 176), (225, 178), (226, 128), (226, 130), (226, 131), (226, 132), (226, 134), (226, 159), (226, 162), (226, 163), (226, 164), (226, 165), (226, 166), (226, 167), (226, 168), (226, 169), (226, 170), (226, 171), (226, 172), (226, 173), (226, 174), (226, 175), (226, 176), (226, 178), (227, 129), (227, 131), (227, 132), (227, 133), (227, 135), (227, 158), (227, 161), (227, 162), (227, 163), (227, 164), (227, 165), (227, 166), (227, 167), (227, 168), (227, 169), (227, 170), (227, 171), (227, 172), (227, 173), (227, 174), (227, 175), (227, 177), (228, 129), (228, 131), (228, 132), (228, 133), (228, 134), (228, 136), (228, 157), (228, 160), (228, 161), (228, 162), (228, 163), (228, 164), (228, 165), (228, 166), (228, 167), (228, 168), (228, 169), (228, 170), (228, 171), (228, 172), (228, 173), (228, 174), (228, 175), (228, 177), (229, 129), (229, 131), (229, 132), (229, 133), (229, 134), (229, 135), (229, 137), (229, 156), (229, 158), (229, 159), (229, 160), (229, 161), (229, 162), (229, 163), (229, 164), (229, 165), (229, 166), (229, 167), (229, 168), (229, 169), (229, 170), (229, 171), (229, 172), (229, 173), (229, 174), (229, 176), (230, 130), (230, 132), (230, 133), (230, 134), (230, 135), (230, 136), (230, 139), (230, 155), (230, 157), (230, 158), (230, 159), (230, 160), (230, 161), (230, 162), (230, 163), (230, 164), (230, 168), (230, 169), (230, 170), (230, 171), (230, 172), (230, 173), (230, 174), (230, 176), (231, 132), (231, 133), (231, 134), (231, 135), (231, 136), (231, 137), (231, 140), (231, 141), (231, 143), (231, 154), (231, 156), (231, 157), (231, 158), (231, 159), (231, 160), (231, 165), (231, 166), (231, 167), (231, 169), (231, 170), (231, 171), (231, 172), (231, 173), (231, 174), (231, 176), (232, 131), (232, 133), (232, 134), (232, 135), (232, 136), (232, 137), (232, 138), (232, 139), (232, 143), (232, 152), (232, 155), (232, 156), (232, 157), (232, 161), (232, 162), (232, 163), (232, 164), (232, 168), (232, 170), (232, 171), (232, 172), (232, 173), (232, 174), (232, 176), (233, 132), (233, 134), (233, 135), (233, 136), (233, 137), (233, 138), (233, 139), (233, 140), (233, 141), (233, 142), (233, 145), (233, 148), (233, 149), (233, 150), (233, 154), (233, 158), (233, 159), (233, 169), (233, 171), (233, 172), (233, 173), (233, 174), (233, 176), (234, 132), (234, 134), (234, 135), (234, 136), (234, 137), (234, 138), (234, 139), (234, 140), (234, 141), (234, 142), (234, 143), (234, 146), (234, 147), (234, 151), (234, 152), (234, 156), (234, 170), (234, 172), (234, 173), (234, 174), (234, 176), (235, 133), (235, 135), (235, 136), (235, 137), (235, 138), (235, 139), (235, 140), (235, 141), (235, 142), (235, 143), (235, 144), (235, 145), (235, 147), (235, 148), (235, 149), (235, 150), (235, 151), (235, 154), (235, 171), (235, 173), (235, 174), (235, 176), (236, 134), (236, 136), (236, 137), (236, 138), (236, 139), (236, 140), (236, 141), (236, 142), (236, 143), (236, 144), (236, 145), (236, 146), (236, 147), (236, 148), (236, 149), (236, 150), (236, 152), (236, 171), (236, 173), (236, 174), (236, 176), (237, 134), (237, 136), (237, 137), (237, 138), (237, 139), (237, 140), (237, 141), (237, 142), (237, 143), (237, 144), (237, 145), (237, 146), (237, 147), (237, 148), (237, 151), (237, 171), (237, 173), (237, 174), (237, 176), (238, 135), (238, 137), (238, 138), (238, 139), (238, 140), (238, 141), (238, 142), (238, 143), (238, 144), (238, 145), (238, 146), (238, 147), (238, 150), (238, 172), (238, 174), (238, 176), (239, 136), (239, 138), (239, 139), (239, 140), (239, 141), (239, 142), (239, 143), (239, 144), (239, 145), (239, 146), (239, 172), (239, 174), (239, 175), (239, 176), (240, 136), (240, 138), (240, 139), (240, 140), (240, 141), (240, 142), (240, 143), (240, 144), (240, 145), (240, 146), (240, 148), (240, 172), (240, 174), (240, 175), (240, 176), (241, 137), (241, 139), (241, 140), (241, 141), (241, 142), (241, 143), (241, 144), (241, 145), (241, 147), (241, 172), (241, 175), (242, 137), (242, 139), (242, 140), (242, 141), (242, 142), (242, 143), (242, 144), (242, 146), (242, 172), (242, 175), (243, 138), (243, 140), (243, 141), (243, 142), (243, 143), (243, 144), (243, 145), (243, 146), (243, 172), (243, 175), (244, 138), (244, 140), (244, 141), (244, 142), (244, 143), (244, 145), (244, 172), (244, 175), (245, 137), (245, 138), (245, 139), (245, 140), (245, 141), (245, 142), (245, 143), (245, 145), (245, 172), (245, 175), (246, 137), (246, 139), (246, 140), (246, 141), (246, 142), (246, 144), (246, 172), (246, 175), (247, 137), (247, 139), (247, 140), (247, 141), (247, 142), (247, 144), (247, 172), (247, 175), (248, 137), (248, 139), (248, 140), (248, 141), (248, 142), (248, 144), (248, 171), (248, 173), (248, 175), (249, 137), (249, 139), (249, 140), (249, 141), (249, 143), (249, 171), (249, 173), (249, 175), (250, 137), (250, 139), (250, 140), (250, 141), (250, 143), (250, 170), (250, 172), (250, 174), (251, 137), (251, 139), (251, 140), (251, 141), (251, 142), (251, 170), (251, 172), (251, 174), (252, 137), (252, 139), (252, 140), (252, 142), (252, 170), (252, 172), (252, 174), (253, 137), (253, 139), (253, 169), (253, 171), (253, 172), (253, 174), (254, 137), (254, 141), (254, 169), (254, 171), (254, 172), (254, 173), (254, 174), (255, 138), (255, 140), (255, 169), (255, 171), (255, 173), (256, 168), (256, 170), (256, 171), (256, 173), (257, 168), (257, 170), (257, 172), (258, 167), (258, 169), (258, 170), (258, 172), (259, 167), (259, 169), (259, 170), (259, 172), (260, 167), (260, 169), (260, 171), (261, 166), (261, 168), (261, 170), (262, 166), (262, 168), (262, 170), (263, 166), (263, 169), (264, 165), (264, 168), (265, 165), (265, 168), (266, 164), (266, 167), (267, 164), (267, 166), (268, 163), (268, 166), (269, 163), (269, 165), (270, 162), (270, 165), (271, 161), (271, 164), (272, 161), (272, 164), (273, 160), (273, 162), (273, 164), (274, 159), (274, 161), (274, 164), (275, 158), (275, 160), (275, 163), (276, 157), (276, 159), (276, 162), (277, 156), (277, 158), (277, 161), (278, 156), (278, 160), (279, 155), (279, 159), (280, 154), (281, 153), (281, 156), (282, 153), (282, 155), (283, 153), ) coordinates_00FF92 = ((118, 136), (118, 138), (118, 139), (118, 140), (119, 136), (119, 141), (119, 142), (119, 143), (119, 144), (119, 145), (119, 146), (119, 147), (119, 148), (119, 149), (119, 150), (119, 152), (120, 137), (120, 140), (120, 149), (121, 139), (121, 141), (121, 142), (121, 143), (121, 144), (121, 145), (121, 146), (121, 147), (121, 148), (121, 149), (121, 150), (121, 151), (121, 153), (122, 140), (122, 142), (122, 143), (122, 144), (122, 145), (122, 146), (122, 147), (122, 148), (122, 149), (122, 150), (122, 151), (122, 152), (122, 154), (123, 141), (123, 143), (123, 144), (123, 145), (123, 146), (123, 147), (123, 148), (123, 149), (123, 150), (123, 151), (123, 152), (123, 153), (123, 155), (124, 142), (124, 144), (124, 145), (124, 146), (124, 147), (124, 148), (124, 149), (124, 150), (124, 151), (124, 152), (124, 153), (124, 154), (124, 156), (125, 143), (125, 145), (125, 146), (125, 147), (125, 148), (125, 149), (125, 150), (125, 151), (125, 152), (125, 153), (125, 154), (125, 156), (126, 144), (126, 146), (126, 147), (126, 148), (126, 149), (126, 150), (126, 151), (126, 152), (126, 153), (126, 154), (126, 155), (126, 157), (127, 145), (127, 147), (127, 148), (127, 149), (127, 150), (127, 151), (127, 152), (127, 153), (127, 154), (127, 155), (127, 156), (127, 158), (128, 146), (128, 148), (128, 149), (128, 150), (128, 151), (128, 152), (128, 153), (128, 154), (128, 155), (128, 156), (128, 157), (128, 159), (129, 147), (129, 149), (129, 150), (129, 151), (129, 152), (129, 153), (129, 154), (129, 155), (129, 156), (129, 157), (129, 158), (129, 160), (130, 148), (130, 150), (130, 151), (130, 152), (130, 153), (130, 154), (130, 155), (130, 156), (130, 157), (130, 158), (130, 160), (131, 149), (131, 151), (131, 152), (131, 153), (131, 154), (131, 155), (131, 156), (131, 157), (131, 158), (131, 159), (131, 161), (132, 149), (132, 152), (132, 153), (132, 154), (132, 155), (132, 156), (132, 157), (132, 158), (132, 159), (132, 161), (133, 150), (133, 152), (133, 153), (133, 154), (133, 155), (133, 156), (133, 157), (133, 158), (133, 159), (133, 160), (133, 162), (134, 151), (134, 153), (134, 154), (134, 155), (134, 156), (134, 157), (134, 158), (134, 159), (134, 160), (134, 162), (135, 152), (135, 154), (135, 155), (135, 156), (135, 157), (135, 158), (135, 159), (135, 160), (135, 161), (135, 163), (136, 153), (136, 155), (136, 156), (136, 157), (136, 158), (136, 159), (136, 160), (136, 161), (136, 163), (137, 153), (137, 155), (137, 156), (137, 157), (137, 158), (137, 159), (137, 160), (137, 161), (137, 162), (137, 164), (138, 154), (138, 156), (138, 157), (138, 158), (138, 159), (138, 160), (138, 161), (138, 162), (138, 164), (139, 155), (139, 157), (139, 158), (139, 159), (139, 160), (139, 161), (139, 162), (139, 164), (140, 155), (140, 157), (140, 158), (140, 159), (140, 160), (140, 161), (140, 162), (140, 163), (140, 165), (141, 156), (141, 158), (141, 159), (141, 160), (141, 161), (141, 162), (141, 163), (141, 165), (142, 156), (142, 158), (142, 159), (142, 160), (142, 161), (142, 162), (142, 163), (142, 164), (142, 166), (143, 156), (143, 158), (143, 159), (143, 160), (143, 161), (143, 162), (143, 163), (143, 164), (143, 166), (144, 156), (144, 158), (144, 159), (144, 160), (144, 161), (144, 162), (144, 163), (144, 164), (144, 166), (145, 157), (145, 159), (145, 160), (145, 161), (145, 162), (145, 163), (145, 164), (145, 165), (145, 167), (146, 157), (146, 159), (146, 160), (146, 161), (146, 162), (146, 163), (146, 164), (146, 165), (146, 167), (147, 158), (147, 160), (147, 161), (147, 162), (147, 163), (147, 164), (147, 165), (147, 167), (148, 159), (148, 161), (148, 162), (148, 163), (148, 164), (148, 165), (148, 166), (148, 168), (149, 159), (149, 161), (149, 162), (149, 163), (149, 164), (149, 165), (149, 166), (149, 168), (150, 160), (150, 162), (150, 163), (150, 164), (150, 165), (150, 166), (150, 167), (150, 169), (151, 161), (151, 163), (151, 164), (151, 165), (151, 166), (151, 167), (151, 169), (152, 161), (152, 163), (152, 164), (152, 165), (152, 166), (152, 167), (152, 168), (152, 170), (153, 162), (153, 164), (153, 165), (153, 166), (153, 167), (153, 168), (153, 170), (154, 162), (154, 164), (154, 165), (154, 166), (154, 167), (154, 168), (154, 170), (155, 163), (155, 165), (155, 166), (155, 167), (155, 168), (155, 170), (156, 163), (156, 165), (156, 166), (156, 167), (156, 168), (156, 170), (157, 164), (157, 166), (157, 167), (157, 168), (157, 170), (158, 165), (158, 167), (158, 168), (158, 170), (159, 165), (159, 167), (159, 168), (159, 170), (160, 166), (160, 168), (160, 170), (161, 166), (161, 169), (162, 167), (162, 169), (163, 167), (163, 169), (164, 167), (164, 168), (165, 168), (234, 168), (235, 167), (236, 167), (236, 169), (237, 167), (237, 169), (238, 166), (238, 169), (239, 166), (239, 168), (239, 170), (240, 165), (240, 167), (240, 168), (240, 170), (241, 165), (241, 167), (241, 168), (241, 170), (242, 163), (242, 166), (242, 167), (242, 168), (242, 170), (243, 163), (243, 165), (243, 166), (243, 167), (243, 168), (243, 170), (244, 162), (244, 164), (244, 165), (244, 166), (244, 167), (244, 168), (244, 170), (245, 162), (245, 164), (245, 165), (245, 166), (245, 167), (245, 168), (245, 170), (246, 161), (246, 163), (246, 164), (246, 165), (246, 166), (246, 167), (246, 168), (246, 170), (247, 161), (247, 163), (247, 164), (247, 165), (247, 166), (247, 167), (247, 168), (247, 170), (248, 160), (248, 162), (248, 163), (248, 164), (248, 165), (248, 166), (248, 167), (248, 169), (249, 160), (249, 162), (249, 163), (249, 164), (249, 165), (249, 166), (249, 167), (249, 169), (250, 159), (250, 161), (250, 162), (250, 163), (250, 164), (250, 165), (250, 166), (250, 168), (251, 159), (251, 161), (251, 162), (251, 163), (251, 164), (251, 165), (251, 166), (251, 168), (252, 158), (252, 160), (252, 161), (252, 162), (252, 163), (252, 164), (252, 165), (252, 167), (253, 158), (253, 160), (253, 161), (253, 162), (253, 163), (253, 164), (253, 165), (253, 167), (254, 157), (254, 159), (254, 160), (254, 161), (254, 162), (254, 163), (254, 164), (254, 165), (254, 167), (255, 157), (255, 159), (255, 160), (255, 161), (255, 162), (255, 163), (255, 164), (255, 166), (256, 156), (256, 158), (256, 159), (256, 160), (256, 161), (256, 162), (256, 163), (256, 164), (256, 166), (257, 156), (257, 158), (257, 159), (257, 160), (257, 161), (257, 162), (257, 163), (257, 164), (257, 166), (258, 156), (258, 158), (258, 159), (258, 160), (258, 161), (258, 162), (258, 163), (258, 165), (259, 155), (259, 157), (259, 158), (259, 159), (259, 160), (259, 161), (259, 162), (259, 163), (259, 165), (260, 155), (260, 157), (260, 158), (260, 159), (260, 160), (260, 161), (260, 162), (260, 164), (261, 154), (261, 156), (261, 157), (261, 158), (261, 159), (261, 160), (261, 161), (261, 162), (261, 164), (262, 153), (262, 155), (262, 156), (262, 157), (262, 158), (262, 159), (262, 160), (262, 161), (262, 162), (262, 164), (263, 153), (263, 155), (263, 156), (263, 157), (263, 158), (263, 159), (263, 160), (263, 161), (263, 163), (264, 152), (264, 154), (264, 155), (264, 156), (264, 157), (264, 158), (264, 159), (264, 160), (264, 161), (264, 163), (265, 151), (265, 153), (265, 154), (265, 155), (265, 156), (265, 157), (265, 158), (265, 159), (265, 160), (265, 162), (266, 150), (266, 152), (266, 153), (266, 154), (266, 155), (266, 156), (266, 157), (266, 158), (266, 159), (266, 160), (266, 162), (267, 149), (267, 151), (267, 152), (267, 153), (267, 154), (267, 155), (267, 156), (267, 157), (267, 158), (267, 159), (267, 161), (268, 149), (268, 151), (268, 152), (268, 153), (268, 154), (268, 155), (268, 156), (268, 157), (268, 158), (268, 159), (268, 161), (269, 148), (269, 150), (269, 151), (269, 152), (269, 153), (269, 154), (269, 155), (269, 156), (269, 157), (269, 158), (269, 160), (270, 147), (270, 149), (270, 150), (270, 151), (270, 152), (270, 153), (270, 154), (270, 155), (270, 156), (270, 157), (270, 158), (270, 160), (271, 146), (271, 148), (271, 149), (271, 150), (271, 151), (271, 152), (271, 153), (271, 154), (271, 155), (271, 156), (271, 157), (271, 159), (272, 145), (272, 147), (272, 148), (272, 149), (272, 150), (272, 151), (272, 152), (272, 153), (272, 154), (272, 155), (272, 156), (272, 158), (273, 144), (273, 146), (273, 147), (273, 148), (273, 149), (273, 150), (273, 151), (273, 152), (273, 153), (273, 154), (273, 155), (273, 157), (274, 143), (274, 145), (274, 146), (274, 147), (274, 148), (274, 149), (274, 150), (274, 151), (274, 152), (274, 153), (274, 154), (274, 156), (275, 142), (275, 144), (275, 145), (275, 146), (275, 147), (275, 148), (275, 149), (275, 150), (275, 151), (275, 152), (275, 153), (275, 154), (275, 156), (276, 141), (276, 143), (276, 144), (276, 145), (276, 146), (276, 147), (276, 148), (276, 149), (276, 150), (276, 151), (276, 152), (276, 153), (276, 155), (277, 140), (277, 142), (277, 143), (277, 144), (277, 145), (277, 146), (277, 147), (277, 148), (277, 149), (277, 150), (277, 151), (277, 152), (277, 154), (278, 138), (278, 141), (278, 142), (278, 143), (278, 144), (278, 145), (278, 146), (278, 147), (278, 151), (278, 153), (279, 137), (279, 140), (279, 148), (279, 149), (279, 150), (279, 152), (280, 136), (280, 141), (280, 142), (280, 143), (280, 144), (280, 145), (280, 146), (280, 147), (280, 152), (281, 136), (281, 138), (281, 139), (281, 140), ) coordinates_EBFF00 = ((125, 166), (125, 168), (125, 169), (125, 170), (125, 171), (125, 172), (125, 173), (125, 174), (125, 175), (125, 176), (125, 177), (125, 179), (126, 166), (126, 179), (127, 166), (127, 168), (127, 169), (127, 170), (127, 171), (127, 172), (127, 173), (127, 174), (127, 175), (127, 176), (127, 177), (127, 179), (128, 167), (128, 169), (128, 170), (128, 171), (128, 172), (128, 173), (128, 174), (128, 175), (128, 176), (128, 177), (128, 178), (128, 180), (129, 167), (129, 169), (129, 170), (129, 171), (129, 172), (129, 173), (129, 174), (129, 175), (129, 176), (129, 177), (129, 178), (129, 180), (130, 168), (130, 170), (130, 171), (130, 172), (130, 173), (130, 174), (130, 175), (130, 176), (130, 177), (130, 178), (130, 180), (131, 168), (131, 170), (131, 171), (131, 172), (131, 173), (131, 174), (131, 175), (131, 176), (131, 177), (131, 178), (131, 180), (132, 169), (132, 171), (132, 172), (132, 173), (132, 174), (132, 175), (132, 176), (132, 177), (132, 178), (132, 179), (132, 181), (133, 169), (133, 171), (133, 172), (133, 173), (133, 174), (133, 175), (133, 176), (133, 177), (133, 178), (133, 179), (133, 181), (134, 170), (134, 172), (134, 173), (134, 174), (134, 175), (134, 176), (134, 177), (134, 178), (134, 179), (134, 180), (134, 182), (135, 171), (135, 173), (135, 174), (135, 175), (135, 176), (135, 177), (135, 178), (135, 179), (135, 180), (135, 182), (136, 171), (136, 173), (136, 174), (136, 175), (136, 176), (136, 177), (136, 178), (136, 179), (136, 180), (136, 182), (137, 172), (137, 174), (137, 175), (137, 176), (137, 177), (137, 178), (137, 179), (137, 180), (137, 181), (137, 183), (138, 173), (138, 175), (138, 176), (138, 177), (138, 178), (138, 179), (138, 180), (138, 181), (138, 183), (139, 173), (139, 175), (139, 176), (139, 177), (139, 178), (139, 179), (139, 180), (139, 181), (139, 182), (139, 184), (140, 174), (140, 176), (140, 177), (140, 178), (140, 179), (140, 180), (140, 181), (140, 182), (140, 184), (141, 174), (141, 176), (141, 177), (141, 178), (141, 179), (141, 180), (141, 181), (141, 182), (141, 184), (142, 175), (142, 177), (142, 178), (142, 179), (142, 180), (142, 181), (142, 182), (142, 183), (142, 185), (143, 175), (143, 177), (143, 178), (143, 179), (143, 180), (143, 181), (143, 182), (143, 183), (143, 185), (144, 176), (144, 178), (144, 179), (144, 180), (144, 181), (144, 182), (144, 183), (144, 184), (144, 186), (145, 176), (145, 178), (145, 179), (145, 180), (145, 181), (145, 182), (145, 183), (145, 184), (145, 186), (146, 176), (146, 178), (146, 179), (146, 180), (146, 181), (146, 182), (146, 183), (146, 184), (146, 186), (147, 176), (147, 178), (147, 179), (147, 180), (147, 181), (147, 182), (147, 183), (147, 184), (147, 185), (147, 186), (147, 187), (148, 177), (148, 179), (148, 180), (148, 181), (148, 182), (148, 183), (148, 184), (148, 185), (148, 187), (149, 177), (149, 179), (149, 180), (149, 181), (149, 182), (149, 183), (149, 184), (149, 185), (149, 187), (150, 177), (150, 179), (150, 180), (150, 181), (150, 182), (150, 183), (150, 184), (150, 185), (150, 187), (151, 177), (151, 179), (151, 180), (151, 181), (151, 182), (151, 183), (151, 184), (151, 185), (151, 186), (151, 188), (152, 177), (152, 179), (152, 180), (152, 181), (152, 182), (152, 183), (152, 184), (152, 185), (152, 186), (152, 188), (153, 177), (153, 179), (153, 180), (153, 181), (153, 182), (153, 183), (153, 184), (153, 185), (153, 186), (153, 188), (154, 177), (154, 179), (154, 180), (154, 181), (154, 182), (154, 183), (154, 184), (154, 185), (154, 186), (154, 188), (155, 178), (155, 180), (155, 181), (155, 182), (155, 183), (155, 184), (155, 185), (155, 186), (155, 187), (155, 188), (155, 189), (156, 178), (156, 180), (156, 181), (156, 182), (156, 183), (156, 184), (156, 185), (156, 186), (156, 187), (156, 189), (157, 178), (157, 180), (157, 181), (157, 182), (157, 183), (157, 184), (157, 185), (157, 186), (157, 187), (157, 189), (158, 178), (158, 180), (158, 181), (158, 182), (158, 183), (158, 184), (158, 185), (158, 186), (158, 187), (158, 189), (159, 178), (159, 180), (159, 181), (159, 182), (159, 183), (159, 184), (159, 185), (159, 186), (159, 187), (159, 189), (160, 178), (160, 180), (160, 181), (160, 182), (160, 183), (160, 184), (160, 185), (160, 186), (160, 187), (160, 189), (161, 178), (161, 180), (161, 181), (161, 182), (161, 183), (161, 184), (161, 185), (161, 186), (161, 187), (161, 189), (162, 178), (162, 180), (162, 181), (162, 182), (162, 183), (162, 184), (162, 185), (162, 186), (162, 187), (162, 189), (163, 178), (163, 180), (163, 181), (163, 182), (163, 183), (163, 184), (163, 185), (163, 186), (163, 187), (163, 188), (163, 190), (164, 178), (164, 180), (164, 181), (164, 182), (164, 183), (164, 184), (164, 185), (164, 186), (164, 187), (164, 188), (164, 190), (165, 178), (165, 180), (165, 181), (165, 182), (165, 183), (165, 184), (165, 185), (165, 186), (165, 187), (165, 188), (165, 190), (166, 178), (166, 180), (166, 181), (166, 182), (166, 183), (166, 184), (166, 185), (166, 186), (166, 187), (166, 188), (166, 190), (167, 178), (167, 180), (167, 181), (167, 182), (167, 183), (167, 184), (167, 185), (167, 186), (167, 187), (167, 188), (167, 190), (168, 178), (168, 180), (168, 181), (168, 182), (168, 183), (168, 184), (168, 185), (168, 186), (168, 187), (168, 189), (169, 178), (169, 180), (169, 181), (169, 182), (169, 183), (169, 184), (169, 185), (169, 186), (169, 187), (169, 189), (170, 179), (170, 181), (170, 182), (170, 183), (170, 184), (170, 185), (170, 186), (170, 187), (170, 189), (171, 179), (171, 181), (171, 182), (171, 183), (171, 184), (171, 185), (171, 186), (171, 187), (171, 189), (172, 179), (172, 181), (172, 182), (172, 183), (172, 184), (172, 185), (172, 186), (172, 187), (172, 189), (173, 180), (173, 182), (173, 183), (173, 184), (173, 185), (173, 186), (173, 187), (173, 189), (174, 181), (174, 183), (174, 184), (174, 185), (174, 186), (174, 187), (174, 189), (175, 181), (175, 184), (175, 185), (175, 186), (175, 187), (175, 189), (176, 182), (176, 183), (176, 189), (177, 184), (177, 186), (177, 187), (177, 189), (222, 184), (222, 186), (222, 187), (222, 189), (223, 182), (223, 189), (224, 181), (224, 184), (224, 185), (224, 186), (224, 187), (224, 189), (225, 183), (225, 184), (225, 185), (225, 186), (225, 187), (225, 189), (226, 180), (226, 182), (226, 183), (226, 184), (226, 185), (226, 186), (226, 187), (226, 189), (227, 179), (227, 181), (227, 182), (227, 183), (227, 184), (227, 185), (227, 186), (227, 187), (227, 189), (228, 179), (228, 181), (228, 182), (228, 183), (228, 184), (228, 185), (228, 186), (228, 187), (228, 189), (229, 179), (229, 181), (229, 182), (229, 183), (229, 184), (229, 185), (229, 186), (229, 187), (229, 189), (230, 178), (230, 180), (230, 181), (230, 182), (230, 183), (230, 184), (230, 185), (230, 186), (230, 187), (230, 189), (231, 178), (231, 180), (231, 181), (231, 182), (231, 183), (231, 184), (231, 185), (231, 186), (231, 187), (231, 189), (232, 178), (232, 180), (232, 181), (232, 182), (232, 183), (232, 184), (232, 185), (232, 186), (232, 187), (232, 188), (232, 190), (233, 178), (233, 180), (233, 181), (233, 182), (233, 183), (233, 184), (233, 185), (233, 186), (233, 187), (233, 188), (233, 190), (234, 178), (234, 180), (234, 181), (234, 182), (234, 183), (234, 184), (234, 185), (234, 186), (234, 187), (234, 188), (234, 190), (235, 178), (235, 180), (235, 181), (235, 182), (235, 183), (235, 184), (235, 185), (235, 186), (235, 187), (235, 188), (235, 190), (236, 178), (236, 180), (236, 181), (236, 182), (236, 183), (236, 184), (236, 185), (236, 186), (236, 187), (236, 188), (236, 190), (237, 178), (237, 180), (237, 181), (237, 182), (237, 183), (237, 184), (237, 185), (237, 186), (237, 187), (237, 189), (238, 178), (238, 180), (238, 181), (238, 182), (238, 183), (238, 184), (238, 185), (238, 186), (238, 187), (238, 189), (239, 178), (239, 180), (239, 181), (239, 182), (239, 183), (239, 184), (239, 185), (239, 186), (239, 187), (239, 189), (240, 178), (240, 180), (240, 181), (240, 182), (240, 183), (240, 184), (240, 185), (240, 186), (240, 187), (240, 189), (241, 178), (241, 180), (241, 181), (241, 182), (241, 183), (241, 184), (241, 185), (241, 186), (241, 187), (241, 189), (242, 178), (242, 180), (242, 181), (242, 182), (242, 183), (242, 184), (242, 185), (242, 186), (242, 187), (242, 189), (243, 178), (243, 180), (243, 181), (243, 182), (243, 183), (243, 184), (243, 185), (243, 186), (243, 187), (243, 189), (244, 178), (244, 180), (244, 181), (244, 182), (244, 183), (244, 184), (244, 185), (244, 186), (244, 188), (245, 177), (245, 179), (245, 180), (245, 181), (245, 182), (245, 183), (245, 184), (245, 185), (245, 186), (245, 188), (246, 177), (246, 179), (246, 180), (246, 181), (246, 182), (246, 183), (246, 184), (246, 185), (246, 186), (246, 188), (247, 177), (247, 179), (247, 180), (247, 181), (247, 182), (247, 183), (247, 184), (247, 185), (247, 186), (247, 188), (248, 177), (248, 179), (248, 180), (248, 181), (248, 182), (248, 183), (248, 184), (248, 185), (248, 186), (248, 188), (249, 177), (249, 179), (249, 180), (249, 181), (249, 182), (249, 183), (249, 184), (249, 185), (249, 187), (250, 177), (250, 179), (250, 180), (250, 181), (250, 182), (250, 183), (250, 184), (250, 185), (250, 187), (251, 177), (251, 179), (251, 180), (251, 181), (251, 182), (251, 183), (251, 184), (251, 185), (251, 187), (252, 176), (252, 178), (252, 179), (252, 180), (252, 181), (252, 182), (252, 183), (252, 184), (252, 186), (253, 176), (253, 178), (253, 179), (253, 180), (253, 181), (253, 182), (253, 183), (253, 184), (253, 186), (254, 176), (254, 178), (254, 179), (254, 180), (254, 181), (254, 182), (254, 183), (254, 184), (254, 186), (255, 175), (255, 176), (255, 177), (255, 178), (255, 179), (255, 180), (255, 181), (255, 182), (255, 183), (255, 184), (255, 185), (255, 186), (256, 175), (256, 177), (256, 178), (256, 179), (256, 180), (256, 181), (256, 182), (256, 183), (256, 185), (257, 175), (257, 177), (257, 178), (257, 179), (257, 180), (257, 181), (257, 182), (257, 183), (257, 185), (258, 174), (258, 176), (258, 177), (258, 178), (258, 179), (258, 180), (258, 181), (258, 182), (258, 184), (259, 174), (259, 176), (259, 177), (259, 178), (259, 179), (259, 180), (259, 181), (259, 182), (259, 184), (260, 173), (260, 175), (260, 176), (260, 177), (260, 178), (260, 179), (260, 180), (260, 181), (260, 182), (260, 184), (261, 173), (261, 175), (261, 176), (261, 177), (261, 178), (261, 179), (261, 180), (261, 181), (261, 183), (262, 172), (262, 174), (262, 175), (262, 176), (262, 177), (262, 178), (262, 179), (262, 180), (262, 181), (262, 183), (263, 171), (263, 173), (263, 174), (263, 175), (263, 176), (263, 177), (263, 178), (263, 179), (263, 180), (263, 182), (264, 171), (264, 173), (264, 174), (264, 175), (264, 176), (264, 177), (264, 178), (264, 179), (264, 180), (264, 182), (265, 170), (265, 172), (265, 173), (265, 174), (265, 175), (265, 176), (265, 177), (265, 178), (265, 179), (265, 180), (265, 181), (266, 169), (266, 171), (266, 172), (266, 173), (266, 174), (266, 175), (266, 176), (266, 177), (266, 178), (266, 179), (266, 181), (267, 169), (267, 171), (267, 172), (267, 173), (267, 174), (267, 175), (267, 176), (267, 177), (267, 178), (267, 179), (267, 181), (268, 168), (268, 170), (268, 171), (268, 172), (268, 173), (268, 174), (268, 175), (268, 176), (268, 177), (268, 178), (268, 180), (269, 168), (269, 169), (269, 170), (269, 171), (269, 172), (269, 173), (269, 174), (269, 175), (269, 176), (269, 177), (269, 178), (269, 180), (270, 167), (270, 169), (270, 170), (270, 171), (270, 172), (270, 173), (270, 174), (270, 175), (270, 176), (270, 177), (270, 178), (270, 180), (271, 167), (271, 169), (271, 170), (271, 171), (271, 172), (271, 173), (271, 174), (271, 175), (271, 176), (271, 177), (271, 178), (271, 180), (272, 166), (272, 168), (272, 169), (272, 170), (272, 171), (272, 172), (272, 173), (272, 174), (272, 175), (272, 176), (272, 177), (272, 179), (273, 166), (273, 168), (273, 179), (274, 169), (274, 170), (274, 171), (274, 172), (274, 173), (274, 174), (274, 175), (274, 176), (274, 177), (274, 179), ) coordinates_7F0035 = ((186, 184), (186, 186), (186, 187), (186, 188), (186, 189), (186, 190), (186, 191), (186, 192), (186, 193), (186, 194), (186, 195), (187, 183), (187, 196), (187, 197), (187, 198), (187, 199), (187, 200), (187, 201), (187, 202), (187, 203), (187, 204), (187, 205), (187, 206), (187, 208), (188, 182), (188, 184), (188, 185), (188, 186), (188, 187), (188, 188), (188, 189), (188, 190), (188, 191), (188, 192), (188, 193), (188, 194), (188, 195), (188, 206), (188, 208), (189, 184), (189, 185), (189, 186), (189, 187), (189, 188), (189, 189), (189, 190), (189, 191), (189, 192), (189, 193), (189, 194), (189, 195), (189, 196), (189, 197), (189, 198), (189, 199), (189, 200), (189, 201), (189, 202), (189, 203), (189, 204), (189, 205), (189, 206), (189, 210), (190, 183), (190, 184), (190, 185), (190, 186), (190, 187), (190, 188), (190, 189), (190, 190), (190, 191), (190, 192), (190, 193), (190, 194), (190, 195), (190, 196), (190, 197), (190, 198), (190, 199), (190, 200), (190, 201), (190, 202), (190, 203), (190, 204), (190, 205), (190, 206), (190, 207), (190, 208), (190, 211), (190, 212), (191, 179), (191, 182), (191, 183), (191, 184), (191, 185), (191, 186), (191, 187), (191, 188), (191, 189), (191, 190), (191, 191), (191, 192), (191, 193), (191, 194), (191, 195), (191, 196), (191, 197), (191, 198), (191, 199), (191, 200), (191, 201), (191, 202), (191, 203), (191, 204), (191, 205), (191, 206), (191, 207), (191, 208), (191, 209), (191, 210), (191, 213), (191, 214), (191, 215), (191, 216), (192, 181), (192, 182), (192, 183), (192, 184), (192, 185), (192, 186), (192, 187), (192, 188), (192, 189), (192, 190), (192, 191), (192, 192), (192, 193), (192, 194), (192, 195), (192, 196), (192, 197), (192, 198), (192, 199), (192, 200), (192, 201), (192, 202), (192, 203), (192, 204), (192, 205), (192, 206), (192, 207), (192, 208), (192, 209), (192, 210), (192, 211), (192, 212), (192, 217), (192, 218), (192, 219), (192, 220), (192, 221), (192, 223), (193, 178), (193, 180), (193, 181), (193, 182), (193, 183), (193, 184), (193, 185), (193, 186), (193, 187), (193, 188), (193, 189), (193, 190), (193, 191), (193, 192), (193, 193), (193, 194), (193, 195), (193, 196), (193, 197), (193, 198), (193, 199), (193, 200), (193, 201), (193, 202), (193, 203), (193, 204), (193, 205), (193, 206), (193, 207), (193, 208), (193, 209), (193, 210), (193, 211), (193, 212), (193, 213), (193, 214), (193, 215), (193, 216), (193, 222), (194, 177), (194, 180), (194, 181), (194, 182), (194, 183), (194, 184), (194, 185), (194, 186), (194, 187), (194, 188), (194, 189), (194, 190), (194, 191), (194, 192), (194, 193), (194, 194), (194, 195), (194, 196), (194, 197), (194, 198), (194, 199), (194, 200), (194, 201), (194, 202), (194, 203), (194, 204), (194, 205), (194, 206), (194, 207), (194, 208), (194, 209), (194, 210), (194, 211), (194, 212), (194, 213), (194, 214), (194, 215), (194, 216), (194, 217), (194, 218), (194, 219), (194, 220), (194, 222), (195, 177), (195, 182), (195, 183), (195, 184), (195, 185), (195, 186), (195, 187), (195, 188), (195, 189), (195, 190), (195, 222), (196, 180), (196, 181), (196, 191), (196, 192), (196, 193), (196, 194), (196, 195), (196, 196), (196, 197), (196, 198), (196, 199), (196, 200), (196, 201), (196, 202), (196, 203), (196, 204), (196, 205), (196, 206), (196, 207), (196, 208), (196, 209), (196, 210), (196, 211), (196, 212), (196, 213), (196, 214), (196, 215), (196, 216), (196, 217), (196, 218), (196, 219), (196, 221), (197, 182), (197, 184), (197, 185), (197, 186), (197, 187), (197, 188), (197, 189), (197, 190), (202, 182), (202, 184), (202, 185), (202, 186), (202, 187), (202, 188), (202, 189), (202, 190), (203, 180), (203, 191), (203, 192), (203, 193), (203, 194), (203, 195), (203, 196), (203, 197), (203, 198), (203, 199), (203, 200), (203, 201), (203, 202), (203, 203), (203, 204), (203, 205), (203, 206), (203, 207), (203, 208), (203, 209), (203, 210), (203, 211), (203, 212), (203, 213), (203, 214), (203, 215), (203, 216), (203, 217), (203, 218), (203, 219), (203, 221), (204, 177), (204, 182), (204, 183), (204, 184), (204, 185), (204, 186), (204, 187), (204, 188), (204, 189), (204, 190), (204, 222), (205, 177), (205, 179), (205, 180), (205, 181), (205, 182), (205, 183), (205, 184), (205, 185), (205, 186), (205, 187), (205, 188), (205, 189), (205, 190), (205, 191), (205, 192), (205, 193), (205, 194), (205, 195), (205, 196), (205, 197), (205, 198), (205, 199), (205, 200), (205, 201), (205, 202), (205, 203), (205, 204), (205, 205), (205, 206), (205, 207), (205, 208), (205, 209), (205, 210), (205, 211), (205, 212), (205, 213), (205, 214), (205, 215), (205, 216), (205, 217), (205, 218), (205, 219), (205, 220), (205, 222), (206, 178), (206, 180), (206, 181), (206, 182), (206, 183), (206, 184), (206, 185), (206, 186), (206, 187), (206, 188), (206, 189), (206, 190), (206, 191), (206, 192), (206, 193), (206, 194), (206, 195), (206, 196), (206, 197), (206, 198), (206, 199), (206, 200), (206, 201), (206, 202), (206, 203), (206, 204), (206, 205), (206, 206), (206, 207), (206, 208), (206, 209), (206, 210), (206, 211), (206, 212), (206, 213), (206, 214), (206, 215), (206, 216), (206, 222), (207, 179), (207, 181), (207, 182), (207, 183), (207, 184), (207, 185), (207, 186), (207, 187), (207, 188), (207, 189), (207, 190), (207, 191), (207, 192), (207, 193), (207, 194), (207, 195), (207, 196), (207, 197), (207, 198), (207, 199), (207, 200), (207, 201), (207, 202), (207, 203), (207, 204), (207, 205), (207, 206), (207, 207), (207, 208), (207, 209), (207, 210), (207, 211), (207, 212), (207, 216), (207, 217), (207, 218), (207, 219), (207, 220), (207, 221), (208, 182), (208, 183), (208, 184), (208, 185), (208, 186), (208, 187), (208, 188), (208, 189), (208, 190), (208, 191), (208, 192), (208, 193), (208, 194), (208, 195), (208, 196), (208, 197), (208, 198), (208, 199), (208, 200), (208, 201), (208, 202), (208, 203), (208, 204), (208, 205), (208, 206), (208, 207), (208, 208), (208, 209), (208, 210), (208, 213), (208, 214), (208, 215), (209, 181), (209, 183), (209, 184), (209, 185), (209, 186), (209, 187), (209, 188), (209, 189), (209, 190), (209, 191), (209, 192), (209, 193), (209, 194), (209, 195), (209, 196), (209, 197), (209, 198), (209, 199), (209, 200), (209, 201), (209, 202), (209, 203), (209, 204), (209, 205), (209, 206), (209, 207), (209, 208), (209, 211), (209, 212), (210, 182), (210, 184), (210, 185), (210, 186), (210, 187), (210, 188), (210, 189), (210, 190), (210, 191), (210, 192), (210, 193), (210, 194), (210, 195), (210, 196), (210, 197), (210, 198), (210, 199), (210, 200), (210, 201), (210, 202), (210, 203), (210, 204), (210, 210), (211, 182), (211, 184), (211, 185), (211, 186), (211, 187), (211, 188), (211, 189), (211, 190), (211, 191), (211, 192), (211, 193), (211, 194), (211, 205), (211, 206), (211, 208), (212, 183), (212, 195), (212, 196), (212, 197), (212, 198), (212, 199), (212, 200), (212, 201), (212, 202), (212, 203), (212, 204), (213, 184), (213, 186), (213, 187), (213, 188), (213, 189), (213, 190), (213, 191), (213, 192), (213, 193), (213, 194), ) coordinates_FF00EB = ((167, 192), (167, 194), (168, 192), (168, 196), (169, 192), (169, 194), (169, 198), (170, 191), (170, 192), (170, 193), (170, 194), (170, 195), (170, 196), (170, 200), (171, 191), (171, 193), (171, 194), (171, 195), (171, 196), (171, 197), (171, 198), (171, 202), (172, 191), (172, 193), (172, 194), (172, 195), (172, 196), (172, 197), (172, 198), (172, 199), (172, 200), (172, 204), (173, 191), (173, 193), (173, 194), (173, 195), (173, 196), (173, 197), (173, 198), (173, 199), (173, 200), (173, 201), (173, 202), (173, 206), (174, 191), (174, 193), (174, 194), (174, 195), (174, 196), (174, 197), (174, 198), (174, 199), (174, 200), (174, 201), (174, 202), (174, 203), (174, 204), (174, 208), (175, 191), (175, 193), (175, 194), (175, 195), (175, 196), (175, 197), (175, 198), (175, 199), (175, 200), (175, 201), (175, 202), (175, 203), (175, 204), (175, 205), (175, 206), (175, 209), (176, 191), (176, 194), (176, 195), (176, 196), (176, 197), (176, 198), (176, 199), (176, 200), (176, 201), (176, 202), (176, 203), (176, 204), (176, 205), (176, 206), (176, 207), (176, 208), (176, 211), (177, 191), (177, 196), (177, 197), (177, 198), (177, 199), (177, 200), (177, 201), (177, 202), (177, 203), (177, 204), (177, 205), (177, 206), (177, 207), (177, 208), (177, 209), (177, 213), (178, 194), (178, 195), (178, 198), (178, 199), (178, 200), (178, 201), (178, 202), (178, 203), (178, 204), (178, 205), (178, 206), (178, 207), (178, 208), (178, 209), (178, 210), (178, 211), (178, 214), (179, 196), (179, 197), (179, 201), (179, 202), (179, 203), (179, 204), (179, 205), (179, 206), (179, 207), (179, 208), (179, 209), (179, 210), (179, 211), (179, 212), (179, 213), (179, 216), (180, 199), (180, 203), (180, 204), (180, 205), (180, 206), (180, 207), (180, 208), (180, 209), (180, 210), (180, 211), (180, 212), (180, 213), (180, 214), (180, 217), (181, 201), (181, 205), (181, 206), (181, 207), (181, 208), (181, 209), (181, 210), (181, 211), (181, 212), (181, 213), (181, 214), (181, 215), (181, 216), (181, 218), (182, 203), (182, 206), (182, 207), (182, 208), (182, 209), (182, 210), (182, 211), (182, 212), (182, 213), (182, 214), (182, 215), (182, 216), (182, 217), (182, 220), (183, 205), (183, 208), (183, 209), (183, 210), (183, 211), (183, 212), (183, 213), (183, 214), (183, 215), (183, 216), (183, 217), (183, 218), (183, 221), (184, 206), (184, 210), (184, 211), (184, 212), (184, 213), (184, 214), (184, 215), (184, 216), (184, 217), (184, 218), (184, 219), (184, 220), (184, 222), (185, 208), (185, 210), (185, 211), (185, 212), (185, 213), (185, 214), (185, 215), (185, 216), (185, 217), (185, 218), (185, 219), (185, 220), (185, 221), (185, 223), (186, 212), (186, 213), (186, 214), (186, 215), (186, 216), (186, 217), (186, 218), (186, 219), (186, 220), (186, 221), (186, 223), (187, 210), (187, 214), (187, 215), (187, 216), (187, 217), (187, 218), (187, 219), (187, 220), (187, 221), (187, 223), (188, 211), (188, 213), (188, 218), (188, 219), (188, 220), (188, 221), (188, 223), (189, 214), (189, 216), (189, 217), (189, 223), (190, 218), (190, 219), (190, 220), (190, 221), (190, 223), (209, 218), (209, 219), (209, 220), (209, 221), (209, 223), (210, 214), (210, 215), (210, 216), (210, 217), (210, 223), (211, 211), (211, 213), (211, 217), (211, 218), (211, 219), (211, 220), (211, 221), (211, 223), (212, 210), (212, 214), (212, 215), (212, 216), (212, 217), (212, 218), (212, 219), (212, 220), (212, 221), (212, 223), (213, 211), (213, 212), (213, 213), (213, 214), (213, 215), (213, 216), (213, 217), (213, 218), (213, 219), (213, 220), (213, 221), (213, 223), (214, 208), (214, 210), (214, 211), (214, 212), (214, 213), (214, 214), (214, 215), (214, 216), (214, 217), (214, 218), (214, 219), (214, 220), (214, 221), (214, 223), (215, 206), (215, 209), (215, 210), (215, 211), (215, 212), (215, 213), (215, 214), (215, 215), (215, 216), (215, 217), (215, 218), (215, 219), (215, 222), (216, 205), (216, 208), (216, 209), (216, 210), (216, 211), (216, 212), (216, 213), (216, 214), (216, 215), (216, 216), (216, 217), (216, 218), (216, 221), (217, 203), (217, 206), (217, 207), (217, 208), (217, 209), (217, 210), (217, 211), (217, 212), (217, 213), (217, 214), (217, 215), (217, 216), (217, 217), (217, 220), (218, 201), (218, 205), (218, 206), (218, 207), (218, 208), (218, 209), (218, 210), (218, 211), (218, 212), (218, 213), (218, 214), (218, 215), (218, 216), (218, 218), (219, 198), (219, 199), (219, 203), (219, 204), (219, 205), (219, 206), (219, 207), (219, 208), (219, 209), (219, 210), (219, 211), (219, 212), (219, 213), (219, 214), (219, 217), (220, 196), (220, 197), (220, 200), (220, 201), (220, 202), (220, 203), (220, 204), (220, 205), (220, 206), (220, 207), (220, 208), (220, 209), (220, 210), (220, 211), (220, 212), (220, 216), (221, 194), (221, 195), (221, 198), (221, 199), (221, 200), (221, 201), (221, 202), (221, 203), (221, 204), (221, 205), (221, 206), (221, 207), (221, 208), (221, 209), (221, 210), (221, 211), (221, 214), (222, 191), (222, 196), (222, 197), (222, 198), (222, 199), (222, 200), (222, 201), (222, 202), (222, 203), (222, 204), (222, 205), (222, 206), (222, 207), (222, 208), (222, 209), (222, 212), (223, 191), (223, 193), (223, 194), (223, 195), (223, 196), (223, 197), (223, 198), (223, 199), (223, 200), (223, 201), (223, 202), (223, 203), (223, 204), (223, 205), (223, 206), (223, 207), (223, 208), (223, 211), (224, 191), (224, 193), (224, 194), (224, 195), (224, 196), (224, 197), (224, 198), (224, 199), (224, 200), (224, 201), (224, 202), (224, 203), (224, 204), (224, 205), (224, 206), (224, 209), (225, 191), (225, 193), (225, 194), (225, 195), (225, 196), (225, 197), (225, 198), (225, 199), (225, 200), (225, 201), (225, 202), (225, 203), (225, 204), (225, 207), (226, 191), (226, 193), (226, 194), (226, 195), (226, 196), (226, 197), (226, 198), (226, 199), (226, 200), (226, 201), (226, 202), (226, 206), (227, 191), (227, 193), (227, 194), (227, 195), (227, 196), (227, 197), (227, 198), (227, 199), (227, 200), (227, 204), (228, 191), (228, 193), (228, 194), (228, 195), (228, 196), (228, 197), (228, 198), (228, 202), (229, 192), (229, 194), (229, 195), (229, 196), (229, 200), (230, 192), (230, 194), (230, 198), (231, 192), (231, 196), (232, 192), ) coordinates_007F49 = ((98, 150), (98, 151), (98, 152), (98, 153), (98, 154), (98, 155), (98, 156), (98, 157), (98, 158), (98, 159), (98, 161), (99, 148), (99, 149), (99, 162), (99, 163), (100, 146), (100, 150), (100, 151), (100, 152), (100, 153), (100, 154), (100, 155), (100, 156), (100, 157), (100, 158), (100, 159), (100, 160), (100, 161), (100, 165), (101, 144), (101, 148), (101, 149), (101, 150), (101, 151), (101, 152), (101, 153), (101, 154), (101, 155), (101, 156), (101, 157), (101, 158), (101, 159), (101, 160), (101, 161), (101, 162), (101, 163), (101, 167), (102, 143), (102, 146), (102, 147), (102, 148), (102, 149), (102, 150), (102, 151), (102, 152), (102, 153), (102, 154), (102, 155), (102, 156), (102, 157), (102, 158), (102, 159), (102, 160), (102, 161), (102, 162), (102, 163), (102, 164), (102, 165), (102, 168), (103, 142), (103, 144), (103, 145), (103, 146), (103, 147), (103, 148), (103, 149), (103, 150), (103, 151), (103, 152), (103, 153), (103, 154), (103, 155), (103, 156), (103, 157), (103, 158), (103, 159), (103, 160), (103, 161), (103, 162), (103, 163), (103, 164), (103, 165), (103, 166), (103, 167), (103, 169), (104, 141), (104, 143), (104, 144), (104, 145), (104, 146), (104, 147), (104, 148), (104, 149), (104, 150), (104, 151), (104, 152), (104, 153), (104, 154), (104, 155), (104, 156), (104, 157), (104, 158), (104, 159), (104, 160), (104, 161), (104, 162), (104, 163), (104, 164), (104, 165), (104, 166), (104, 167), (104, 168), (104, 170), (105, 140), (105, 142), (105, 143), (105, 144), (105, 145), (105, 146), (105, 147), (105, 148), (105, 149), (105, 150), (105, 151), (105, 152), (105, 153), (105, 154), (105, 155), (105, 156), (105, 157), (105, 158), (105, 159), (105, 160), (105, 161), (105, 162), (105, 163), (105, 164), (105, 165), (105, 166), (105, 167), (105, 168), (105, 171), (106, 139), (106, 141), (106, 142), (106, 143), (106, 144), (106, 145), (106, 146), (106, 147), (106, 148), (106, 149), (106, 150), (106, 151), (106, 152), (106, 153), (106, 154), (106, 155), (106, 156), (106, 157), (106, 158), (106, 159), (106, 160), (106, 161), (106, 162), (106, 163), (106, 164), (106, 165), (106, 166), (106, 167), (106, 168), (106, 169), (106, 171), (107, 138), (107, 140), (107, 141), (107, 142), (107, 143), (107, 144), (107, 145), (107, 146), (107, 147), (107, 148), (107, 149), (107, 150), (107, 151), (107, 152), (107, 153), (107, 154), (107, 155), (107, 156), (107, 157), (107, 158), (107, 159), (107, 160), (107, 161), (107, 162), (107, 163), (107, 164), (107, 165), (107, 166), (107, 167), (107, 168), (107, 169), (107, 170), (107, 172), (108, 138), (108, 140), (108, 141), (108, 142), (108, 143), (108, 144), (108, 145), (108, 146), (108, 147), (108, 148), (108, 149), (108, 150), (108, 151), (108, 152), (108, 153), (108, 154), (108, 155), (108, 156), (108, 157), (108, 158), (108, 159), (108, 160), (108, 161), (108, 162), (108, 163), (108, 164), (108, 165), (108, 166), (108, 167), (108, 168), (108, 169), (108, 170), (108, 171), (108, 173), (109, 137), (109, 139), (109, 140), (109, 141), (109, 142), (109, 143), (109, 144), (109, 145), (109, 146), (109, 147), (109, 148), (109, 149), (109, 150), (109, 151), (109, 152), (109, 153), (109, 154), (109, 155), (109, 156), (109, 157), (109, 158), (109, 159), (109, 160), (109, 161), (109, 162), (109, 163), (109, 164), (109, 165), (109, 166), (109, 167), (109, 168), (109, 169), (109, 170), (109, 171), (109, 173), (110, 137), (110, 139), (110, 140), (110, 141), (110, 142), (110, 143), (110, 144), (110, 145), (110, 146), (110, 147), (110, 148), (110, 149), (110, 150), (110, 151), (110, 152), (110, 153), (110, 154), (110, 155), (110, 156), (110, 157), (110, 158), (110, 159), (110, 160), (110, 161), (110, 162), (110, 163), (110, 164), (110, 165), (110, 166), (110, 167), (110, 168), (110, 169), (110, 170), (110, 171), (110, 172), (110, 174), (111, 137), (111, 139), (111, 140), (111, 141), (111, 142), (111, 143), (111, 144), (111, 145), (111, 146), (111, 147), (111, 148), (111, 149), (111, 150), (111, 151), (111, 152), (111, 153), (111, 154), (111, 155), (111, 156), (111, 157), (111, 158), (111, 159), (111, 160), (111, 161), (111, 162), (111, 163), (111, 164), (111, 165), (111, 166), (111, 167), (111, 168), (111, 169), (111, 170), (111, 171), (111, 172), (111, 174), (112, 136), (112, 138), (112, 139), (112, 140), (112, 141), (112, 142), (112, 143), (112, 144), (112, 145), (112, 146), (112, 147), (112, 148), (112, 149), (112, 150), (112, 151), (112, 152), (112, 153), (112, 154), (112, 155), (112, 156), (112, 157), (112, 158), (112, 159), (112, 160), (112, 161), (112, 162), (112, 163), (112, 164), (112, 165), (112, 166), (112, 167), (112, 168), (112, 169), (112, 170), (112, 171), (112, 172), (112, 174), (113, 136), (113, 138), (113, 139), (113, 140), (113, 141), (113, 142), (113, 143), (113, 144), (113, 145), (113, 146), (113, 147), (113, 148), (113, 149), (113, 150), (113, 151), (113, 155), (113, 156), (113, 157), (113, 158), (113, 159), (113, 160), (113, 161), (113, 162), (113, 163), (113, 164), (113, 165), (113, 166), (113, 167), (113, 168), (113, 169), (113, 170), (113, 171), (113, 172), (113, 173), (113, 175), (114, 136), (114, 138), (114, 139), (114, 140), (114, 141), (114, 142), (114, 143), (114, 144), (114, 145), (114, 146), (114, 147), (114, 148), (114, 149), (114, 150), (114, 151), (114, 153), (114, 154), (114, 157), (114, 158), (114, 159), (114, 160), (114, 161), (114, 162), (114, 163), (114, 164), (114, 165), (114, 166), (114, 167), (114, 168), (114, 169), (114, 170), (114, 171), (114, 172), (114, 173), (114, 175), (115, 136), (115, 143), (115, 144), (115, 145), (115, 146), (115, 147), (115, 148), (115, 149), (115, 151), (115, 155), (115, 158), (115, 159), (115, 160), (115, 161), (115, 162), (115, 163), (115, 164), (115, 165), (115, 166), (115, 167), (115, 168), (115, 169), (115, 170), (115, 171), (115, 172), (115, 173), (115, 175), (116, 136), (116, 138), (116, 139), (116, 140), (116, 141), (116, 142), (116, 151), (116, 157), (116, 159), (116, 160), (116, 161), (116, 162), (116, 163), (116, 164), (116, 165), (116, 166), (116, 167), (116, 168), (116, 169), (116, 170), (116, 171), (116, 172), (116, 173), (116, 174), (116, 176), (117, 143), (117, 144), (117, 145), (117, 146), (117, 147), (117, 148), (117, 149), (117, 151), (117, 158), (117, 160), (117, 161), (117, 162), (117, 163), (117, 164), (117, 165), (117, 166), (117, 167), (117, 168), (117, 169), (117, 170), (117, 171), (117, 172), (117, 173), (117, 174), (117, 176), (118, 159), (118, 161), (118, 162), (118, 163), (118, 164), (118, 165), (118, 166), (118, 167), (118, 168), (118, 169), (118, 170), (118, 171), (118, 172), (118, 173), (118, 174), (118, 176), (119, 160), (119, 162), (119, 163), (119, 164), (119, 165), (119, 166), (119, 167), (119, 168), (119, 169), (119, 170), (119, 171), (119, 172), (119, 173), (119, 174), (119, 176), (120, 161), (120, 163), (120, 164), (120, 165), (120, 166), (120, 167), (120, 168), (120, 169), (120, 170), (120, 171), (120, 172), (120, 173), (120, 174), (120, 176), (121, 162), (121, 165), (121, 166), (121, 167), (121, 168), (121, 169), (121, 170), (121, 171), (121, 172), (121, 173), (121, 174), (121, 176), (122, 163), (122, 175), (122, 177), (123, 164), (123, 166), (123, 167), (123, 168), (123, 169), (123, 170), (123, 171), (123, 172), (123, 173), (123, 174), (275, 165), (276, 164), (276, 166), (276, 167), (276, 168), (276, 169), (276, 170), (276, 171), (276, 172), (276, 173), (276, 174), (276, 175), (276, 177), (277, 163), (277, 177), (278, 162), (278, 164), (278, 165), (278, 166), (278, 167), (278, 168), (278, 169), (278, 170), (278, 171), (278, 172), (278, 173), (278, 174), (278, 176), (279, 161), (279, 163), (279, 164), (279, 165), (279, 166), (279, 167), (279, 168), (279, 169), (279, 170), (279, 171), (279, 172), (279, 173), (279, 174), (279, 176), (280, 160), (280, 162), (280, 163), (280, 164), (280, 165), (280, 166), (280, 167), (280, 168), (280, 169), (280, 170), (280, 171), (280, 172), (280, 173), (280, 174), (280, 176), (281, 159), (281, 161), (281, 162), (281, 163), (281, 164), (281, 165), (281, 166), (281, 167), (281, 168), (281, 169), (281, 170), (281, 171), (281, 172), (281, 173), (281, 174), (281, 176), (282, 142), (282, 143), (282, 144), (282, 145), (282, 146), (282, 147), (282, 148), (282, 149), (282, 151), (282, 158), (282, 160), (282, 161), (282, 162), (282, 163), (282, 164), (282, 165), (282, 166), (282, 167), (282, 168), (282, 169), (282, 170), (282, 171), (282, 172), (282, 173), (282, 174), (282, 176), (283, 136), (283, 138), (283, 139), (283, 140), (283, 141), (283, 151), (283, 157), (283, 159), (283, 160), (283, 161), (283, 162), (283, 163), (283, 164), (283, 165), (283, 166), (283, 167), (283, 168), (283, 169), (283, 170), (283, 171), (283, 172), (283, 173), (283, 174), (283, 176), (284, 136), (284, 142), (284, 143), (284, 144), (284, 145), (284, 146), (284, 147), (284, 148), (284, 149), (284, 150), (284, 151), (284, 155), (284, 158), (284, 159), (284, 160), (284, 161), (284, 162), (284, 163), (284, 164), (284, 165), (284, 166), (284, 167), (284, 168), (284, 169), (284, 170), (284, 171), (284, 172), (284, 173), (284, 175), (285, 136), (285, 138), (285, 139), (285, 140), (285, 141), (285, 142), (285, 143), (285, 144), (285, 145), (285, 146), (285, 147), (285, 148), (285, 149), (285, 150), (285, 151), (285, 153), (285, 154), (285, 157), (285, 158), (285, 159), (285, 160), (285, 161), (285, 162), (285, 163), (285, 164), (285, 165), (285, 166), (285, 167), (285, 168), (285, 169), (285, 170), (285, 171), (285, 172), (285, 173), (285, 175), (286, 136), (286, 138), (286, 139), (286, 140), (286, 141), (286, 142), (286, 143), (286, 144), (286, 145), (286, 146), (286, 147), (286, 148), (286, 149), (286, 150), (286, 151), (286, 152), (286, 155), (286, 156), (286, 157), (286, 158), (286, 159), (286, 160), (286, 161), (286, 162), (286, 163), (286, 164), (286, 165), (286, 166), (286, 167), (286, 168), (286, 169), (286, 170), (286, 171), (286, 172), (286, 173), (286, 175), (287, 136), (287, 138), (287, 139), (287, 140), (287, 141), (287, 142), (287, 143), (287, 144), (287, 145), (287, 146), (287, 147), (287, 148), (287, 149), (287, 150), (287, 151), (287, 152), (287, 153), (287, 154), (287, 155), (287, 156), (287, 157), (287, 158), (287, 159), (287, 160), (287, 161), (287, 162), (287, 163), (287, 164), (287, 165), (287, 166), (287, 167), (287, 168), (287, 169), (287, 170), (287, 171), (287, 172), (287, 174), (288, 137), (288, 139), (288, 140), (288, 141), (288, 142), (288, 143), (288, 144), (288, 145), (288, 146), (288, 147), (288, 148), (288, 149), (288, 150), (288, 151), (288, 152), (288, 153), (288, 154), (288, 155), (288, 156), (288, 157), (288, 158), (288, 159), (288, 160), (288, 161), (288, 162), (288, 163), (288, 164), (288, 165), (288, 166), (288, 167), (288, 168), (288, 169), (288, 170), (288, 171), (288, 172), (288, 174), (289, 137), (289, 139), (289, 140), (289, 141), (289, 142), (289, 143), (289, 144), (289, 145), (289, 146), (289, 147), (289, 148), (289, 149), (289, 150), (289, 151), (289, 152), (289, 153), (289, 154), (289, 155), (289, 156), (289, 157), (289, 158), (289, 159), (289, 160), (289, 161), (289, 162), (289, 163), (289, 164), (289, 165), (289, 166), (289, 167), (289, 168), (289, 169), (289, 170), (289, 171), (289, 172), (289, 173), (290, 137), (290, 139), (290, 140), (290, 141), (290, 142), (290, 143), (290, 144), (290, 145), (290, 146), (290, 147), (290, 148), (290, 149), (290, 150), (290, 151), (290, 152), (290, 153), (290, 154), (290, 155), (290, 156), (290, 157), (290, 158), (290, 159), (290, 160), (290, 161), (290, 162), (290, 163), (290, 164), (290, 165), (290, 166), (290, 167), (290, 168), (290, 169), (290, 170), (290, 171), (290, 173), (291, 138), (291, 140), (291, 141), (291, 142), (291, 143), (291, 144), (291, 145), (291, 146), (291, 147), (291, 148), (291, 149), (291, 150), (291, 151), (291, 152), (291, 153), (291, 154), (291, 155), (291, 156), (291, 157), (291, 158), (291, 159), (291, 160), (291, 161), (291, 162), (291, 163), (291, 164), (291, 165), (291, 166), (291, 167), (291, 168), (291, 169), (291, 170), (291, 172), (292, 140), (292, 141), (292, 142), (292, 143), (292, 144), (292, 145), (292, 146), (292, 147), (292, 148), (292, 149), (292, 150), (292, 151), (292, 152), (292, 153), (292, 154), (292, 155), (292, 156), (292, 157), (292, 158), (292, 159), (292, 160), (292, 161), (292, 162), (292, 163), (292, 164), (292, 165), (292, 166), (292, 167), (292, 168), (292, 169), (292, 170), (292, 172), (293, 139), (293, 141), (293, 142), (293, 143), (293, 144), (293, 145), (293, 146), (293, 147), (293, 148), (293, 149), (293, 150), (293, 151), (293, 152), (293, 153), (293, 154), (293, 155), (293, 156), (293, 157), (293, 158), (293, 159), (293, 160), (293, 161), (293, 162), (293, 163), (293, 164), (293, 165), (293, 166), (293, 167), (293, 168), (293, 169), (293, 171), (294, 140), (294, 142), (294, 143), (294, 144), (294, 145), (294, 146), (294, 147), (294, 148), (294, 149), (294, 150), (294, 151), (294, 152), (294, 153), (294, 154), (294, 155), (294, 156), (294, 157), (294, 158), (294, 159), (294, 160), (294, 161), (294, 162), (294, 163), (294, 164), (294, 165), (294, 166), (294, 167), (294, 168), (295, 141), (295, 143), (295, 144), (295, 145), (295, 146), (295, 147), (295, 148), (295, 149), (295, 150), (295, 151), (295, 152), (295, 153), (295, 154), (295, 155), (295, 156), (295, 157), (295, 158), (295, 159), (295, 160), (295, 161), (295, 162), (295, 163), (295, 164), (295, 165), (295, 166), (295, 167), (295, 170), (296, 142), (296, 144), (296, 145), (296, 146), (296, 147), (296, 148), (296, 149), (296, 150), (296, 151), (296, 152), (296, 153), (296, 154), (296, 155), (296, 156), (296, 157), (296, 158), (296, 159), (296, 160), (296, 161), (296, 162), (296, 163), (296, 164), (296, 165), (296, 166), (296, 169), (297, 143), (297, 146), (297, 147), (297, 148), (297, 149), (297, 150), (297, 151), (297, 152), (297, 153), (297, 154), (297, 155), (297, 156), (297, 157), (297, 158), (297, 159), (297, 160), (297, 161), (297, 162), (297, 163), (297, 164), (297, 165), (297, 168), (298, 144), (298, 148), (298, 149), (298, 150), (298, 151), (298, 152), (298, 153), (298, 154), (298, 155), (298, 156), (298, 157), (298, 158), (298, 159), (298, 160), (298, 161), (298, 162), (298, 163), (298, 166), (299, 146), (299, 150), (299, 151), (299, 152), (299, 153), (299, 154), (299, 155), (299, 156), (299, 157), (299, 158), (299, 159), (299, 160), (299, 161), (299, 165), (300, 148), (300, 150), (300, 163), (301, 151), (301, 152), (301, 153), (301, 154), (301, 155), (301, 156), (301, 157), (301, 158), (301, 159), (301, 160), (301, 161), ) coordinates_FF9C00 = ((169, 143), (170, 140), (170, 143), (171, 139), (171, 144), (172, 137), (172, 140), (172, 141), (172, 142), (172, 144), (173, 137), (173, 139), (173, 140), (173, 141), (173, 142), (173, 143), (173, 145), (174, 136), (174, 138), (174, 139), (174, 140), (174, 141), (174, 142), (174, 143), (174, 145), (175, 136), (175, 138), (175, 139), (175, 140), (175, 141), (175, 142), (175, 143), (175, 144), (175, 146), (176, 135), (176, 137), (176, 138), (176, 139), (176, 140), (176, 141), (176, 142), (176, 143), (176, 144), (176, 146), (177, 135), (177, 137), (177, 138), (177, 139), (177, 140), (177, 141), (177, 142), (177, 143), (177, 144), (177, 145), (177, 147), (178, 135), (178, 137), (178, 138), (178, 139), (178, 140), (178, 141), (178, 142), (178, 143), (178, 144), (178, 145), (178, 147), (179, 135), (179, 137), (179, 138), (179, 139), (179, 140), (179, 141), (179, 142), (179, 143), (179, 144), (179, 145), (179, 147), (180, 135), (180, 137), (180, 138), (180, 139), (180, 140), (180, 141), (180, 142), (180, 143), (180, 144), (180, 145), (180, 147), (181, 136), (181, 141), (181, 142), (181, 143), (181, 144), (181, 145), (181, 147), (182, 137), (182, 139), (182, 140), (182, 145), (182, 147), (183, 141), (183, 142), (183, 143), (183, 144), (183, 147), (184, 145), (184, 147), (215, 145), (215, 147), (216, 141), (216, 142), (216, 143), (216, 144), (216, 147), (217, 137), (217, 139), (217, 140), (217, 145), (217, 147), (218, 136), (218, 141), (218, 142), (218, 143), (218, 144), (218, 145), (218, 147), (219, 135), (219, 137), (219, 138), (219, 139), (219, 140), (219, 141), (219, 142), (219, 143), (219, 144), (219, 145), (219, 147), (220, 135), (220, 137), (220, 138), (220, 139), (220, 140), (220, 141), (220, 142), (220, 143), (220, 144), (220, 145), (220, 147), (221, 135), (221, 137), (221, 138), (221, 139), (221, 140), (221, 141), (221, 142), (221, 143), (221, 144), (221, 145), (221, 147), (222, 135), (222, 137), (222, 138), (222, 139), (222, 140), (222, 141), (222, 142), (222, 143), (222, 144), (222, 145), (222, 147), (223, 135), (223, 137), (223, 138), (223, 139), (223, 140), (223, 141), (223, 142), (223, 143), (223, 144), (223, 146), (224, 136), (224, 138), (224, 139), (224, 140), (224, 141), (224, 142), (224, 143), (224, 144), (224, 146), (225, 136), (225, 138), (225, 139), (225, 140), (225, 141), (225, 142), (225, 143), (225, 145), (226, 137), (226, 139), (226, 140), (226, 141), (226, 142), (226, 143), (226, 145), (227, 140), (227, 141), (227, 142), (227, 144), (228, 139), (228, 144), (229, 140), (229, 143), ) coordinates_00FF4E = ((168, 145), (168, 147), (168, 148), (168, 150), (169, 145), (169, 152), (170, 146), (170, 148), (170, 149), (170, 150), (170, 154), (171, 146), (171, 148), (171, 149), (171, 150), (171, 151), (171, 152), (171, 155), (172, 147), (172, 149), (172, 150), (172, 151), (172, 152), (172, 153), (172, 156), (173, 147), (173, 149), (173, 150), (173, 151), (173, 152), (173, 153), (173, 154), (173, 155), (173, 157), (174, 148), (174, 150), (174, 151), (174, 152), (174, 153), (174, 154), (174, 155), (174, 156), (174, 158), (175, 148), (175, 150), (175, 151), (175, 152), (175, 153), (175, 154), (175, 155), (175, 156), (175, 157), (175, 159), (176, 149), (176, 151), (176, 152), (176, 153), (176, 154), (176, 155), (176, 156), (176, 157), (176, 158), (176, 160), (177, 149), (177, 151), (177, 152), (177, 153), (177, 154), (177, 155), (177, 156), (177, 157), (177, 158), (177, 159), (177, 161), (178, 150), (178, 152), (178, 153), (178, 154), (178, 155), (178, 156), (178, 157), (178, 158), (178, 159), (178, 160), (178, 162), (179, 150), (179, 152), (179, 153), (179, 154), (179, 155), (179, 156), (179, 157), (179, 158), (179, 159), (179, 160), (179, 161), (180, 150), (180, 152), (180, 153), (180, 154), (180, 155), (180, 156), (180, 157), (180, 158), (180, 159), (180, 160), (180, 161), (180, 162), (180, 165), (180, 166), (180, 167), (180, 168), (180, 169), (180, 170), (180, 171), (180, 172), (180, 173), (181, 149), (181, 151), (181, 152), (181, 153), (181, 154), (181, 155), (181, 156), (181, 157), (181, 158), (181, 159), (181, 160), (181, 161), (181, 162), (181, 163), (181, 164), (181, 175), (182, 149), (182, 151), (182, 152), (182, 153), (182, 154), (182, 155), (182, 156), (182, 157), (182, 158), (182, 159), (182, 160), (182, 161), (182, 162), (182, 163), (182, 164), (182, 165), (182, 166), (182, 167), (182, 168), (182, 169), (182, 170), (182, 171), (182, 172), (182, 173), (182, 176), (183, 149), (183, 151), (183, 152), (183, 153), (183, 154), (183, 155), (183, 156), (183, 157), (183, 158), (183, 159), (183, 160), (183, 161), (183, 162), (183, 163), (183, 164), (183, 165), (183, 166), (183, 167), (183, 168), (183, 169), (183, 170), (183, 171), (183, 172), (183, 173), (183, 174), (183, 175), (183, 178), (184, 149), (184, 151), (184, 152), (184, 153), (184, 154), (184, 155), (184, 156), (184, 157), (184, 158), (184, 159), (184, 160), (184, 161), (184, 162), (184, 163), (184, 164), (184, 165), (184, 166), (184, 167), (184, 168), (184, 169), (184, 170), (184, 171), (184, 172), (184, 173), (184, 174), (184, 175), (184, 176), (184, 179), (185, 149), (185, 151), (185, 152), (185, 153), (185, 154), (185, 155), (185, 156), (185, 157), (185, 158), (185, 159), (185, 160), (185, 161), (185, 162), (185, 163), (185, 164), (185, 165), (185, 166), (185, 167), (185, 168), (185, 169), (185, 170), (185, 171), (185, 172), (185, 173), (185, 174), (185, 175), (185, 176), (185, 177), (185, 178), (185, 181), (185, 182), (186, 149), (186, 151), (186, 152), (186, 153), (186, 154), (186, 155), (186, 156), (186, 157), (186, 158), (186, 159), (186, 160), (186, 161), (186, 162), (186, 163), (186, 164), (186, 165), (186, 166), (186, 167), (186, 168), (186, 169), (186, 170), (186, 171), (186, 172), (186, 173), (186, 174), (186, 175), (186, 176), (186, 177), (186, 178), (186, 179), (186, 181), (187, 150), (187, 152), (187, 153), (187, 154), (187, 155), (187, 156), (187, 157), (187, 158), (187, 159), (187, 160), (187, 161), (187, 162), (187, 163), (187, 164), (187, 165), (187, 166), (187, 167), (187, 168), (187, 169), (187, 170), (187, 171), (187, 172), (187, 173), (187, 174), (187, 175), (187, 176), (187, 177), (187, 178), (187, 179), (187, 181), (188, 151), (188, 153), (188, 154), (188, 155), (188, 156), (188, 157), (188, 158), (188, 159), (188, 160), (188, 161), (188, 162), (188, 163), (188, 164), (188, 165), (188, 166), (188, 167), (188, 168), (188, 169), (188, 170), (188, 171), (188, 172), (188, 173), (188, 174), (188, 175), (188, 176), (188, 177), (188, 178), (188, 180), (189, 151), (189, 153), (189, 154), (189, 155), (189, 156), (189, 157), (189, 158), (189, 159), (189, 160), (189, 161), (189, 162), (189, 163), (189, 164), (189, 165), (189, 166), (189, 167), (189, 168), (189, 169), (189, 170), (189, 171), (189, 172), (189, 173), (189, 174), (189, 175), (189, 176), (189, 177), (189, 179), (190, 152), (190, 154), (190, 155), (190, 156), (190, 157), (190, 158), (190, 159), (190, 160), (190, 161), (190, 162), (190, 163), (190, 164), (190, 165), (190, 166), (190, 167), (190, 168), (190, 169), (190, 170), (190, 171), (190, 172), (190, 173), (190, 174), (190, 175), (190, 176), (190, 178), (191, 152), (191, 154), (191, 155), (191, 156), (191, 157), (191, 158), (191, 159), (191, 160), (191, 161), (191, 162), (191, 163), (191, 164), (191, 165), (191, 166), (191, 167), (191, 168), (191, 169), (191, 170), (191, 171), (191, 172), (191, 173), (191, 174), (191, 175), (191, 177), (192, 152), (192, 154), (192, 155), (192, 156), (192, 157), (192, 158), (192, 159), (192, 160), (192, 161), (192, 162), (192, 163), (192, 164), (192, 165), (192, 166), (192, 167), (192, 168), (192, 169), (192, 170), (192, 171), (192, 172), (192, 173), (192, 174), (192, 176), (193, 153), (193, 155), (193, 156), (193, 157), (193, 158), (193, 159), (193, 160), (193, 161), (193, 162), (193, 163), (193, 164), (193, 165), (193, 166), (193, 167), (193, 168), (193, 169), (193, 170), (193, 171), (193, 172), (193, 173), (193, 175), (194, 153), (194, 155), (194, 156), (194, 157), (194, 158), (194, 159), (194, 160), (194, 161), (194, 162), (194, 163), (194, 164), (194, 165), (194, 166), (194, 167), (194, 168), (194, 175), (195, 154), (195, 158), (195, 159), (195, 160), (195, 161), (195, 162), (195, 169), (195, 170), (195, 171), (195, 172), (195, 173), (196, 155), (196, 157), (196, 158), (196, 163), (196, 164), (196, 165), (196, 166), (196, 167), (196, 168), (197, 159), (197, 160), (197, 161), (197, 162), (202, 158), (202, 159), (202, 160), (202, 161), (202, 162), (202, 163), (203, 155), (203, 157), (203, 164), (203, 165), (203, 166), (203, 167), (203, 168), (204, 154), (204, 158), (204, 159), (204, 160), (204, 161), (204, 162), (204, 163), (204, 169), (204, 170), (204, 171), (204, 172), (204, 173), (204, 175), (205, 153), (205, 155), (205, 156), (205, 157), (205, 158), (205, 159), (205, 160), (205, 161), (205, 162), (205, 163), (205, 164), (205, 165), (205, 166), (205, 167), (205, 168), (205, 175), (206, 153), (206, 155), (206, 156), (206, 157), (206, 158), (206, 159), (206, 160), (206, 161), (206, 162), (206, 163), (206, 164), (206, 165), (206, 166), (206, 167), (206, 168), (206, 169), (206, 170), (206, 171), (206, 172), (206, 173), (206, 175), (207, 152), (207, 154), (207, 155), (207, 156), (207, 157), (207, 158), (207, 159), (207, 160), (207, 161), (207, 162), (207, 163), (207, 164), (207, 165), (207, 166), (207, 167), (207, 168), (207, 169), (207, 170), (207, 171), (207, 172), (207, 173), (207, 174), (207, 176), (208, 152), (208, 154), (208, 155), (208, 156), (208, 157), (208, 158), (208, 159), (208, 160), (208, 161), (208, 162), (208, 163), (208, 164), (208, 165), (208, 166), (208, 167), (208, 168), (208, 169), (208, 170), (208, 171), (208, 172), (208, 173), (208, 174), (208, 175), (208, 177), (209, 152), (209, 154), (209, 155), (209, 156), (209, 157), (209, 158), (209, 159), (209, 160), (209, 161), (209, 162), (209, 163), (209, 164), (209, 165), (209, 166), (209, 167), (209, 168), (209, 169), (209, 170), (209, 171), (209, 172), (209, 173), (209, 174), (209, 175), (209, 176), (209, 178), (210, 151), (210, 153), (210, 154), (210, 155), (210, 156), (210, 157), (210, 158), (210, 159), (210, 160), (210, 161), (210, 162), (210, 163), (210, 164), (210, 165), (210, 166), (210, 167), (210, 168), (210, 169), (210, 170), (210, 171), (210, 172), (210, 173), (210, 174), (210, 175), (210, 176), (210, 177), (210, 179), (211, 151), (211, 153), (211, 154), (211, 155), (211, 156), (211, 157), (211, 158), (211, 159), (211, 160), (211, 161), (211, 162), (211, 163), (211, 164), (211, 165), (211, 166), (211, 167), (211, 168), (211, 169), (211, 170), (211, 171), (211, 172), (211, 173), (211, 174), (211, 175), (211, 176), (211, 177), (211, 178), (211, 180), (212, 150), (212, 152), (212, 153), (212, 154), (212, 155), (212, 156), (212, 157), (212, 158), (212, 159), (212, 160), (212, 161), (212, 162), (212, 163), (212, 164), (212, 165), (212, 166), (212, 167), (212, 168), (212, 169), (212, 170), (212, 171), (212, 172), (212, 173), (212, 174), (212, 175), (212, 176), (212, 177), (212, 178), (212, 179), (212, 181), (213, 149), (213, 151), (213, 152), (213, 153), (213, 154), (213, 155), (213, 156), (213, 157), (213, 158), (213, 159), (213, 160), (213, 161), (213, 162), (213, 163), (213, 164), (213, 165), (213, 166), (213, 167), (213, 168), (213, 169), (213, 170), (213, 171), (213, 172), (213, 173), (213, 174), (213, 175), (213, 176), (213, 177), (213, 178), (213, 179), (213, 181), (214, 149), (214, 151), (214, 152), (214, 153), (214, 154), (214, 155), (214, 156), (214, 157), (214, 158), (214, 159), (214, 160), (214, 161), (214, 162), (214, 163), (214, 164), (214, 165), (214, 166), (214, 167), (214, 168), (214, 169), (214, 170), (214, 171), (214, 172), (214, 173), (214, 174), (214, 175), (214, 176), (214, 177), (214, 178), (214, 181), (214, 182), (215, 149), (215, 151), (215, 152), (215, 153), (215, 154), (215, 155), (215, 156), (215, 157), (215, 158), (215, 159), (215, 160), (215, 161), (215, 162), (215, 163), (215, 164), (215, 165), (215, 166), (215, 167), (215, 168), (215, 169), (215, 170), (215, 171), (215, 172), (215, 173), (215, 174), (215, 175), (215, 176), (215, 179), (216, 149), (216, 151), (216, 152), (216, 153), (216, 154), (216, 155), (216, 156), (216, 157), (216, 158), (216, 159), (216, 160), (216, 161), (216, 162), (216, 163), (216, 164), (216, 165), (216, 166), (216, 167), (216, 168), (216, 169), (216, 170), (216, 171), (216, 172), (216, 173), (216, 174), (216, 175), (216, 178), (217, 149), (217, 151), (217, 152), (217, 153), (217, 154), (217, 155), (217, 156), (217, 157), (217, 158), (217, 159), (217, 160), (217, 161), (217, 162), (217, 163), (217, 164), (217, 165), (217, 166), (217, 167), (217, 168), (217, 169), (217, 170), (217, 171), (217, 172), (217, 176), (218, 149), (218, 151), (218, 152), (218, 153), (218, 154), (218, 155), (218, 156), (218, 157), (218, 158), (218, 159), (218, 160), (218, 161), (218, 162), (218, 163), (218, 173), (218, 175), (219, 150), (219, 152), (219, 153), (219, 154), (219, 155), (219, 156), (219, 157), (219, 158), (219, 159), (219, 160), (219, 161), (219, 162), (219, 165), (219, 166), (219, 167), (219, 168), (219, 169), (219, 170), (219, 171), (219, 172), (220, 150), (220, 152), (220, 153), (220, 154), (220, 155), (220, 156), (220, 157), (220, 158), (220, 159), (220, 160), (220, 161), (220, 163), (221, 150), (221, 152), (221, 153), (221, 154), (221, 155), (221, 156), (221, 157), (221, 158), (221, 159), (221, 160), (221, 162), (222, 149), (222, 151), (222, 152), (222, 153), (222, 154), (222, 155), (222, 156), (222, 157), (222, 158), (222, 159), (222, 161), (223, 149), (223, 151), (223, 152), (223, 153), (223, 154), (223, 155), (223, 156), (223, 157), (223, 158), (223, 160), (224, 148), (224, 150), (224, 151), (224, 152), (224, 153), (224, 154), (224, 155), (224, 156), (224, 157), (224, 159), (225, 148), (225, 150), (225, 151), (225, 152), (225, 153), (225, 154), (225, 155), (225, 156), (225, 158), (226, 147), (226, 149), (226, 150), (226, 151), (226, 152), (226, 153), (226, 154), (226, 157), (227, 147), (227, 149), (227, 150), (227, 151), (227, 152), (227, 153), (227, 156), (228, 146), (228, 148), (228, 149), (228, 150), (228, 151), (228, 152), (228, 155), (229, 146), (229, 148), (229, 149), (229, 150), (229, 153), (230, 145), (230, 152), (231, 145), (231, 147), (231, 148), (231, 149), (231, 150), ) coordinates_E1FF00 = ((145, 116), (146, 116), (147, 116), (148, 115), (148, 116), (149, 114), (149, 116), (250, 115), (250, 116), (251, 115), (251, 116), (252, 116), (253, 116), (254, 116), )
coordinates_7_f0030 = ((151, 114), (151, 115), (151, 116), (151, 117), (151, 118), (151, 119), (151, 120), (151, 121), (151, 122), (151, 123), (151, 124), (151, 125), (151, 126), (151, 127), (151, 128), (151, 129), (151, 130), (151, 131), (151, 132), (151, 133), (151, 135), (152, 111), (152, 113), (152, 135), (153, 113), (153, 114), (153, 115), (153, 116), (153, 117), (153, 118), (153, 119), (153, 120), (153, 121), (153, 122), (153, 123), (153, 124), (153, 125), (153, 126), (153, 127), (153, 128), (153, 129), (153, 130), (153, 131), (153, 132), (153, 133), (153, 135), (154, 110), (154, 112), (154, 113), (154, 114), (154, 115), (154, 116), (154, 117), (154, 118), (154, 119), (154, 120), (154, 121), (154, 122), (154, 123), (154, 124), (154, 125), (154, 126), (154, 127), (154, 128), (154, 129), (154, 130), (154, 131), (154, 132), (154, 133), (154, 135), (155, 109), (155, 111), (155, 112), (155, 113), (155, 114), (155, 115), (155, 116), (155, 117), (155, 118), (155, 119), (155, 120), (155, 121), (155, 122), (155, 123), (155, 124), (155, 125), (155, 126), (155, 127), (155, 128), (155, 129), (155, 130), (155, 131), (155, 132), (155, 133), (155, 135), (156, 109), (156, 111), (156, 112), (156, 113), (156, 114), (156, 115), (156, 116), (156, 117), (156, 118), (156, 119), (156, 120), (156, 121), (156, 122), (156, 123), (156, 124), (156, 125), (156, 126), (156, 127), (156, 128), (156, 129), (156, 130), (156, 131), (156, 132), (156, 133), (156, 135), (157, 108), (157, 110), (157, 111), (157, 112), (157, 113), (157, 114), (157, 115), (157, 116), (157, 117), (157, 118), (157, 119), (157, 120), (157, 121), (157, 122), (157, 123), (157, 124), (157, 125), (157, 126), (157, 127), (157, 128), (157, 129), (157, 130), (157, 131), (157, 132), (157, 133), (157, 135), (158, 108), (158, 110), (158, 111), (158, 112), (158, 113), (158, 114), (158, 115), (158, 116), (158, 117), (158, 118), (158, 119), (158, 120), (158, 121), (158, 122), (158, 123), (158, 124), (158, 125), (158, 126), (158, 127), (158, 128), (158, 129), (158, 130), (158, 131), (158, 132), (158, 134), (159, 108), (159, 110), (159, 111), (159, 112), (159, 113), (159, 114), (159, 115), (159, 116), (159, 117), (159, 118), (159, 119), (159, 120), (159, 121), (159, 122), (159, 123), (159, 124), (159, 125), (159, 126), (159, 127), (159, 128), (159, 129), (159, 130), (159, 131), (159, 132), (159, 134), (160, 107), (160, 109), (160, 110), (160, 111), (160, 112), (160, 113), (160, 114), (160, 115), (160, 116), (160, 117), (160, 118), (160, 119), (160, 120), (160, 121), (160, 122), (160, 123), (160, 124), (160, 125), (160, 126), (160, 127), (160, 128), (160, 129), (160, 130), (160, 131), (160, 133), (161, 107), (161, 109), (161, 110), (161, 111), (161, 112), (161, 113), (161, 114), (161, 115), (161, 116), (161, 117), (161, 118), (161, 119), (161, 120), (161, 121), (161, 122), (161, 123), (161, 124), (161, 125), (161, 126), (161, 127), (161, 128), (161, 129), (161, 130), (161, 131), (161, 133), (162, 107), (162, 109), (162, 110), (162, 111), (162, 112), (162, 113), (162, 114), (162, 115), (162, 116), (162, 117), (162, 118), (162, 119), (162, 120), (162, 121), (162, 122), (162, 123), (162, 124), (162, 125), (162, 126), (162, 127), (162, 128), (162, 129), (162, 130), (162, 132), (163, 106), (163, 108), (163, 109), (163, 110), (163, 111), (163, 112), (163, 113), (163, 114), (163, 115), (163, 116), (163, 117), (163, 118), (163, 119), (163, 120), (163, 121), (163, 122), (163, 123), (163, 124), (163, 125), (163, 126), (163, 127), (163, 128), (163, 129), (163, 131), (164, 106), (164, 108), (164, 109), (164, 110), (164, 111), (164, 112), (164, 113), (164, 114), (164, 115), (164, 116), (164, 117), (164, 118), (164, 119), (164, 120), (164, 121), (164, 122), (164, 123), (164, 124), (164, 125), (164, 126), (164, 127), (164, 128), (164, 129), (164, 131), (165, 105), (165, 107), (165, 108), (165, 109), (165, 110), (165, 111), (165, 112), (165, 113), (165, 114), (165, 115), (165, 116), (165, 117), (165, 118), (165, 119), (165, 120), (165, 121), (165, 122), (165, 123), (165, 124), (165, 125), (165, 126), (165, 127), (165, 128), (165, 130), (166, 105), (166, 107), (166, 108), (166, 109), (166, 110), (166, 111), (166, 112), (166, 113), (166, 114), (166, 115), (166, 116), (166, 117), (166, 118), (166, 119), (166, 120), (166, 121), (166, 122), (166, 123), (166, 124), (166, 125), (166, 126), (166, 127), (166, 129), (167, 105), (167, 106), (167, 107), (167, 108), (167, 109), (167, 110), (167, 111), (167, 112), (167, 113), (167, 114), (167, 115), (167, 116), (167, 117), (167, 118), (167, 119), (167, 120), (167, 121), (167, 122), (167, 123), (167, 124), (167, 125), (167, 126), (167, 127), (167, 129), (168, 104), (168, 106), (168, 107), (168, 108), (168, 109), (168, 110), (168, 111), (168, 112), (168, 113), (168, 114), (168, 115), (168, 116), (168, 117), (168, 118), (168, 119), (168, 120), (168, 121), (168, 122), (168, 123), (168, 124), (168, 125), (168, 126), (168, 128), (169, 104), (169, 106), (169, 107), (169, 108), (169, 109), (169, 110), (169, 111), (169, 112), (169, 113), (169, 114), (169, 115), (169, 116), (169, 117), (169, 118), (169, 119), (169, 120), (169, 121), (169, 122), (169, 123), (169, 124), (169, 125), (169, 126), (169, 128), (170, 104), (170, 106), (170, 107), (170, 108), (170, 109), (170, 110), (170, 111), (170, 112), (170, 113), (170, 114), (170, 115), (170, 116), (170, 117), (170, 118), (170, 119), (170, 120), (170, 121), (170, 122), (170, 123), (170, 124), (170, 125), (170, 127), (171, 103), (171, 105), (171, 106), (171, 107), (171, 108), (171, 109), (171, 110), (171, 111), (171, 112), (171, 113), (171, 114), (171, 115), (171, 116), (171, 117), (171, 118), (171, 119), (171, 120), (171, 121), (171, 122), (171, 123), (171, 124), (171, 125), (171, 127), (172, 103), (172, 105), (172, 106), (172, 107), (172, 108), (172, 109), (172, 110), (172, 111), (172, 112), (172, 113), (172, 114), (172, 115), (172, 116), (172, 117), (172, 118), (172, 119), (172, 120), (172, 121), (172, 122), (172, 123), (172, 124), (172, 126), (173, 103), (173, 105), (173, 106), (173, 107), (173, 108), (173, 109), (173, 110), (173, 111), (173, 112), (173, 113), (173, 114), (173, 115), (173, 116), (173, 117), (173, 118), (173, 119), (173, 120), (173, 121), (173, 122), (173, 123), (173, 124), (173, 126), (174, 103), (174, 105), (174, 106), (174, 107), (174, 108), (174, 109), (174, 110), (174, 111), (174, 112), (174, 113), (174, 114), (174, 115), (174, 116), (174, 117), (174, 118), (174, 119), (174, 120), (174, 121), (174, 122), (174, 123), (174, 124), (174, 125), (174, 126), (175, 103), (175, 105), (175, 106), (175, 107), (175, 108), (175, 109), (175, 110), (175, 111), (175, 112), (175, 113), (175, 114), (175, 115), (175, 116), (175, 117), (175, 118), (175, 119), (175, 120), (175, 121), (175, 122), (175, 123), (175, 125), (176, 103), (176, 105), (176, 106), (176, 107), (176, 108), (176, 109), (176, 110), (176, 111), (176, 112), (176, 113), (176, 114), (176, 115), (176, 116), (176, 117), (176, 118), (176, 119), (176, 120), (176, 121), (176, 122), (176, 123), (176, 125), (177, 103), (177, 105), (177, 106), (177, 107), (177, 108), (177, 109), (177, 110), (177, 111), (177, 112), (177, 113), (177, 114), (177, 115), (177, 116), (177, 117), (177, 118), (177, 119), (177, 120), (177, 121), (177, 122), (177, 123), (177, 125), (178, 103), (178, 105), (178, 106), (178, 107), (178, 108), (178, 109), (178, 110), (178, 111), (178, 112), (178, 113), (178, 114), (178, 115), (178, 116), (178, 117), (178, 118), (178, 119), (178, 120), (178, 121), (178, 122), (178, 123), (178, 125), (179, 103), (179, 105), (179, 106), (179, 107), (179, 108), (179, 109), (179, 110), (179, 111), (179, 112), (179, 113), (179, 114), (179, 115), (179, 116), (179, 117), (179, 118), (179, 119), (179, 120), (179, 121), (179, 122), (179, 123), (179, 125), (180, 103), (180, 105), (180, 106), (180, 107), (180, 108), (180, 109), (180, 110), (180, 111), (180, 112), (180, 113), (180, 114), (180, 115), (180, 116), (180, 117), (180, 118), (180, 119), (180, 120), (180, 121), (180, 122), (180, 123), (180, 125), (181, 103), (181, 105), (181, 106), (181, 107), (181, 108), (181, 109), (181, 110), (181, 111), (181, 112), (181, 113), (181, 114), (181, 115), (181, 116), (181, 117), (181, 118), (181, 119), (181, 120), (181, 121), (181, 122), (181, 123), (181, 125), (182, 103), (182, 105), (182, 106), (182, 107), (182, 108), (182, 109), (182, 110), (182, 111), (182, 112), (182, 113), (182, 114), (182, 115), (182, 116), (182, 117), (182, 118), (182, 119), (182, 120), (182, 121), (182, 122), (182, 124), (183, 103), (183, 105), (183, 106), (183, 107), (183, 108), (183, 109), (183, 110), (183, 111), (183, 112), (183, 113), (183, 114), (183, 115), (183, 116), (183, 117), (183, 118), (183, 119), (183, 120), (183, 121), (183, 123), (184, 104), (184, 106), (184, 107), (184, 108), (184, 109), (184, 110), (184, 111), (184, 112), (184, 113), (184, 114), (184, 115), (184, 116), (184, 117), (184, 118), (184, 119), (184, 120), (184, 122), (185, 104), (185, 106), (185, 107), (185, 108), (185, 109), (185, 110), (185, 111), (185, 112), (185, 113), (185, 114), (185, 115), (185, 116), (185, 117), (185, 118), (185, 119), (185, 121), (186, 104), (186, 106), (186, 107), (186, 108), (186, 109), (186, 110), (186, 111), (186, 112), (186, 113), (186, 114), (186, 115), (186, 116), (186, 117), (186, 118), (186, 120), (187, 105), (187, 107), (187, 108), (187, 109), (187, 110), (187, 111), (187, 112), (187, 113), (187, 114), (187, 115), (187, 116), (187, 117), (187, 119), (188, 105), (188, 107), (188, 108), (188, 109), (188, 110), (188, 111), (188, 112), (188, 113), (188, 114), (188, 115), (188, 116), (188, 117), (188, 119), (189, 108), (189, 109), (189, 110), (189, 111), (189, 112), (189, 113), (189, 114), (189, 115), (189, 116), (189, 118), (190, 106), (190, 108), (190, 109), (190, 110), (190, 111), (190, 112), (190, 113), (190, 114), (190, 115), (190, 117), (191, 107), (191, 109), (191, 110), (191, 111), (191, 112), (191, 113), (191, 114), (191, 115), (192, 108), (192, 111), (192, 112), (192, 113), (192, 114), (192, 116), (193, 109), (193, 115), (194, 111), (194, 113), (194, 115), (205, 111), (205, 113), (205, 115), (206, 109), (206, 115), (207, 108), (207, 111), (207, 112), (207, 113), (207, 114), (207, 116), (208, 107), (208, 109), (208, 110), (208, 111), (208, 112), (208, 113), (208, 114), (208, 115), (208, 117), (209, 106), (209, 108), (209, 109), (209, 110), (209, 111), (209, 112), (209, 113), (209, 114), (209, 115), (209, 117), (210, 105), (210, 107), (210, 108), (210, 109), (210, 110), (210, 111), (210, 112), (210, 113), (210, 114), (210, 115), (210, 116), (210, 118), (211, 105), (211, 107), (211, 108), (211, 109), (211, 110), (211, 111), (211, 112), (211, 113), (211, 114), (211, 115), (211, 116), (211, 117), (211, 119), (212, 105), (212, 106), (212, 107), (212, 108), (212, 109), (212, 110), (212, 111), (212, 112), (212, 113), (212, 114), (212, 115), (212, 116), (212, 117), (212, 119), (213, 104), (213, 106), (213, 107), (213, 108), (213, 109), (213, 110), (213, 111), (213, 112), (213, 113), (213, 114), (213, 115), (213, 116), (213, 117), (213, 118), (213, 120), (214, 104), (214, 106), (214, 107), (214, 108), (214, 109), (214, 110), (214, 111), (214, 112), (214, 113), (214, 114), (214, 115), (214, 116), (214, 117), (214, 118), (214, 119), (214, 121), (215, 104), (215, 106), (215, 107), (215, 108), (215, 109), (215, 110), (215, 111), (215, 112), (215, 113), (215, 114), (215, 115), (215, 116), (215, 117), (215, 118), (215, 119), (215, 120), (215, 122), (216, 103), (216, 105), (216, 106), (216, 107), (216, 108), (216, 109), (216, 110), (216, 111), (216, 112), (216, 113), (216, 114), (216, 115), (216, 116), (216, 117), (216, 118), (216, 119), (216, 120), (216, 121), (216, 123), (217, 103), (217, 105), (217, 106), (217, 107), (217, 108), (217, 109), (217, 110), (217, 111), (217, 112), (217, 113), (217, 114), (217, 115), (217, 116), (217, 117), (217, 118), (217, 119), (217, 120), (217, 121), (217, 122), (217, 124), (217, 125), (218, 103), (218, 105), (218, 106), (218, 107), (218, 108), (218, 109), (218, 110), (218, 111), (218, 112), (218, 113), (218, 114), (218, 115), (218, 116), (218, 117), (218, 118), (218, 119), (218, 120), (218, 121), (218, 122), (218, 123), (218, 125), (219, 103), (219, 105), (219, 106), (219, 107), (219, 108), (219, 109), (219, 110), (219, 111), (219, 112), (219, 113), (219, 114), (219, 115), (219, 116), (219, 117), (219, 118), (219, 119), (219, 120), (219, 121), (219, 122), (219, 123), (219, 125), (220, 103), (220, 105), (220, 106), (220, 107), (220, 108), (220, 109), (220, 110), (220, 111), (220, 112), (220, 113), (220, 114), (220, 115), (220, 116), (220, 117), (220, 118), (220, 119), (220, 120), (220, 121), (220, 122), (220, 123), (220, 125), (221, 103), (221, 105), (221, 106), (221, 107), (221, 108), (221, 109), (221, 110), (221, 111), (221, 112), (221, 113), (221, 114), (221, 115), (221, 116), (221, 117), (221, 118), (221, 119), (221, 120), (221, 121), (221, 122), (221, 123), (221, 125), (222, 103), (222, 105), (222, 106), (222, 107), (222, 108), (222, 109), (222, 110), (222, 111), (222, 112), (222, 113), (222, 114), (222, 115), (222, 116), (222, 117), (222, 118), (222, 119), (222, 120), (222, 121), (222, 122), (222, 123), (222, 125), (223, 103), (223, 105), (223, 106), (223, 107), (223, 108), (223, 109), (223, 110), (223, 111), (223, 112), (223, 113), (223, 114), (223, 115), (223, 116), (223, 117), (223, 118), (223, 119), (223, 120), (223, 121), (223, 122), (223, 123), (223, 125), (224, 103), (224, 105), (224, 106), (224, 107), (224, 108), (224, 109), (224, 110), (224, 111), (224, 112), (224, 113), (224, 114), (224, 115), (224, 116), (224, 117), (224, 118), (224, 119), (224, 120), (224, 121), (224, 122), (224, 123), (224, 125), (225, 103), (225, 105), (225, 106), (225, 107), (225, 108), (225, 109), (225, 110), (225, 111), (225, 112), (225, 113), (225, 114), (225, 115), (225, 116), (225, 117), (225, 118), (225, 119), (225, 120), (225, 121), (225, 122), (225, 123), (225, 124), (225, 126), (226, 103), (226, 105), (226, 106), (226, 107), (226, 108), (226, 109), (226, 110), (226, 111), (226, 112), (226, 113), (226, 114), (226, 115), (226, 116), (226, 117), (226, 118), (226, 119), (226, 120), (226, 121), (226, 122), (226, 123), (226, 124), (226, 126), (227, 103), (227, 105), (227, 106), (227, 107), (227, 108), (227, 109), (227, 110), (227, 111), (227, 112), (227, 113), (227, 114), (227, 115), (227, 116), (227, 117), (227, 118), (227, 119), (227, 120), (227, 121), (227, 122), (227, 123), (227, 124), (227, 126), (228, 103), (228, 105), (228, 106), (228, 107), (228, 108), (228, 109), (228, 110), (228, 111), (228, 112), (228, 113), (228, 114), (228, 115), (228, 116), (228, 117), (228, 118), (228, 119), (228, 120), (228, 121), (228, 122), (228, 123), (228, 124), (228, 125), (228, 127), (229, 104), (229, 106), (229, 107), (229, 108), (229, 109), (229, 110), (229, 111), (229, 112), (229, 113), (229, 114), (229, 115), (229, 116), (229, 117), (229, 118), (229, 119), (229, 120), (229, 121), (229, 122), (229, 123), (229, 124), (229, 125), (229, 127), (230, 104), (230, 106), (230, 107), (230, 108), (230, 109), (230, 110), (230, 111), (230, 112), (230, 113), (230, 114), (230, 115), (230, 116), (230, 117), (230, 118), (230, 119), (230, 120), (230, 121), (230, 122), (230, 123), (230, 124), (230, 125), (230, 126), (230, 128), (231, 104), (231, 106), (231, 107), (231, 108), (231, 109), (231, 110), (231, 111), (231, 112), (231, 113), (231, 114), (231, 115), (231, 116), (231, 117), (231, 118), (231, 119), (231, 120), (231, 121), (231, 122), (231, 123), (231, 124), (231, 125), (231, 126), (231, 128), (232, 105), (232, 107), (232, 108), (232, 109), (232, 110), (232, 111), (232, 112), (232, 113), (232, 114), (232, 115), (232, 116), (232, 117), (232, 118), (232, 119), (232, 120), (232, 121), (232, 122), (232, 123), (232, 124), (232, 125), (232, 126), (232, 127), (232, 129), (233, 105), (233, 107), (233, 108), (233, 109), (233, 110), (233, 111), (233, 112), (233, 113), (233, 114), (233, 115), (233, 116), (233, 117), (233, 118), (233, 119), (233, 120), (233, 121), (233, 122), (233, 123), (233, 124), (233, 125), (233, 126), (233, 127), (233, 129), (234, 105), (234, 107), (234, 108), (234, 109), (234, 110), (234, 111), (234, 112), (234, 113), (234, 114), (234, 115), (234, 116), (234, 117), (234, 118), (234, 119), (234, 120), (234, 121), (234, 122), (234, 123), (234, 124), (234, 125), (234, 126), (234, 127), (234, 128), (234, 130), (235, 106), (235, 108), (235, 109), (235, 110), (235, 111), (235, 112), (235, 113), (235, 114), (235, 115), (235, 116), (235, 117), (235, 118), (235, 119), (235, 120), (235, 121), (235, 122), (235, 123), (235, 124), (235, 125), (235, 126), (235, 127), (235, 128), (235, 129), (235, 131), (236, 106), (236, 108), (236, 109), (236, 110), (236, 111), (236, 112), (236, 113), (236, 114), (236, 115), (236, 116), (236, 117), (236, 118), (236, 119), (236, 120), (236, 121), (236, 122), (236, 123), (236, 124), (236, 125), (236, 126), (236, 127), (236, 128), (236, 129), (236, 131), (237, 107), (237, 109), (237, 110), (237, 111), (237, 112), (237, 113), (237, 114), (237, 115), (237, 116), (237, 117), (237, 118), (237, 119), (237, 120), (237, 121), (237, 122), (237, 123), (237, 124), (237, 125), (237, 126), (237, 127), (237, 128), (237, 129), (237, 130), (237, 132), (238, 107), (238, 109), (238, 110), (238, 111), (238, 112), (238, 113), (238, 114), (238, 115), (238, 116), (238, 117), (238, 118), (238, 119), (238, 120), (238, 121), (238, 122), (238, 123), (238, 124), (238, 125), (238, 126), (238, 127), (238, 128), (238, 129), (238, 130), (238, 131), (238, 133), (239, 107), (239, 109), (239, 110), (239, 111), (239, 112), (239, 113), (239, 114), (239, 115), (239, 116), (239, 117), (239, 118), (239, 119), (239, 120), (239, 121), (239, 122), (239, 123), (239, 124), (239, 125), (239, 126), (239, 127), (239, 128), (239, 129), (239, 130), (239, 131), (239, 133), (240, 108), (240, 110), (240, 111), (240, 112), (240, 113), (240, 114), (240, 115), (240, 116), (240, 117), (240, 118), (240, 119), (240, 120), (240, 121), (240, 122), (240, 123), (240, 124), (240, 125), (240, 126), (240, 127), (240, 128), (240, 129), (240, 130), (240, 131), (240, 132), (240, 134), (241, 108), (241, 110), (241, 111), (241, 112), (241, 113), (241, 114), (241, 115), (241, 116), (241, 117), (241, 118), (241, 119), (241, 120), (241, 121), (241, 122), (241, 123), (241, 124), (241, 125), (241, 126), (241, 127), (241, 128), (241, 129), (241, 130), (241, 131), (241, 132), (241, 134), (242, 108), (242, 110), (242, 111), (242, 112), (242, 113), (242, 114), (242, 115), (242, 116), (242, 117), (242, 118), (242, 119), (242, 120), (242, 121), (242, 122), (242, 123), (242, 124), (242, 125), (242, 126), (242, 127), (242, 128), (242, 129), (242, 130), (242, 131), (242, 132), (242, 133), (242, 135), (243, 109), (243, 111), (243, 112), (243, 113), (243, 114), (243, 115), (243, 116), (243, 117), (243, 118), (243, 119), (243, 120), (243, 121), (243, 122), (243, 123), (243, 124), (243, 125), (243, 126), (243, 127), (243, 128), (243, 129), (243, 130), (243, 131), (243, 132), (243, 133), (243, 135), (244, 109), (244, 111), (244, 112), (244, 113), (244, 114), (244, 115), (244, 116), (244, 117), (244, 118), (244, 119), (244, 120), (244, 121), (244, 122), (244, 123), (244, 124), (244, 125), (244, 126), (244, 127), (244, 128), (244, 129), (244, 130), (244, 131), (244, 132), (244, 133), (244, 135), (245, 110), (245, 112), (245, 113), (245, 114), (245, 115), (245, 116), (245, 117), (245, 118), (245, 119), (245, 120), (245, 121), (245, 122), (245, 123), (245, 124), (245, 125), (245, 126), (245, 127), (245, 128), (245, 129), (245, 130), (245, 131), (245, 132), (245, 133), (245, 135), (246, 114), (246, 115), (246, 116), (246, 117), (246, 118), (246, 119), (246, 120), (246, 121), (246, 122), (246, 123), (246, 124), (246, 125), (246, 126), (246, 127), (246, 128), (246, 129), (246, 130), (246, 131), (246, 132), (246, 133), (246, 135), (247, 111), (247, 113), (247, 135), (248, 114), (248, 115), (248, 116), (248, 117), (248, 118), (248, 119), (248, 120), (248, 121), (248, 122), (248, 123), (248, 124), (248, 125), (248, 126), (248, 127), (248, 128), (248, 129), (248, 130), (248, 131), (248, 132), (248, 133), (248, 135)) coordinates_ff00_e1 = ((181, 134), (182, 133), (182, 135), (183, 129), (183, 130), (183, 131), (183, 132), (184, 125), (184, 127), (184, 128), (184, 133), (184, 134), (184, 137), (184, 138), (184, 139), (185, 129), (185, 130), (185, 131), (185, 132), (185, 133), (185, 134), (185, 135), (185, 136), (185, 140), (185, 141), (185, 142), (185, 143), (186, 123), (186, 125), (186, 126), (186, 127), (186, 128), (186, 129), (186, 130), (186, 131), (186, 132), (186, 133), (186, 134), (186, 135), (186, 136), (186, 137), (186, 138), (186, 139), (186, 144), (186, 145), (186, 147), (187, 122), (187, 124), (187, 125), (187, 126), (187, 127), (187, 128), (187, 129), (187, 130), (187, 131), (187, 132), (187, 133), (187, 134), (187, 135), (187, 136), (187, 137), (187, 138), (187, 139), (187, 140), (187, 141), (187, 142), (187, 143), (187, 147), (188, 121), (188, 123), (188, 124), (188, 125), (188, 126), (188, 127), (188, 128), (188, 129), (188, 130), (188, 131), (188, 132), (188, 133), (188, 134), (188, 135), (188, 136), (188, 137), (188, 138), (188, 139), (188, 140), (188, 141), (188, 142), (188, 143), (188, 144), (188, 146), (189, 120), (189, 122), (189, 123), (189, 124), (189, 125), (189, 126), (189, 127), (189, 128), (189, 129), (189, 130), (189, 131), (189, 132), (189, 133), (189, 134), (189, 135), (189, 136), (189, 137), (189, 138), (189, 139), (189, 140), (189, 141), (189, 142), (189, 143), (189, 144), (189, 146), (190, 120), (190, 122), (190, 123), (190, 124), (190, 125), (190, 126), (190, 127), (190, 128), (190, 129), (190, 130), (190, 131), (190, 132), (190, 133), (190, 134), (190, 135), (190, 136), (190, 137), (190, 138), (190, 139), (190, 140), (190, 141), (190, 142), (190, 143), (190, 144), (190, 146), (191, 119), (191, 121), (191, 122), (191, 123), (191, 124), (191, 125), (191, 126), (191, 127), (191, 128), (191, 129), (191, 130), (191, 131), (191, 132), (191, 133), (191, 134), (191, 135), (191, 136), (191, 137), (191, 138), (191, 139), (191, 140), (191, 141), (191, 142), (191, 143), (191, 145), (192, 118), (192, 120), (192, 121), (192, 122), (192, 123), (192, 124), (192, 125), (192, 126), (192, 127), (192, 128), (192, 129), (192, 130), (192, 131), (192, 132), (192, 133), (192, 134), (192, 135), (192, 136), (192, 137), (192, 138), (192, 139), (192, 140), (192, 141), (192, 142), (193, 118), (193, 120), (193, 121), (193, 122), (193, 123), (193, 124), (193, 125), (193, 126), (193, 127), (193, 128), (193, 129), (193, 130), (193, 131), (193, 132), (193, 133), (193, 134), (193, 135), (193, 136), (193, 137), (193, 138), (193, 139), (193, 140), (193, 141), (193, 143), (194, 117), (194, 119), (194, 120), (194, 121), (194, 122), (194, 123), (194, 124), (194, 125), (194, 126), (194, 127), (194, 128), (194, 129), (194, 130), (194, 131), (194, 132), (194, 133), (194, 134), (194, 135), (194, 136), (194, 137), (194, 138), (194, 142), (195, 117), (195, 120), (195, 121), (195, 122), (195, 123), (195, 124), (195, 125), (195, 126), (195, 127), (195, 128), (195, 129), (195, 130), (195, 131), (195, 132), (195, 133), (195, 134), (195, 135), (195, 136), (195, 140), (196, 118), (196, 124), (196, 125), (196, 126), (196, 127), (196, 128), (196, 129), (196, 130), (196, 136), (196, 137), (196, 138), (197, 120), (197, 122), (197, 123), (197, 131), (197, 132), (197, 133), (197, 134), (197, 135), (198, 124), (198, 125), (198, 126), (198, 127), (198, 128), (198, 129), (198, 130), (201, 123), (201, 124), (201, 125), (201, 126), (201, 127), (201, 128), (201, 129), (201, 130), (201, 131), (202, 120), (202, 122), (202, 123), (202, 132), (202, 133), (202, 134), (202, 135), (202, 136), (203, 118), (203, 123), (203, 124), (203, 125), (203, 126), (203, 127), (203, 128), (203, 129), (203, 130), (203, 131), (203, 137), (203, 138), (204, 117), (204, 120), (204, 121), (204, 122), (204, 123), (204, 124), (204, 125), (204, 126), (204, 127), (204, 128), (204, 129), (204, 130), (204, 131), (204, 132), (204, 133), (204, 134), (204, 135), (204, 136), (204, 140), (204, 141), (205, 117), (205, 119), (205, 120), (205, 121), (205, 122), (205, 123), (205, 124), (205, 125), (205, 126), (205, 127), (205, 128), (205, 129), (205, 130), (205, 131), (205, 132), (205, 133), (205, 134), (205, 135), (205, 136), (205, 137), (205, 138), (205, 139), (205, 142), (206, 118), (206, 120), (206, 121), (206, 122), (206, 123), (206, 124), (206, 125), (206, 126), (206, 127), (206, 128), (206, 129), (206, 130), (206, 131), (206, 132), (206, 133), (206, 134), (206, 135), (206, 136), (206, 137), (206, 138), (206, 139), (206, 140), (206, 141), (206, 144), (207, 118), (207, 120), (207, 121), (207, 122), (207, 123), (207, 124), (207, 125), (207, 126), (207, 127), (207, 128), (207, 129), (207, 130), (207, 131), (207, 132), (207, 133), (207, 134), (207, 135), (207, 136), (207, 137), (207, 138), (207, 139), (207, 140), (207, 141), (207, 142), (207, 145), (208, 119), (208, 121), (208, 122), (208, 123), (208, 124), (208, 125), (208, 126), (208, 127), (208, 128), (208, 129), (208, 130), (208, 131), (208, 132), (208, 133), (208, 134), (208, 135), (208, 136), (208, 137), (208, 138), (208, 139), (208, 140), (208, 141), (208, 142), (208, 143), (208, 145), (209, 120), (209, 122), (209, 123), (209, 124), (209, 125), (209, 126), (209, 127), (209, 128), (209, 129), (209, 130), (209, 131), (209, 132), (209, 133), (209, 134), (209, 135), (209, 136), (209, 137), (209, 138), (209, 139), (209, 140), (209, 141), (209, 142), (209, 143), (209, 144), (209, 146), (210, 120), (210, 122), (210, 123), (210, 124), (210, 125), (210, 126), (210, 127), (210, 128), (210, 129), (210, 130), (210, 131), (210, 132), (210, 133), (210, 134), (210, 135), (210, 136), (210, 137), (210, 138), (210, 139), (210, 140), (210, 141), (210, 142), (210, 143), (210, 144), (210, 146), (211, 121), (211, 123), (211, 124), (211, 125), (211, 126), (211, 127), (211, 128), (211, 129), (211, 130), (211, 131), (211, 132), (211, 133), (211, 134), (211, 135), (211, 136), (211, 137), (211, 138), (211, 139), (211, 140), (211, 141), (211, 142), (211, 143), (211, 144), (211, 146), (212, 122), (212, 124), (212, 125), (212, 126), (212, 127), (212, 128), (212, 129), (212, 130), (212, 131), (212, 132), (212, 133), (212, 134), (212, 135), (212, 136), (212, 137), (212, 138), (212, 139), (212, 140), (212, 141), (212, 142), (212, 143), (212, 147), (213, 123), (213, 125), (213, 126), (213, 127), (213, 128), (213, 129), (213, 130), (213, 131), (213, 132), (213, 133), (213, 134), (213, 135), (213, 136), (213, 137), (213, 138), (213, 139), (213, 144), (213, 145), (213, 147), (214, 124), (214, 130), (214, 131), (214, 132), (214, 133), (214, 134), (214, 135), (214, 140), (214, 141), (214, 142), (214, 143), (215, 125), (215, 127), (215, 128), (215, 129), (215, 133), (215, 134), (215, 137), (215, 138), (215, 139), (216, 130), (216, 131), (216, 132), (217, 133), (218, 134)) coordinates_006_b7_f = ((122, 131), (122, 132), (122, 133), (122, 134), (122, 135), (122, 137), (123, 128), (123, 138), (124, 127), (124, 130), (124, 131), (124, 132), (124, 133), (124, 134), (124, 135), (124, 136), (124, 137), (124, 139), (125, 126), (125, 128), (125, 129), (125, 130), (125, 131), (125, 132), (125, 133), (125, 134), (125, 135), (125, 136), (125, 137), (125, 138), (126, 125), (126, 127), (126, 128), (126, 129), (126, 130), (126, 131), (126, 132), (126, 133), (126, 134), (126, 135), (126, 136), (126, 137), (126, 138), (126, 139), (126, 142), (127, 124), (127, 126), (127, 127), (127, 128), (127, 129), (127, 130), (127, 131), (127, 132), (127, 133), (127, 134), (127, 135), (127, 136), (127, 137), (127, 138), (127, 139), (127, 140), (128, 123), (128, 125), (128, 126), (128, 127), (128, 128), (128, 129), (128, 130), (128, 131), (128, 132), (128, 133), (128, 134), (128, 135), (128, 136), (128, 137), (128, 138), (128, 139), (128, 140), (128, 141), (129, 123), (129, 125), (129, 126), (129, 127), (129, 128), (129, 129), (129, 130), (129, 131), (129, 132), (129, 133), (129, 134), (129, 135), (129, 136), (129, 137), (129, 138), (129, 139), (129, 140), (129, 141), (129, 142), (129, 144), (130, 122), (130, 124), (130, 125), (130, 126), (130, 127), (130, 128), (130, 129), (130, 130), (130, 131), (130, 132), (130, 133), (130, 134), (130, 135), (130, 136), (130, 137), (130, 138), (130, 139), (130, 140), (130, 141), (130, 142), (130, 143), (130, 145), (131, 121), (131, 123), (131, 124), (131, 125), (131, 126), (131, 127), (131, 128), (131, 129), (131, 130), (131, 131), (131, 132), (131, 133), (131, 134), (131, 135), (131, 136), (131, 137), (131, 138), (131, 139), (131, 140), (131, 141), (131, 142), (131, 143), (131, 144), (131, 146), (132, 121), (132, 123), (132, 124), (132, 125), (132, 126), (132, 127), (132, 128), (132, 129), (132, 130), (132, 131), (132, 132), (132, 133), (132, 134), (132, 135), (132, 136), (132, 137), (132, 138), (132, 139), (132, 140), (132, 141), (132, 142), (132, 143), (132, 144), (132, 145), (132, 147), (133, 120), (133, 122), (133, 123), (133, 124), (133, 125), (133, 126), (133, 127), (133, 128), (133, 129), (133, 130), (133, 131), (133, 132), (133, 133), (133, 134), (133, 135), (133, 136), (133, 137), (133, 138), (133, 139), (133, 140), (133, 141), (133, 142), (133, 143), (133, 144), (133, 145), (133, 146), (133, 148), (134, 120), (134, 122), (134, 123), (134, 124), (134, 125), (134, 126), (134, 127), (134, 128), (134, 129), (134, 130), (134, 131), (134, 132), (134, 133), (134, 134), (134, 135), (134, 136), (134, 137), (134, 138), (134, 139), (134, 140), (134, 141), (134, 142), (134, 143), (134, 144), (134, 145), (134, 146), (134, 147), (134, 149), (135, 120), (135, 122), (135, 123), (135, 124), (135, 125), (135, 126), (135, 127), (135, 128), (135, 129), (135, 130), (135, 131), (135, 132), (135, 133), (135, 134), (135, 135), (135, 136), (135, 137), (135, 138), (135, 139), (135, 140), (135, 141), (135, 142), (135, 143), (135, 144), (135, 145), (135, 146), (135, 147), (136, 120), (136, 122), (136, 123), (136, 124), (136, 125), (136, 126), (136, 127), (136, 128), (136, 129), (136, 130), (136, 131), (136, 132), (136, 133), (136, 134), (136, 135), (136, 136), (136, 137), (136, 138), (136, 139), (136, 140), (136, 141), (136, 142), (136, 143), (136, 144), (136, 145), (136, 146), (136, 147), (136, 148), (136, 150), (137, 120), (137, 122), (137, 123), (137, 124), (137, 125), (137, 126), (137, 127), (137, 128), (137, 129), (137, 130), (137, 131), (137, 132), (137, 133), (137, 134), (137, 135), (137, 136), (137, 137), (137, 138), (137, 139), (137, 140), (137, 141), (137, 142), (137, 143), (137, 144), (137, 145), (137, 146), (137, 147), (137, 148), (137, 149), (137, 151), (138, 120), (138, 122), (138, 123), (138, 124), (138, 125), (138, 126), (138, 127), (138, 128), (138, 129), (138, 130), (138, 131), (138, 132), (138, 133), (138, 134), (138, 135), (138, 136), (138, 137), (138, 138), (138, 139), (138, 140), (138, 141), (138, 142), (138, 143), (138, 144), (138, 145), (138, 146), (138, 147), (138, 148), (138, 149), (138, 150), (138, 152), (139, 119), (139, 121), (139, 122), (139, 123), (139, 124), (139, 125), (139, 126), (139, 127), (139, 128), (139, 129), (139, 130), (139, 131), (139, 132), (139, 133), (139, 134), (139, 135), (139, 136), (139, 137), (139, 138), (139, 139), (139, 140), (139, 141), (139, 142), (139, 143), (139, 144), (139, 145), (139, 146), (139, 147), (139, 148), (139, 149), (139, 150), (139, 152), (140, 119), (140, 121), (140, 122), (140, 123), (140, 124), (140, 125), (140, 126), (140, 127), (140, 128), (140, 129), (140, 130), (140, 131), (140, 132), (140, 133), (140, 134), (140, 135), (140, 136), (140, 137), (140, 140), (140, 141), (140, 142), (140, 143), (140, 144), (140, 145), (140, 146), (140, 147), (140, 148), (140, 149), (140, 150), (140, 151), (140, 153), (141, 118), (141, 120), (141, 121), (141, 122), (141, 123), (141, 124), (141, 125), (141, 126), (141, 127), (141, 128), (141, 129), (141, 130), (141, 131), (141, 132), (141, 133), (141, 134), (141, 135), (141, 136), (141, 138), (141, 139), (141, 142), (141, 143), (141, 144), (141, 145), (141, 146), (141, 147), (141, 148), (141, 149), (141, 150), (141, 151), (141, 153), (142, 118), (142, 120), (142, 121), (142, 122), (142, 123), (142, 124), (142, 125), (142, 126), (142, 127), (142, 128), (142, 129), (142, 130), (142, 131), (142, 132), (142, 133), (142, 134), (142, 135), (142, 137), (142, 140), (142, 143), (142, 144), (142, 145), (142, 146), (142, 147), (142, 148), (142, 149), (142, 150), (142, 151), (142, 153), (143, 118), (143, 120), (143, 121), (143, 122), (143, 123), (143, 124), (143, 125), (143, 126), (143, 127), (143, 128), (143, 129), (143, 130), (143, 131), (143, 132), (143, 133), (143, 134), (143, 136), (143, 141), (143, 144), (143, 145), (143, 146), (143, 147), (143, 148), (143, 149), (143, 150), (143, 151), (143, 153), (144, 118), (144, 120), (144, 121), (144, 122), (144, 123), (144, 124), (144, 125), (144, 126), (144, 127), (144, 128), (144, 129), (144, 130), (144, 131), (144, 132), (144, 133), (144, 135), (144, 142), (144, 144), (144, 145), (144, 146), (144, 147), (144, 148), (144, 149), (144, 150), (144, 151), (144, 152), (144, 154), (145, 118), (145, 120), (145, 121), (145, 122), (145, 123), (145, 124), (145, 125), (145, 126), (145, 127), (145, 128), (145, 129), (145, 130), (145, 131), (145, 132), (145, 133), (145, 135), (145, 143), (145, 145), (145, 146), (145, 147), (145, 148), (145, 149), (145, 150), (145, 151), (145, 152), (145, 154), (146, 118), (146, 120), (146, 121), (146, 122), (146, 123), (146, 124), (146, 125), (146, 126), (146, 127), (146, 128), (146, 129), (146, 130), (146, 131), (146, 132), (146, 133), (146, 135), (146, 144), (146, 146), (146, 147), (146, 148), (146, 149), (146, 150), (146, 151), (146, 152), (146, 153), (146, 155), (147, 118), (147, 135), (147, 144), (147, 146), (147, 147), (147, 148), (147, 149), (147, 150), (147, 151), (147, 152), (147, 153), (147, 154), (147, 156), (148, 119), (148, 121), (148, 122), (148, 123), (148, 124), (148, 125), (148, 126), (148, 127), (148, 128), (148, 129), (148, 130), (148, 131), (148, 132), (148, 133), (148, 135), (148, 145), (148, 147), (148, 148), (148, 149), (148, 150), (148, 151), (148, 152), (148, 153), (148, 154), (148, 156), (149, 145), (149, 147), (149, 148), (149, 149), (149, 150), (149, 151), (149, 152), (149, 153), (149, 154), (149, 156), (150, 146), (150, 148), (150, 149), (150, 150), (150, 151), (150, 152), (150, 153), (150, 154), (150, 156), (151, 146), (151, 148), (151, 149), (151, 150), (151, 151), (151, 152), (151, 153), (151, 154), (151, 156), (152, 146), (152, 148), (152, 149), (152, 150), (152, 151), (152, 152), (152, 153), (152, 154), (152, 155), (152, 157), (153, 147), (153, 149), (153, 150), (153, 151), (153, 152), (153, 153), (153, 154), (153, 155), (153, 157), (154, 147), (154, 149), (154, 150), (154, 151), (154, 152), (154, 153), (154, 154), (154, 155), (154, 157), (155, 147), (155, 149), (155, 150), (155, 151), (155, 152), (155, 153), (155, 154), (155, 155), (155, 157), (156, 148), (156, 150), (156, 151), (156, 152), (156, 153), (156, 154), (156, 155), (156, 156), (156, 158), (157, 148), (157, 150), (157, 151), (157, 152), (157, 153), (157, 154), (157, 155), (157, 156), (157, 157), (157, 159), (158, 149), (158, 151), (158, 152), (158, 153), (158, 154), (158, 155), (158, 156), (158, 157), (158, 158), (158, 160), (159, 150), (159, 153), (159, 154), (159, 155), (159, 156), (159, 157), (159, 158), (159, 159), (159, 161), (160, 151), (160, 154), (160, 155), (160, 156), (160, 157), (160, 158), (160, 159), (160, 160), (160, 164), (161, 153), (161, 156), (161, 157), (161, 158), (161, 159), (161, 160), (161, 161), (161, 164), (162, 154), (162, 158), (162, 159), (162, 160), (162, 161), (162, 162), (162, 164), (163, 156), (163, 161), (163, 162), (163, 163), (163, 165), (164, 159), (164, 160), (164, 161), (164, 165), (165, 162), (165, 163), (165, 165), (234, 161), (234, 162), (234, 163), (234, 165), (235, 158), (235, 160), (235, 165), (236, 156), (236, 161), (236, 162), (236, 163), (236, 165), (237, 154), (237, 158), (237, 159), (237, 160), (237, 161), (237, 162), (237, 164), (238, 152), (238, 153), (238, 156), (238, 157), (238, 158), (238, 159), (238, 160), (238, 161), (238, 164), (239, 151), (239, 154), (239, 155), (239, 156), (239, 157), (239, 158), (239, 159), (239, 160), (239, 162), (240, 150), (240, 153), (240, 154), (240, 155), (240, 156), (240, 157), (240, 158), (240, 159), (240, 160), (241, 149), (241, 151), (241, 152), (241, 153), (241, 154), (241, 155), (241, 156), (241, 157), (241, 158), (241, 160), (242, 148), (242, 150), (242, 151), (242, 152), (242, 153), (242, 154), (242, 155), (242, 156), (242, 157), (242, 159), (243, 148), (243, 150), (243, 151), (243, 152), (243, 153), (243, 154), (243, 155), (243, 156), (243, 157), (243, 159), (244, 147), (244, 149), (244, 150), (244, 151), (244, 152), (244, 153), (244, 154), (244, 155), (244, 156), (244, 158), (245, 147), (245, 149), (245, 150), (245, 151), (245, 152), (245, 153), (245, 154), (245, 155), (245, 156), (245, 158), (246, 147), (246, 149), (246, 150), (246, 151), (246, 152), (246, 153), (246, 154), (246, 155), (246, 157), (247, 146), (247, 148), (247, 149), (247, 150), (247, 151), (247, 152), (247, 153), (247, 154), (247, 155), (247, 157), (248, 146), (248, 148), (248, 149), (248, 150), (248, 151), (248, 152), (248, 153), (248, 154), (248, 155), (248, 157), (249, 146), (249, 148), (249, 149), (249, 150), (249, 151), (249, 152), (249, 153), (249, 154), (249, 156), (250, 145), (250, 147), (250, 148), (250, 149), (250, 150), (250, 151), (250, 152), (250, 153), (250, 154), (250, 156), (251, 119), (251, 121), (251, 122), (251, 123), (251, 124), (251, 125), (251, 126), (251, 127), (251, 128), (251, 129), (251, 130), (251, 131), (251, 132), (251, 133), (251, 135), (251, 145), (251, 147), (251, 148), (251, 149), (251, 150), (251, 151), (251, 152), (251, 153), (251, 154), (251, 156), (252, 118), (252, 135), (252, 144), (252, 146), (252, 147), (252, 148), (252, 149), (252, 150), (252, 151), (252, 152), (252, 153), (252, 154), (252, 156), (253, 118), (253, 120), (253, 121), (253, 122), (253, 123), (253, 124), (253, 125), (253, 126), (253, 127), (253, 128), (253, 129), (253, 130), (253, 131), (253, 132), (253, 133), (253, 135), (253, 144), (253, 146), (253, 147), (253, 148), (253, 149), (253, 150), (253, 151), (253, 152), (253, 153), (253, 155), (254, 118), (254, 120), (254, 121), (254, 122), (254, 123), (254, 124), (254, 125), (254, 126), (254, 127), (254, 128), (254, 129), (254, 130), (254, 131), (254, 132), (254, 133), (254, 135), (254, 143), (254, 145), (254, 146), (254, 147), (254, 148), (254, 149), (254, 150), (254, 151), (254, 152), (254, 153), (254, 155), (255, 118), (255, 120), (255, 121), (255, 122), (255, 123), (255, 124), (255, 125), (255, 126), (255, 127), (255, 128), (255, 129), (255, 130), (255, 131), (255, 132), (255, 133), (255, 134), (255, 135), (255, 136), (255, 142), (255, 144), (255, 145), (255, 146), (255, 147), (255, 148), (255, 149), (255, 150), (255, 151), (255, 152), (255, 154), (256, 118), (256, 120), (256, 121), (256, 122), (256, 123), (256, 124), (256, 125), (256, 126), (256, 127), (256, 128), (256, 129), (256, 130), (256, 131), (256, 132), (256, 133), (256, 134), (256, 136), (256, 141), (256, 143), (256, 144), (256, 145), (256, 146), (256, 147), (256, 148), (256, 149), (256, 150), (256, 151), (256, 152), (256, 154), (257, 118), (257, 120), (257, 121), (257, 122), (257, 123), (257, 124), (257, 125), (257, 126), (257, 127), (257, 128), (257, 129), (257, 130), (257, 131), (257, 132), (257, 133), (257, 134), (257, 135), (257, 137), (257, 140), (257, 142), (257, 143), (257, 144), (257, 145), (257, 146), (257, 147), (257, 148), (257, 149), (257, 150), (257, 151), (257, 153), (258, 118), (258, 119), (258, 120), (258, 121), (258, 122), (258, 123), (258, 124), (258, 125), (258, 126), (258, 127), (258, 128), (258, 129), (258, 130), (258, 131), (258, 132), (258, 133), (258, 134), (258, 135), (258, 136), (258, 138), (258, 139), (258, 141), (258, 142), (258, 143), (258, 144), (258, 145), (258, 146), (258, 147), (258, 148), (258, 149), (258, 150), (258, 151), (258, 153), (259, 119), (259, 121), (259, 122), (259, 123), (259, 124), (259, 125), (259, 126), (259, 127), (259, 128), (259, 129), (259, 130), (259, 131), (259, 132), (259, 133), (259, 134), (259, 135), (259, 136), (259, 137), (259, 140), (259, 141), (259, 142), (259, 143), (259, 144), (259, 145), (259, 146), (259, 147), (259, 148), (259, 149), (259, 150), (259, 151), (259, 153), (260, 119), (260, 121), (260, 122), (260, 123), (260, 124), (260, 125), (260, 126), (260, 127), (260, 128), (260, 129), (260, 130), (260, 131), (260, 132), (260, 133), (260, 134), (260, 135), (260, 136), (260, 137), (260, 138), (260, 139), (260, 140), (260, 141), (260, 142), (260, 143), (260, 144), (260, 145), (260, 146), (260, 147), (260, 148), (260, 149), (260, 150), (260, 152), (261, 120), (261, 122), (261, 123), (261, 124), (261, 125), (261, 126), (261, 127), (261, 128), (261, 129), (261, 130), (261, 131), (261, 132), (261, 133), (261, 134), (261, 135), (261, 136), (261, 137), (261, 138), (261, 139), (261, 140), (261, 141), (261, 142), (261, 143), (261, 144), (261, 145), (261, 146), (261, 147), (261, 148), (261, 149), (261, 150), (261, 152), (262, 120), (262, 122), (262, 123), (262, 124), (262, 125), (262, 126), (262, 127), (262, 128), (262, 129), (262, 130), (262, 131), (262, 132), (262, 133), (262, 134), (262, 135), (262, 136), (262, 137), (262, 138), (262, 139), (262, 140), (262, 141), (262, 142), (262, 143), (262, 144), (262, 145), (262, 146), (262, 147), (262, 148), (262, 149), (262, 151), (263, 120), (263, 122), (263, 123), (263, 124), (263, 125), (263, 126), (263, 127), (263, 128), (263, 129), (263, 130), (263, 131), (263, 132), (263, 133), (263, 134), (263, 135), (263, 136), (263, 137), (263, 138), (263, 139), (263, 140), (263, 141), (263, 142), (263, 143), (263, 144), (263, 145), (263, 146), (263, 147), (263, 148), (263, 150), (264, 120), (264, 122), (264, 123), (264, 124), (264, 125), (264, 126), (264, 127), (264, 128), (264, 129), (264, 130), (264, 131), (264, 132), (264, 133), (264, 134), (264, 135), (264, 136), (264, 137), (264, 138), (264, 139), (264, 140), (264, 141), (264, 142), (264, 143), (264, 144), (264, 145), (264, 146), (264, 147), (264, 149), (265, 120), (265, 122), (265, 123), (265, 124), (265, 125), (265, 126), (265, 127), (265, 128), (265, 129), (265, 130), (265, 131), (265, 132), (265, 133), (265, 134), (265, 135), (265, 136), (265, 137), (265, 138), (265, 139), (265, 140), (265, 141), (265, 142), (265, 143), (265, 144), (265, 145), (265, 146), (265, 147), (265, 149), (266, 120), (266, 122), (266, 123), (266, 124), (266, 125), (266, 126), (266, 127), (266, 128), (266, 129), (266, 130), (266, 131), (266, 132), (266, 133), (266, 134), (266, 135), (266, 136), (266, 137), (266, 138), (266, 139), (266, 140), (266, 141), (266, 142), (266, 143), (266, 144), (266, 145), (266, 146), (266, 148), (267, 121), (267, 123), (267, 124), (267, 125), (267, 126), (267, 127), (267, 128), (267, 129), (267, 130), (267, 131), (267, 132), (267, 133), (267, 134), (267, 135), (267, 136), (267, 137), (267, 138), (267, 139), (267, 140), (267, 141), (267, 142), (267, 143), (267, 144), (267, 145), (267, 147), (268, 121), (268, 123), (268, 124), (268, 125), (268, 126), (268, 127), (268, 128), (268, 129), (268, 130), (268, 131), (268, 132), (268, 133), (268, 134), (268, 135), (268, 136), (268, 137), (268, 138), (268, 139), (268, 140), (268, 141), (268, 142), (268, 143), (268, 144), (268, 146), (269, 122), (269, 124), (269, 125), (269, 126), (269, 127), (269, 128), (269, 129), (269, 130), (269, 131), (269, 132), (269, 133), (269, 134), (269, 135), (269, 136), (269, 137), (269, 138), (269, 139), (269, 140), (269, 141), (269, 142), (269, 143), (269, 145), (270, 123), (270, 125), (270, 126), (270, 127), (270, 128), (270, 129), (270, 130), (270, 131), (270, 132), (270, 133), (270, 134), (270, 135), (270, 136), (270, 137), (270, 138), (270, 139), (270, 140), (270, 141), (270, 142), (270, 144), (271, 123), (271, 125), (271, 126), (271, 127), (271, 128), (271, 129), (271, 130), (271, 131), (271, 132), (271, 133), (271, 134), (271, 135), (271, 136), (271, 137), (271, 138), (271, 139), (271, 140), (271, 141), (271, 143), (272, 124), (272, 126), (272, 127), (272, 128), (272, 129), (272, 130), (272, 131), (272, 132), (272, 133), (272, 134), (272, 135), (272, 136), (272, 137), (272, 138), (272, 139), (272, 140), (272, 142), (273, 125), (273, 127), (273, 128), (273, 129), (273, 130), (273, 131), (273, 132), (273, 133), (273, 134), (273, 135), (273, 136), (273, 137), (273, 138), (273, 139), (274, 126), (274, 129), (274, 130), (274, 131), (274, 132), (274, 133), (274, 134), (274, 135), (274, 136), (274, 137), (274, 138), (274, 140), (275, 127), (275, 131), (275, 132), (275, 133), (275, 134), (275, 135), (275, 136), (275, 137), (275, 139), (276, 129), (276, 138), (277, 131), (277, 133), (277, 134), (277, 135), (277, 137)) coordinates_00_ebff = ((116, 153), (117, 153), (117, 155), (118, 153), (118, 156), (119, 154), (119, 158), (120, 155), (120, 159), (121, 156), (121, 160), (122, 156), (122, 158), (122, 161), (123, 157), (123, 159), (123, 162), (124, 158), (124, 160), (124, 163), (125, 159), (125, 161), (125, 164), (126, 160), (126, 162), (126, 164), (127, 161), (127, 164), (128, 161), (128, 164), (129, 162), (129, 165), (130, 163), (130, 165), (131, 163), (131, 166), (132, 164), (132, 166), (133, 164), (133, 167), (134, 165), (134, 168), (135, 165), (135, 168), (136, 166), (136, 169), (137, 166), (137, 168), (137, 170), (138, 166), (138, 168), (138, 170), (139, 167), (139, 169), (139, 171), (140, 167), (140, 169), (140, 170), (140, 172), (141, 167), (141, 168), (141, 169), (141, 170), (141, 172), (142, 168), (142, 170), (142, 171), (142, 172), (143, 138), (143, 168), (143, 170), (143, 171), (143, 173), (144, 138), (144, 140), (144, 169), (144, 171), (144, 173), (145, 137), (145, 141), (145, 169), (145, 171), (145, 172), (145, 174), (146, 137), (146, 139), (146, 169), (146, 171), (146, 172), (146, 174), (147, 137), (147, 139), (147, 140), (147, 142), (147, 170), (147, 172), (147, 174), (148, 137), (148, 139), (148, 140), (148, 141), (148, 143), (148, 170), (148, 172), (148, 174), (149, 137), (149, 139), (149, 140), (149, 141), (149, 143), (149, 171), (149, 172), (149, 173), (149, 174), (149, 175), (150, 137), (150, 139), (150, 140), (150, 141), (150, 143), (150, 171), (150, 173), (150, 175), (151, 137), (151, 139), (151, 140), (151, 141), (151, 142), (151, 144), (151, 171), (151, 173), (151, 175), (152, 137), (152, 139), (152, 140), (152, 141), (152, 142), (152, 144), (152, 172), (152, 175), (153, 137), (153, 139), (153, 140), (153, 141), (153, 142), (153, 144), (153, 172), (153, 175), (154, 137), (154, 138), (154, 139), (154, 140), (154, 141), (154, 142), (154, 143), (154, 145), (154, 172), (154, 175), (155, 138), (155, 140), (155, 141), (155, 142), (155, 143), (155, 145), (155, 172), (155, 175), (156, 138), (156, 140), (156, 141), (156, 142), (156, 143), (156, 144), (156, 146), (156, 172), (156, 175), (157, 137), (157, 139), (157, 140), (157, 141), (157, 142), (157, 143), (157, 144), (157, 146), (157, 172), (157, 175), (158, 137), (158, 139), (158, 140), (158, 141), (158, 142), (158, 143), (158, 144), (158, 145), (158, 147), (158, 172), (158, 175), (159, 136), (159, 138), (159, 139), (159, 140), (159, 141), (159, 142), (159, 143), (159, 144), (159, 145), (159, 146), (159, 148), (159, 172), (159, 174), (159, 175), (159, 176), (160, 136), (160, 138), (160, 139), (160, 140), (160, 141), (160, 142), (160, 143), (160, 144), (160, 145), (160, 146), (160, 149), (160, 172), (160, 174), (160, 176), (161, 135), (161, 137), (161, 138), (161, 139), (161, 140), (161, 141), (161, 142), (161, 143), (161, 144), (161, 145), (161, 146), (161, 147), (161, 150), (161, 172), (161, 174), (161, 176), (162, 134), (162, 136), (162, 137), (162, 138), (162, 139), (162, 140), (162, 141), (162, 142), (162, 143), (162, 144), (162, 145), (162, 146), (162, 147), (162, 148), (162, 151), (162, 171), (162, 173), (162, 174), (162, 176), (163, 134), (163, 136), (163, 137), (163, 138), (163, 139), (163, 140), (163, 141), (163, 142), (163, 143), (163, 144), (163, 145), (163, 146), (163, 147), (163, 148), (163, 149), (163, 150), (163, 153), (163, 171), (163, 173), (163, 174), (163, 176), (164, 133), (164, 135), (164, 136), (164, 137), (164, 138), (164, 139), (164, 140), (164, 141), (164, 142), (164, 143), (164, 144), (164, 145), (164, 148), (164, 149), (164, 150), (164, 151), (164, 154), (164, 171), (164, 173), (164, 174), (164, 176), (165, 132), (165, 134), (165, 135), (165, 136), (165, 137), (165, 138), (165, 139), (165, 140), (165, 141), (165, 142), (165, 143), (165, 146), (165, 147), (165, 152), (165, 153), (165, 156), (165, 157), (165, 170), (165, 172), (165, 173), (165, 174), (165, 176), (166, 132), (166, 134), (166, 135), (166, 136), (166, 137), (166, 138), (166, 139), (166, 140), (166, 141), (166, 142), (166, 144), (166, 148), (166, 149), (166, 150), (166, 151), (166, 154), (166, 155), (166, 158), (166, 159), (166, 160), (166, 169), (166, 171), (166, 172), (166, 173), (166, 174), (166, 176), (167, 131), (167, 133), (167, 134), (167, 135), (167, 136), (167, 137), (167, 138), (167, 139), (167, 143), (167, 152), (167, 155), (167, 156), (167, 157), (167, 161), (167, 162), (167, 163), (167, 164), (167, 165), (167, 168), (167, 170), (167, 171), (167, 172), (167, 173), (167, 174), (167, 176), (168, 130), (168, 132), (168, 133), (168, 134), (168, 135), (168, 136), (168, 137), (168, 140), (168, 141), (168, 154), (168, 156), (168, 157), (168, 158), (168, 159), (168, 160), (168, 165), (168, 166), (168, 167), (168, 169), (168, 170), (168, 171), (168, 172), (168, 173), (168, 174), (168, 176), (169, 130), (169, 132), (169, 133), (169, 134), (169, 135), (169, 136), (169, 138), (169, 155), (169, 157), (169, 158), (169, 159), (169, 160), (169, 161), (169, 162), (169, 163), (169, 164), (169, 165), (169, 168), (169, 169), (169, 170), (169, 171), (169, 172), (169, 173), (169, 174), (169, 176), (170, 129), (170, 131), (170, 132), (170, 133), (170, 134), (170, 135), (170, 137), (170, 156), (170, 159), (170, 160), (170, 161), (170, 162), (170, 163), (170, 164), (170, 165), (170, 166), (170, 167), (170, 168), (170, 169), (170, 170), (170, 171), (170, 172), (170, 173), (170, 174), (170, 176), (171, 129), (171, 131), (171, 132), (171, 133), (171, 134), (171, 136), (171, 157), (171, 160), (171, 161), (171, 162), (171, 163), (171, 164), (171, 165), (171, 166), (171, 167), (171, 168), (171, 169), (171, 170), (171, 171), (171, 172), (171, 173), (171, 174), (171, 175), (171, 177), (172, 128), (172, 129), (172, 130), (172, 131), (172, 132), (172, 133), (172, 135), (172, 158), (172, 161), (172, 162), (172, 163), (172, 164), (172, 165), (172, 166), (172, 167), (172, 168), (172, 169), (172, 170), (172, 171), (172, 172), (172, 173), (172, 174), (172, 175), (172, 177), (173, 128), (173, 130), (173, 131), (173, 132), (173, 134), (173, 162), (173, 163), (173, 164), (173, 165), (173, 166), (173, 167), (173, 168), (173, 169), (173, 170), (173, 171), (173, 172), (173, 173), (173, 174), (173, 175), (173, 176), (173, 178), (174, 128), (174, 130), (174, 131), (174, 132), (174, 134), (174, 161), (174, 163), (174, 164), (174, 165), (174, 166), (174, 167), (174, 168), (174, 169), (174, 170), (174, 171), (174, 172), (174, 173), (174, 174), (174, 175), (174, 176), (174, 178), (175, 128), (175, 130), (175, 131), (175, 133), (175, 162), (175, 164), (175, 165), (175, 166), (175, 167), (175, 168), (175, 169), (175, 170), (175, 171), (175, 172), (175, 173), (175, 174), (175, 175), (175, 176), (175, 177), (175, 179), (176, 127), (176, 129), (176, 130), (176, 131), (176, 133), (176, 163), (176, 166), (176, 167), (176, 168), (176, 169), (176, 170), (176, 171), (176, 172), (176, 173), (176, 174), (176, 175), (176, 176), (176, 177), (176, 178), (176, 180), (177, 127), (177, 129), (177, 130), (177, 131), (177, 133), (177, 164), (177, 166), (177, 175), (177, 176), (177, 177), (177, 178), (177, 179), (177, 181), (178, 127), (178, 129), (178, 130), (178, 131), (178, 133), (178, 167), (178, 168), (178, 169), (178, 170), (178, 171), (178, 172), (178, 173), (178, 174), (178, 177), (178, 178), (178, 179), (178, 180), (178, 182), (179, 127), (179, 129), (179, 130), (179, 131), (179, 133), (179, 175), (179, 178), (179, 179), (179, 180), (179, 181), (179, 184), (179, 185), (179, 186), (179, 190), (179, 192), (180, 127), (180, 132), (180, 177), (180, 179), (180, 180), (180, 181), (180, 182), (180, 183), (180, 187), (180, 188), (180, 193), (180, 194), (181, 127), (181, 129), (181, 130), (181, 132), (181, 178), (181, 181), (181, 182), (181, 183), (181, 184), (181, 185), (181, 186), (181, 189), (181, 190), (181, 191), (181, 192), (181, 197), (182, 179), (182, 188), (182, 189), (182, 190), (182, 191), (182, 192), (182, 193), (182, 194), (182, 195), (182, 199), (183, 181), (183, 183), (183, 184), (183, 185), (183, 186), (183, 187), (183, 201), (184, 188), (184, 189), (184, 190), (184, 191), (184, 192), (184, 193), (184, 194), (184, 195), (184, 196), (184, 197), (184, 203), (185, 198), (185, 199), (185, 200), (185, 201), (185, 202), (185, 203), (185, 205), (214, 198), (214, 199), (214, 200), (214, 201), (214, 202), (214, 203), (214, 205), (215, 187), (215, 188), (215, 189), (215, 190), (215, 191), (215, 192), (215, 193), (215, 194), (215, 195), (215, 196), (215, 197), (215, 203), (216, 181), (216, 183), (216, 184), (216, 185), (216, 186), (216, 201), (217, 179), (217, 187), (217, 188), (217, 189), (217, 190), (217, 191), (217, 192), (217, 193), (217, 194), (217, 199), (218, 127), (218, 129), (218, 130), (218, 132), (218, 178), (218, 181), (218, 182), (218, 183), (218, 184), (218, 185), (218, 186), (218, 190), (218, 191), (218, 192), (218, 196), (218, 197), (219, 127), (219, 177), (219, 179), (219, 180), (219, 181), (219, 182), (219, 187), (219, 188), (219, 193), (219, 194), (220, 127), (220, 129), (220, 130), (220, 131), (220, 133), (220, 175), (220, 178), (220, 179), (220, 180), (220, 181), (220, 184), (220, 185), (220, 190), (220, 192), (221, 127), (221, 129), (221, 130), (221, 131), (221, 133), (221, 165), (221, 167), (221, 168), (221, 169), (221, 170), (221, 171), (221, 172), (221, 173), (221, 174), (221, 177), (221, 178), (221, 179), (221, 180), (221, 182), (222, 127), (222, 129), (222, 130), (222, 131), (222, 133), (222, 164), (222, 175), (222, 176), (222, 177), (222, 178), (222, 179), (222, 181), (223, 127), (223, 129), (223, 130), (223, 131), (223, 133), (223, 163), (223, 165), (223, 166), (223, 167), (223, 168), (223, 169), (223, 170), (223, 171), (223, 172), (223, 173), (223, 174), (223, 175), (223, 176), (223, 177), (223, 178), (223, 180), (224, 128), (224, 130), (224, 131), (224, 133), (224, 162), (224, 164), (224, 165), (224, 166), (224, 167), (224, 168), (224, 169), (224, 170), (224, 171), (224, 172), (224, 173), (224, 174), (224, 175), (224, 176), (224, 177), (224, 179), (225, 128), (225, 130), (225, 131), (225, 132), (225, 134), (225, 163), (225, 164), (225, 165), (225, 166), (225, 167), (225, 168), (225, 169), (225, 170), (225, 171), (225, 172), (225, 173), (225, 174), (225, 175), (225, 176), (225, 178), (226, 128), (226, 130), (226, 131), (226, 132), (226, 134), (226, 159), (226, 162), (226, 163), (226, 164), (226, 165), (226, 166), (226, 167), (226, 168), (226, 169), (226, 170), (226, 171), (226, 172), (226, 173), (226, 174), (226, 175), (226, 176), (226, 178), (227, 129), (227, 131), (227, 132), (227, 133), (227, 135), (227, 158), (227, 161), (227, 162), (227, 163), (227, 164), (227, 165), (227, 166), (227, 167), (227, 168), (227, 169), (227, 170), (227, 171), (227, 172), (227, 173), (227, 174), (227, 175), (227, 177), (228, 129), (228, 131), (228, 132), (228, 133), (228, 134), (228, 136), (228, 157), (228, 160), (228, 161), (228, 162), (228, 163), (228, 164), (228, 165), (228, 166), (228, 167), (228, 168), (228, 169), (228, 170), (228, 171), (228, 172), (228, 173), (228, 174), (228, 175), (228, 177), (229, 129), (229, 131), (229, 132), (229, 133), (229, 134), (229, 135), (229, 137), (229, 156), (229, 158), (229, 159), (229, 160), (229, 161), (229, 162), (229, 163), (229, 164), (229, 165), (229, 166), (229, 167), (229, 168), (229, 169), (229, 170), (229, 171), (229, 172), (229, 173), (229, 174), (229, 176), (230, 130), (230, 132), (230, 133), (230, 134), (230, 135), (230, 136), (230, 139), (230, 155), (230, 157), (230, 158), (230, 159), (230, 160), (230, 161), (230, 162), (230, 163), (230, 164), (230, 168), (230, 169), (230, 170), (230, 171), (230, 172), (230, 173), (230, 174), (230, 176), (231, 132), (231, 133), (231, 134), (231, 135), (231, 136), (231, 137), (231, 140), (231, 141), (231, 143), (231, 154), (231, 156), (231, 157), (231, 158), (231, 159), (231, 160), (231, 165), (231, 166), (231, 167), (231, 169), (231, 170), (231, 171), (231, 172), (231, 173), (231, 174), (231, 176), (232, 131), (232, 133), (232, 134), (232, 135), (232, 136), (232, 137), (232, 138), (232, 139), (232, 143), (232, 152), (232, 155), (232, 156), (232, 157), (232, 161), (232, 162), (232, 163), (232, 164), (232, 168), (232, 170), (232, 171), (232, 172), (232, 173), (232, 174), (232, 176), (233, 132), (233, 134), (233, 135), (233, 136), (233, 137), (233, 138), (233, 139), (233, 140), (233, 141), (233, 142), (233, 145), (233, 148), (233, 149), (233, 150), (233, 154), (233, 158), (233, 159), (233, 169), (233, 171), (233, 172), (233, 173), (233, 174), (233, 176), (234, 132), (234, 134), (234, 135), (234, 136), (234, 137), (234, 138), (234, 139), (234, 140), (234, 141), (234, 142), (234, 143), (234, 146), (234, 147), (234, 151), (234, 152), (234, 156), (234, 170), (234, 172), (234, 173), (234, 174), (234, 176), (235, 133), (235, 135), (235, 136), (235, 137), (235, 138), (235, 139), (235, 140), (235, 141), (235, 142), (235, 143), (235, 144), (235, 145), (235, 147), (235, 148), (235, 149), (235, 150), (235, 151), (235, 154), (235, 171), (235, 173), (235, 174), (235, 176), (236, 134), (236, 136), (236, 137), (236, 138), (236, 139), (236, 140), (236, 141), (236, 142), (236, 143), (236, 144), (236, 145), (236, 146), (236, 147), (236, 148), (236, 149), (236, 150), (236, 152), (236, 171), (236, 173), (236, 174), (236, 176), (237, 134), (237, 136), (237, 137), (237, 138), (237, 139), (237, 140), (237, 141), (237, 142), (237, 143), (237, 144), (237, 145), (237, 146), (237, 147), (237, 148), (237, 151), (237, 171), (237, 173), (237, 174), (237, 176), (238, 135), (238, 137), (238, 138), (238, 139), (238, 140), (238, 141), (238, 142), (238, 143), (238, 144), (238, 145), (238, 146), (238, 147), (238, 150), (238, 172), (238, 174), (238, 176), (239, 136), (239, 138), (239, 139), (239, 140), (239, 141), (239, 142), (239, 143), (239, 144), (239, 145), (239, 146), (239, 172), (239, 174), (239, 175), (239, 176), (240, 136), (240, 138), (240, 139), (240, 140), (240, 141), (240, 142), (240, 143), (240, 144), (240, 145), (240, 146), (240, 148), (240, 172), (240, 174), (240, 175), (240, 176), (241, 137), (241, 139), (241, 140), (241, 141), (241, 142), (241, 143), (241, 144), (241, 145), (241, 147), (241, 172), (241, 175), (242, 137), (242, 139), (242, 140), (242, 141), (242, 142), (242, 143), (242, 144), (242, 146), (242, 172), (242, 175), (243, 138), (243, 140), (243, 141), (243, 142), (243, 143), (243, 144), (243, 145), (243, 146), (243, 172), (243, 175), (244, 138), (244, 140), (244, 141), (244, 142), (244, 143), (244, 145), (244, 172), (244, 175), (245, 137), (245, 138), (245, 139), (245, 140), (245, 141), (245, 142), (245, 143), (245, 145), (245, 172), (245, 175), (246, 137), (246, 139), (246, 140), (246, 141), (246, 142), (246, 144), (246, 172), (246, 175), (247, 137), (247, 139), (247, 140), (247, 141), (247, 142), (247, 144), (247, 172), (247, 175), (248, 137), (248, 139), (248, 140), (248, 141), (248, 142), (248, 144), (248, 171), (248, 173), (248, 175), (249, 137), (249, 139), (249, 140), (249, 141), (249, 143), (249, 171), (249, 173), (249, 175), (250, 137), (250, 139), (250, 140), (250, 141), (250, 143), (250, 170), (250, 172), (250, 174), (251, 137), (251, 139), (251, 140), (251, 141), (251, 142), (251, 170), (251, 172), (251, 174), (252, 137), (252, 139), (252, 140), (252, 142), (252, 170), (252, 172), (252, 174), (253, 137), (253, 139), (253, 169), (253, 171), (253, 172), (253, 174), (254, 137), (254, 141), (254, 169), (254, 171), (254, 172), (254, 173), (254, 174), (255, 138), (255, 140), (255, 169), (255, 171), (255, 173), (256, 168), (256, 170), (256, 171), (256, 173), (257, 168), (257, 170), (257, 172), (258, 167), (258, 169), (258, 170), (258, 172), (259, 167), (259, 169), (259, 170), (259, 172), (260, 167), (260, 169), (260, 171), (261, 166), (261, 168), (261, 170), (262, 166), (262, 168), (262, 170), (263, 166), (263, 169), (264, 165), (264, 168), (265, 165), (265, 168), (266, 164), (266, 167), (267, 164), (267, 166), (268, 163), (268, 166), (269, 163), (269, 165), (270, 162), (270, 165), (271, 161), (271, 164), (272, 161), (272, 164), (273, 160), (273, 162), (273, 164), (274, 159), (274, 161), (274, 164), (275, 158), (275, 160), (275, 163), (276, 157), (276, 159), (276, 162), (277, 156), (277, 158), (277, 161), (278, 156), (278, 160), (279, 155), (279, 159), (280, 154), (281, 153), (281, 156), (282, 153), (282, 155), (283, 153)) coordinates_00_ff92 = ((118, 136), (118, 138), (118, 139), (118, 140), (119, 136), (119, 141), (119, 142), (119, 143), (119, 144), (119, 145), (119, 146), (119, 147), (119, 148), (119, 149), (119, 150), (119, 152), (120, 137), (120, 140), (120, 149), (121, 139), (121, 141), (121, 142), (121, 143), (121, 144), (121, 145), (121, 146), (121, 147), (121, 148), (121, 149), (121, 150), (121, 151), (121, 153), (122, 140), (122, 142), (122, 143), (122, 144), (122, 145), (122, 146), (122, 147), (122, 148), (122, 149), (122, 150), (122, 151), (122, 152), (122, 154), (123, 141), (123, 143), (123, 144), (123, 145), (123, 146), (123, 147), (123, 148), (123, 149), (123, 150), (123, 151), (123, 152), (123, 153), (123, 155), (124, 142), (124, 144), (124, 145), (124, 146), (124, 147), (124, 148), (124, 149), (124, 150), (124, 151), (124, 152), (124, 153), (124, 154), (124, 156), (125, 143), (125, 145), (125, 146), (125, 147), (125, 148), (125, 149), (125, 150), (125, 151), (125, 152), (125, 153), (125, 154), (125, 156), (126, 144), (126, 146), (126, 147), (126, 148), (126, 149), (126, 150), (126, 151), (126, 152), (126, 153), (126, 154), (126, 155), (126, 157), (127, 145), (127, 147), (127, 148), (127, 149), (127, 150), (127, 151), (127, 152), (127, 153), (127, 154), (127, 155), (127, 156), (127, 158), (128, 146), (128, 148), (128, 149), (128, 150), (128, 151), (128, 152), (128, 153), (128, 154), (128, 155), (128, 156), (128, 157), (128, 159), (129, 147), (129, 149), (129, 150), (129, 151), (129, 152), (129, 153), (129, 154), (129, 155), (129, 156), (129, 157), (129, 158), (129, 160), (130, 148), (130, 150), (130, 151), (130, 152), (130, 153), (130, 154), (130, 155), (130, 156), (130, 157), (130, 158), (130, 160), (131, 149), (131, 151), (131, 152), (131, 153), (131, 154), (131, 155), (131, 156), (131, 157), (131, 158), (131, 159), (131, 161), (132, 149), (132, 152), (132, 153), (132, 154), (132, 155), (132, 156), (132, 157), (132, 158), (132, 159), (132, 161), (133, 150), (133, 152), (133, 153), (133, 154), (133, 155), (133, 156), (133, 157), (133, 158), (133, 159), (133, 160), (133, 162), (134, 151), (134, 153), (134, 154), (134, 155), (134, 156), (134, 157), (134, 158), (134, 159), (134, 160), (134, 162), (135, 152), (135, 154), (135, 155), (135, 156), (135, 157), (135, 158), (135, 159), (135, 160), (135, 161), (135, 163), (136, 153), (136, 155), (136, 156), (136, 157), (136, 158), (136, 159), (136, 160), (136, 161), (136, 163), (137, 153), (137, 155), (137, 156), (137, 157), (137, 158), (137, 159), (137, 160), (137, 161), (137, 162), (137, 164), (138, 154), (138, 156), (138, 157), (138, 158), (138, 159), (138, 160), (138, 161), (138, 162), (138, 164), (139, 155), (139, 157), (139, 158), (139, 159), (139, 160), (139, 161), (139, 162), (139, 164), (140, 155), (140, 157), (140, 158), (140, 159), (140, 160), (140, 161), (140, 162), (140, 163), (140, 165), (141, 156), (141, 158), (141, 159), (141, 160), (141, 161), (141, 162), (141, 163), (141, 165), (142, 156), (142, 158), (142, 159), (142, 160), (142, 161), (142, 162), (142, 163), (142, 164), (142, 166), (143, 156), (143, 158), (143, 159), (143, 160), (143, 161), (143, 162), (143, 163), (143, 164), (143, 166), (144, 156), (144, 158), (144, 159), (144, 160), (144, 161), (144, 162), (144, 163), (144, 164), (144, 166), (145, 157), (145, 159), (145, 160), (145, 161), (145, 162), (145, 163), (145, 164), (145, 165), (145, 167), (146, 157), (146, 159), (146, 160), (146, 161), (146, 162), (146, 163), (146, 164), (146, 165), (146, 167), (147, 158), (147, 160), (147, 161), (147, 162), (147, 163), (147, 164), (147, 165), (147, 167), (148, 159), (148, 161), (148, 162), (148, 163), (148, 164), (148, 165), (148, 166), (148, 168), (149, 159), (149, 161), (149, 162), (149, 163), (149, 164), (149, 165), (149, 166), (149, 168), (150, 160), (150, 162), (150, 163), (150, 164), (150, 165), (150, 166), (150, 167), (150, 169), (151, 161), (151, 163), (151, 164), (151, 165), (151, 166), (151, 167), (151, 169), (152, 161), (152, 163), (152, 164), (152, 165), (152, 166), (152, 167), (152, 168), (152, 170), (153, 162), (153, 164), (153, 165), (153, 166), (153, 167), (153, 168), (153, 170), (154, 162), (154, 164), (154, 165), (154, 166), (154, 167), (154, 168), (154, 170), (155, 163), (155, 165), (155, 166), (155, 167), (155, 168), (155, 170), (156, 163), (156, 165), (156, 166), (156, 167), (156, 168), (156, 170), (157, 164), (157, 166), (157, 167), (157, 168), (157, 170), (158, 165), (158, 167), (158, 168), (158, 170), (159, 165), (159, 167), (159, 168), (159, 170), (160, 166), (160, 168), (160, 170), (161, 166), (161, 169), (162, 167), (162, 169), (163, 167), (163, 169), (164, 167), (164, 168), (165, 168), (234, 168), (235, 167), (236, 167), (236, 169), (237, 167), (237, 169), (238, 166), (238, 169), (239, 166), (239, 168), (239, 170), (240, 165), (240, 167), (240, 168), (240, 170), (241, 165), (241, 167), (241, 168), (241, 170), (242, 163), (242, 166), (242, 167), (242, 168), (242, 170), (243, 163), (243, 165), (243, 166), (243, 167), (243, 168), (243, 170), (244, 162), (244, 164), (244, 165), (244, 166), (244, 167), (244, 168), (244, 170), (245, 162), (245, 164), (245, 165), (245, 166), (245, 167), (245, 168), (245, 170), (246, 161), (246, 163), (246, 164), (246, 165), (246, 166), (246, 167), (246, 168), (246, 170), (247, 161), (247, 163), (247, 164), (247, 165), (247, 166), (247, 167), (247, 168), (247, 170), (248, 160), (248, 162), (248, 163), (248, 164), (248, 165), (248, 166), (248, 167), (248, 169), (249, 160), (249, 162), (249, 163), (249, 164), (249, 165), (249, 166), (249, 167), (249, 169), (250, 159), (250, 161), (250, 162), (250, 163), (250, 164), (250, 165), (250, 166), (250, 168), (251, 159), (251, 161), (251, 162), (251, 163), (251, 164), (251, 165), (251, 166), (251, 168), (252, 158), (252, 160), (252, 161), (252, 162), (252, 163), (252, 164), (252, 165), (252, 167), (253, 158), (253, 160), (253, 161), (253, 162), (253, 163), (253, 164), (253, 165), (253, 167), (254, 157), (254, 159), (254, 160), (254, 161), (254, 162), (254, 163), (254, 164), (254, 165), (254, 167), (255, 157), (255, 159), (255, 160), (255, 161), (255, 162), (255, 163), (255, 164), (255, 166), (256, 156), (256, 158), (256, 159), (256, 160), (256, 161), (256, 162), (256, 163), (256, 164), (256, 166), (257, 156), (257, 158), (257, 159), (257, 160), (257, 161), (257, 162), (257, 163), (257, 164), (257, 166), (258, 156), (258, 158), (258, 159), (258, 160), (258, 161), (258, 162), (258, 163), (258, 165), (259, 155), (259, 157), (259, 158), (259, 159), (259, 160), (259, 161), (259, 162), (259, 163), (259, 165), (260, 155), (260, 157), (260, 158), (260, 159), (260, 160), (260, 161), (260, 162), (260, 164), (261, 154), (261, 156), (261, 157), (261, 158), (261, 159), (261, 160), (261, 161), (261, 162), (261, 164), (262, 153), (262, 155), (262, 156), (262, 157), (262, 158), (262, 159), (262, 160), (262, 161), (262, 162), (262, 164), (263, 153), (263, 155), (263, 156), (263, 157), (263, 158), (263, 159), (263, 160), (263, 161), (263, 163), (264, 152), (264, 154), (264, 155), (264, 156), (264, 157), (264, 158), (264, 159), (264, 160), (264, 161), (264, 163), (265, 151), (265, 153), (265, 154), (265, 155), (265, 156), (265, 157), (265, 158), (265, 159), (265, 160), (265, 162), (266, 150), (266, 152), (266, 153), (266, 154), (266, 155), (266, 156), (266, 157), (266, 158), (266, 159), (266, 160), (266, 162), (267, 149), (267, 151), (267, 152), (267, 153), (267, 154), (267, 155), (267, 156), (267, 157), (267, 158), (267, 159), (267, 161), (268, 149), (268, 151), (268, 152), (268, 153), (268, 154), (268, 155), (268, 156), (268, 157), (268, 158), (268, 159), (268, 161), (269, 148), (269, 150), (269, 151), (269, 152), (269, 153), (269, 154), (269, 155), (269, 156), (269, 157), (269, 158), (269, 160), (270, 147), (270, 149), (270, 150), (270, 151), (270, 152), (270, 153), (270, 154), (270, 155), (270, 156), (270, 157), (270, 158), (270, 160), (271, 146), (271, 148), (271, 149), (271, 150), (271, 151), (271, 152), (271, 153), (271, 154), (271, 155), (271, 156), (271, 157), (271, 159), (272, 145), (272, 147), (272, 148), (272, 149), (272, 150), (272, 151), (272, 152), (272, 153), (272, 154), (272, 155), (272, 156), (272, 158), (273, 144), (273, 146), (273, 147), (273, 148), (273, 149), (273, 150), (273, 151), (273, 152), (273, 153), (273, 154), (273, 155), (273, 157), (274, 143), (274, 145), (274, 146), (274, 147), (274, 148), (274, 149), (274, 150), (274, 151), (274, 152), (274, 153), (274, 154), (274, 156), (275, 142), (275, 144), (275, 145), (275, 146), (275, 147), (275, 148), (275, 149), (275, 150), (275, 151), (275, 152), (275, 153), (275, 154), (275, 156), (276, 141), (276, 143), (276, 144), (276, 145), (276, 146), (276, 147), (276, 148), (276, 149), (276, 150), (276, 151), (276, 152), (276, 153), (276, 155), (277, 140), (277, 142), (277, 143), (277, 144), (277, 145), (277, 146), (277, 147), (277, 148), (277, 149), (277, 150), (277, 151), (277, 152), (277, 154), (278, 138), (278, 141), (278, 142), (278, 143), (278, 144), (278, 145), (278, 146), (278, 147), (278, 151), (278, 153), (279, 137), (279, 140), (279, 148), (279, 149), (279, 150), (279, 152), (280, 136), (280, 141), (280, 142), (280, 143), (280, 144), (280, 145), (280, 146), (280, 147), (280, 152), (281, 136), (281, 138), (281, 139), (281, 140)) coordinates_ebff00 = ((125, 166), (125, 168), (125, 169), (125, 170), (125, 171), (125, 172), (125, 173), (125, 174), (125, 175), (125, 176), (125, 177), (125, 179), (126, 166), (126, 179), (127, 166), (127, 168), (127, 169), (127, 170), (127, 171), (127, 172), (127, 173), (127, 174), (127, 175), (127, 176), (127, 177), (127, 179), (128, 167), (128, 169), (128, 170), (128, 171), (128, 172), (128, 173), (128, 174), (128, 175), (128, 176), (128, 177), (128, 178), (128, 180), (129, 167), (129, 169), (129, 170), (129, 171), (129, 172), (129, 173), (129, 174), (129, 175), (129, 176), (129, 177), (129, 178), (129, 180), (130, 168), (130, 170), (130, 171), (130, 172), (130, 173), (130, 174), (130, 175), (130, 176), (130, 177), (130, 178), (130, 180), (131, 168), (131, 170), (131, 171), (131, 172), (131, 173), (131, 174), (131, 175), (131, 176), (131, 177), (131, 178), (131, 180), (132, 169), (132, 171), (132, 172), (132, 173), (132, 174), (132, 175), (132, 176), (132, 177), (132, 178), (132, 179), (132, 181), (133, 169), (133, 171), (133, 172), (133, 173), (133, 174), (133, 175), (133, 176), (133, 177), (133, 178), (133, 179), (133, 181), (134, 170), (134, 172), (134, 173), (134, 174), (134, 175), (134, 176), (134, 177), (134, 178), (134, 179), (134, 180), (134, 182), (135, 171), (135, 173), (135, 174), (135, 175), (135, 176), (135, 177), (135, 178), (135, 179), (135, 180), (135, 182), (136, 171), (136, 173), (136, 174), (136, 175), (136, 176), (136, 177), (136, 178), (136, 179), (136, 180), (136, 182), (137, 172), (137, 174), (137, 175), (137, 176), (137, 177), (137, 178), (137, 179), (137, 180), (137, 181), (137, 183), (138, 173), (138, 175), (138, 176), (138, 177), (138, 178), (138, 179), (138, 180), (138, 181), (138, 183), (139, 173), (139, 175), (139, 176), (139, 177), (139, 178), (139, 179), (139, 180), (139, 181), (139, 182), (139, 184), (140, 174), (140, 176), (140, 177), (140, 178), (140, 179), (140, 180), (140, 181), (140, 182), (140, 184), (141, 174), (141, 176), (141, 177), (141, 178), (141, 179), (141, 180), (141, 181), (141, 182), (141, 184), (142, 175), (142, 177), (142, 178), (142, 179), (142, 180), (142, 181), (142, 182), (142, 183), (142, 185), (143, 175), (143, 177), (143, 178), (143, 179), (143, 180), (143, 181), (143, 182), (143, 183), (143, 185), (144, 176), (144, 178), (144, 179), (144, 180), (144, 181), (144, 182), (144, 183), (144, 184), (144, 186), (145, 176), (145, 178), (145, 179), (145, 180), (145, 181), (145, 182), (145, 183), (145, 184), (145, 186), (146, 176), (146, 178), (146, 179), (146, 180), (146, 181), (146, 182), (146, 183), (146, 184), (146, 186), (147, 176), (147, 178), (147, 179), (147, 180), (147, 181), (147, 182), (147, 183), (147, 184), (147, 185), (147, 186), (147, 187), (148, 177), (148, 179), (148, 180), (148, 181), (148, 182), (148, 183), (148, 184), (148, 185), (148, 187), (149, 177), (149, 179), (149, 180), (149, 181), (149, 182), (149, 183), (149, 184), (149, 185), (149, 187), (150, 177), (150, 179), (150, 180), (150, 181), (150, 182), (150, 183), (150, 184), (150, 185), (150, 187), (151, 177), (151, 179), (151, 180), (151, 181), (151, 182), (151, 183), (151, 184), (151, 185), (151, 186), (151, 188), (152, 177), (152, 179), (152, 180), (152, 181), (152, 182), (152, 183), (152, 184), (152, 185), (152, 186), (152, 188), (153, 177), (153, 179), (153, 180), (153, 181), (153, 182), (153, 183), (153, 184), (153, 185), (153, 186), (153, 188), (154, 177), (154, 179), (154, 180), (154, 181), (154, 182), (154, 183), (154, 184), (154, 185), (154, 186), (154, 188), (155, 178), (155, 180), (155, 181), (155, 182), (155, 183), (155, 184), (155, 185), (155, 186), (155, 187), (155, 188), (155, 189), (156, 178), (156, 180), (156, 181), (156, 182), (156, 183), (156, 184), (156, 185), (156, 186), (156, 187), (156, 189), (157, 178), (157, 180), (157, 181), (157, 182), (157, 183), (157, 184), (157, 185), (157, 186), (157, 187), (157, 189), (158, 178), (158, 180), (158, 181), (158, 182), (158, 183), (158, 184), (158, 185), (158, 186), (158, 187), (158, 189), (159, 178), (159, 180), (159, 181), (159, 182), (159, 183), (159, 184), (159, 185), (159, 186), (159, 187), (159, 189), (160, 178), (160, 180), (160, 181), (160, 182), (160, 183), (160, 184), (160, 185), (160, 186), (160, 187), (160, 189), (161, 178), (161, 180), (161, 181), (161, 182), (161, 183), (161, 184), (161, 185), (161, 186), (161, 187), (161, 189), (162, 178), (162, 180), (162, 181), (162, 182), (162, 183), (162, 184), (162, 185), (162, 186), (162, 187), (162, 189), (163, 178), (163, 180), (163, 181), (163, 182), (163, 183), (163, 184), (163, 185), (163, 186), (163, 187), (163, 188), (163, 190), (164, 178), (164, 180), (164, 181), (164, 182), (164, 183), (164, 184), (164, 185), (164, 186), (164, 187), (164, 188), (164, 190), (165, 178), (165, 180), (165, 181), (165, 182), (165, 183), (165, 184), (165, 185), (165, 186), (165, 187), (165, 188), (165, 190), (166, 178), (166, 180), (166, 181), (166, 182), (166, 183), (166, 184), (166, 185), (166, 186), (166, 187), (166, 188), (166, 190), (167, 178), (167, 180), (167, 181), (167, 182), (167, 183), (167, 184), (167, 185), (167, 186), (167, 187), (167, 188), (167, 190), (168, 178), (168, 180), (168, 181), (168, 182), (168, 183), (168, 184), (168, 185), (168, 186), (168, 187), (168, 189), (169, 178), (169, 180), (169, 181), (169, 182), (169, 183), (169, 184), (169, 185), (169, 186), (169, 187), (169, 189), (170, 179), (170, 181), (170, 182), (170, 183), (170, 184), (170, 185), (170, 186), (170, 187), (170, 189), (171, 179), (171, 181), (171, 182), (171, 183), (171, 184), (171, 185), (171, 186), (171, 187), (171, 189), (172, 179), (172, 181), (172, 182), (172, 183), (172, 184), (172, 185), (172, 186), (172, 187), (172, 189), (173, 180), (173, 182), (173, 183), (173, 184), (173, 185), (173, 186), (173, 187), (173, 189), (174, 181), (174, 183), (174, 184), (174, 185), (174, 186), (174, 187), (174, 189), (175, 181), (175, 184), (175, 185), (175, 186), (175, 187), (175, 189), (176, 182), (176, 183), (176, 189), (177, 184), (177, 186), (177, 187), (177, 189), (222, 184), (222, 186), (222, 187), (222, 189), (223, 182), (223, 189), (224, 181), (224, 184), (224, 185), (224, 186), (224, 187), (224, 189), (225, 183), (225, 184), (225, 185), (225, 186), (225, 187), (225, 189), (226, 180), (226, 182), (226, 183), (226, 184), (226, 185), (226, 186), (226, 187), (226, 189), (227, 179), (227, 181), (227, 182), (227, 183), (227, 184), (227, 185), (227, 186), (227, 187), (227, 189), (228, 179), (228, 181), (228, 182), (228, 183), (228, 184), (228, 185), (228, 186), (228, 187), (228, 189), (229, 179), (229, 181), (229, 182), (229, 183), (229, 184), (229, 185), (229, 186), (229, 187), (229, 189), (230, 178), (230, 180), (230, 181), (230, 182), (230, 183), (230, 184), (230, 185), (230, 186), (230, 187), (230, 189), (231, 178), (231, 180), (231, 181), (231, 182), (231, 183), (231, 184), (231, 185), (231, 186), (231, 187), (231, 189), (232, 178), (232, 180), (232, 181), (232, 182), (232, 183), (232, 184), (232, 185), (232, 186), (232, 187), (232, 188), (232, 190), (233, 178), (233, 180), (233, 181), (233, 182), (233, 183), (233, 184), (233, 185), (233, 186), (233, 187), (233, 188), (233, 190), (234, 178), (234, 180), (234, 181), (234, 182), (234, 183), (234, 184), (234, 185), (234, 186), (234, 187), (234, 188), (234, 190), (235, 178), (235, 180), (235, 181), (235, 182), (235, 183), (235, 184), (235, 185), (235, 186), (235, 187), (235, 188), (235, 190), (236, 178), (236, 180), (236, 181), (236, 182), (236, 183), (236, 184), (236, 185), (236, 186), (236, 187), (236, 188), (236, 190), (237, 178), (237, 180), (237, 181), (237, 182), (237, 183), (237, 184), (237, 185), (237, 186), (237, 187), (237, 189), (238, 178), (238, 180), (238, 181), (238, 182), (238, 183), (238, 184), (238, 185), (238, 186), (238, 187), (238, 189), (239, 178), (239, 180), (239, 181), (239, 182), (239, 183), (239, 184), (239, 185), (239, 186), (239, 187), (239, 189), (240, 178), (240, 180), (240, 181), (240, 182), (240, 183), (240, 184), (240, 185), (240, 186), (240, 187), (240, 189), (241, 178), (241, 180), (241, 181), (241, 182), (241, 183), (241, 184), (241, 185), (241, 186), (241, 187), (241, 189), (242, 178), (242, 180), (242, 181), (242, 182), (242, 183), (242, 184), (242, 185), (242, 186), (242, 187), (242, 189), (243, 178), (243, 180), (243, 181), (243, 182), (243, 183), (243, 184), (243, 185), (243, 186), (243, 187), (243, 189), (244, 178), (244, 180), (244, 181), (244, 182), (244, 183), (244, 184), (244, 185), (244, 186), (244, 188), (245, 177), (245, 179), (245, 180), (245, 181), (245, 182), (245, 183), (245, 184), (245, 185), (245, 186), (245, 188), (246, 177), (246, 179), (246, 180), (246, 181), (246, 182), (246, 183), (246, 184), (246, 185), (246, 186), (246, 188), (247, 177), (247, 179), (247, 180), (247, 181), (247, 182), (247, 183), (247, 184), (247, 185), (247, 186), (247, 188), (248, 177), (248, 179), (248, 180), (248, 181), (248, 182), (248, 183), (248, 184), (248, 185), (248, 186), (248, 188), (249, 177), (249, 179), (249, 180), (249, 181), (249, 182), (249, 183), (249, 184), (249, 185), (249, 187), (250, 177), (250, 179), (250, 180), (250, 181), (250, 182), (250, 183), (250, 184), (250, 185), (250, 187), (251, 177), (251, 179), (251, 180), (251, 181), (251, 182), (251, 183), (251, 184), (251, 185), (251, 187), (252, 176), (252, 178), (252, 179), (252, 180), (252, 181), (252, 182), (252, 183), (252, 184), (252, 186), (253, 176), (253, 178), (253, 179), (253, 180), (253, 181), (253, 182), (253, 183), (253, 184), (253, 186), (254, 176), (254, 178), (254, 179), (254, 180), (254, 181), (254, 182), (254, 183), (254, 184), (254, 186), (255, 175), (255, 176), (255, 177), (255, 178), (255, 179), (255, 180), (255, 181), (255, 182), (255, 183), (255, 184), (255, 185), (255, 186), (256, 175), (256, 177), (256, 178), (256, 179), (256, 180), (256, 181), (256, 182), (256, 183), (256, 185), (257, 175), (257, 177), (257, 178), (257, 179), (257, 180), (257, 181), (257, 182), (257, 183), (257, 185), (258, 174), (258, 176), (258, 177), (258, 178), (258, 179), (258, 180), (258, 181), (258, 182), (258, 184), (259, 174), (259, 176), (259, 177), (259, 178), (259, 179), (259, 180), (259, 181), (259, 182), (259, 184), (260, 173), (260, 175), (260, 176), (260, 177), (260, 178), (260, 179), (260, 180), (260, 181), (260, 182), (260, 184), (261, 173), (261, 175), (261, 176), (261, 177), (261, 178), (261, 179), (261, 180), (261, 181), (261, 183), (262, 172), (262, 174), (262, 175), (262, 176), (262, 177), (262, 178), (262, 179), (262, 180), (262, 181), (262, 183), (263, 171), (263, 173), (263, 174), (263, 175), (263, 176), (263, 177), (263, 178), (263, 179), (263, 180), (263, 182), (264, 171), (264, 173), (264, 174), (264, 175), (264, 176), (264, 177), (264, 178), (264, 179), (264, 180), (264, 182), (265, 170), (265, 172), (265, 173), (265, 174), (265, 175), (265, 176), (265, 177), (265, 178), (265, 179), (265, 180), (265, 181), (266, 169), (266, 171), (266, 172), (266, 173), (266, 174), (266, 175), (266, 176), (266, 177), (266, 178), (266, 179), (266, 181), (267, 169), (267, 171), (267, 172), (267, 173), (267, 174), (267, 175), (267, 176), (267, 177), (267, 178), (267, 179), (267, 181), (268, 168), (268, 170), (268, 171), (268, 172), (268, 173), (268, 174), (268, 175), (268, 176), (268, 177), (268, 178), (268, 180), (269, 168), (269, 169), (269, 170), (269, 171), (269, 172), (269, 173), (269, 174), (269, 175), (269, 176), (269, 177), (269, 178), (269, 180), (270, 167), (270, 169), (270, 170), (270, 171), (270, 172), (270, 173), (270, 174), (270, 175), (270, 176), (270, 177), (270, 178), (270, 180), (271, 167), (271, 169), (271, 170), (271, 171), (271, 172), (271, 173), (271, 174), (271, 175), (271, 176), (271, 177), (271, 178), (271, 180), (272, 166), (272, 168), (272, 169), (272, 170), (272, 171), (272, 172), (272, 173), (272, 174), (272, 175), (272, 176), (272, 177), (272, 179), (273, 166), (273, 168), (273, 179), (274, 169), (274, 170), (274, 171), (274, 172), (274, 173), (274, 174), (274, 175), (274, 176), (274, 177), (274, 179)) coordinates_7_f0035 = ((186, 184), (186, 186), (186, 187), (186, 188), (186, 189), (186, 190), (186, 191), (186, 192), (186, 193), (186, 194), (186, 195), (187, 183), (187, 196), (187, 197), (187, 198), (187, 199), (187, 200), (187, 201), (187, 202), (187, 203), (187, 204), (187, 205), (187, 206), (187, 208), (188, 182), (188, 184), (188, 185), (188, 186), (188, 187), (188, 188), (188, 189), (188, 190), (188, 191), (188, 192), (188, 193), (188, 194), (188, 195), (188, 206), (188, 208), (189, 184), (189, 185), (189, 186), (189, 187), (189, 188), (189, 189), (189, 190), (189, 191), (189, 192), (189, 193), (189, 194), (189, 195), (189, 196), (189, 197), (189, 198), (189, 199), (189, 200), (189, 201), (189, 202), (189, 203), (189, 204), (189, 205), (189, 206), (189, 210), (190, 183), (190, 184), (190, 185), (190, 186), (190, 187), (190, 188), (190, 189), (190, 190), (190, 191), (190, 192), (190, 193), (190, 194), (190, 195), (190, 196), (190, 197), (190, 198), (190, 199), (190, 200), (190, 201), (190, 202), (190, 203), (190, 204), (190, 205), (190, 206), (190, 207), (190, 208), (190, 211), (190, 212), (191, 179), (191, 182), (191, 183), (191, 184), (191, 185), (191, 186), (191, 187), (191, 188), (191, 189), (191, 190), (191, 191), (191, 192), (191, 193), (191, 194), (191, 195), (191, 196), (191, 197), (191, 198), (191, 199), (191, 200), (191, 201), (191, 202), (191, 203), (191, 204), (191, 205), (191, 206), (191, 207), (191, 208), (191, 209), (191, 210), (191, 213), (191, 214), (191, 215), (191, 216), (192, 181), (192, 182), (192, 183), (192, 184), (192, 185), (192, 186), (192, 187), (192, 188), (192, 189), (192, 190), (192, 191), (192, 192), (192, 193), (192, 194), (192, 195), (192, 196), (192, 197), (192, 198), (192, 199), (192, 200), (192, 201), (192, 202), (192, 203), (192, 204), (192, 205), (192, 206), (192, 207), (192, 208), (192, 209), (192, 210), (192, 211), (192, 212), (192, 217), (192, 218), (192, 219), (192, 220), (192, 221), (192, 223), (193, 178), (193, 180), (193, 181), (193, 182), (193, 183), (193, 184), (193, 185), (193, 186), (193, 187), (193, 188), (193, 189), (193, 190), (193, 191), (193, 192), (193, 193), (193, 194), (193, 195), (193, 196), (193, 197), (193, 198), (193, 199), (193, 200), (193, 201), (193, 202), (193, 203), (193, 204), (193, 205), (193, 206), (193, 207), (193, 208), (193, 209), (193, 210), (193, 211), (193, 212), (193, 213), (193, 214), (193, 215), (193, 216), (193, 222), (194, 177), (194, 180), (194, 181), (194, 182), (194, 183), (194, 184), (194, 185), (194, 186), (194, 187), (194, 188), (194, 189), (194, 190), (194, 191), (194, 192), (194, 193), (194, 194), (194, 195), (194, 196), (194, 197), (194, 198), (194, 199), (194, 200), (194, 201), (194, 202), (194, 203), (194, 204), (194, 205), (194, 206), (194, 207), (194, 208), (194, 209), (194, 210), (194, 211), (194, 212), (194, 213), (194, 214), (194, 215), (194, 216), (194, 217), (194, 218), (194, 219), (194, 220), (194, 222), (195, 177), (195, 182), (195, 183), (195, 184), (195, 185), (195, 186), (195, 187), (195, 188), (195, 189), (195, 190), (195, 222), (196, 180), (196, 181), (196, 191), (196, 192), (196, 193), (196, 194), (196, 195), (196, 196), (196, 197), (196, 198), (196, 199), (196, 200), (196, 201), (196, 202), (196, 203), (196, 204), (196, 205), (196, 206), (196, 207), (196, 208), (196, 209), (196, 210), (196, 211), (196, 212), (196, 213), (196, 214), (196, 215), (196, 216), (196, 217), (196, 218), (196, 219), (196, 221), (197, 182), (197, 184), (197, 185), (197, 186), (197, 187), (197, 188), (197, 189), (197, 190), (202, 182), (202, 184), (202, 185), (202, 186), (202, 187), (202, 188), (202, 189), (202, 190), (203, 180), (203, 191), (203, 192), (203, 193), (203, 194), (203, 195), (203, 196), (203, 197), (203, 198), (203, 199), (203, 200), (203, 201), (203, 202), (203, 203), (203, 204), (203, 205), (203, 206), (203, 207), (203, 208), (203, 209), (203, 210), (203, 211), (203, 212), (203, 213), (203, 214), (203, 215), (203, 216), (203, 217), (203, 218), (203, 219), (203, 221), (204, 177), (204, 182), (204, 183), (204, 184), (204, 185), (204, 186), (204, 187), (204, 188), (204, 189), (204, 190), (204, 222), (205, 177), (205, 179), (205, 180), (205, 181), (205, 182), (205, 183), (205, 184), (205, 185), (205, 186), (205, 187), (205, 188), (205, 189), (205, 190), (205, 191), (205, 192), (205, 193), (205, 194), (205, 195), (205, 196), (205, 197), (205, 198), (205, 199), (205, 200), (205, 201), (205, 202), (205, 203), (205, 204), (205, 205), (205, 206), (205, 207), (205, 208), (205, 209), (205, 210), (205, 211), (205, 212), (205, 213), (205, 214), (205, 215), (205, 216), (205, 217), (205, 218), (205, 219), (205, 220), (205, 222), (206, 178), (206, 180), (206, 181), (206, 182), (206, 183), (206, 184), (206, 185), (206, 186), (206, 187), (206, 188), (206, 189), (206, 190), (206, 191), (206, 192), (206, 193), (206, 194), (206, 195), (206, 196), (206, 197), (206, 198), (206, 199), (206, 200), (206, 201), (206, 202), (206, 203), (206, 204), (206, 205), (206, 206), (206, 207), (206, 208), (206, 209), (206, 210), (206, 211), (206, 212), (206, 213), (206, 214), (206, 215), (206, 216), (206, 222), (207, 179), (207, 181), (207, 182), (207, 183), (207, 184), (207, 185), (207, 186), (207, 187), (207, 188), (207, 189), (207, 190), (207, 191), (207, 192), (207, 193), (207, 194), (207, 195), (207, 196), (207, 197), (207, 198), (207, 199), (207, 200), (207, 201), (207, 202), (207, 203), (207, 204), (207, 205), (207, 206), (207, 207), (207, 208), (207, 209), (207, 210), (207, 211), (207, 212), (207, 216), (207, 217), (207, 218), (207, 219), (207, 220), (207, 221), (208, 182), (208, 183), (208, 184), (208, 185), (208, 186), (208, 187), (208, 188), (208, 189), (208, 190), (208, 191), (208, 192), (208, 193), (208, 194), (208, 195), (208, 196), (208, 197), (208, 198), (208, 199), (208, 200), (208, 201), (208, 202), (208, 203), (208, 204), (208, 205), (208, 206), (208, 207), (208, 208), (208, 209), (208, 210), (208, 213), (208, 214), (208, 215), (209, 181), (209, 183), (209, 184), (209, 185), (209, 186), (209, 187), (209, 188), (209, 189), (209, 190), (209, 191), (209, 192), (209, 193), (209, 194), (209, 195), (209, 196), (209, 197), (209, 198), (209, 199), (209, 200), (209, 201), (209, 202), (209, 203), (209, 204), (209, 205), (209, 206), (209, 207), (209, 208), (209, 211), (209, 212), (210, 182), (210, 184), (210, 185), (210, 186), (210, 187), (210, 188), (210, 189), (210, 190), (210, 191), (210, 192), (210, 193), (210, 194), (210, 195), (210, 196), (210, 197), (210, 198), (210, 199), (210, 200), (210, 201), (210, 202), (210, 203), (210, 204), (210, 210), (211, 182), (211, 184), (211, 185), (211, 186), (211, 187), (211, 188), (211, 189), (211, 190), (211, 191), (211, 192), (211, 193), (211, 194), (211, 205), (211, 206), (211, 208), (212, 183), (212, 195), (212, 196), (212, 197), (212, 198), (212, 199), (212, 200), (212, 201), (212, 202), (212, 203), (212, 204), (213, 184), (213, 186), (213, 187), (213, 188), (213, 189), (213, 190), (213, 191), (213, 192), (213, 193), (213, 194)) coordinates_ff00_eb = ((167, 192), (167, 194), (168, 192), (168, 196), (169, 192), (169, 194), (169, 198), (170, 191), (170, 192), (170, 193), (170, 194), (170, 195), (170, 196), (170, 200), (171, 191), (171, 193), (171, 194), (171, 195), (171, 196), (171, 197), (171, 198), (171, 202), (172, 191), (172, 193), (172, 194), (172, 195), (172, 196), (172, 197), (172, 198), (172, 199), (172, 200), (172, 204), (173, 191), (173, 193), (173, 194), (173, 195), (173, 196), (173, 197), (173, 198), (173, 199), (173, 200), (173, 201), (173, 202), (173, 206), (174, 191), (174, 193), (174, 194), (174, 195), (174, 196), (174, 197), (174, 198), (174, 199), (174, 200), (174, 201), (174, 202), (174, 203), (174, 204), (174, 208), (175, 191), (175, 193), (175, 194), (175, 195), (175, 196), (175, 197), (175, 198), (175, 199), (175, 200), (175, 201), (175, 202), (175, 203), (175, 204), (175, 205), (175, 206), (175, 209), (176, 191), (176, 194), (176, 195), (176, 196), (176, 197), (176, 198), (176, 199), (176, 200), (176, 201), (176, 202), (176, 203), (176, 204), (176, 205), (176, 206), (176, 207), (176, 208), (176, 211), (177, 191), (177, 196), (177, 197), (177, 198), (177, 199), (177, 200), (177, 201), (177, 202), (177, 203), (177, 204), (177, 205), (177, 206), (177, 207), (177, 208), (177, 209), (177, 213), (178, 194), (178, 195), (178, 198), (178, 199), (178, 200), (178, 201), (178, 202), (178, 203), (178, 204), (178, 205), (178, 206), (178, 207), (178, 208), (178, 209), (178, 210), (178, 211), (178, 214), (179, 196), (179, 197), (179, 201), (179, 202), (179, 203), (179, 204), (179, 205), (179, 206), (179, 207), (179, 208), (179, 209), (179, 210), (179, 211), (179, 212), (179, 213), (179, 216), (180, 199), (180, 203), (180, 204), (180, 205), (180, 206), (180, 207), (180, 208), (180, 209), (180, 210), (180, 211), (180, 212), (180, 213), (180, 214), (180, 217), (181, 201), (181, 205), (181, 206), (181, 207), (181, 208), (181, 209), (181, 210), (181, 211), (181, 212), (181, 213), (181, 214), (181, 215), (181, 216), (181, 218), (182, 203), (182, 206), (182, 207), (182, 208), (182, 209), (182, 210), (182, 211), (182, 212), (182, 213), (182, 214), (182, 215), (182, 216), (182, 217), (182, 220), (183, 205), (183, 208), (183, 209), (183, 210), (183, 211), (183, 212), (183, 213), (183, 214), (183, 215), (183, 216), (183, 217), (183, 218), (183, 221), (184, 206), (184, 210), (184, 211), (184, 212), (184, 213), (184, 214), (184, 215), (184, 216), (184, 217), (184, 218), (184, 219), (184, 220), (184, 222), (185, 208), (185, 210), (185, 211), (185, 212), (185, 213), (185, 214), (185, 215), (185, 216), (185, 217), (185, 218), (185, 219), (185, 220), (185, 221), (185, 223), (186, 212), (186, 213), (186, 214), (186, 215), (186, 216), (186, 217), (186, 218), (186, 219), (186, 220), (186, 221), (186, 223), (187, 210), (187, 214), (187, 215), (187, 216), (187, 217), (187, 218), (187, 219), (187, 220), (187, 221), (187, 223), (188, 211), (188, 213), (188, 218), (188, 219), (188, 220), (188, 221), (188, 223), (189, 214), (189, 216), (189, 217), (189, 223), (190, 218), (190, 219), (190, 220), (190, 221), (190, 223), (209, 218), (209, 219), (209, 220), (209, 221), (209, 223), (210, 214), (210, 215), (210, 216), (210, 217), (210, 223), (211, 211), (211, 213), (211, 217), (211, 218), (211, 219), (211, 220), (211, 221), (211, 223), (212, 210), (212, 214), (212, 215), (212, 216), (212, 217), (212, 218), (212, 219), (212, 220), (212, 221), (212, 223), (213, 211), (213, 212), (213, 213), (213, 214), (213, 215), (213, 216), (213, 217), (213, 218), (213, 219), (213, 220), (213, 221), (213, 223), (214, 208), (214, 210), (214, 211), (214, 212), (214, 213), (214, 214), (214, 215), (214, 216), (214, 217), (214, 218), (214, 219), (214, 220), (214, 221), (214, 223), (215, 206), (215, 209), (215, 210), (215, 211), (215, 212), (215, 213), (215, 214), (215, 215), (215, 216), (215, 217), (215, 218), (215, 219), (215, 222), (216, 205), (216, 208), (216, 209), (216, 210), (216, 211), (216, 212), (216, 213), (216, 214), (216, 215), (216, 216), (216, 217), (216, 218), (216, 221), (217, 203), (217, 206), (217, 207), (217, 208), (217, 209), (217, 210), (217, 211), (217, 212), (217, 213), (217, 214), (217, 215), (217, 216), (217, 217), (217, 220), (218, 201), (218, 205), (218, 206), (218, 207), (218, 208), (218, 209), (218, 210), (218, 211), (218, 212), (218, 213), (218, 214), (218, 215), (218, 216), (218, 218), (219, 198), (219, 199), (219, 203), (219, 204), (219, 205), (219, 206), (219, 207), (219, 208), (219, 209), (219, 210), (219, 211), (219, 212), (219, 213), (219, 214), (219, 217), (220, 196), (220, 197), (220, 200), (220, 201), (220, 202), (220, 203), (220, 204), (220, 205), (220, 206), (220, 207), (220, 208), (220, 209), (220, 210), (220, 211), (220, 212), (220, 216), (221, 194), (221, 195), (221, 198), (221, 199), (221, 200), (221, 201), (221, 202), (221, 203), (221, 204), (221, 205), (221, 206), (221, 207), (221, 208), (221, 209), (221, 210), (221, 211), (221, 214), (222, 191), (222, 196), (222, 197), (222, 198), (222, 199), (222, 200), (222, 201), (222, 202), (222, 203), (222, 204), (222, 205), (222, 206), (222, 207), (222, 208), (222, 209), (222, 212), (223, 191), (223, 193), (223, 194), (223, 195), (223, 196), (223, 197), (223, 198), (223, 199), (223, 200), (223, 201), (223, 202), (223, 203), (223, 204), (223, 205), (223, 206), (223, 207), (223, 208), (223, 211), (224, 191), (224, 193), (224, 194), (224, 195), (224, 196), (224, 197), (224, 198), (224, 199), (224, 200), (224, 201), (224, 202), (224, 203), (224, 204), (224, 205), (224, 206), (224, 209), (225, 191), (225, 193), (225, 194), (225, 195), (225, 196), (225, 197), (225, 198), (225, 199), (225, 200), (225, 201), (225, 202), (225, 203), (225, 204), (225, 207), (226, 191), (226, 193), (226, 194), (226, 195), (226, 196), (226, 197), (226, 198), (226, 199), (226, 200), (226, 201), (226, 202), (226, 206), (227, 191), (227, 193), (227, 194), (227, 195), (227, 196), (227, 197), (227, 198), (227, 199), (227, 200), (227, 204), (228, 191), (228, 193), (228, 194), (228, 195), (228, 196), (228, 197), (228, 198), (228, 202), (229, 192), (229, 194), (229, 195), (229, 196), (229, 200), (230, 192), (230, 194), (230, 198), (231, 192), (231, 196), (232, 192)) coordinates_007_f49 = ((98, 150), (98, 151), (98, 152), (98, 153), (98, 154), (98, 155), (98, 156), (98, 157), (98, 158), (98, 159), (98, 161), (99, 148), (99, 149), (99, 162), (99, 163), (100, 146), (100, 150), (100, 151), (100, 152), (100, 153), (100, 154), (100, 155), (100, 156), (100, 157), (100, 158), (100, 159), (100, 160), (100, 161), (100, 165), (101, 144), (101, 148), (101, 149), (101, 150), (101, 151), (101, 152), (101, 153), (101, 154), (101, 155), (101, 156), (101, 157), (101, 158), (101, 159), (101, 160), (101, 161), (101, 162), (101, 163), (101, 167), (102, 143), (102, 146), (102, 147), (102, 148), (102, 149), (102, 150), (102, 151), (102, 152), (102, 153), (102, 154), (102, 155), (102, 156), (102, 157), (102, 158), (102, 159), (102, 160), (102, 161), (102, 162), (102, 163), (102, 164), (102, 165), (102, 168), (103, 142), (103, 144), (103, 145), (103, 146), (103, 147), (103, 148), (103, 149), (103, 150), (103, 151), (103, 152), (103, 153), (103, 154), (103, 155), (103, 156), (103, 157), (103, 158), (103, 159), (103, 160), (103, 161), (103, 162), (103, 163), (103, 164), (103, 165), (103, 166), (103, 167), (103, 169), (104, 141), (104, 143), (104, 144), (104, 145), (104, 146), (104, 147), (104, 148), (104, 149), (104, 150), (104, 151), (104, 152), (104, 153), (104, 154), (104, 155), (104, 156), (104, 157), (104, 158), (104, 159), (104, 160), (104, 161), (104, 162), (104, 163), (104, 164), (104, 165), (104, 166), (104, 167), (104, 168), (104, 170), (105, 140), (105, 142), (105, 143), (105, 144), (105, 145), (105, 146), (105, 147), (105, 148), (105, 149), (105, 150), (105, 151), (105, 152), (105, 153), (105, 154), (105, 155), (105, 156), (105, 157), (105, 158), (105, 159), (105, 160), (105, 161), (105, 162), (105, 163), (105, 164), (105, 165), (105, 166), (105, 167), (105, 168), (105, 171), (106, 139), (106, 141), (106, 142), (106, 143), (106, 144), (106, 145), (106, 146), (106, 147), (106, 148), (106, 149), (106, 150), (106, 151), (106, 152), (106, 153), (106, 154), (106, 155), (106, 156), (106, 157), (106, 158), (106, 159), (106, 160), (106, 161), (106, 162), (106, 163), (106, 164), (106, 165), (106, 166), (106, 167), (106, 168), (106, 169), (106, 171), (107, 138), (107, 140), (107, 141), (107, 142), (107, 143), (107, 144), (107, 145), (107, 146), (107, 147), (107, 148), (107, 149), (107, 150), (107, 151), (107, 152), (107, 153), (107, 154), (107, 155), (107, 156), (107, 157), (107, 158), (107, 159), (107, 160), (107, 161), (107, 162), (107, 163), (107, 164), (107, 165), (107, 166), (107, 167), (107, 168), (107, 169), (107, 170), (107, 172), (108, 138), (108, 140), (108, 141), (108, 142), (108, 143), (108, 144), (108, 145), (108, 146), (108, 147), (108, 148), (108, 149), (108, 150), (108, 151), (108, 152), (108, 153), (108, 154), (108, 155), (108, 156), (108, 157), (108, 158), (108, 159), (108, 160), (108, 161), (108, 162), (108, 163), (108, 164), (108, 165), (108, 166), (108, 167), (108, 168), (108, 169), (108, 170), (108, 171), (108, 173), (109, 137), (109, 139), (109, 140), (109, 141), (109, 142), (109, 143), (109, 144), (109, 145), (109, 146), (109, 147), (109, 148), (109, 149), (109, 150), (109, 151), (109, 152), (109, 153), (109, 154), (109, 155), (109, 156), (109, 157), (109, 158), (109, 159), (109, 160), (109, 161), (109, 162), (109, 163), (109, 164), (109, 165), (109, 166), (109, 167), (109, 168), (109, 169), (109, 170), (109, 171), (109, 173), (110, 137), (110, 139), (110, 140), (110, 141), (110, 142), (110, 143), (110, 144), (110, 145), (110, 146), (110, 147), (110, 148), (110, 149), (110, 150), (110, 151), (110, 152), (110, 153), (110, 154), (110, 155), (110, 156), (110, 157), (110, 158), (110, 159), (110, 160), (110, 161), (110, 162), (110, 163), (110, 164), (110, 165), (110, 166), (110, 167), (110, 168), (110, 169), (110, 170), (110, 171), (110, 172), (110, 174), (111, 137), (111, 139), (111, 140), (111, 141), (111, 142), (111, 143), (111, 144), (111, 145), (111, 146), (111, 147), (111, 148), (111, 149), (111, 150), (111, 151), (111, 152), (111, 153), (111, 154), (111, 155), (111, 156), (111, 157), (111, 158), (111, 159), (111, 160), (111, 161), (111, 162), (111, 163), (111, 164), (111, 165), (111, 166), (111, 167), (111, 168), (111, 169), (111, 170), (111, 171), (111, 172), (111, 174), (112, 136), (112, 138), (112, 139), (112, 140), (112, 141), (112, 142), (112, 143), (112, 144), (112, 145), (112, 146), (112, 147), (112, 148), (112, 149), (112, 150), (112, 151), (112, 152), (112, 153), (112, 154), (112, 155), (112, 156), (112, 157), (112, 158), (112, 159), (112, 160), (112, 161), (112, 162), (112, 163), (112, 164), (112, 165), (112, 166), (112, 167), (112, 168), (112, 169), (112, 170), (112, 171), (112, 172), (112, 174), (113, 136), (113, 138), (113, 139), (113, 140), (113, 141), (113, 142), (113, 143), (113, 144), (113, 145), (113, 146), (113, 147), (113, 148), (113, 149), (113, 150), (113, 151), (113, 155), (113, 156), (113, 157), (113, 158), (113, 159), (113, 160), (113, 161), (113, 162), (113, 163), (113, 164), (113, 165), (113, 166), (113, 167), (113, 168), (113, 169), (113, 170), (113, 171), (113, 172), (113, 173), (113, 175), (114, 136), (114, 138), (114, 139), (114, 140), (114, 141), (114, 142), (114, 143), (114, 144), (114, 145), (114, 146), (114, 147), (114, 148), (114, 149), (114, 150), (114, 151), (114, 153), (114, 154), (114, 157), (114, 158), (114, 159), (114, 160), (114, 161), (114, 162), (114, 163), (114, 164), (114, 165), (114, 166), (114, 167), (114, 168), (114, 169), (114, 170), (114, 171), (114, 172), (114, 173), (114, 175), (115, 136), (115, 143), (115, 144), (115, 145), (115, 146), (115, 147), (115, 148), (115, 149), (115, 151), (115, 155), (115, 158), (115, 159), (115, 160), (115, 161), (115, 162), (115, 163), (115, 164), (115, 165), (115, 166), (115, 167), (115, 168), (115, 169), (115, 170), (115, 171), (115, 172), (115, 173), (115, 175), (116, 136), (116, 138), (116, 139), (116, 140), (116, 141), (116, 142), (116, 151), (116, 157), (116, 159), (116, 160), (116, 161), (116, 162), (116, 163), (116, 164), (116, 165), (116, 166), (116, 167), (116, 168), (116, 169), (116, 170), (116, 171), (116, 172), (116, 173), (116, 174), (116, 176), (117, 143), (117, 144), (117, 145), (117, 146), (117, 147), (117, 148), (117, 149), (117, 151), (117, 158), (117, 160), (117, 161), (117, 162), (117, 163), (117, 164), (117, 165), (117, 166), (117, 167), (117, 168), (117, 169), (117, 170), (117, 171), (117, 172), (117, 173), (117, 174), (117, 176), (118, 159), (118, 161), (118, 162), (118, 163), (118, 164), (118, 165), (118, 166), (118, 167), (118, 168), (118, 169), (118, 170), (118, 171), (118, 172), (118, 173), (118, 174), (118, 176), (119, 160), (119, 162), (119, 163), (119, 164), (119, 165), (119, 166), (119, 167), (119, 168), (119, 169), (119, 170), (119, 171), (119, 172), (119, 173), (119, 174), (119, 176), (120, 161), (120, 163), (120, 164), (120, 165), (120, 166), (120, 167), (120, 168), (120, 169), (120, 170), (120, 171), (120, 172), (120, 173), (120, 174), (120, 176), (121, 162), (121, 165), (121, 166), (121, 167), (121, 168), (121, 169), (121, 170), (121, 171), (121, 172), (121, 173), (121, 174), (121, 176), (122, 163), (122, 175), (122, 177), (123, 164), (123, 166), (123, 167), (123, 168), (123, 169), (123, 170), (123, 171), (123, 172), (123, 173), (123, 174), (275, 165), (276, 164), (276, 166), (276, 167), (276, 168), (276, 169), (276, 170), (276, 171), (276, 172), (276, 173), (276, 174), (276, 175), (276, 177), (277, 163), (277, 177), (278, 162), (278, 164), (278, 165), (278, 166), (278, 167), (278, 168), (278, 169), (278, 170), (278, 171), (278, 172), (278, 173), (278, 174), (278, 176), (279, 161), (279, 163), (279, 164), (279, 165), (279, 166), (279, 167), (279, 168), (279, 169), (279, 170), (279, 171), (279, 172), (279, 173), (279, 174), (279, 176), (280, 160), (280, 162), (280, 163), (280, 164), (280, 165), (280, 166), (280, 167), (280, 168), (280, 169), (280, 170), (280, 171), (280, 172), (280, 173), (280, 174), (280, 176), (281, 159), (281, 161), (281, 162), (281, 163), (281, 164), (281, 165), (281, 166), (281, 167), (281, 168), (281, 169), (281, 170), (281, 171), (281, 172), (281, 173), (281, 174), (281, 176), (282, 142), (282, 143), (282, 144), (282, 145), (282, 146), (282, 147), (282, 148), (282, 149), (282, 151), (282, 158), (282, 160), (282, 161), (282, 162), (282, 163), (282, 164), (282, 165), (282, 166), (282, 167), (282, 168), (282, 169), (282, 170), (282, 171), (282, 172), (282, 173), (282, 174), (282, 176), (283, 136), (283, 138), (283, 139), (283, 140), (283, 141), (283, 151), (283, 157), (283, 159), (283, 160), (283, 161), (283, 162), (283, 163), (283, 164), (283, 165), (283, 166), (283, 167), (283, 168), (283, 169), (283, 170), (283, 171), (283, 172), (283, 173), (283, 174), (283, 176), (284, 136), (284, 142), (284, 143), (284, 144), (284, 145), (284, 146), (284, 147), (284, 148), (284, 149), (284, 150), (284, 151), (284, 155), (284, 158), (284, 159), (284, 160), (284, 161), (284, 162), (284, 163), (284, 164), (284, 165), (284, 166), (284, 167), (284, 168), (284, 169), (284, 170), (284, 171), (284, 172), (284, 173), (284, 175), (285, 136), (285, 138), (285, 139), (285, 140), (285, 141), (285, 142), (285, 143), (285, 144), (285, 145), (285, 146), (285, 147), (285, 148), (285, 149), (285, 150), (285, 151), (285, 153), (285, 154), (285, 157), (285, 158), (285, 159), (285, 160), (285, 161), (285, 162), (285, 163), (285, 164), (285, 165), (285, 166), (285, 167), (285, 168), (285, 169), (285, 170), (285, 171), (285, 172), (285, 173), (285, 175), (286, 136), (286, 138), (286, 139), (286, 140), (286, 141), (286, 142), (286, 143), (286, 144), (286, 145), (286, 146), (286, 147), (286, 148), (286, 149), (286, 150), (286, 151), (286, 152), (286, 155), (286, 156), (286, 157), (286, 158), (286, 159), (286, 160), (286, 161), (286, 162), (286, 163), (286, 164), (286, 165), (286, 166), (286, 167), (286, 168), (286, 169), (286, 170), (286, 171), (286, 172), (286, 173), (286, 175), (287, 136), (287, 138), (287, 139), (287, 140), (287, 141), (287, 142), (287, 143), (287, 144), (287, 145), (287, 146), (287, 147), (287, 148), (287, 149), (287, 150), (287, 151), (287, 152), (287, 153), (287, 154), (287, 155), (287, 156), (287, 157), (287, 158), (287, 159), (287, 160), (287, 161), (287, 162), (287, 163), (287, 164), (287, 165), (287, 166), (287, 167), (287, 168), (287, 169), (287, 170), (287, 171), (287, 172), (287, 174), (288, 137), (288, 139), (288, 140), (288, 141), (288, 142), (288, 143), (288, 144), (288, 145), (288, 146), (288, 147), (288, 148), (288, 149), (288, 150), (288, 151), (288, 152), (288, 153), (288, 154), (288, 155), (288, 156), (288, 157), (288, 158), (288, 159), (288, 160), (288, 161), (288, 162), (288, 163), (288, 164), (288, 165), (288, 166), (288, 167), (288, 168), (288, 169), (288, 170), (288, 171), (288, 172), (288, 174), (289, 137), (289, 139), (289, 140), (289, 141), (289, 142), (289, 143), (289, 144), (289, 145), (289, 146), (289, 147), (289, 148), (289, 149), (289, 150), (289, 151), (289, 152), (289, 153), (289, 154), (289, 155), (289, 156), (289, 157), (289, 158), (289, 159), (289, 160), (289, 161), (289, 162), (289, 163), (289, 164), (289, 165), (289, 166), (289, 167), (289, 168), (289, 169), (289, 170), (289, 171), (289, 172), (289, 173), (290, 137), (290, 139), (290, 140), (290, 141), (290, 142), (290, 143), (290, 144), (290, 145), (290, 146), (290, 147), (290, 148), (290, 149), (290, 150), (290, 151), (290, 152), (290, 153), (290, 154), (290, 155), (290, 156), (290, 157), (290, 158), (290, 159), (290, 160), (290, 161), (290, 162), (290, 163), (290, 164), (290, 165), (290, 166), (290, 167), (290, 168), (290, 169), (290, 170), (290, 171), (290, 173), (291, 138), (291, 140), (291, 141), (291, 142), (291, 143), (291, 144), (291, 145), (291, 146), (291, 147), (291, 148), (291, 149), (291, 150), (291, 151), (291, 152), (291, 153), (291, 154), (291, 155), (291, 156), (291, 157), (291, 158), (291, 159), (291, 160), (291, 161), (291, 162), (291, 163), (291, 164), (291, 165), (291, 166), (291, 167), (291, 168), (291, 169), (291, 170), (291, 172), (292, 140), (292, 141), (292, 142), (292, 143), (292, 144), (292, 145), (292, 146), (292, 147), (292, 148), (292, 149), (292, 150), (292, 151), (292, 152), (292, 153), (292, 154), (292, 155), (292, 156), (292, 157), (292, 158), (292, 159), (292, 160), (292, 161), (292, 162), (292, 163), (292, 164), (292, 165), (292, 166), (292, 167), (292, 168), (292, 169), (292, 170), (292, 172), (293, 139), (293, 141), (293, 142), (293, 143), (293, 144), (293, 145), (293, 146), (293, 147), (293, 148), (293, 149), (293, 150), (293, 151), (293, 152), (293, 153), (293, 154), (293, 155), (293, 156), (293, 157), (293, 158), (293, 159), (293, 160), (293, 161), (293, 162), (293, 163), (293, 164), (293, 165), (293, 166), (293, 167), (293, 168), (293, 169), (293, 171), (294, 140), (294, 142), (294, 143), (294, 144), (294, 145), (294, 146), (294, 147), (294, 148), (294, 149), (294, 150), (294, 151), (294, 152), (294, 153), (294, 154), (294, 155), (294, 156), (294, 157), (294, 158), (294, 159), (294, 160), (294, 161), (294, 162), (294, 163), (294, 164), (294, 165), (294, 166), (294, 167), (294, 168), (295, 141), (295, 143), (295, 144), (295, 145), (295, 146), (295, 147), (295, 148), (295, 149), (295, 150), (295, 151), (295, 152), (295, 153), (295, 154), (295, 155), (295, 156), (295, 157), (295, 158), (295, 159), (295, 160), (295, 161), (295, 162), (295, 163), (295, 164), (295, 165), (295, 166), (295, 167), (295, 170), (296, 142), (296, 144), (296, 145), (296, 146), (296, 147), (296, 148), (296, 149), (296, 150), (296, 151), (296, 152), (296, 153), (296, 154), (296, 155), (296, 156), (296, 157), (296, 158), (296, 159), (296, 160), (296, 161), (296, 162), (296, 163), (296, 164), (296, 165), (296, 166), (296, 169), (297, 143), (297, 146), (297, 147), (297, 148), (297, 149), (297, 150), (297, 151), (297, 152), (297, 153), (297, 154), (297, 155), (297, 156), (297, 157), (297, 158), (297, 159), (297, 160), (297, 161), (297, 162), (297, 163), (297, 164), (297, 165), (297, 168), (298, 144), (298, 148), (298, 149), (298, 150), (298, 151), (298, 152), (298, 153), (298, 154), (298, 155), (298, 156), (298, 157), (298, 158), (298, 159), (298, 160), (298, 161), (298, 162), (298, 163), (298, 166), (299, 146), (299, 150), (299, 151), (299, 152), (299, 153), (299, 154), (299, 155), (299, 156), (299, 157), (299, 158), (299, 159), (299, 160), (299, 161), (299, 165), (300, 148), (300, 150), (300, 163), (301, 151), (301, 152), (301, 153), (301, 154), (301, 155), (301, 156), (301, 157), (301, 158), (301, 159), (301, 160), (301, 161)) coordinates_ff9_c00 = ((169, 143), (170, 140), (170, 143), (171, 139), (171, 144), (172, 137), (172, 140), (172, 141), (172, 142), (172, 144), (173, 137), (173, 139), (173, 140), (173, 141), (173, 142), (173, 143), (173, 145), (174, 136), (174, 138), (174, 139), (174, 140), (174, 141), (174, 142), (174, 143), (174, 145), (175, 136), (175, 138), (175, 139), (175, 140), (175, 141), (175, 142), (175, 143), (175, 144), (175, 146), (176, 135), (176, 137), (176, 138), (176, 139), (176, 140), (176, 141), (176, 142), (176, 143), (176, 144), (176, 146), (177, 135), (177, 137), (177, 138), (177, 139), (177, 140), (177, 141), (177, 142), (177, 143), (177, 144), (177, 145), (177, 147), (178, 135), (178, 137), (178, 138), (178, 139), (178, 140), (178, 141), (178, 142), (178, 143), (178, 144), (178, 145), (178, 147), (179, 135), (179, 137), (179, 138), (179, 139), (179, 140), (179, 141), (179, 142), (179, 143), (179, 144), (179, 145), (179, 147), (180, 135), (180, 137), (180, 138), (180, 139), (180, 140), (180, 141), (180, 142), (180, 143), (180, 144), (180, 145), (180, 147), (181, 136), (181, 141), (181, 142), (181, 143), (181, 144), (181, 145), (181, 147), (182, 137), (182, 139), (182, 140), (182, 145), (182, 147), (183, 141), (183, 142), (183, 143), (183, 144), (183, 147), (184, 145), (184, 147), (215, 145), (215, 147), (216, 141), (216, 142), (216, 143), (216, 144), (216, 147), (217, 137), (217, 139), (217, 140), (217, 145), (217, 147), (218, 136), (218, 141), (218, 142), (218, 143), (218, 144), (218, 145), (218, 147), (219, 135), (219, 137), (219, 138), (219, 139), (219, 140), (219, 141), (219, 142), (219, 143), (219, 144), (219, 145), (219, 147), (220, 135), (220, 137), (220, 138), (220, 139), (220, 140), (220, 141), (220, 142), (220, 143), (220, 144), (220, 145), (220, 147), (221, 135), (221, 137), (221, 138), (221, 139), (221, 140), (221, 141), (221, 142), (221, 143), (221, 144), (221, 145), (221, 147), (222, 135), (222, 137), (222, 138), (222, 139), (222, 140), (222, 141), (222, 142), (222, 143), (222, 144), (222, 145), (222, 147), (223, 135), (223, 137), (223, 138), (223, 139), (223, 140), (223, 141), (223, 142), (223, 143), (223, 144), (223, 146), (224, 136), (224, 138), (224, 139), (224, 140), (224, 141), (224, 142), (224, 143), (224, 144), (224, 146), (225, 136), (225, 138), (225, 139), (225, 140), (225, 141), (225, 142), (225, 143), (225, 145), (226, 137), (226, 139), (226, 140), (226, 141), (226, 142), (226, 143), (226, 145), (227, 140), (227, 141), (227, 142), (227, 144), (228, 139), (228, 144), (229, 140), (229, 143)) coordinates_00_ff4_e = ((168, 145), (168, 147), (168, 148), (168, 150), (169, 145), (169, 152), (170, 146), (170, 148), (170, 149), (170, 150), (170, 154), (171, 146), (171, 148), (171, 149), (171, 150), (171, 151), (171, 152), (171, 155), (172, 147), (172, 149), (172, 150), (172, 151), (172, 152), (172, 153), (172, 156), (173, 147), (173, 149), (173, 150), (173, 151), (173, 152), (173, 153), (173, 154), (173, 155), (173, 157), (174, 148), (174, 150), (174, 151), (174, 152), (174, 153), (174, 154), (174, 155), (174, 156), (174, 158), (175, 148), (175, 150), (175, 151), (175, 152), (175, 153), (175, 154), (175, 155), (175, 156), (175, 157), (175, 159), (176, 149), (176, 151), (176, 152), (176, 153), (176, 154), (176, 155), (176, 156), (176, 157), (176, 158), (176, 160), (177, 149), (177, 151), (177, 152), (177, 153), (177, 154), (177, 155), (177, 156), (177, 157), (177, 158), (177, 159), (177, 161), (178, 150), (178, 152), (178, 153), (178, 154), (178, 155), (178, 156), (178, 157), (178, 158), (178, 159), (178, 160), (178, 162), (179, 150), (179, 152), (179, 153), (179, 154), (179, 155), (179, 156), (179, 157), (179, 158), (179, 159), (179, 160), (179, 161), (180, 150), (180, 152), (180, 153), (180, 154), (180, 155), (180, 156), (180, 157), (180, 158), (180, 159), (180, 160), (180, 161), (180, 162), (180, 165), (180, 166), (180, 167), (180, 168), (180, 169), (180, 170), (180, 171), (180, 172), (180, 173), (181, 149), (181, 151), (181, 152), (181, 153), (181, 154), (181, 155), (181, 156), (181, 157), (181, 158), (181, 159), (181, 160), (181, 161), (181, 162), (181, 163), (181, 164), (181, 175), (182, 149), (182, 151), (182, 152), (182, 153), (182, 154), (182, 155), (182, 156), (182, 157), (182, 158), (182, 159), (182, 160), (182, 161), (182, 162), (182, 163), (182, 164), (182, 165), (182, 166), (182, 167), (182, 168), (182, 169), (182, 170), (182, 171), (182, 172), (182, 173), (182, 176), (183, 149), (183, 151), (183, 152), (183, 153), (183, 154), (183, 155), (183, 156), (183, 157), (183, 158), (183, 159), (183, 160), (183, 161), (183, 162), (183, 163), (183, 164), (183, 165), (183, 166), (183, 167), (183, 168), (183, 169), (183, 170), (183, 171), (183, 172), (183, 173), (183, 174), (183, 175), (183, 178), (184, 149), (184, 151), (184, 152), (184, 153), (184, 154), (184, 155), (184, 156), (184, 157), (184, 158), (184, 159), (184, 160), (184, 161), (184, 162), (184, 163), (184, 164), (184, 165), (184, 166), (184, 167), (184, 168), (184, 169), (184, 170), (184, 171), (184, 172), (184, 173), (184, 174), (184, 175), (184, 176), (184, 179), (185, 149), (185, 151), (185, 152), (185, 153), (185, 154), (185, 155), (185, 156), (185, 157), (185, 158), (185, 159), (185, 160), (185, 161), (185, 162), (185, 163), (185, 164), (185, 165), (185, 166), (185, 167), (185, 168), (185, 169), (185, 170), (185, 171), (185, 172), (185, 173), (185, 174), (185, 175), (185, 176), (185, 177), (185, 178), (185, 181), (185, 182), (186, 149), (186, 151), (186, 152), (186, 153), (186, 154), (186, 155), (186, 156), (186, 157), (186, 158), (186, 159), (186, 160), (186, 161), (186, 162), (186, 163), (186, 164), (186, 165), (186, 166), (186, 167), (186, 168), (186, 169), (186, 170), (186, 171), (186, 172), (186, 173), (186, 174), (186, 175), (186, 176), (186, 177), (186, 178), (186, 179), (186, 181), (187, 150), (187, 152), (187, 153), (187, 154), (187, 155), (187, 156), (187, 157), (187, 158), (187, 159), (187, 160), (187, 161), (187, 162), (187, 163), (187, 164), (187, 165), (187, 166), (187, 167), (187, 168), (187, 169), (187, 170), (187, 171), (187, 172), (187, 173), (187, 174), (187, 175), (187, 176), (187, 177), (187, 178), (187, 179), (187, 181), (188, 151), (188, 153), (188, 154), (188, 155), (188, 156), (188, 157), (188, 158), (188, 159), (188, 160), (188, 161), (188, 162), (188, 163), (188, 164), (188, 165), (188, 166), (188, 167), (188, 168), (188, 169), (188, 170), (188, 171), (188, 172), (188, 173), (188, 174), (188, 175), (188, 176), (188, 177), (188, 178), (188, 180), (189, 151), (189, 153), (189, 154), (189, 155), (189, 156), (189, 157), (189, 158), (189, 159), (189, 160), (189, 161), (189, 162), (189, 163), (189, 164), (189, 165), (189, 166), (189, 167), (189, 168), (189, 169), (189, 170), (189, 171), (189, 172), (189, 173), (189, 174), (189, 175), (189, 176), (189, 177), (189, 179), (190, 152), (190, 154), (190, 155), (190, 156), (190, 157), (190, 158), (190, 159), (190, 160), (190, 161), (190, 162), (190, 163), (190, 164), (190, 165), (190, 166), (190, 167), (190, 168), (190, 169), (190, 170), (190, 171), (190, 172), (190, 173), (190, 174), (190, 175), (190, 176), (190, 178), (191, 152), (191, 154), (191, 155), (191, 156), (191, 157), (191, 158), (191, 159), (191, 160), (191, 161), (191, 162), (191, 163), (191, 164), (191, 165), (191, 166), (191, 167), (191, 168), (191, 169), (191, 170), (191, 171), (191, 172), (191, 173), (191, 174), (191, 175), (191, 177), (192, 152), (192, 154), (192, 155), (192, 156), (192, 157), (192, 158), (192, 159), (192, 160), (192, 161), (192, 162), (192, 163), (192, 164), (192, 165), (192, 166), (192, 167), (192, 168), (192, 169), (192, 170), (192, 171), (192, 172), (192, 173), (192, 174), (192, 176), (193, 153), (193, 155), (193, 156), (193, 157), (193, 158), (193, 159), (193, 160), (193, 161), (193, 162), (193, 163), (193, 164), (193, 165), (193, 166), (193, 167), (193, 168), (193, 169), (193, 170), (193, 171), (193, 172), (193, 173), (193, 175), (194, 153), (194, 155), (194, 156), (194, 157), (194, 158), (194, 159), (194, 160), (194, 161), (194, 162), (194, 163), (194, 164), (194, 165), (194, 166), (194, 167), (194, 168), (194, 175), (195, 154), (195, 158), (195, 159), (195, 160), (195, 161), (195, 162), (195, 169), (195, 170), (195, 171), (195, 172), (195, 173), (196, 155), (196, 157), (196, 158), (196, 163), (196, 164), (196, 165), (196, 166), (196, 167), (196, 168), (197, 159), (197, 160), (197, 161), (197, 162), (202, 158), (202, 159), (202, 160), (202, 161), (202, 162), (202, 163), (203, 155), (203, 157), (203, 164), (203, 165), (203, 166), (203, 167), (203, 168), (204, 154), (204, 158), (204, 159), (204, 160), (204, 161), (204, 162), (204, 163), (204, 169), (204, 170), (204, 171), (204, 172), (204, 173), (204, 175), (205, 153), (205, 155), (205, 156), (205, 157), (205, 158), (205, 159), (205, 160), (205, 161), (205, 162), (205, 163), (205, 164), (205, 165), (205, 166), (205, 167), (205, 168), (205, 175), (206, 153), (206, 155), (206, 156), (206, 157), (206, 158), (206, 159), (206, 160), (206, 161), (206, 162), (206, 163), (206, 164), (206, 165), (206, 166), (206, 167), (206, 168), (206, 169), (206, 170), (206, 171), (206, 172), (206, 173), (206, 175), (207, 152), (207, 154), (207, 155), (207, 156), (207, 157), (207, 158), (207, 159), (207, 160), (207, 161), (207, 162), (207, 163), (207, 164), (207, 165), (207, 166), (207, 167), (207, 168), (207, 169), (207, 170), (207, 171), (207, 172), (207, 173), (207, 174), (207, 176), (208, 152), (208, 154), (208, 155), (208, 156), (208, 157), (208, 158), (208, 159), (208, 160), (208, 161), (208, 162), (208, 163), (208, 164), (208, 165), (208, 166), (208, 167), (208, 168), (208, 169), (208, 170), (208, 171), (208, 172), (208, 173), (208, 174), (208, 175), (208, 177), (209, 152), (209, 154), (209, 155), (209, 156), (209, 157), (209, 158), (209, 159), (209, 160), (209, 161), (209, 162), (209, 163), (209, 164), (209, 165), (209, 166), (209, 167), (209, 168), (209, 169), (209, 170), (209, 171), (209, 172), (209, 173), (209, 174), (209, 175), (209, 176), (209, 178), (210, 151), (210, 153), (210, 154), (210, 155), (210, 156), (210, 157), (210, 158), (210, 159), (210, 160), (210, 161), (210, 162), (210, 163), (210, 164), (210, 165), (210, 166), (210, 167), (210, 168), (210, 169), (210, 170), (210, 171), (210, 172), (210, 173), (210, 174), (210, 175), (210, 176), (210, 177), (210, 179), (211, 151), (211, 153), (211, 154), (211, 155), (211, 156), (211, 157), (211, 158), (211, 159), (211, 160), (211, 161), (211, 162), (211, 163), (211, 164), (211, 165), (211, 166), (211, 167), (211, 168), (211, 169), (211, 170), (211, 171), (211, 172), (211, 173), (211, 174), (211, 175), (211, 176), (211, 177), (211, 178), (211, 180), (212, 150), (212, 152), (212, 153), (212, 154), (212, 155), (212, 156), (212, 157), (212, 158), (212, 159), (212, 160), (212, 161), (212, 162), (212, 163), (212, 164), (212, 165), (212, 166), (212, 167), (212, 168), (212, 169), (212, 170), (212, 171), (212, 172), (212, 173), (212, 174), (212, 175), (212, 176), (212, 177), (212, 178), (212, 179), (212, 181), (213, 149), (213, 151), (213, 152), (213, 153), (213, 154), (213, 155), (213, 156), (213, 157), (213, 158), (213, 159), (213, 160), (213, 161), (213, 162), (213, 163), (213, 164), (213, 165), (213, 166), (213, 167), (213, 168), (213, 169), (213, 170), (213, 171), (213, 172), (213, 173), (213, 174), (213, 175), (213, 176), (213, 177), (213, 178), (213, 179), (213, 181), (214, 149), (214, 151), (214, 152), (214, 153), (214, 154), (214, 155), (214, 156), (214, 157), (214, 158), (214, 159), (214, 160), (214, 161), (214, 162), (214, 163), (214, 164), (214, 165), (214, 166), (214, 167), (214, 168), (214, 169), (214, 170), (214, 171), (214, 172), (214, 173), (214, 174), (214, 175), (214, 176), (214, 177), (214, 178), (214, 181), (214, 182), (215, 149), (215, 151), (215, 152), (215, 153), (215, 154), (215, 155), (215, 156), (215, 157), (215, 158), (215, 159), (215, 160), (215, 161), (215, 162), (215, 163), (215, 164), (215, 165), (215, 166), (215, 167), (215, 168), (215, 169), (215, 170), (215, 171), (215, 172), (215, 173), (215, 174), (215, 175), (215, 176), (215, 179), (216, 149), (216, 151), (216, 152), (216, 153), (216, 154), (216, 155), (216, 156), (216, 157), (216, 158), (216, 159), (216, 160), (216, 161), (216, 162), (216, 163), (216, 164), (216, 165), (216, 166), (216, 167), (216, 168), (216, 169), (216, 170), (216, 171), (216, 172), (216, 173), (216, 174), (216, 175), (216, 178), (217, 149), (217, 151), (217, 152), (217, 153), (217, 154), (217, 155), (217, 156), (217, 157), (217, 158), (217, 159), (217, 160), (217, 161), (217, 162), (217, 163), (217, 164), (217, 165), (217, 166), (217, 167), (217, 168), (217, 169), (217, 170), (217, 171), (217, 172), (217, 176), (218, 149), (218, 151), (218, 152), (218, 153), (218, 154), (218, 155), (218, 156), (218, 157), (218, 158), (218, 159), (218, 160), (218, 161), (218, 162), (218, 163), (218, 173), (218, 175), (219, 150), (219, 152), (219, 153), (219, 154), (219, 155), (219, 156), (219, 157), (219, 158), (219, 159), (219, 160), (219, 161), (219, 162), (219, 165), (219, 166), (219, 167), (219, 168), (219, 169), (219, 170), (219, 171), (219, 172), (220, 150), (220, 152), (220, 153), (220, 154), (220, 155), (220, 156), (220, 157), (220, 158), (220, 159), (220, 160), (220, 161), (220, 163), (221, 150), (221, 152), (221, 153), (221, 154), (221, 155), (221, 156), (221, 157), (221, 158), (221, 159), (221, 160), (221, 162), (222, 149), (222, 151), (222, 152), (222, 153), (222, 154), (222, 155), (222, 156), (222, 157), (222, 158), (222, 159), (222, 161), (223, 149), (223, 151), (223, 152), (223, 153), (223, 154), (223, 155), (223, 156), (223, 157), (223, 158), (223, 160), (224, 148), (224, 150), (224, 151), (224, 152), (224, 153), (224, 154), (224, 155), (224, 156), (224, 157), (224, 159), (225, 148), (225, 150), (225, 151), (225, 152), (225, 153), (225, 154), (225, 155), (225, 156), (225, 158), (226, 147), (226, 149), (226, 150), (226, 151), (226, 152), (226, 153), (226, 154), (226, 157), (227, 147), (227, 149), (227, 150), (227, 151), (227, 152), (227, 153), (227, 156), (228, 146), (228, 148), (228, 149), (228, 150), (228, 151), (228, 152), (228, 155), (229, 146), (229, 148), (229, 149), (229, 150), (229, 153), (230, 145), (230, 152), (231, 145), (231, 147), (231, 148), (231, 149), (231, 150)) coordinates_e1_ff00 = ((145, 116), (146, 116), (147, 116), (148, 115), (148, 116), (149, 114), (149, 116), (250, 115), (250, 116), (251, 115), (251, 116), (252, 116), (253, 116), (254, 116))
x = getattr(None, '') # 0 <mixed> l = [] # 0 [<mixed>] l.extend(x) # 0 [<mixed>] # e 0 # TODO: test converting to top s = [ # 0 [(str, int)] ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ]
x = getattr(None, '') l = [] l.extend(x) s = [('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1), ('', 1)]
# Algorithm: # This pattern is an observational one. For eg, if n = 3 # 3 3 3 3 3 # 3 2 2 2 3 # 3 2 1 2 3 # 3 2 2 2 3 # 3 3 3 3 3 # The no. of columns and rows are equal to (2 * n - 1). # The first (n - 1) and last (n - 1) rows can easily be printed using nested for loops # The middle row can be implemented using a single for loop # Input n = int(input()) # To print the first (n - 1) rows for i in range(1 , n): temp = n for j in range(1 , n): if(j <= i and j != 1): temp -= 1 print(temp , end = " ") print(temp , end = " ") for j in range(1 , n): if(j >= n - i + 1): temp += 1 print(temp , end = " ") print("") # To print the first half of the middle row temp = n for i in range(1 , n): print(temp , end = " ") temp -= 1 # To print the middle element of the middle row print("1" , end = " ") # To print the last half of the middle row for i in range(1 , n): temp += 1 print(temp , end = " ") print("") # To print the last (n - 1) rows m = 1 for i in range(n - 1 , 0 , -1): temp = n for j in range(1 , n): if(j <= i and j != 1): temp -= 1 print(temp , end = " ") print(temp , end = " ") for j in range(1 , n): if(j >= m + 1): temp += 1 print(temp , end = " ") print("") m += 1
n = int(input()) for i in range(1, n): temp = n for j in range(1, n): if j <= i and j != 1: temp -= 1 print(temp, end=' ') print(temp, end=' ') for j in range(1, n): if j >= n - i + 1: temp += 1 print(temp, end=' ') print('') temp = n for i in range(1, n): print(temp, end=' ') temp -= 1 print('1', end=' ') for i in range(1, n): temp += 1 print(temp, end=' ') print('') m = 1 for i in range(n - 1, 0, -1): temp = n for j in range(1, n): if j <= i and j != 1: temp -= 1 print(temp, end=' ') print(temp, end=' ') for j in range(1, n): if j >= m + 1: temp += 1 print(temp, end=' ') print('') m += 1
############################### # Overview # # Without using built a math # library, calculate the square root # of a number. # # Assume number is not negative. # Comlex numbers out of scope. # square root 4 -> 2 ############################### # Using newton's method # y ^ (1/2) = x => # y = x^2 => # 0 = x^2 - y Can now apply newtons method! # # f(x) = x^2 -y (where y is a constant given by user. Not y = f(x)) # f'(x) = 2x def calc_squre_root(y): x_t = y tol = 1000000 while(tol > .000001): fx = x_t**2 - y fprime = 2*x_t x_t_1 = x_t - fx/fprime # Newtom's method # print(x_t_1) tol = x_t_1 - x_t if tol < 0 : tol = -1 * tol x_t = x_t_1 return(x_t_1) # Test perfect squares calc_squre_root(4) calc_squre_root(9) calc_squre_root(16) calc_squre_root(25) calc_squre_root(36) calc_squre_root(49) calc_squre_root(64) calc_squre_root(81) calc_squre_root(100) # Test when number is it's own square root calc_squre_root(1) # Test numbers that are not perfect squares calc_squre_root(2) calc_squre_root(8)
def calc_squre_root(y): x_t = y tol = 1000000 while tol > 1e-06: fx = x_t ** 2 - y fprime = 2 * x_t x_t_1 = x_t - fx / fprime tol = x_t_1 - x_t if tol < 0: tol = -1 * tol x_t = x_t_1 return x_t_1 calc_squre_root(4) calc_squre_root(9) calc_squre_root(16) calc_squre_root(25) calc_squre_root(36) calc_squre_root(49) calc_squre_root(64) calc_squre_root(81) calc_squre_root(100) calc_squre_root(1) calc_squre_root(2) calc_squre_root(8)
def make_url_part(name, value, value_type): if value == None: return '' if type(value) != value_type: raise ValueError('{}={} must be {}'.format( name, value, value_type)) result = "&${}={}".format(name, value) return result
def make_url_part(name, value, value_type): if value == None: return '' if type(value) != value_type: raise value_error('{}={} must be {}'.format(name, value, value_type)) result = '&${}={}'.format(name, value) return result
__version__ = "1.4.0" __title__ = "ADLES" __summary__ = "Automated Deployment of Lab Environments System (ADLES)" __license__ = "Apache 2.0" __author__ = "Christopher Goes" __email__ = "goesc@acm.org" __url__ = "https://github.com/GhostofGoes/ADLES" __urls__ = { 'GitHub': __url__, 'Homepage': 'https://ghostofgoes.github.io/ADLES/', 'Documentation': 'https://adles.readthedocs.io', 'Publication': 'https://doi.org/10.1016/j.cose.2017.12.007', 'Discord server': 'https://discord.gg/python', 'Issue tracker': 'https://github.com/GhostofGoes/ADLES/issues' }
__version__ = '1.4.0' __title__ = 'ADLES' __summary__ = 'Automated Deployment of Lab Environments System (ADLES)' __license__ = 'Apache 2.0' __author__ = 'Christopher Goes' __email__ = 'goesc@acm.org' __url__ = 'https://github.com/GhostofGoes/ADLES' __urls__ = {'GitHub': __url__, 'Homepage': 'https://ghostofgoes.github.io/ADLES/', 'Documentation': 'https://adles.readthedocs.io', 'Publication': 'https://doi.org/10.1016/j.cose.2017.12.007', 'Discord server': 'https://discord.gg/python', 'Issue tracker': 'https://github.com/GhostofGoes/ADLES/issues'}
bin1=input("what kind of fruit do you want?") if bin1=="apples": print("apples in bin 1") elif bin1=="orenges": print("orenges in bin 2") elif bin1=="bananas": print("bananas in bin 3") else: print("Error! I dont recognize this fruit!")
bin1 = input('what kind of fruit do you want?') if bin1 == 'apples': print('apples in bin 1') elif bin1 == 'orenges': print('orenges in bin 2') elif bin1 == 'bananas': print('bananas in bin 3') else: print('Error! I dont recognize this fruit!')
# # PySNMP MIB module HP-ICF-IPCONFIG (http://snmplabs.com/pysmi) # ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/HP-ICF-IPCONFIG # Produced by pysmi-0.3.4 at Mon Apr 29 19:21:43 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, Integer, ObjectIdentifier = mibBuilder.importSymbols("ASN1", "OctetString", "Integer", "ObjectIdentifier") NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues") SingleValueConstraint, ValueSizeConstraint, ConstraintsUnion, ConstraintsIntersection, ValueRangeConstraint = mibBuilder.importSymbols("ASN1-REFINEMENT", "SingleValueConstraint", "ValueSizeConstraint", "ConstraintsUnion", "ConstraintsIntersection", "ValueRangeConstraint") hpicfCommon, = mibBuilder.importSymbols("HP-ICF-OID", "hpicfCommon") ifIndex, = mibBuilder.importSymbols("IF-MIB", "ifIndex") InetAddressPrefixLength, InetPortNumber, InetAddress, InetAddressIPv4, InetAddressType = mibBuilder.importSymbols("INET-ADDRESS-MIB", "InetAddressPrefixLength", "InetPortNumber", "InetAddress", "InetAddressIPv4", "InetAddressType") ipv6InterfaceEntry, IpAddressOriginTC, IpAddressStatusTC, ipNetToPhysicalEntry, ipv4InterfaceEntry = mibBuilder.importSymbols("IP-MIB", "ipv6InterfaceEntry", "IpAddressOriginTC", "IpAddressStatusTC", "ipNetToPhysicalEntry", "ipv4InterfaceEntry") ObjectGroup, ModuleCompliance, NotificationGroup = mibBuilder.importSymbols("SNMPv2-CONF", "ObjectGroup", "ModuleCompliance", "NotificationGroup") Bits, Integer32, Unsigned32, MibScalar, MibTable, MibTableRow, MibTableColumn, iso, Gauge32, ModuleIdentity, Counter32, MibIdentifier, NotificationType, TimeTicks, IpAddress, ObjectIdentity, Counter64 = mibBuilder.importSymbols("SNMPv2-SMI", "Bits", "Integer32", "Unsigned32", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "iso", "Gauge32", "ModuleIdentity", "Counter32", "MibIdentifier", "NotificationType", "TimeTicks", "IpAddress", "ObjectIdentity", "Counter64") TruthValue, RowStatus, TextualConvention, DisplayString = mibBuilder.importSymbols("SNMPv2-TC", "TruthValue", "RowStatus", "TextualConvention", "DisplayString") tunnelInetConfigEntry, = mibBuilder.importSymbols("TUNNEL-MIB", "tunnelInetConfigEntry") hpicfIpConfig = ModuleIdentity((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10)) hpicfIpConfig.setRevisions(('2017-06-07 21:40', '2016-08-04 21:40', '2010-06-10 21:40', '2009-10-02 00:00', '2009-09-10 00:00', '2009-09-04 00:00', '2009-07-21 00:00', '2008-12-09 00:00', '2008-10-01 00:00', '2007-06-06 00:00', '2007-05-30 00:00', '2007-02-02 00:00', '2006-12-03 00:00', '2006-07-07 00:00', '2005-08-08 16:00',)) if mibBuilder.loadTexts: hpicfIpConfig.setLastUpdated('201706072140Z') if mibBuilder.loadTexts: hpicfIpConfig.setOrganization('HP Networking') hpicfIpConfigObjects = MibIdentifier((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 1)) hpicfIpAddressObjects = MibIdentifier((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 1, 1)) hpicfIpv4InterfaceObjects = MibIdentifier((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 1, 2)) hpicfIpClientTrackerObjects = MibIdentifier((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 1, 3)) hpicfIpv6ConfigObjects = MibIdentifier((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 3)) hpicfIpv6GlobalConfigObjects = MibIdentifier((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 3, 1)) hpicfIpv6NDObjects = MibIdentifier((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 3, 1, 1)) hpicfIpv6IcmpObjects = MibIdentifier((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 3, 1, 2)) hpicfIpv6InterfaceObjects = MibIdentifier((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 3, 2)) hpicfIpAddressTable = MibTable((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 1, 1, 1), ) if mibBuilder.loadTexts: hpicfIpAddressTable.setStatus('current') hpicfIpAddressEntry = MibTableRow((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 1, 1, 1, 1), ).setIndexNames((0, "IF-MIB", "ifIndex"), (0, "HP-ICF-IPCONFIG", "hpicfIpAddressAddrType"), (0, "HP-ICF-IPCONFIG", "hpicfIpAddressAddr")) if mibBuilder.loadTexts: hpicfIpAddressEntry.setStatus('current') hpicfIpAddressAddrType = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 1, 1, 1, 1, 1), InetAddressType()) if mibBuilder.loadTexts: hpicfIpAddressAddrType.setStatus('current') hpicfIpAddressAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 1, 1, 1, 1, 2), InetAddress()) if mibBuilder.loadTexts: hpicfIpAddressAddr.setStatus('current') hpicfIpAddressPrefixLength = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 1, 1, 1, 1, 3), InetAddressPrefixLength()).setMaxAccess("readcreate") if mibBuilder.loadTexts: hpicfIpAddressPrefixLength.setStatus('current') hpicfIpAddressType = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 1, 1, 1, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("unicast", 1), ("anycast", 2))).clone('unicast')).setMaxAccess("readcreate") if mibBuilder.loadTexts: hpicfIpAddressType.setStatus('current') hpicfIpAddressRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 1, 1, 1, 1, 5), RowStatus()).setMaxAccess("readcreate") if mibBuilder.loadTexts: hpicfIpAddressRowStatus.setStatus('current') hpicfIpAddressExtendedType = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 1, 1, 1, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("none", 0), ("eui64", 1), ("linkLocal", 2))).clone('none')).setMaxAccess("readcreate") if mibBuilder.loadTexts: hpicfIpAddressExtendedType.setStatus('current') hpicfSwitchIpAddressTable = MibTable((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 1, 1, 2), ) if mibBuilder.loadTexts: hpicfSwitchIpAddressTable.setStatus('current') hpicfSwitchIpAddressEntry = MibTableRow((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 1, 1, 2, 1), ).setIndexNames((0, "IF-MIB", "ifIndex"), (0, "HP-ICF-IPCONFIG", "hpicfSwitchIpAddressAddrType"), (0, "HP-ICF-IPCONFIG", "hpicfSwitchIpAddressAddr")) if mibBuilder.loadTexts: hpicfSwitchIpAddressEntry.setStatus('current') hpicfSwitchIpAddressAddrType = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 1, 1, 2, 1, 1), InetAddressType()) if mibBuilder.loadTexts: hpicfSwitchIpAddressAddrType.setStatus('current') hpicfSwitchIpAddressAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 1, 1, 2, 1, 2), InetAddress()) if mibBuilder.loadTexts: hpicfSwitchIpAddressAddr.setStatus('current') hpicfSwitchIpAddressPrefixLength = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 1, 1, 2, 1, 3), InetAddressPrefixLength()).setMaxAccess("readonly") if mibBuilder.loadTexts: hpicfSwitchIpAddressPrefixLength.setStatus('current') hpicfSwitchIpAddressType = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 1, 1, 2, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("unicast", 1), ("anycast", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: hpicfSwitchIpAddressType.setStatus('current') hpicfSwitchIpAddressOrigin = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 1, 1, 2, 1, 5), IpAddressOriginTC()).setMaxAccess("readonly") if mibBuilder.loadTexts: hpicfSwitchIpAddressOrigin.setStatus('current') hpicfSwitchIpAddressStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 1, 1, 2, 1, 6), IpAddressStatusTC().clone('preferred')).setMaxAccess("readonly") if mibBuilder.loadTexts: hpicfSwitchIpAddressStatus.setStatus('current') hpicfSwitchIpAddressPreferredLifetime = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 1, 1, 2, 1, 7), Unsigned32()).setUnits('seconds').setMaxAccess("readonly") if mibBuilder.loadTexts: hpicfSwitchIpAddressPreferredLifetime.setStatus('current') hpicfSwitchIpAddressValidLifetime = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 1, 1, 2, 1, 8), Unsigned32()).setUnits('seconds').setMaxAccess("readonly") if mibBuilder.loadTexts: hpicfSwitchIpAddressValidLifetime.setStatus('current') hpicfSwitchIpAddressExtendedType = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 1, 1, 2, 1, 9), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("none", 0), ("eui64", 1), ("linkLocal", 2))).clone('none')).setMaxAccess("readonly") if mibBuilder.loadTexts: hpicfSwitchIpAddressExtendedType.setStatus('current') hpicfIpNetToPhysicalTable = MibTable((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 1, 1, 3), ) if mibBuilder.loadTexts: hpicfIpNetToPhysicalTable.setStatus('current') hpicfIpNetToPhysicalEntry = MibTableRow((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 1, 1, 3, 1), ) ipNetToPhysicalEntry.registerAugmentions(("HP-ICF-IPCONFIG", "hpicfIpNetToPhysicalEntry")) hpicfIpNetToPhysicalEntry.setIndexNames(*ipNetToPhysicalEntry.getIndexNames()) if mibBuilder.loadTexts: hpicfIpNetToPhysicalEntry.setStatus('current') hpicfIpNetToPhysicalPort = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 1, 1, 3, 1, 1), Integer32()).setMaxAccess("readcreate") if mibBuilder.loadTexts: hpicfIpNetToPhysicalPort.setStatus('current') hpicfIpNetToPhysicalTableClear = MibScalar((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 1, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("unknown", 1), ("ipv4", 2), ("ipv6", 3)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: hpicfIpNetToPhysicalTableClear.setStatus('current') hpicfIpv4InterfaceTable = MibTable((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 1, 2, 1), ) if mibBuilder.loadTexts: hpicfIpv4InterfaceTable.setStatus('current') hpicfIpv4InterfaceEntry = MibTableRow((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 1, 2, 1, 1), ) ipv4InterfaceEntry.registerAugmentions(("HP-ICF-IPCONFIG", "hpicfIpv4InterfaceEntry")) hpicfIpv4InterfaceEntry.setIndexNames(*ipv4InterfaceEntry.getIndexNames()) if mibBuilder.loadTexts: hpicfIpv4InterfaceEntry.setStatus('current') hpicfIpv4InterfaceDhcpEnable = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 1, 2, 1, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("full", 1), ("off", 2), ("inform", 3))).clone('full')).setMaxAccess("readwrite") if mibBuilder.loadTexts: hpicfIpv4InterfaceDhcpEnable.setStatus('current') hpicfIpv4InterfaceForwarding = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 1, 2, 1, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2))).clone('enabled')).setMaxAccess("readwrite") if mibBuilder.loadTexts: hpicfIpv4InterfaceForwarding.setStatus('current') hpicfIpv4InterfaceProxyArp = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 1, 2, 1, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2))).clone('disabled')).setMaxAccess("readwrite") if mibBuilder.loadTexts: hpicfIpv4InterfaceProxyArp.setStatus('current') hpicfIpv4InterfaceLocalProxyArp = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 1, 2, 1, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2))).clone('disabled')).setMaxAccess("readwrite") if mibBuilder.loadTexts: hpicfIpv4InterfaceLocalProxyArp.setStatus('current') hpicfIpv4InterfaceBootpGateway = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 1, 2, 1, 1, 5), InetAddressIPv4()).setMaxAccess("readwrite") if mibBuilder.loadTexts: hpicfIpv4InterfaceBootpGateway.setStatus('current') hpicfIpv4InterfaceDirectedBcastFwd = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 1, 2, 1, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("default", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: hpicfIpv4InterfaceDirectedBcastFwd.setStatus('current') hpicfIpClientTrackerEnable = MibScalar((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 1, 3, 1), TruthValue().clone('false')).setMaxAccess("readwrite") if mibBuilder.loadTexts: hpicfIpClientTrackerEnable.setStatus('current') hpicfIpClientTrackerTrusted = MibScalar((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 1, 3, 2), TruthValue().clone('false')).setMaxAccess("readwrite") if mibBuilder.loadTexts: hpicfIpClientTrackerTrusted.setStatus('current') hpicfIpClientTrackerUntrusted = MibScalar((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 1, 3, 3), TruthValue().clone('false')).setMaxAccess("readwrite") if mibBuilder.loadTexts: hpicfIpClientTrackerUntrusted.setStatus('current') hpicfIpv6NDDadAttempts = MibScalar((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 3, 1, 1, 1), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: hpicfIpv6NDDadAttempts.setStatus('current') hpicfIpv6IcmpErrorInterval = MibScalar((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 3, 1, 2, 1), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: hpicfIpv6IcmpErrorInterval.setStatus('current') hpicfIpv6IcmpBucketsize = MibScalar((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 3, 1, 2, 2), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: hpicfIpv6IcmpBucketsize.setStatus('current') hpicfIpv6InterfaceTable = MibTable((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 3, 2, 1), ) if mibBuilder.loadTexts: hpicfIpv6InterfaceTable.setStatus('current') hpicfIpv6InterfaceEntry = MibTableRow((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 3, 2, 1, 1), ) ipv6InterfaceEntry.registerAugmentions(("HP-ICF-IPCONFIG", "hpicfIpv6InterfaceEntry")) hpicfIpv6InterfaceEntry.setIndexNames(*ipv6InterfaceEntry.getIndexNames()) if mibBuilder.loadTexts: hpicfIpv6InterfaceEntry.setStatus('current') hpicfIpv6InterfaceDhcpMode = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 3, 2, 1, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("disabled", 0), ("dhcpFull", 1), ("dhcpInform", 2))).clone('disabled')).setMaxAccess("readwrite") if mibBuilder.loadTexts: hpicfIpv6InterfaceDhcpMode.setStatus('current') hpicfIpv6InterfaceManual = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 3, 2, 1, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2))).clone('disabled')).setMaxAccess("readwrite") if mibBuilder.loadTexts: hpicfIpv6InterfaceManual.setStatus('current') hpicfIpv6InterfaceAutoConfig = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 3, 2, 1, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2))).clone('disabled')).setMaxAccess("readwrite") if mibBuilder.loadTexts: hpicfIpv6InterfaceAutoConfig.setStatus('current') hpicfIpv6InterfaceDhcpRapidCommit = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 3, 2, 1, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2))).clone('disabled')).setMaxAccess("readwrite") if mibBuilder.loadTexts: hpicfIpv6InterfaceDhcpRapidCommit.setStatus('current') hpicfIpv6InterfaceDhcpRelay = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 3, 2, 1, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2))).clone('enabled')).setMaxAccess("readwrite") if mibBuilder.loadTexts: hpicfIpv6InterfaceDhcpRelay.setStatus('current') hpicfIpv6InterfaceCfgEnableStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 3, 2, 1, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("up", 1), ("down", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: hpicfIpv6InterfaceCfgEnableStatus.setStatus('current') hpicfIpv6InterfaceDadAttempts = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 3, 2, 1, 1, 7), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: hpicfIpv6InterfaceDadAttempts.setStatus('current') hpicfIpv6InterfaceDadAttemptsMode = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 3, 2, 1, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("global", 1), ("perInterface", 2))).clone('global')).setMaxAccess("readwrite") if mibBuilder.loadTexts: hpicfIpv6InterfaceDadAttemptsMode.setStatus('current') hpicfIpv6InterfaceReachableTime = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 3, 2, 1, 1, 9), Unsigned32()).setUnits('milliseconds').setMaxAccess("readwrite") if mibBuilder.loadTexts: hpicfIpv6InterfaceReachableTime.setStatus('current') hpicfIpv6InterfaceRetransmitTime = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 3, 2, 1, 1, 10), Unsigned32()).setUnits('milliseconds').setMaxAccess("readwrite") if mibBuilder.loadTexts: hpicfIpv6InterfaceRetransmitTime.setStatus('current') hpicfUdpTunnelTable = MibTable((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 1, 2, 3), ) if mibBuilder.loadTexts: hpicfUdpTunnelTable.setStatus('current') hpicfUdpTunnelEntry = MibTableRow((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 1, 2, 3, 1), ) tunnelInetConfigEntry.registerAugmentions(("HP-ICF-IPCONFIG", "hpicfUdpTunnelEntry")) hpicfUdpTunnelEntry.setIndexNames(*tunnelInetConfigEntry.getIndexNames()) if mibBuilder.loadTexts: hpicfUdpTunnelEntry.setStatus('current') hpicfUdpTunnelSrcPort = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 1, 2, 3, 1, 1), InetPortNumber()).setMaxAccess("readcreate") if mibBuilder.loadTexts: hpicfUdpTunnelSrcPort.setStatus('current') hpicfUdpTunnelMirrorSessionID = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 1, 2, 3, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 512))).setMaxAccess("readcreate") if mibBuilder.loadTexts: hpicfUdpTunnelMirrorSessionID.setStatus('current') hpicfUdpTunnelMirrorTruncate = MibTableColumn((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 1, 2, 3, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2))).clone('disabled')).setMaxAccess("readwrite") if mibBuilder.loadTexts: hpicfUdpTunnelMirrorTruncate.setStatus('current') hpicfIpConfigConformance = MibIdentifier((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 2)) hpicfIpConfigCompliances = MibIdentifier((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 2, 1)) hpicfIpConfigGroups = MibIdentifier((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 2, 2)) hpicfIpConfigCompliance = ModuleCompliance((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 2, 1, 1)).setObjects(("HP-ICF-IPCONFIG", "hpicfIpAddressTableGroup"), ("HP-ICF-IPCONFIG", "hpicfIpv4InterfaceTableGroup"), ("HP-ICF-IPCONFIG", "hpicfSwitchIpAddressTableGroup")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): hpicfIpConfigCompliance = hpicfIpConfigCompliance.setStatus('deprecated') hpicfIpConfigCompliance2 = ModuleCompliance((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 2, 1, 2)).setObjects(("HP-ICF-IPCONFIG", "hpicfIpAddressTableGroup"), ("HP-ICF-IPCONFIG", "hpicfIpv4InterfaceTableGroup"), ("HP-ICF-IPCONFIG", "hpicfSwitchIpAddressTableGroup"), ("HP-ICF-IPCONFIG", "hpicfUdpTunnelTableGroup")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): hpicfIpConfigCompliance2 = hpicfIpConfigCompliance2.setStatus('current') hpicfIpConfigCompliance4 = ModuleCompliance((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 2, 1, 4)).setObjects(("HP-ICF-IPCONFIG", "hpicfIpAddressTableGroup"), ("HP-ICF-IPCONFIG", "hpicfIpv4InterfaceTableGroup2"), ("HP-ICF-IPCONFIG", "hpicfSwitchIpAddressTableGroup"), ("HP-ICF-IPCONFIG", "hpicfIpv6InterfaceTableGroup"), ("HP-ICF-IPCONFIG", "hpicfUdpTunnelTableGroup")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): hpicfIpConfigCompliance4 = hpicfIpConfigCompliance4.setStatus('current') hpicfIpConfigCompliance5 = ModuleCompliance((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 2, 1, 5)).setObjects(("HP-ICF-IPCONFIG", "hpicfIpv6DadAttemptsGroup"), ("HP-ICF-IPCONFIG", "hpicfIpv6NDGroup")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): hpicfIpConfigCompliance5 = hpicfIpConfigCompliance5.setStatus('current') hpicfIpConfigCompliance6 = ModuleCompliance((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 2, 1, 6)).setObjects(("HP-ICF-IPCONFIG", "hpicfIpv6IcmpGroup")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): hpicfIpConfigCompliance6 = hpicfIpConfigCompliance6.setStatus('current') hpicfIpConfigCompliance7 = ModuleCompliance((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 2, 1, 7)).setObjects(("HP-ICF-IPCONFIG", "hpicfIpNetToPhysicalTableGroup")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): hpicfIpConfigCompliance7 = hpicfIpConfigCompliance7.setStatus('current') hpicfIpConfigCompliance8 = ModuleCompliance((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 2, 1, 8)).setObjects(("HP-ICF-IPCONFIG", "hpicfUdpTunnelMirrorGroup")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): hpicfIpConfigCompliance8 = hpicfIpConfigCompliance8.setStatus('current') hpicfIpConfigCompliance9 = ModuleCompliance((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 2, 1, 9)).setObjects(("HP-ICF-IPCONFIG", "hpicfIpAddressTableGroup"), ("HP-ICF-IPCONFIG", "hpicfIpv4InterfaceTableGroup3"), ("HP-ICF-IPCONFIG", "hpicfSwitchIpAddressTableGroup"), ("HP-ICF-IPCONFIG", "hpicfIpv6InterfaceTableGroup"), ("HP-ICF-IPCONFIG", "hpicfUdpTunnelTableGroup")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): hpicfIpConfigCompliance9 = hpicfIpConfigCompliance9.setStatus('current') hpicfIpConfigCompliance10 = ModuleCompliance((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 2, 1, 10)).setObjects(("HP-ICF-IPCONFIG", "hpicfIpClientTrackerGroup")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): hpicfIpConfigCompliance10 = hpicfIpConfigCompliance10.setStatus('deprecated') hpicfIpConfigCompliance11 = ModuleCompliance((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 2, 1, 11)).setObjects(("HP-ICF-IPCONFIG", "hpicfIpClientTrackerGroup2")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): hpicfIpConfigCompliance11 = hpicfIpConfigCompliance11.setStatus('current') hpicfIpAddressTableGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 2, 2, 1)).setObjects(("HP-ICF-IPCONFIG", "hpicfIpAddressPrefixLength"), ("HP-ICF-IPCONFIG", "hpicfIpAddressType"), ("HP-ICF-IPCONFIG", "hpicfIpAddressRowStatus"), ("HP-ICF-IPCONFIG", "hpicfIpAddressExtendedType")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): hpicfIpAddressTableGroup = hpicfIpAddressTableGroup.setStatus('current') hpicfSwitchIpAddressTableGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 2, 2, 2)).setObjects(("HP-ICF-IPCONFIG", "hpicfSwitchIpAddressPrefixLength"), ("HP-ICF-IPCONFIG", "hpicfSwitchIpAddressType"), ("HP-ICF-IPCONFIG", "hpicfSwitchIpAddressOrigin"), ("HP-ICF-IPCONFIG", "hpicfSwitchIpAddressStatus"), ("HP-ICF-IPCONFIG", "hpicfSwitchIpAddressPreferredLifetime"), ("HP-ICF-IPCONFIG", "hpicfSwitchIpAddressValidLifetime"), ("HP-ICF-IPCONFIG", "hpicfSwitchIpAddressExtendedType")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): hpicfSwitchIpAddressTableGroup = hpicfSwitchIpAddressTableGroup.setStatus('current') hpicfIpv4InterfaceTableGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 2, 2, 3)).setObjects(("HP-ICF-IPCONFIG", "hpicfIpv4InterfaceDhcpEnable"), ("HP-ICF-IPCONFIG", "hpicfIpv4InterfaceForwarding"), ("HP-ICF-IPCONFIG", "hpicfIpv4InterfaceProxyArp")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): hpicfIpv4InterfaceTableGroup = hpicfIpv4InterfaceTableGroup.setStatus('deprecated') hpicfUdpTunnelTableGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 2, 2, 4)).setObjects(("HP-ICF-IPCONFIG", "hpicfUdpTunnelSrcPort"), ("HP-ICF-IPCONFIG", "hpicfUdpTunnelMirrorSessionID")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): hpicfUdpTunnelTableGroup = hpicfUdpTunnelTableGroup.setStatus('current') hpicfIpv6InterfaceTableGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 2, 2, 5)).setObjects(("HP-ICF-IPCONFIG", "hpicfIpv6InterfaceDhcpMode"), ("HP-ICF-IPCONFIG", "hpicfIpv6InterfaceManual"), ("HP-ICF-IPCONFIG", "hpicfIpv6InterfaceAutoConfig"), ("HP-ICF-IPCONFIG", "hpicfIpv6InterfaceDhcpRapidCommit"), ("HP-ICF-IPCONFIG", "hpicfIpv6InterfaceDhcpRelay"), ("HP-ICF-IPCONFIG", "hpicfIpv6InterfaceCfgEnableStatus")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): hpicfIpv6InterfaceTableGroup = hpicfIpv6InterfaceTableGroup.setStatus('current') hpicfIpv4InterfaceTableGroup2 = ObjectGroup((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 2, 2, 6)).setObjects(("HP-ICF-IPCONFIG", "hpicfIpv4InterfaceDhcpEnable"), ("HP-ICF-IPCONFIG", "hpicfIpv4InterfaceForwarding"), ("HP-ICF-IPCONFIG", "hpicfIpv4InterfaceProxyArp"), ("HP-ICF-IPCONFIG", "hpicfIpv4InterfaceLocalProxyArp"), ("HP-ICF-IPCONFIG", "hpicfIpv4InterfaceBootpGateway")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): hpicfIpv4InterfaceTableGroup2 = hpicfIpv4InterfaceTableGroup2.setStatus('current') hpicfIpv6DadAttemptsGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 2, 2, 7)).setObjects(("HP-ICF-IPCONFIG", "hpicfIpv6NDDadAttempts"), ("HP-ICF-IPCONFIG", "hpicfIpv6InterfaceDadAttempts"), ("HP-ICF-IPCONFIG", "hpicfIpv6InterfaceDadAttemptsMode")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): hpicfIpv6DadAttemptsGroup = hpicfIpv6DadAttemptsGroup.setStatus('current') hpicfIpv6IcmpGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 2, 2, 8)).setObjects(("HP-ICF-IPCONFIG", "hpicfIpv6IcmpErrorInterval"), ("HP-ICF-IPCONFIG", "hpicfIpv6IcmpBucketsize")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): hpicfIpv6IcmpGroup = hpicfIpv6IcmpGroup.setStatus('current') hpicfIpNetToPhysicalTableGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 2, 2, 9)).setObjects(("HP-ICF-IPCONFIG", "hpicfIpNetToPhysicalPort"), ("HP-ICF-IPCONFIG", "hpicfIpNetToPhysicalTableClear")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): hpicfIpNetToPhysicalTableGroup = hpicfIpNetToPhysicalTableGroup.setStatus('current') hpicfUdpTunnelMirrorGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 2, 2, 10)).setObjects(("HP-ICF-IPCONFIG", "hpicfUdpTunnelMirrorTruncate")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): hpicfUdpTunnelMirrorGroup = hpicfUdpTunnelMirrorGroup.setStatus('current') hpicfIpv6NDGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 2, 2, 11)).setObjects(("HP-ICF-IPCONFIG", "hpicfIpv6InterfaceReachableTime"), ("HP-ICF-IPCONFIG", "hpicfIpv6InterfaceRetransmitTime")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): hpicfIpv6NDGroup = hpicfIpv6NDGroup.setStatus('current') hpicfIpv4InterfaceTableGroup3 = ObjectGroup((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 2, 2, 12)).setObjects(("HP-ICF-IPCONFIG", "hpicfIpv4InterfaceDhcpEnable"), ("HP-ICF-IPCONFIG", "hpicfIpv4InterfaceForwarding"), ("HP-ICF-IPCONFIG", "hpicfIpv4InterfaceProxyArp"), ("HP-ICF-IPCONFIG", "hpicfIpv4InterfaceLocalProxyArp"), ("HP-ICF-IPCONFIG", "hpicfIpv4InterfaceBootpGateway"), ("HP-ICF-IPCONFIG", "hpicfIpv4InterfaceDirectedBcastFwd")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): hpicfIpv4InterfaceTableGroup3 = hpicfIpv4InterfaceTableGroup3.setStatus('current') hpicfIpClientTrackerGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 2, 2, 13)).setObjects(("HP-ICF-IPCONFIG", "hpicfIpClientTrackerEnable")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): hpicfIpClientTrackerGroup = hpicfIpClientTrackerGroup.setStatus('deprecated') hpicfIpClientTrackerGroup2 = ObjectGroup((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 2, 2, 14)).setObjects(("HP-ICF-IPCONFIG", "hpicfIpClientTrackerEnable"), ("HP-ICF-IPCONFIG", "hpicfIpClientTrackerTrusted"), ("HP-ICF-IPCONFIG", "hpicfIpClientTrackerUntrusted")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): hpicfIpClientTrackerGroup2 = hpicfIpClientTrackerGroup2.setStatus('current') mibBuilder.exportSymbols("HP-ICF-IPCONFIG", hpicfIpv4InterfaceEntry=hpicfIpv4InterfaceEntry, hpicfSwitchIpAddressPrefixLength=hpicfSwitchIpAddressPrefixLength, hpicfIpConfigCompliance5=hpicfIpConfigCompliance5, hpicfIpConfigCompliance2=hpicfIpConfigCompliance2, hpicfIpAddressAddr=hpicfIpAddressAddr, hpicfSwitchIpAddressType=hpicfSwitchIpAddressType, hpicfIpv4InterfaceLocalProxyArp=hpicfIpv4InterfaceLocalProxyArp, hpicfIpAddressTable=hpicfIpAddressTable, hpicfIpv6InterfaceTable=hpicfIpv6InterfaceTable, hpicfIpClientTrackerTrusted=hpicfIpClientTrackerTrusted, hpicfIpConfigConformance=hpicfIpConfigConformance, hpicfIpConfigCompliance8=hpicfIpConfigCompliance8, hpicfIpv6InterfaceEntry=hpicfIpv6InterfaceEntry, hpicfSwitchIpAddressTable=hpicfSwitchIpAddressTable, hpicfIpConfigCompliances=hpicfIpConfigCompliances, hpicfIpv6InterfaceRetransmitTime=hpicfIpv6InterfaceRetransmitTime, hpicfIpAddressObjects=hpicfIpAddressObjects, hpicfUdpTunnelSrcPort=hpicfUdpTunnelSrcPort, hpicfIpConfig=hpicfIpConfig, hpicfIpv6NDObjects=hpicfIpv6NDObjects, hpicfIpv4InterfaceTableGroup=hpicfIpv4InterfaceTableGroup, hpicfIpConfigCompliance10=hpicfIpConfigCompliance10, hpicfSwitchIpAddressValidLifetime=hpicfSwitchIpAddressValidLifetime, hpicfIpv4InterfaceTableGroup2=hpicfIpv4InterfaceTableGroup2, hpicfUdpTunnelMirrorGroup=hpicfUdpTunnelMirrorGroup, hpicfIpAddressType=hpicfIpAddressType, hpicfIpNetToPhysicalTable=hpicfIpNetToPhysicalTable, hpicfIpConfigCompliance11=hpicfIpConfigCompliance11, hpicfIpAddressExtendedType=hpicfIpAddressExtendedType, hpicfIpv6IcmpErrorInterval=hpicfIpv6IcmpErrorInterval, hpicfIpv6IcmpGroup=hpicfIpv6IcmpGroup, hpicfIpv4InterfaceBootpGateway=hpicfIpv4InterfaceBootpGateway, hpicfIpv6ConfigObjects=hpicfIpv6ConfigObjects, hpicfUdpTunnelTable=hpicfUdpTunnelTable, hpicfIpv4InterfaceProxyArp=hpicfIpv4InterfaceProxyArp, hpicfIpClientTrackerGroup2=hpicfIpClientTrackerGroup2, hpicfIpv6IcmpObjects=hpicfIpv6IcmpObjects, hpicfIpv6InterfaceTableGroup=hpicfIpv6InterfaceTableGroup, hpicfIpNetToPhysicalTableGroup=hpicfIpNetToPhysicalTableGroup, hpicfIpv4InterfaceObjects=hpicfIpv4InterfaceObjects, hpicfIpClientTrackerObjects=hpicfIpClientTrackerObjects, hpicfIpConfigCompliance7=hpicfIpConfigCompliance7, hpicfSwitchIpAddressPreferredLifetime=hpicfSwitchIpAddressPreferredLifetime, hpicfIpConfigCompliance=hpicfIpConfigCompliance, hpicfIpv6InterfaceDadAttemptsMode=hpicfIpv6InterfaceDadAttemptsMode, hpicfIpv6InterfaceReachableTime=hpicfIpv6InterfaceReachableTime, hpicfIpConfigGroups=hpicfIpConfigGroups, hpicfIpNetToPhysicalPort=hpicfIpNetToPhysicalPort, hpicfIpAddressTableGroup=hpicfIpAddressTableGroup, hpicfIpAddressRowStatus=hpicfIpAddressRowStatus, hpicfIpv6NDGroup=hpicfIpv6NDGroup, hpicfIpNetToPhysicalTableClear=hpicfIpNetToPhysicalTableClear, hpicfSwitchIpAddressEntry=hpicfSwitchIpAddressEntry, hpicfSwitchIpAddressExtendedType=hpicfSwitchIpAddressExtendedType, hpicfIpConfigCompliance9=hpicfIpConfigCompliance9, hpicfIpConfigCompliance6=hpicfIpConfigCompliance6, hpicfIpv6InterfaceManual=hpicfIpv6InterfaceManual, hpicfIpv6GlobalConfigObjects=hpicfIpv6GlobalConfigObjects, hpicfSwitchIpAddressOrigin=hpicfSwitchIpAddressOrigin, hpicfIpClientTrackerEnable=hpicfIpClientTrackerEnable, hpicfIpv6InterfaceDhcpRapidCommit=hpicfIpv6InterfaceDhcpRapidCommit, hpicfIpv4InterfaceForwarding=hpicfIpv4InterfaceForwarding, PYSNMP_MODULE_ID=hpicfIpConfig, hpicfIpConfigObjects=hpicfIpConfigObjects, hpicfIpv6InterfaceDhcpRelay=hpicfIpv6InterfaceDhcpRelay, hpicfIpv6DadAttemptsGroup=hpicfIpv6DadAttemptsGroup, hpicfIpNetToPhysicalEntry=hpicfIpNetToPhysicalEntry, hpicfUdpTunnelEntry=hpicfUdpTunnelEntry, hpicfUdpTunnelMirrorSessionID=hpicfUdpTunnelMirrorSessionID, hpicfIpv6IcmpBucketsize=hpicfIpv6IcmpBucketsize, hpicfIpv4InterfaceTableGroup3=hpicfIpv4InterfaceTableGroup3, hpicfIpv4InterfaceTable=hpicfIpv4InterfaceTable, hpicfIpClientTrackerGroup=hpicfIpClientTrackerGroup, hpicfIpAddressEntry=hpicfIpAddressEntry, hpicfIpv6InterfaceDadAttempts=hpicfIpv6InterfaceDadAttempts, hpicfUdpTunnelTableGroup=hpicfUdpTunnelTableGroup, hpicfIpv6InterfaceCfgEnableStatus=hpicfIpv6InterfaceCfgEnableStatus, hpicfSwitchIpAddressStatus=hpicfSwitchIpAddressStatus, hpicfIpv6InterfaceAutoConfig=hpicfIpv6InterfaceAutoConfig, hpicfIpAddressPrefixLength=hpicfIpAddressPrefixLength, hpicfIpv6InterfaceDhcpMode=hpicfIpv6InterfaceDhcpMode, hpicfSwitchIpAddressTableGroup=hpicfSwitchIpAddressTableGroup, hpicfIpAddressAddrType=hpicfIpAddressAddrType, hpicfIpv6InterfaceObjects=hpicfIpv6InterfaceObjects, hpicfIpv4InterfaceDhcpEnable=hpicfIpv4InterfaceDhcpEnable, hpicfIpClientTrackerUntrusted=hpicfIpClientTrackerUntrusted, hpicfIpv4InterfaceDirectedBcastFwd=hpicfIpv4InterfaceDirectedBcastFwd, hpicfUdpTunnelMirrorTruncate=hpicfUdpTunnelMirrorTruncate, hpicfIpConfigCompliance4=hpicfIpConfigCompliance4, hpicfSwitchIpAddressAddr=hpicfSwitchIpAddressAddr, hpicfIpv6NDDadAttempts=hpicfIpv6NDDadAttempts, hpicfSwitchIpAddressAddrType=hpicfSwitchIpAddressAddrType)
(octet_string, integer, object_identifier) = mibBuilder.importSymbols('ASN1', 'OctetString', 'Integer', 'ObjectIdentifier') (named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues') (single_value_constraint, value_size_constraint, constraints_union, constraints_intersection, value_range_constraint) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'SingleValueConstraint', 'ValueSizeConstraint', 'ConstraintsUnion', 'ConstraintsIntersection', 'ValueRangeConstraint') (hpicf_common,) = mibBuilder.importSymbols('HP-ICF-OID', 'hpicfCommon') (if_index,) = mibBuilder.importSymbols('IF-MIB', 'ifIndex') (inet_address_prefix_length, inet_port_number, inet_address, inet_address_i_pv4, inet_address_type) = mibBuilder.importSymbols('INET-ADDRESS-MIB', 'InetAddressPrefixLength', 'InetPortNumber', 'InetAddress', 'InetAddressIPv4', 'InetAddressType') (ipv6_interface_entry, ip_address_origin_tc, ip_address_status_tc, ip_net_to_physical_entry, ipv4_interface_entry) = mibBuilder.importSymbols('IP-MIB', 'ipv6InterfaceEntry', 'IpAddressOriginTC', 'IpAddressStatusTC', 'ipNetToPhysicalEntry', 'ipv4InterfaceEntry') (object_group, module_compliance, notification_group) = mibBuilder.importSymbols('SNMPv2-CONF', 'ObjectGroup', 'ModuleCompliance', 'NotificationGroup') (bits, integer32, unsigned32, mib_scalar, mib_table, mib_table_row, mib_table_column, iso, gauge32, module_identity, counter32, mib_identifier, notification_type, time_ticks, ip_address, object_identity, counter64) = mibBuilder.importSymbols('SNMPv2-SMI', 'Bits', 'Integer32', 'Unsigned32', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn', 'iso', 'Gauge32', 'ModuleIdentity', 'Counter32', 'MibIdentifier', 'NotificationType', 'TimeTicks', 'IpAddress', 'ObjectIdentity', 'Counter64') (truth_value, row_status, textual_convention, display_string) = mibBuilder.importSymbols('SNMPv2-TC', 'TruthValue', 'RowStatus', 'TextualConvention', 'DisplayString') (tunnel_inet_config_entry,) = mibBuilder.importSymbols('TUNNEL-MIB', 'tunnelInetConfigEntry') hpicf_ip_config = module_identity((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10)) hpicfIpConfig.setRevisions(('2017-06-07 21:40', '2016-08-04 21:40', '2010-06-10 21:40', '2009-10-02 00:00', '2009-09-10 00:00', '2009-09-04 00:00', '2009-07-21 00:00', '2008-12-09 00:00', '2008-10-01 00:00', '2007-06-06 00:00', '2007-05-30 00:00', '2007-02-02 00:00', '2006-12-03 00:00', '2006-07-07 00:00', '2005-08-08 16:00')) if mibBuilder.loadTexts: hpicfIpConfig.setLastUpdated('201706072140Z') if mibBuilder.loadTexts: hpicfIpConfig.setOrganization('HP Networking') hpicf_ip_config_objects = mib_identifier((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 1)) hpicf_ip_address_objects = mib_identifier((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 1, 1)) hpicf_ipv4_interface_objects = mib_identifier((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 1, 2)) hpicf_ip_client_tracker_objects = mib_identifier((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 1, 3)) hpicf_ipv6_config_objects = mib_identifier((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 3)) hpicf_ipv6_global_config_objects = mib_identifier((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 3, 1)) hpicf_ipv6_nd_objects = mib_identifier((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 3, 1, 1)) hpicf_ipv6_icmp_objects = mib_identifier((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 3, 1, 2)) hpicf_ipv6_interface_objects = mib_identifier((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 3, 2)) hpicf_ip_address_table = mib_table((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 1, 1, 1)) if mibBuilder.loadTexts: hpicfIpAddressTable.setStatus('current') hpicf_ip_address_entry = mib_table_row((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 1, 1, 1, 1)).setIndexNames((0, 'IF-MIB', 'ifIndex'), (0, 'HP-ICF-IPCONFIG', 'hpicfIpAddressAddrType'), (0, 'HP-ICF-IPCONFIG', 'hpicfIpAddressAddr')) if mibBuilder.loadTexts: hpicfIpAddressEntry.setStatus('current') hpicf_ip_address_addr_type = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 1, 1, 1, 1, 1), inet_address_type()) if mibBuilder.loadTexts: hpicfIpAddressAddrType.setStatus('current') hpicf_ip_address_addr = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 1, 1, 1, 1, 2), inet_address()) if mibBuilder.loadTexts: hpicfIpAddressAddr.setStatus('current') hpicf_ip_address_prefix_length = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 1, 1, 1, 1, 3), inet_address_prefix_length()).setMaxAccess('readcreate') if mibBuilder.loadTexts: hpicfIpAddressPrefixLength.setStatus('current') hpicf_ip_address_type = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 1, 1, 1, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('unicast', 1), ('anycast', 2))).clone('unicast')).setMaxAccess('readcreate') if mibBuilder.loadTexts: hpicfIpAddressType.setStatus('current') hpicf_ip_address_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 1, 1, 1, 1, 5), row_status()).setMaxAccess('readcreate') if mibBuilder.loadTexts: hpicfIpAddressRowStatus.setStatus('current') hpicf_ip_address_extended_type = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 1, 1, 1, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('none', 0), ('eui64', 1), ('linkLocal', 2))).clone('none')).setMaxAccess('readcreate') if mibBuilder.loadTexts: hpicfIpAddressExtendedType.setStatus('current') hpicf_switch_ip_address_table = mib_table((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 1, 1, 2)) if mibBuilder.loadTexts: hpicfSwitchIpAddressTable.setStatus('current') hpicf_switch_ip_address_entry = mib_table_row((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 1, 1, 2, 1)).setIndexNames((0, 'IF-MIB', 'ifIndex'), (0, 'HP-ICF-IPCONFIG', 'hpicfSwitchIpAddressAddrType'), (0, 'HP-ICF-IPCONFIG', 'hpicfSwitchIpAddressAddr')) if mibBuilder.loadTexts: hpicfSwitchIpAddressEntry.setStatus('current') hpicf_switch_ip_address_addr_type = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 1, 1, 2, 1, 1), inet_address_type()) if mibBuilder.loadTexts: hpicfSwitchIpAddressAddrType.setStatus('current') hpicf_switch_ip_address_addr = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 1, 1, 2, 1, 2), inet_address()) if mibBuilder.loadTexts: hpicfSwitchIpAddressAddr.setStatus('current') hpicf_switch_ip_address_prefix_length = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 1, 1, 2, 1, 3), inet_address_prefix_length()).setMaxAccess('readonly') if mibBuilder.loadTexts: hpicfSwitchIpAddressPrefixLength.setStatus('current') hpicf_switch_ip_address_type = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 1, 1, 2, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('unicast', 1), ('anycast', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: hpicfSwitchIpAddressType.setStatus('current') hpicf_switch_ip_address_origin = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 1, 1, 2, 1, 5), ip_address_origin_tc()).setMaxAccess('readonly') if mibBuilder.loadTexts: hpicfSwitchIpAddressOrigin.setStatus('current') hpicf_switch_ip_address_status = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 1, 1, 2, 1, 6), ip_address_status_tc().clone('preferred')).setMaxAccess('readonly') if mibBuilder.loadTexts: hpicfSwitchIpAddressStatus.setStatus('current') hpicf_switch_ip_address_preferred_lifetime = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 1, 1, 2, 1, 7), unsigned32()).setUnits('seconds').setMaxAccess('readonly') if mibBuilder.loadTexts: hpicfSwitchIpAddressPreferredLifetime.setStatus('current') hpicf_switch_ip_address_valid_lifetime = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 1, 1, 2, 1, 8), unsigned32()).setUnits('seconds').setMaxAccess('readonly') if mibBuilder.loadTexts: hpicfSwitchIpAddressValidLifetime.setStatus('current') hpicf_switch_ip_address_extended_type = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 1, 1, 2, 1, 9), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('none', 0), ('eui64', 1), ('linkLocal', 2))).clone('none')).setMaxAccess('readonly') if mibBuilder.loadTexts: hpicfSwitchIpAddressExtendedType.setStatus('current') hpicf_ip_net_to_physical_table = mib_table((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 1, 1, 3)) if mibBuilder.loadTexts: hpicfIpNetToPhysicalTable.setStatus('current') hpicf_ip_net_to_physical_entry = mib_table_row((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 1, 1, 3, 1)) ipNetToPhysicalEntry.registerAugmentions(('HP-ICF-IPCONFIG', 'hpicfIpNetToPhysicalEntry')) hpicfIpNetToPhysicalEntry.setIndexNames(*ipNetToPhysicalEntry.getIndexNames()) if mibBuilder.loadTexts: hpicfIpNetToPhysicalEntry.setStatus('current') hpicf_ip_net_to_physical_port = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 1, 1, 3, 1, 1), integer32()).setMaxAccess('readcreate') if mibBuilder.loadTexts: hpicfIpNetToPhysicalPort.setStatus('current') hpicf_ip_net_to_physical_table_clear = mib_scalar((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 1, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('unknown', 1), ('ipv4', 2), ('ipv6', 3)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: hpicfIpNetToPhysicalTableClear.setStatus('current') hpicf_ipv4_interface_table = mib_table((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 1, 2, 1)) if mibBuilder.loadTexts: hpicfIpv4InterfaceTable.setStatus('current') hpicf_ipv4_interface_entry = mib_table_row((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 1, 2, 1, 1)) ipv4InterfaceEntry.registerAugmentions(('HP-ICF-IPCONFIG', 'hpicfIpv4InterfaceEntry')) hpicfIpv4InterfaceEntry.setIndexNames(*ipv4InterfaceEntry.getIndexNames()) if mibBuilder.loadTexts: hpicfIpv4InterfaceEntry.setStatus('current') hpicf_ipv4_interface_dhcp_enable = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 1, 2, 1, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('full', 1), ('off', 2), ('inform', 3))).clone('full')).setMaxAccess('readwrite') if mibBuilder.loadTexts: hpicfIpv4InterfaceDhcpEnable.setStatus('current') hpicf_ipv4_interface_forwarding = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 1, 2, 1, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2))).clone('enabled')).setMaxAccess('readwrite') if mibBuilder.loadTexts: hpicfIpv4InterfaceForwarding.setStatus('current') hpicf_ipv4_interface_proxy_arp = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 1, 2, 1, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2))).clone('disabled')).setMaxAccess('readwrite') if mibBuilder.loadTexts: hpicfIpv4InterfaceProxyArp.setStatus('current') hpicf_ipv4_interface_local_proxy_arp = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 1, 2, 1, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2))).clone('disabled')).setMaxAccess('readwrite') if mibBuilder.loadTexts: hpicfIpv4InterfaceLocalProxyArp.setStatus('current') hpicf_ipv4_interface_bootp_gateway = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 1, 2, 1, 1, 5), inet_address_i_pv4()).setMaxAccess('readwrite') if mibBuilder.loadTexts: hpicfIpv4InterfaceBootpGateway.setStatus('current') hpicf_ipv4_interface_directed_bcast_fwd = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 1, 2, 1, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('default', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: hpicfIpv4InterfaceDirectedBcastFwd.setStatus('current') hpicf_ip_client_tracker_enable = mib_scalar((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 1, 3, 1), truth_value().clone('false')).setMaxAccess('readwrite') if mibBuilder.loadTexts: hpicfIpClientTrackerEnable.setStatus('current') hpicf_ip_client_tracker_trusted = mib_scalar((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 1, 3, 2), truth_value().clone('false')).setMaxAccess('readwrite') if mibBuilder.loadTexts: hpicfIpClientTrackerTrusted.setStatus('current') hpicf_ip_client_tracker_untrusted = mib_scalar((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 1, 3, 3), truth_value().clone('false')).setMaxAccess('readwrite') if mibBuilder.loadTexts: hpicfIpClientTrackerUntrusted.setStatus('current') hpicf_ipv6_nd_dad_attempts = mib_scalar((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 3, 1, 1, 1), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: hpicfIpv6NDDadAttempts.setStatus('current') hpicf_ipv6_icmp_error_interval = mib_scalar((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 3, 1, 2, 1), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: hpicfIpv6IcmpErrorInterval.setStatus('current') hpicf_ipv6_icmp_bucketsize = mib_scalar((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 3, 1, 2, 2), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: hpicfIpv6IcmpBucketsize.setStatus('current') hpicf_ipv6_interface_table = mib_table((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 3, 2, 1)) if mibBuilder.loadTexts: hpicfIpv6InterfaceTable.setStatus('current') hpicf_ipv6_interface_entry = mib_table_row((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 3, 2, 1, 1)) ipv6InterfaceEntry.registerAugmentions(('HP-ICF-IPCONFIG', 'hpicfIpv6InterfaceEntry')) hpicfIpv6InterfaceEntry.setIndexNames(*ipv6InterfaceEntry.getIndexNames()) if mibBuilder.loadTexts: hpicfIpv6InterfaceEntry.setStatus('current') hpicf_ipv6_interface_dhcp_mode = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 3, 2, 1, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('disabled', 0), ('dhcpFull', 1), ('dhcpInform', 2))).clone('disabled')).setMaxAccess('readwrite') if mibBuilder.loadTexts: hpicfIpv6InterfaceDhcpMode.setStatus('current') hpicf_ipv6_interface_manual = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 3, 2, 1, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2))).clone('disabled')).setMaxAccess('readwrite') if mibBuilder.loadTexts: hpicfIpv6InterfaceManual.setStatus('current') hpicf_ipv6_interface_auto_config = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 3, 2, 1, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2))).clone('disabled')).setMaxAccess('readwrite') if mibBuilder.loadTexts: hpicfIpv6InterfaceAutoConfig.setStatus('current') hpicf_ipv6_interface_dhcp_rapid_commit = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 3, 2, 1, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2))).clone('disabled')).setMaxAccess('readwrite') if mibBuilder.loadTexts: hpicfIpv6InterfaceDhcpRapidCommit.setStatus('current') hpicf_ipv6_interface_dhcp_relay = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 3, 2, 1, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2))).clone('enabled')).setMaxAccess('readwrite') if mibBuilder.loadTexts: hpicfIpv6InterfaceDhcpRelay.setStatus('current') hpicf_ipv6_interface_cfg_enable_status = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 3, 2, 1, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('up', 1), ('down', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: hpicfIpv6InterfaceCfgEnableStatus.setStatus('current') hpicf_ipv6_interface_dad_attempts = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 3, 2, 1, 1, 7), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: hpicfIpv6InterfaceDadAttempts.setStatus('current') hpicf_ipv6_interface_dad_attempts_mode = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 3, 2, 1, 1, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('global', 1), ('perInterface', 2))).clone('global')).setMaxAccess('readwrite') if mibBuilder.loadTexts: hpicfIpv6InterfaceDadAttemptsMode.setStatus('current') hpicf_ipv6_interface_reachable_time = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 3, 2, 1, 1, 9), unsigned32()).setUnits('milliseconds').setMaxAccess('readwrite') if mibBuilder.loadTexts: hpicfIpv6InterfaceReachableTime.setStatus('current') hpicf_ipv6_interface_retransmit_time = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 3, 2, 1, 1, 10), unsigned32()).setUnits('milliseconds').setMaxAccess('readwrite') if mibBuilder.loadTexts: hpicfIpv6InterfaceRetransmitTime.setStatus('current') hpicf_udp_tunnel_table = mib_table((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 1, 2, 3)) if mibBuilder.loadTexts: hpicfUdpTunnelTable.setStatus('current') hpicf_udp_tunnel_entry = mib_table_row((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 1, 2, 3, 1)) tunnelInetConfigEntry.registerAugmentions(('HP-ICF-IPCONFIG', 'hpicfUdpTunnelEntry')) hpicfUdpTunnelEntry.setIndexNames(*tunnelInetConfigEntry.getIndexNames()) if mibBuilder.loadTexts: hpicfUdpTunnelEntry.setStatus('current') hpicf_udp_tunnel_src_port = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 1, 2, 3, 1, 1), inet_port_number()).setMaxAccess('readcreate') if mibBuilder.loadTexts: hpicfUdpTunnelSrcPort.setStatus('current') hpicf_udp_tunnel_mirror_session_id = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 1, 2, 3, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 512))).setMaxAccess('readcreate') if mibBuilder.loadTexts: hpicfUdpTunnelMirrorSessionID.setStatus('current') hpicf_udp_tunnel_mirror_truncate = mib_table_column((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 1, 2, 3, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2))).clone('disabled')).setMaxAccess('readwrite') if mibBuilder.loadTexts: hpicfUdpTunnelMirrorTruncate.setStatus('current') hpicf_ip_config_conformance = mib_identifier((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 2)) hpicf_ip_config_compliances = mib_identifier((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 2, 1)) hpicf_ip_config_groups = mib_identifier((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 2, 2)) hpicf_ip_config_compliance = module_compliance((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 2, 1, 1)).setObjects(('HP-ICF-IPCONFIG', 'hpicfIpAddressTableGroup'), ('HP-ICF-IPCONFIG', 'hpicfIpv4InterfaceTableGroup'), ('HP-ICF-IPCONFIG', 'hpicfSwitchIpAddressTableGroup')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): hpicf_ip_config_compliance = hpicfIpConfigCompliance.setStatus('deprecated') hpicf_ip_config_compliance2 = module_compliance((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 2, 1, 2)).setObjects(('HP-ICF-IPCONFIG', 'hpicfIpAddressTableGroup'), ('HP-ICF-IPCONFIG', 'hpicfIpv4InterfaceTableGroup'), ('HP-ICF-IPCONFIG', 'hpicfSwitchIpAddressTableGroup'), ('HP-ICF-IPCONFIG', 'hpicfUdpTunnelTableGroup')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): hpicf_ip_config_compliance2 = hpicfIpConfigCompliance2.setStatus('current') hpicf_ip_config_compliance4 = module_compliance((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 2, 1, 4)).setObjects(('HP-ICF-IPCONFIG', 'hpicfIpAddressTableGroup'), ('HP-ICF-IPCONFIG', 'hpicfIpv4InterfaceTableGroup2'), ('HP-ICF-IPCONFIG', 'hpicfSwitchIpAddressTableGroup'), ('HP-ICF-IPCONFIG', 'hpicfIpv6InterfaceTableGroup'), ('HP-ICF-IPCONFIG', 'hpicfUdpTunnelTableGroup')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): hpicf_ip_config_compliance4 = hpicfIpConfigCompliance4.setStatus('current') hpicf_ip_config_compliance5 = module_compliance((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 2, 1, 5)).setObjects(('HP-ICF-IPCONFIG', 'hpicfIpv6DadAttemptsGroup'), ('HP-ICF-IPCONFIG', 'hpicfIpv6NDGroup')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): hpicf_ip_config_compliance5 = hpicfIpConfigCompliance5.setStatus('current') hpicf_ip_config_compliance6 = module_compliance((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 2, 1, 6)).setObjects(('HP-ICF-IPCONFIG', 'hpicfIpv6IcmpGroup')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): hpicf_ip_config_compliance6 = hpicfIpConfigCompliance6.setStatus('current') hpicf_ip_config_compliance7 = module_compliance((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 2, 1, 7)).setObjects(('HP-ICF-IPCONFIG', 'hpicfIpNetToPhysicalTableGroup')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): hpicf_ip_config_compliance7 = hpicfIpConfigCompliance7.setStatus('current') hpicf_ip_config_compliance8 = module_compliance((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 2, 1, 8)).setObjects(('HP-ICF-IPCONFIG', 'hpicfUdpTunnelMirrorGroup')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): hpicf_ip_config_compliance8 = hpicfIpConfigCompliance8.setStatus('current') hpicf_ip_config_compliance9 = module_compliance((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 2, 1, 9)).setObjects(('HP-ICF-IPCONFIG', 'hpicfIpAddressTableGroup'), ('HP-ICF-IPCONFIG', 'hpicfIpv4InterfaceTableGroup3'), ('HP-ICF-IPCONFIG', 'hpicfSwitchIpAddressTableGroup'), ('HP-ICF-IPCONFIG', 'hpicfIpv6InterfaceTableGroup'), ('HP-ICF-IPCONFIG', 'hpicfUdpTunnelTableGroup')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): hpicf_ip_config_compliance9 = hpicfIpConfigCompliance9.setStatus('current') hpicf_ip_config_compliance10 = module_compliance((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 2, 1, 10)).setObjects(('HP-ICF-IPCONFIG', 'hpicfIpClientTrackerGroup')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): hpicf_ip_config_compliance10 = hpicfIpConfigCompliance10.setStatus('deprecated') hpicf_ip_config_compliance11 = module_compliance((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 2, 1, 11)).setObjects(('HP-ICF-IPCONFIG', 'hpicfIpClientTrackerGroup2')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): hpicf_ip_config_compliance11 = hpicfIpConfigCompliance11.setStatus('current') hpicf_ip_address_table_group = object_group((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 2, 2, 1)).setObjects(('HP-ICF-IPCONFIG', 'hpicfIpAddressPrefixLength'), ('HP-ICF-IPCONFIG', 'hpicfIpAddressType'), ('HP-ICF-IPCONFIG', 'hpicfIpAddressRowStatus'), ('HP-ICF-IPCONFIG', 'hpicfIpAddressExtendedType')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): hpicf_ip_address_table_group = hpicfIpAddressTableGroup.setStatus('current') hpicf_switch_ip_address_table_group = object_group((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 2, 2, 2)).setObjects(('HP-ICF-IPCONFIG', 'hpicfSwitchIpAddressPrefixLength'), ('HP-ICF-IPCONFIG', 'hpicfSwitchIpAddressType'), ('HP-ICF-IPCONFIG', 'hpicfSwitchIpAddressOrigin'), ('HP-ICF-IPCONFIG', 'hpicfSwitchIpAddressStatus'), ('HP-ICF-IPCONFIG', 'hpicfSwitchIpAddressPreferredLifetime'), ('HP-ICF-IPCONFIG', 'hpicfSwitchIpAddressValidLifetime'), ('HP-ICF-IPCONFIG', 'hpicfSwitchIpAddressExtendedType')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): hpicf_switch_ip_address_table_group = hpicfSwitchIpAddressTableGroup.setStatus('current') hpicf_ipv4_interface_table_group = object_group((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 2, 2, 3)).setObjects(('HP-ICF-IPCONFIG', 'hpicfIpv4InterfaceDhcpEnable'), ('HP-ICF-IPCONFIG', 'hpicfIpv4InterfaceForwarding'), ('HP-ICF-IPCONFIG', 'hpicfIpv4InterfaceProxyArp')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): hpicf_ipv4_interface_table_group = hpicfIpv4InterfaceTableGroup.setStatus('deprecated') hpicf_udp_tunnel_table_group = object_group((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 2, 2, 4)).setObjects(('HP-ICF-IPCONFIG', 'hpicfUdpTunnelSrcPort'), ('HP-ICF-IPCONFIG', 'hpicfUdpTunnelMirrorSessionID')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): hpicf_udp_tunnel_table_group = hpicfUdpTunnelTableGroup.setStatus('current') hpicf_ipv6_interface_table_group = object_group((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 2, 2, 5)).setObjects(('HP-ICF-IPCONFIG', 'hpicfIpv6InterfaceDhcpMode'), ('HP-ICF-IPCONFIG', 'hpicfIpv6InterfaceManual'), ('HP-ICF-IPCONFIG', 'hpicfIpv6InterfaceAutoConfig'), ('HP-ICF-IPCONFIG', 'hpicfIpv6InterfaceDhcpRapidCommit'), ('HP-ICF-IPCONFIG', 'hpicfIpv6InterfaceDhcpRelay'), ('HP-ICF-IPCONFIG', 'hpicfIpv6InterfaceCfgEnableStatus')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): hpicf_ipv6_interface_table_group = hpicfIpv6InterfaceTableGroup.setStatus('current') hpicf_ipv4_interface_table_group2 = object_group((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 2, 2, 6)).setObjects(('HP-ICF-IPCONFIG', 'hpicfIpv4InterfaceDhcpEnable'), ('HP-ICF-IPCONFIG', 'hpicfIpv4InterfaceForwarding'), ('HP-ICF-IPCONFIG', 'hpicfIpv4InterfaceProxyArp'), ('HP-ICF-IPCONFIG', 'hpicfIpv4InterfaceLocalProxyArp'), ('HP-ICF-IPCONFIG', 'hpicfIpv4InterfaceBootpGateway')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): hpicf_ipv4_interface_table_group2 = hpicfIpv4InterfaceTableGroup2.setStatus('current') hpicf_ipv6_dad_attempts_group = object_group((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 2, 2, 7)).setObjects(('HP-ICF-IPCONFIG', 'hpicfIpv6NDDadAttempts'), ('HP-ICF-IPCONFIG', 'hpicfIpv6InterfaceDadAttempts'), ('HP-ICF-IPCONFIG', 'hpicfIpv6InterfaceDadAttemptsMode')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): hpicf_ipv6_dad_attempts_group = hpicfIpv6DadAttemptsGroup.setStatus('current') hpicf_ipv6_icmp_group = object_group((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 2, 2, 8)).setObjects(('HP-ICF-IPCONFIG', 'hpicfIpv6IcmpErrorInterval'), ('HP-ICF-IPCONFIG', 'hpicfIpv6IcmpBucketsize')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): hpicf_ipv6_icmp_group = hpicfIpv6IcmpGroup.setStatus('current') hpicf_ip_net_to_physical_table_group = object_group((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 2, 2, 9)).setObjects(('HP-ICF-IPCONFIG', 'hpicfIpNetToPhysicalPort'), ('HP-ICF-IPCONFIG', 'hpicfIpNetToPhysicalTableClear')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): hpicf_ip_net_to_physical_table_group = hpicfIpNetToPhysicalTableGroup.setStatus('current') hpicf_udp_tunnel_mirror_group = object_group((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 2, 2, 10)).setObjects(('HP-ICF-IPCONFIG', 'hpicfUdpTunnelMirrorTruncate')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): hpicf_udp_tunnel_mirror_group = hpicfUdpTunnelMirrorGroup.setStatus('current') hpicf_ipv6_nd_group = object_group((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 2, 2, 11)).setObjects(('HP-ICF-IPCONFIG', 'hpicfIpv6InterfaceReachableTime'), ('HP-ICF-IPCONFIG', 'hpicfIpv6InterfaceRetransmitTime')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): hpicf_ipv6_nd_group = hpicfIpv6NDGroup.setStatus('current') hpicf_ipv4_interface_table_group3 = object_group((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 2, 2, 12)).setObjects(('HP-ICF-IPCONFIG', 'hpicfIpv4InterfaceDhcpEnable'), ('HP-ICF-IPCONFIG', 'hpicfIpv4InterfaceForwarding'), ('HP-ICF-IPCONFIG', 'hpicfIpv4InterfaceProxyArp'), ('HP-ICF-IPCONFIG', 'hpicfIpv4InterfaceLocalProxyArp'), ('HP-ICF-IPCONFIG', 'hpicfIpv4InterfaceBootpGateway'), ('HP-ICF-IPCONFIG', 'hpicfIpv4InterfaceDirectedBcastFwd')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): hpicf_ipv4_interface_table_group3 = hpicfIpv4InterfaceTableGroup3.setStatus('current') hpicf_ip_client_tracker_group = object_group((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 2, 2, 13)).setObjects(('HP-ICF-IPCONFIG', 'hpicfIpClientTrackerEnable')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): hpicf_ip_client_tracker_group = hpicfIpClientTrackerGroup.setStatus('deprecated') hpicf_ip_client_tracker_group2 = object_group((1, 3, 6, 1, 4, 1, 11, 2, 14, 11, 1, 10, 2, 2, 14)).setObjects(('HP-ICF-IPCONFIG', 'hpicfIpClientTrackerEnable'), ('HP-ICF-IPCONFIG', 'hpicfIpClientTrackerTrusted'), ('HP-ICF-IPCONFIG', 'hpicfIpClientTrackerUntrusted')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): hpicf_ip_client_tracker_group2 = hpicfIpClientTrackerGroup2.setStatus('current') mibBuilder.exportSymbols('HP-ICF-IPCONFIG', hpicfIpv4InterfaceEntry=hpicfIpv4InterfaceEntry, hpicfSwitchIpAddressPrefixLength=hpicfSwitchIpAddressPrefixLength, hpicfIpConfigCompliance5=hpicfIpConfigCompliance5, hpicfIpConfigCompliance2=hpicfIpConfigCompliance2, hpicfIpAddressAddr=hpicfIpAddressAddr, hpicfSwitchIpAddressType=hpicfSwitchIpAddressType, hpicfIpv4InterfaceLocalProxyArp=hpicfIpv4InterfaceLocalProxyArp, hpicfIpAddressTable=hpicfIpAddressTable, hpicfIpv6InterfaceTable=hpicfIpv6InterfaceTable, hpicfIpClientTrackerTrusted=hpicfIpClientTrackerTrusted, hpicfIpConfigConformance=hpicfIpConfigConformance, hpicfIpConfigCompliance8=hpicfIpConfigCompliance8, hpicfIpv6InterfaceEntry=hpicfIpv6InterfaceEntry, hpicfSwitchIpAddressTable=hpicfSwitchIpAddressTable, hpicfIpConfigCompliances=hpicfIpConfigCompliances, hpicfIpv6InterfaceRetransmitTime=hpicfIpv6InterfaceRetransmitTime, hpicfIpAddressObjects=hpicfIpAddressObjects, hpicfUdpTunnelSrcPort=hpicfUdpTunnelSrcPort, hpicfIpConfig=hpicfIpConfig, hpicfIpv6NDObjects=hpicfIpv6NDObjects, hpicfIpv4InterfaceTableGroup=hpicfIpv4InterfaceTableGroup, hpicfIpConfigCompliance10=hpicfIpConfigCompliance10, hpicfSwitchIpAddressValidLifetime=hpicfSwitchIpAddressValidLifetime, hpicfIpv4InterfaceTableGroup2=hpicfIpv4InterfaceTableGroup2, hpicfUdpTunnelMirrorGroup=hpicfUdpTunnelMirrorGroup, hpicfIpAddressType=hpicfIpAddressType, hpicfIpNetToPhysicalTable=hpicfIpNetToPhysicalTable, hpicfIpConfigCompliance11=hpicfIpConfigCompliance11, hpicfIpAddressExtendedType=hpicfIpAddressExtendedType, hpicfIpv6IcmpErrorInterval=hpicfIpv6IcmpErrorInterval, hpicfIpv6IcmpGroup=hpicfIpv6IcmpGroup, hpicfIpv4InterfaceBootpGateway=hpicfIpv4InterfaceBootpGateway, hpicfIpv6ConfigObjects=hpicfIpv6ConfigObjects, hpicfUdpTunnelTable=hpicfUdpTunnelTable, hpicfIpv4InterfaceProxyArp=hpicfIpv4InterfaceProxyArp, hpicfIpClientTrackerGroup2=hpicfIpClientTrackerGroup2, hpicfIpv6IcmpObjects=hpicfIpv6IcmpObjects, hpicfIpv6InterfaceTableGroup=hpicfIpv6InterfaceTableGroup, hpicfIpNetToPhysicalTableGroup=hpicfIpNetToPhysicalTableGroup, hpicfIpv4InterfaceObjects=hpicfIpv4InterfaceObjects, hpicfIpClientTrackerObjects=hpicfIpClientTrackerObjects, hpicfIpConfigCompliance7=hpicfIpConfigCompliance7, hpicfSwitchIpAddressPreferredLifetime=hpicfSwitchIpAddressPreferredLifetime, hpicfIpConfigCompliance=hpicfIpConfigCompliance, hpicfIpv6InterfaceDadAttemptsMode=hpicfIpv6InterfaceDadAttemptsMode, hpicfIpv6InterfaceReachableTime=hpicfIpv6InterfaceReachableTime, hpicfIpConfigGroups=hpicfIpConfigGroups, hpicfIpNetToPhysicalPort=hpicfIpNetToPhysicalPort, hpicfIpAddressTableGroup=hpicfIpAddressTableGroup, hpicfIpAddressRowStatus=hpicfIpAddressRowStatus, hpicfIpv6NDGroup=hpicfIpv6NDGroup, hpicfIpNetToPhysicalTableClear=hpicfIpNetToPhysicalTableClear, hpicfSwitchIpAddressEntry=hpicfSwitchIpAddressEntry, hpicfSwitchIpAddressExtendedType=hpicfSwitchIpAddressExtendedType, hpicfIpConfigCompliance9=hpicfIpConfigCompliance9, hpicfIpConfigCompliance6=hpicfIpConfigCompliance6, hpicfIpv6InterfaceManual=hpicfIpv6InterfaceManual, hpicfIpv6GlobalConfigObjects=hpicfIpv6GlobalConfigObjects, hpicfSwitchIpAddressOrigin=hpicfSwitchIpAddressOrigin, hpicfIpClientTrackerEnable=hpicfIpClientTrackerEnable, hpicfIpv6InterfaceDhcpRapidCommit=hpicfIpv6InterfaceDhcpRapidCommit, hpicfIpv4InterfaceForwarding=hpicfIpv4InterfaceForwarding, PYSNMP_MODULE_ID=hpicfIpConfig, hpicfIpConfigObjects=hpicfIpConfigObjects, hpicfIpv6InterfaceDhcpRelay=hpicfIpv6InterfaceDhcpRelay, hpicfIpv6DadAttemptsGroup=hpicfIpv6DadAttemptsGroup, hpicfIpNetToPhysicalEntry=hpicfIpNetToPhysicalEntry, hpicfUdpTunnelEntry=hpicfUdpTunnelEntry, hpicfUdpTunnelMirrorSessionID=hpicfUdpTunnelMirrorSessionID, hpicfIpv6IcmpBucketsize=hpicfIpv6IcmpBucketsize, hpicfIpv4InterfaceTableGroup3=hpicfIpv4InterfaceTableGroup3, hpicfIpv4InterfaceTable=hpicfIpv4InterfaceTable, hpicfIpClientTrackerGroup=hpicfIpClientTrackerGroup, hpicfIpAddressEntry=hpicfIpAddressEntry, hpicfIpv6InterfaceDadAttempts=hpicfIpv6InterfaceDadAttempts, hpicfUdpTunnelTableGroup=hpicfUdpTunnelTableGroup, hpicfIpv6InterfaceCfgEnableStatus=hpicfIpv6InterfaceCfgEnableStatus, hpicfSwitchIpAddressStatus=hpicfSwitchIpAddressStatus, hpicfIpv6InterfaceAutoConfig=hpicfIpv6InterfaceAutoConfig, hpicfIpAddressPrefixLength=hpicfIpAddressPrefixLength, hpicfIpv6InterfaceDhcpMode=hpicfIpv6InterfaceDhcpMode, hpicfSwitchIpAddressTableGroup=hpicfSwitchIpAddressTableGroup, hpicfIpAddressAddrType=hpicfIpAddressAddrType, hpicfIpv6InterfaceObjects=hpicfIpv6InterfaceObjects, hpicfIpv4InterfaceDhcpEnable=hpicfIpv4InterfaceDhcpEnable, hpicfIpClientTrackerUntrusted=hpicfIpClientTrackerUntrusted, hpicfIpv4InterfaceDirectedBcastFwd=hpicfIpv4InterfaceDirectedBcastFwd, hpicfUdpTunnelMirrorTruncate=hpicfUdpTunnelMirrorTruncate, hpicfIpConfigCompliance4=hpicfIpConfigCompliance4, hpicfSwitchIpAddressAddr=hpicfSwitchIpAddressAddr, hpicfIpv6NDDadAttempts=hpicfIpv6NDDadAttempts, hpicfSwitchIpAddressAddrType=hpicfSwitchIpAddressAddrType)
# coding: utf8 '''This file contains all the DAta archetype structures needed for the portal ''' class UnitView(): '''represent an article object in the main content part <div class="unitview"> <div class="unitview-header"> <h1 class="unitview-title">Sample Post 1</h1> <div class=class="unitview-counter">38</div> </header> <p>content text here</p> <footer> <em>Created by:</em> <strong>Author Name</strong> <span class="unitview-tags"><em>Tags:</em> <a class=tags href=#>cool</a><a class=tags href=#>modern</a></span> </footer> </div> ''' def __init__(self, title = '', counts = '', content = '', author = '', tags = '', button = '', footer = '', watermark = False, script = '', _class = '', _id = '', ): try: self.title = title.xml() except AttributeError: self.title = title try: self.counts = counts.xml() except AttributeError: self.counts = str(counts) try: self.content = content.xml() except AttributeError: self.content = content try: self.author = author.xml() except AttributeError: self.author = author try: self.footer = footer.xml() except AttributeError: self.footer = footer try: self.tags = tags.xml() except AttributeError: if isinstance(tags, list): #sting list of tags self.tags ='' for tag in tags: self.tags+= '''<a class="unitview-tag" href=%s>%s</a> '''%(URL(c= 'news', f='tags', args= tag), tag) else: self.tags = tags try: self.button = button.xml() except AttributeError: self.button = button #example: <a class=button href=#>Continue Reading</a> self.script = SCRIPT(script).xml() #an empty script must be initialized to make livequery work self.watermark = watermark self._id = _id self._class = _class def xml(self): if self.author or self.tags or self.button or self.footer: author_line = tags_line = '' if self.author: author_line = '''<em>Created by:</em> <strong>%s</strong> '''%self.author if self.tags: tags_line = '''<span class="unitview-tags"><em>Tags:</em> %s </span> '''%self.tags footerdiv=''' <div class="unitview-footer"> %s %s %s %s </div>''' %(author_line,tags_line,self.button, self.footer) else: footerdiv='<div class="unitview-footer"></div>' if self.watermark: watermark='''<div class="unitview-watermark" style="margin-top:-50px;float:right; z-index:-10; opacity:0.3;"><img src="%s" alt="primm" style="height: 50px;"/></div>'''%URL(r=request, c='static', f='logo_primm.png') else: watermark='' fullxml = ''' <div id="%s" class="unitview row %s" data-spy="scroll" data-target=".sidenav"> <div class="unitview-header" onclick = "void(0)"> <h2 class="unitview-title">%s</h2> <div class="unitview-counter">%s</div> </div> <div class="unitview-content">%s</div> %s %s </div> %s ''' %(self._id, self._class, self.title, self.counts, self.content,footerdiv,watermark, self.script) return fullxml def toxml(self):#compatibility return self.xml()
"""This file contains all the DAta archetype structures needed for the portal """ class Unitview: """represent an article object in the main content part <div class="unitview"> <div class="unitview-header"> <h1 class="unitview-title">Sample Post 1</h1> <div class=class="unitview-counter">38</div> </header> <p>content text here</p> <footer> <em>Created by:</em> <strong>Author Name</strong> <span class="unitview-tags"><em>Tags:</em> <a class=tags href=#>cool</a><a class=tags href=#>modern</a></span> </footer> </div> """ def __init__(self, title='', counts='', content='', author='', tags='', button='', footer='', watermark=False, script='', _class='', _id=''): try: self.title = title.xml() except AttributeError: self.title = title try: self.counts = counts.xml() except AttributeError: self.counts = str(counts) try: self.content = content.xml() except AttributeError: self.content = content try: self.author = author.xml() except AttributeError: self.author = author try: self.footer = footer.xml() except AttributeError: self.footer = footer try: self.tags = tags.xml() except AttributeError: if isinstance(tags, list): self.tags = '' for tag in tags: self.tags += '<a class="unitview-tag" href=%s>%s</a> ' % (url(c='news', f='tags', args=tag), tag) else: self.tags = tags try: self.button = button.xml() except AttributeError: self.button = button self.script = script(script).xml() self.watermark = watermark self._id = _id self._class = _class def xml(self): if self.author or self.tags or self.button or self.footer: author_line = tags_line = '' if self.author: author_line = '<em>Created by:</em> <strong>%s</strong> ' % self.author if self.tags: tags_line = '<span class="unitview-tags"><em>Tags:</em> %s </span> ' % self.tags footerdiv = ' <div class="unitview-footer"> \n %s\n %s \n %s\n %s\n </div>' % (author_line, tags_line, self.button, self.footer) else: footerdiv = '<div class="unitview-footer"></div>' if self.watermark: watermark = '<div class="unitview-watermark" style="margin-top:-50px;float:right; z-index:-10; opacity:0.3;"><img src="%s" alt="primm" style="height: 50px;"/></div>' % url(r=request, c='static', f='logo_primm.png') else: watermark = '' fullxml = ' <div id="%s" class="unitview row %s" data-spy="scroll" data-target=".sidenav">\n <div class="unitview-header" onclick = "void(0)"> \n <h2 class="unitview-title">%s</h2>\n <div class="unitview-counter">%s</div> \n </div> \n <div class="unitview-content">%s</div> \n %s\n %s\n </div> %s ' % (self._id, self._class, self.title, self.counts, self.content, footerdiv, watermark, self.script) return fullxml def toxml(self): return self.xml()
message = "This is a test at replacing text" print(message) message = "Change of text" print(message)
message = 'This is a test at replacing text' print(message) message = 'Change of text' print(message)
if __name__ == '__main__': the_list = list() for _ in range(int(input())): command, *args = input().split() try: getattr(the_list, command)(*(int(arg) for arg in args)) except AttributeError: print(the_list)
if __name__ == '__main__': the_list = list() for _ in range(int(input())): (command, *args) = input().split() try: getattr(the_list, command)(*(int(arg) for arg in args)) except AttributeError: print(the_list)
class TreeNode: def __init__(self, val=0, left=None, right=None): self.val = val self.left = left self.right = right class Solution: def invertTree(self, root: TreeNode) -> TreeNode: if not root: return root.right, root.left = root.left, root.right self.invertTree(root.right) self.invertTree(root.left) # root.right, root.left = self.invertTree(root.left), self.invertTree(root.right) return root if __name__ == '__main__': root = TreeNode(1) root.left = TreeNode(2) root.right = TreeNode(3) root.left.left = TreeNode(4) root.left.right = TreeNode(5) root.right.left = TreeNode(6) root.right.right = TreeNode(7) Solution().invertTree(root) print(root.val) print(root.left.val) print(root.right.val) print(root.left.left.val) print(root.left.right.val) print(root.right.left.val) print(root.right.right.val)
class Treenode: def __init__(self, val=0, left=None, right=None): self.val = val self.left = left self.right = right class Solution: def invert_tree(self, root: TreeNode) -> TreeNode: if not root: return (root.right, root.left) = (root.left, root.right) self.invertTree(root.right) self.invertTree(root.left) return root if __name__ == '__main__': root = tree_node(1) root.left = tree_node(2) root.right = tree_node(3) root.left.left = tree_node(4) root.left.right = tree_node(5) root.right.left = tree_node(6) root.right.right = tree_node(7) solution().invertTree(root) print(root.val) print(root.left.val) print(root.right.val) print(root.left.left.val) print(root.left.right.val) print(root.right.left.val) print(root.right.right.val)
def config_list_to_dict(l): d = {} for kv in l: if kv.count("=") != 1: raise ValueError(f"invalid 'key=value' pair: {kv}") k, v = kv.split("=") if len(v) == 0: raise ValueError(f"invalid 'key=value' pair: {kv}") _dot_to_dict(d, k, v) return d def _dot_to_dict(d, k, v): if k.startswith(".") or k.endswith("."): raise ValueError(f"invalid path: {k}") if "." in k: path = k.split(".") current_k = path[0] remaining_path = ".".join(path[1:]) d.setdefault(current_k, {}) _dot_to_dict(d[current_k], remaining_path, v) else: d[k] = v
def config_list_to_dict(l): d = {} for kv in l: if kv.count('=') != 1: raise value_error(f"invalid 'key=value' pair: {kv}") (k, v) = kv.split('=') if len(v) == 0: raise value_error(f"invalid 'key=value' pair: {kv}") _dot_to_dict(d, k, v) return d def _dot_to_dict(d, k, v): if k.startswith('.') or k.endswith('.'): raise value_error(f'invalid path: {k}') if '.' in k: path = k.split('.') current_k = path[0] remaining_path = '.'.join(path[1:]) d.setdefault(current_k, {}) _dot_to_dict(d[current_k], remaining_path, v) else: d[k] = v
# Return the root of the modified BST after deleting the node with value X def inorderSuccessor(root,ans,key,parent,node): if root is None: return False currParent=parent[0] parent[0]=root if root.data == key : node[0]=root if root.right: curr=root.right while curr.left: parent[0]=curr curr=curr.left ans[0]=curr.data return True lst=inorderSuccessor(root.left,ans,key,parent,node) if lst is True: if ans[0] is None: parent[0]=currParent ans[0]=root.data return True else: parent[0]=root return inorderSuccessor(root.right,ans,key,parent,node) def deleteNode(root,key): if root.data==key and root.right is None and root.left is None: return None ans=[None] node=[None] parent=[None] inorderSuccessor(root,ans,key,parent,node) if node[0] is not None: node[0].data=ans[0] if parent[0].left and parent[0].left.data==ans: parent[0].left=None else: parent[0].right=None return root
def inorder_successor(root, ans, key, parent, node): if root is None: return False curr_parent = parent[0] parent[0] = root if root.data == key: node[0] = root if root.right: curr = root.right while curr.left: parent[0] = curr curr = curr.left ans[0] = curr.data return True lst = inorder_successor(root.left, ans, key, parent, node) if lst is True: if ans[0] is None: parent[0] = currParent ans[0] = root.data return True else: parent[0] = root return inorder_successor(root.right, ans, key, parent, node) def delete_node(root, key): if root.data == key and root.right is None and (root.left is None): return None ans = [None] node = [None] parent = [None] inorder_successor(root, ans, key, parent, node) if node[0] is not None: node[0].data = ans[0] if parent[0].left and parent[0].left.data == ans: parent[0].left = None else: parent[0].right = None return root
# 1021 valor = float(input()) notas = [100, 50, 20, 10, 5, 2] moedas = [1, 0.50, 0.25, 0.10, 0.05, 0.01] print("NOTAS:") for nota in notas: quantidade_nota = int(valor / nota) print("{} notas(s) de R$ {:.2f}".format(quantidade_nota, nota)) valor -= quantidade_nota * nota print("MOEDAS:") for moeda in moedas: quantidade_moeda = int(round(valor,2) / moeda) print("{} moeda(s) de R$ {:.2f}".format(quantidade_moeda, moeda)) valor -= quantidade_moeda * moeda
valor = float(input()) notas = [100, 50, 20, 10, 5, 2] moedas = [1, 0.5, 0.25, 0.1, 0.05, 0.01] print('NOTAS:') for nota in notas: quantidade_nota = int(valor / nota) print('{} notas(s) de R$ {:.2f}'.format(quantidade_nota, nota)) valor -= quantidade_nota * nota print('MOEDAS:') for moeda in moedas: quantidade_moeda = int(round(valor, 2) / moeda) print('{} moeda(s) de R$ {:.2f}'.format(quantidade_moeda, moeda)) valor -= quantidade_moeda * moeda
TIMER_READ = 1; # ms SILAB_IMAGE_SIZE = 16384 SILAB_IMAGE_TOTAL_SUBPART = 144 # size/114+1 SILAB_BOOTLOADER_SIZE = 9216 SILAB_BOOTLOADER_TOTAL_SUBPART = 81 # size/114+1 BT_IMAGE_SIZE = 124928 BT_IMAGE_TOTAL_SUBPART = 1952 # size/64 BT_BOOTLOADER_SIZE = 4096 BT_BOOTLOADER_TOTAL_SUBPART = 64 # size/64 RFID_IMAGE_SIZE = 203776 RFID_IMAGE_TOTAL_SUBPART = 6368 # size/32 RFID_BOOTLOADER_SIZE = 24576 RFID_BOOTLOADER_TOTAL_SUBPART = 768 # size/32 PREFIX = 0xA7 CONNECTION_BT = 0xB3 CONNECTION_USB = 0xE6 TYPE_RFID = 0xC2 TYPE_BARCODE = 0x6A TYPE_NOTIFY = 0xD9 TYPE_SILAB = 0xE8 TYPE_BT = 0x5F LINK_DOWN = 0x37 LINK_UP = 0x9E RESERVE = 0x82
timer_read = 1 silab_image_size = 16384 silab_image_total_subpart = 144 silab_bootloader_size = 9216 silab_bootloader_total_subpart = 81 bt_image_size = 124928 bt_image_total_subpart = 1952 bt_bootloader_size = 4096 bt_bootloader_total_subpart = 64 rfid_image_size = 203776 rfid_image_total_subpart = 6368 rfid_bootloader_size = 24576 rfid_bootloader_total_subpart = 768 prefix = 167 connection_bt = 179 connection_usb = 230 type_rfid = 194 type_barcode = 106 type_notify = 217 type_silab = 232 type_bt = 95 link_down = 55 link_up = 158 reserve = 130
def get_string(addr): out = "" while True: if Byte(addr) != 0: out += chr(Byte(addr)) else: break addr += 1 return out def get_string_at(addr): return get_string(addr - 0x12040 + 0x001fb5a0) def get_i32_at(addr): addr = addr - 0x12040 + 0x001fb5a0 return Byte(addr) | (Byte(addr + 1) << 8) | (Byte(addr + 2) << 16) | (Byte(addr + 3) << 24) def define_struct(name, sz): sid = add_struc(-1, name, 0) for offset in xrange(0, sz, 4): add_struc_member(sid, "field_%X" % offset, -1, FF_DWORD, -1, 4)
def get_string(addr): out = '' while True: if byte(addr) != 0: out += chr(byte(addr)) else: break addr += 1 return out def get_string_at(addr): return get_string(addr - 73792 + 2078112) def get_i32_at(addr): addr = addr - 73792 + 2078112 return byte(addr) | byte(addr + 1) << 8 | byte(addr + 2) << 16 | byte(addr + 3) << 24 def define_struct(name, sz): sid = add_struc(-1, name, 0) for offset in xrange(0, sz, 4): add_struc_member(sid, 'field_%X' % offset, -1, FF_DWORD, -1, 4)
class Solution: def canFormArray(self, arr: List[int], pieces: List[List[int]]) -> bool: n = len(arr) # initialize hashmap mapping = {p[0]: p for p in pieces} i = 0 while i < n: # find target piece if arr[i] not in mapping: return False # check target piece target_piece = mapping[arr[i]] for x in target_piece: if x != arr[i]: return False i += 1 return True
class Solution: def can_form_array(self, arr: List[int], pieces: List[List[int]]) -> bool: n = len(arr) mapping = {p[0]: p for p in pieces} i = 0 while i < n: if arr[i] not in mapping: return False target_piece = mapping[arr[i]] for x in target_piece: if x != arr[i]: return False i += 1 return True
APP_ERROR_SEND_NOTIFICATION = True APP_ERROR_RECIPIENT_EMAIL = ('dev@example.com',) APP_ERROR_EMAIL_SENDER = "server@example.com" APP_ERROR_SUBJECT_PREFIX = "" APP_ERROR_MASK_WITH = "**************" APP_ERROR_MASKED_KEY_HAS = ("password", "secret") APP_ERROR_URL_PREFIX = "/dev/error"
app_error_send_notification = True app_error_recipient_email = ('dev@example.com',) app_error_email_sender = 'server@example.com' app_error_subject_prefix = '' app_error_mask_with = '**************' app_error_masked_key_has = ('password', 'secret') app_error_url_prefix = '/dev/error'